st/va: move post processing function into own file
[mesa.git] / src / glsl / glsl_parser_extras.h
1 /*
2 * Copyright © 2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 #pragma once
25 #ifndef GLSL_PARSER_EXTRAS_H
26 #define GLSL_PARSER_EXTRAS_H
27
28 /*
29 * Most of the definitions here only apply to C++
30 */
31 #ifdef __cplusplus
32
33
34 #include <stdlib.h>
35 #include "glsl_symbol_table.h"
36
37 struct gl_context;
38
39 struct glsl_switch_state {
40 /** Temporary variables needed for switch statement. */
41 ir_variable *test_var;
42 ir_variable *is_fallthru_var;
43 class ast_switch_statement *switch_nesting_ast;
44
45 /** Used to detect if 'continue' was called inside a switch. */
46 ir_variable *continue_inside;
47
48 /** Used to set condition if 'default' label should be chosen. */
49 ir_variable *run_default;
50
51 /** Table of constant values already used in case labels */
52 struct hash_table *labels_ht;
53 class ast_case_label *previous_default;
54
55 bool is_switch_innermost; // if switch stmt is closest to break, ...
56 };
57
58 const char *
59 glsl_compute_version_string(void *mem_ctx, bool is_es, unsigned version);
60
61 typedef struct YYLTYPE {
62 int first_line;
63 int first_column;
64 int last_line;
65 int last_column;
66 unsigned source;
67 } YYLTYPE;
68 # define YYLTYPE_IS_DECLARED 1
69 # define YYLTYPE_IS_TRIVIAL 1
70
71 extern void _mesa_glsl_error(YYLTYPE *locp, _mesa_glsl_parse_state *state,
72 const char *fmt, ...);
73
74
75 struct _mesa_glsl_parse_state {
76 _mesa_glsl_parse_state(struct gl_context *_ctx, gl_shader_stage stage,
77 void *mem_ctx);
78
79 DECLARE_RALLOC_CXX_OPERATORS(_mesa_glsl_parse_state);
80
81 /**
82 * Generate a string representing the GLSL version currently being compiled
83 * (useful for error messages).
84 */
85 const char *get_version_string()
86 {
87 return glsl_compute_version_string(this, this->es_shader,
88 this->language_version);
89 }
90
91 /**
92 * Determine whether the current GLSL version is sufficiently high to
93 * support a certain feature.
94 *
95 * \param required_glsl_version is the desktop GLSL version that is
96 * required to support the feature, or 0 if no version of desktop GLSL
97 * supports the feature.
98 *
99 * \param required_glsl_es_version is the GLSL ES version that is required
100 * to support the feature, or 0 if no version of GLSL ES suports the
101 * feature.
102 */
103 bool is_version(unsigned required_glsl_version,
104 unsigned required_glsl_es_version) const
105 {
106 unsigned required_version = this->es_shader ?
107 required_glsl_es_version : required_glsl_version;
108 unsigned this_version = this->forced_language_version
109 ? this->forced_language_version : this->language_version;
110 return required_version != 0
111 && this_version >= required_version;
112 }
113
114 bool check_version(unsigned required_glsl_version,
115 unsigned required_glsl_es_version,
116 YYLTYPE *locp, const char *fmt, ...) PRINTFLIKE(5, 6);
117
118 bool check_arrays_of_arrays_allowed(YYLTYPE *locp)
119 {
120 if (!(ARB_arrays_of_arrays_enable || is_version(430, 310))) {
121 const char *const requirement = this->es_shader
122 ? "GLSL ES 3.10"
123 : "GL_ARB_arrays_of_arrays or GLSL 4.30";
124 _mesa_glsl_error(locp, this,
125 "%s required for defining arrays of arrays.",
126 requirement);
127 return false;
128 }
129 return true;
130 }
131
132 bool check_precision_qualifiers_allowed(YYLTYPE *locp)
133 {
134 return check_version(130, 100, locp,
135 "precision qualifiers are forbidden");
136 }
137
138 bool check_bitwise_operations_allowed(YYLTYPE *locp)
139 {
140 return check_version(130, 300, locp, "bit-wise operations are forbidden");
141 }
142
143 bool check_explicit_attrib_stream_allowed(YYLTYPE *locp)
144 {
145 if (!this->has_explicit_attrib_stream()) {
146 const char *const requirement = "GL_ARB_gpu_shader5 extension or GLSL 4.00";
147
148 _mesa_glsl_error(locp, this, "explicit stream requires %s",
149 requirement);
150 return false;
151 }
152
153 return true;
154 }
155
156 bool check_explicit_attrib_location_allowed(YYLTYPE *locp,
157 const ir_variable *var)
158 {
159 if (!this->has_explicit_attrib_location()) {
160 const char *const requirement = this->es_shader
161 ? "GLSL ES 3.00"
162 : "GL_ARB_explicit_attrib_location extension or GLSL 3.30";
163
164 _mesa_glsl_error(locp, this, "%s explicit location requires %s",
165 mode_string(var), requirement);
166 return false;
167 }
168
169 return true;
170 }
171
172 bool check_separate_shader_objects_allowed(YYLTYPE *locp,
173 const ir_variable *var)
174 {
175 if (!this->has_separate_shader_objects()) {
176 const char *const requirement = this->es_shader
177 ? "GL_EXT_separate_shader_objects extension or GLSL ES 3.10"
178 : "GL_ARB_separate_shader_objects extension or GLSL 4.20";
179
180 _mesa_glsl_error(locp, this, "%s explicit location requires %s",
181 mode_string(var), requirement);
182 return false;
183 }
184
185 return true;
186 }
187
188 bool check_explicit_uniform_location_allowed(YYLTYPE *locp,
189 const ir_variable *)
190 {
191 if (!this->has_explicit_attrib_location() ||
192 !this->has_explicit_uniform_location()) {
193 const char *const requirement = this->es_shader
194 ? "GLSL ES 3.10"
195 : "GL_ARB_explicit_uniform_location and either "
196 "GL_ARB_explicit_attrib_location or GLSL 3.30.";
197
198 _mesa_glsl_error(locp, this,
199 "uniform explicit location requires %s",
200 requirement);
201 return false;
202 }
203
204 return true;
205 }
206
207 bool has_atomic_counters() const
208 {
209 return ARB_shader_atomic_counters_enable || is_version(420, 310);
210 }
211
212 bool has_enhanced_layouts() const
213 {
214 return ARB_enhanced_layouts_enable || is_version(440, 0);
215 }
216
217 bool has_explicit_attrib_stream() const
218 {
219 return ARB_gpu_shader5_enable || is_version(400, 0);
220 }
221
222 bool has_explicit_attrib_location() const
223 {
224 return ARB_explicit_attrib_location_enable || is_version(330, 300);
225 }
226
227 bool has_explicit_uniform_location() const
228 {
229 return ARB_explicit_uniform_location_enable || is_version(430, 310);
230 }
231
232 bool has_uniform_buffer_objects() const
233 {
234 return ARB_uniform_buffer_object_enable || is_version(140, 300);
235 }
236
237 bool has_shader_storage_buffer_objects() const
238 {
239 return ARB_shader_storage_buffer_object_enable || is_version(430, 310);
240 }
241
242 bool has_separate_shader_objects() const
243 {
244 return ARB_separate_shader_objects_enable || is_version(410, 310)
245 || EXT_separate_shader_objects_enable;
246 }
247
248 bool has_double() const
249 {
250 return ARB_gpu_shader_fp64_enable || is_version(400, 0);
251 }
252
253 bool has_420pack() const
254 {
255 return ARB_shading_language_420pack_enable || is_version(420, 0);
256 }
257
258 bool has_compute_shader() const
259 {
260 return ARB_compute_shader_enable || is_version(430, 310);
261 }
262
263 void process_version_directive(YYLTYPE *locp, int version,
264 const char *ident);
265
266 struct gl_context *const ctx;
267 void *scanner;
268 exec_list translation_unit;
269 glsl_symbol_table *symbols;
270
271 unsigned num_supported_versions;
272 struct {
273 unsigned ver;
274 bool es;
275 } supported_versions[15];
276
277 bool es_shader;
278 unsigned language_version;
279 unsigned forced_language_version;
280 gl_shader_stage stage;
281
282 /**
283 * Number of nested struct_specifier levels
284 *
285 * Outside a struct_specifier, this is zero.
286 */
287 unsigned struct_specifier_depth;
288
289 /**
290 * Default uniform layout qualifiers tracked during parsing.
291 * Currently affects uniform blocks and uniform buffer variables in
292 * those blocks.
293 */
294 struct ast_type_qualifier *default_uniform_qualifier;
295
296 /**
297 * Default shader storage layout qualifiers tracked during parsing.
298 * Currently affects shader storage blocks and shader storage buffer
299 * variables in those blocks.
300 */
301 struct ast_type_qualifier *default_shader_storage_qualifier;
302
303 /**
304 * Variables to track different cases if a fragment shader redeclares
305 * built-in variable gl_FragCoord.
306 *
307 * Note: These values are computed at ast_to_hir time rather than at parse
308 * time.
309 */
310 bool fs_redeclares_gl_fragcoord;
311 bool fs_origin_upper_left;
312 bool fs_pixel_center_integer;
313 bool fs_redeclares_gl_fragcoord_with_no_layout_qualifiers;
314
315 /**
316 * True if a geometry shader input primitive type or tessellation control
317 * output vertices were specified using a layout directive.
318 *
319 * Note: these values are computed at ast_to_hir time rather than at parse
320 * time.
321 */
322 bool gs_input_prim_type_specified;
323 bool tcs_output_vertices_specified;
324
325 /**
326 * Input layout qualifiers from GLSL 1.50 (geometry shader controls),
327 * and GLSL 4.00 (tessellation evaluation shader)
328 */
329 struct ast_type_qualifier *in_qualifier;
330
331 /**
332 * True if a compute shader input local size was specified using a layout
333 * directive.
334 *
335 * Note: this value is computed at ast_to_hir time rather than at parse
336 * time.
337 */
338 bool cs_input_local_size_specified;
339
340 /**
341 * If cs_input_local_size_specified is true, the local size that was
342 * specified. Otherwise ignored.
343 */
344 unsigned cs_input_local_size[3];
345
346 /**
347 * Output layout qualifiers from GLSL 1.50 (geometry shader controls),
348 * and GLSL 4.00 (tessellation control shader).
349 */
350 struct ast_type_qualifier *out_qualifier;
351
352 /**
353 * Printable list of GLSL versions supported by the current context
354 *
355 * \note
356 * This string should probably be generated per-context instead of per
357 * invokation of the compiler. This should be changed when the method of
358 * tracking supported GLSL versions changes.
359 */
360 const char *supported_version_string;
361
362 /**
363 * Implementation defined limits that affect built-in variables, etc.
364 *
365 * \sa struct gl_constants (in mtypes.h)
366 */
367 struct {
368 /* 1.10 */
369 unsigned MaxLights;
370 unsigned MaxClipPlanes;
371 unsigned MaxTextureUnits;
372 unsigned MaxTextureCoords;
373 unsigned MaxVertexAttribs;
374 unsigned MaxVertexUniformComponents;
375 unsigned MaxVertexTextureImageUnits;
376 unsigned MaxCombinedTextureImageUnits;
377 unsigned MaxTextureImageUnits;
378 unsigned MaxFragmentUniformComponents;
379
380 /* ARB_draw_buffers */
381 unsigned MaxDrawBuffers;
382
383 /* ARB_blend_func_extended */
384 unsigned MaxDualSourceDrawBuffers;
385
386 /* 3.00 ES */
387 int MinProgramTexelOffset;
388 int MaxProgramTexelOffset;
389
390 /* 1.50 */
391 unsigned MaxVertexOutputComponents;
392 unsigned MaxGeometryInputComponents;
393 unsigned MaxGeometryOutputComponents;
394 unsigned MaxFragmentInputComponents;
395 unsigned MaxGeometryTextureImageUnits;
396 unsigned MaxGeometryOutputVertices;
397 unsigned MaxGeometryTotalOutputComponents;
398 unsigned MaxGeometryUniformComponents;
399
400 /* ARB_shader_atomic_counters */
401 unsigned MaxVertexAtomicCounters;
402 unsigned MaxTessControlAtomicCounters;
403 unsigned MaxTessEvaluationAtomicCounters;
404 unsigned MaxGeometryAtomicCounters;
405 unsigned MaxFragmentAtomicCounters;
406 unsigned MaxCombinedAtomicCounters;
407 unsigned MaxAtomicBufferBindings;
408
409 /* These are also atomic counter related, but they weren't added to
410 * until atomic counters were added to core in GLSL 4.20 and GLSL ES
411 * 3.10.
412 */
413 unsigned MaxVertexAtomicCounterBuffers;
414 unsigned MaxTessControlAtomicCounterBuffers;
415 unsigned MaxTessEvaluationAtomicCounterBuffers;
416 unsigned MaxGeometryAtomicCounterBuffers;
417 unsigned MaxFragmentAtomicCounterBuffers;
418 unsigned MaxCombinedAtomicCounterBuffers;
419 unsigned MaxAtomicCounterBufferSize;
420
421 /* ARB_compute_shader */
422 unsigned MaxComputeWorkGroupCount[3];
423 unsigned MaxComputeWorkGroupSize[3];
424
425 /* ARB_shader_image_load_store */
426 unsigned MaxImageUnits;
427 unsigned MaxCombinedShaderOutputResources;
428 unsigned MaxImageSamples;
429 unsigned MaxVertexImageUniforms;
430 unsigned MaxTessControlImageUniforms;
431 unsigned MaxTessEvaluationImageUniforms;
432 unsigned MaxGeometryImageUniforms;
433 unsigned MaxFragmentImageUniforms;
434 unsigned MaxCombinedImageUniforms;
435
436 /* ARB_viewport_array */
437 unsigned MaxViewports;
438
439 /* ARB_tessellation_shader */
440 unsigned MaxPatchVertices;
441 unsigned MaxTessGenLevel;
442 unsigned MaxTessControlInputComponents;
443 unsigned MaxTessControlOutputComponents;
444 unsigned MaxTessControlTextureImageUnits;
445 unsigned MaxTessEvaluationInputComponents;
446 unsigned MaxTessEvaluationOutputComponents;
447 unsigned MaxTessEvaluationTextureImageUnits;
448 unsigned MaxTessPatchComponents;
449 unsigned MaxTessControlTotalOutputComponents;
450 unsigned MaxTessControlUniformComponents;
451 unsigned MaxTessEvaluationUniformComponents;
452 } Const;
453
454 /**
455 * During AST to IR conversion, pointer to current IR function
456 *
457 * Will be \c NULL whenever the AST to IR conversion is not inside a
458 * function definition.
459 */
460 class ir_function_signature *current_function;
461
462 /**
463 * During AST to IR conversion, pointer to the toplevel IR
464 * instruction list being generated.
465 */
466 exec_list *toplevel_ir;
467
468 /** Have we found a return statement in this function? */
469 bool found_return;
470
471 /** Was there an error during compilation? */
472 bool error;
473
474 /**
475 * Are all shader inputs / outputs invariant?
476 *
477 * This is set when the 'STDGL invariant(all)' pragma is used.
478 */
479 bool all_invariant;
480
481 /** Loop or switch statement containing the current instructions. */
482 class ast_iteration_statement *loop_nesting_ast;
483
484 struct glsl_switch_state switch_state;
485
486 /** List of structures defined in user code. */
487 const glsl_type **user_structures;
488 unsigned num_user_structures;
489
490 char *info_log;
491
492 /**
493 * \name Enable bits for GLSL extensions
494 */
495 /*@{*/
496 /* ARB extensions go here, sorted alphabetically.
497 */
498 bool ARB_arrays_of_arrays_enable;
499 bool ARB_arrays_of_arrays_warn;
500 bool ARB_compute_shader_enable;
501 bool ARB_compute_shader_warn;
502 bool ARB_conservative_depth_enable;
503 bool ARB_conservative_depth_warn;
504 bool ARB_derivative_control_enable;
505 bool ARB_derivative_control_warn;
506 bool ARB_draw_buffers_enable;
507 bool ARB_draw_buffers_warn;
508 bool ARB_draw_instanced_enable;
509 bool ARB_draw_instanced_warn;
510 bool ARB_enhanced_layouts_enable;
511 bool ARB_enhanced_layouts_warn;
512 bool ARB_explicit_attrib_location_enable;
513 bool ARB_explicit_attrib_location_warn;
514 bool ARB_explicit_uniform_location_enable;
515 bool ARB_explicit_uniform_location_warn;
516 bool ARB_fragment_coord_conventions_enable;
517 bool ARB_fragment_coord_conventions_warn;
518 bool ARB_fragment_layer_viewport_enable;
519 bool ARB_fragment_layer_viewport_warn;
520 bool ARB_gpu_shader5_enable;
521 bool ARB_gpu_shader5_warn;
522 bool ARB_gpu_shader_fp64_enable;
523 bool ARB_gpu_shader_fp64_warn;
524 bool ARB_sample_shading_enable;
525 bool ARB_sample_shading_warn;
526 bool ARB_separate_shader_objects_enable;
527 bool ARB_separate_shader_objects_warn;
528 bool ARB_shader_atomic_counters_enable;
529 bool ARB_shader_atomic_counters_warn;
530 bool ARB_shader_bit_encoding_enable;
531 bool ARB_shader_bit_encoding_warn;
532 bool ARB_shader_clock_enable;
533 bool ARB_shader_clock_warn;
534 bool ARB_shader_image_load_store_enable;
535 bool ARB_shader_image_load_store_warn;
536 bool ARB_shader_image_size_enable;
537 bool ARB_shader_image_size_warn;
538 bool ARB_shader_precision_enable;
539 bool ARB_shader_precision_warn;
540 bool ARB_shader_stencil_export_enable;
541 bool ARB_shader_stencil_export_warn;
542 bool ARB_shader_storage_buffer_object_enable;
543 bool ARB_shader_storage_buffer_object_warn;
544 bool ARB_shader_subroutine_enable;
545 bool ARB_shader_subroutine_warn;
546 bool ARB_shader_texture_image_samples_enable;
547 bool ARB_shader_texture_image_samples_warn;
548 bool ARB_shader_texture_lod_enable;
549 bool ARB_shader_texture_lod_warn;
550 bool ARB_shading_language_420pack_enable;
551 bool ARB_shading_language_420pack_warn;
552 bool ARB_shading_language_packing_enable;
553 bool ARB_shading_language_packing_warn;
554 bool ARB_tessellation_shader_enable;
555 bool ARB_tessellation_shader_warn;
556 bool ARB_texture_cube_map_array_enable;
557 bool ARB_texture_cube_map_array_warn;
558 bool ARB_texture_gather_enable;
559 bool ARB_texture_gather_warn;
560 bool ARB_texture_multisample_enable;
561 bool ARB_texture_multisample_warn;
562 bool ARB_texture_query_levels_enable;
563 bool ARB_texture_query_levels_warn;
564 bool ARB_texture_query_lod_enable;
565 bool ARB_texture_query_lod_warn;
566 bool ARB_texture_rectangle_enable;
567 bool ARB_texture_rectangle_warn;
568 bool ARB_uniform_buffer_object_enable;
569 bool ARB_uniform_buffer_object_warn;
570 bool ARB_vertex_attrib_64bit_enable;
571 bool ARB_vertex_attrib_64bit_warn;
572 bool ARB_viewport_array_enable;
573 bool ARB_viewport_array_warn;
574
575 /* KHR extensions go here, sorted alphabetically.
576 */
577
578 /* OES extensions go here, sorted alphabetically.
579 */
580 bool OES_EGL_image_external_enable;
581 bool OES_EGL_image_external_warn;
582 bool OES_standard_derivatives_enable;
583 bool OES_standard_derivatives_warn;
584 bool OES_texture_3D_enable;
585 bool OES_texture_3D_warn;
586 bool OES_texture_storage_multisample_2d_array_enable;
587 bool OES_texture_storage_multisample_2d_array_warn;
588
589 /* All other extensions go here, sorted alphabetically.
590 */
591 bool AMD_conservative_depth_enable;
592 bool AMD_conservative_depth_warn;
593 bool AMD_shader_stencil_export_enable;
594 bool AMD_shader_stencil_export_warn;
595 bool AMD_shader_trinary_minmax_enable;
596 bool AMD_shader_trinary_minmax_warn;
597 bool AMD_vertex_shader_layer_enable;
598 bool AMD_vertex_shader_layer_warn;
599 bool AMD_vertex_shader_viewport_index_enable;
600 bool AMD_vertex_shader_viewport_index_warn;
601 bool EXT_blend_func_extended_enable;
602 bool EXT_blend_func_extended_warn;
603 bool EXT_draw_buffers_enable;
604 bool EXT_draw_buffers_warn;
605 bool EXT_separate_shader_objects_enable;
606 bool EXT_separate_shader_objects_warn;
607 bool EXT_shader_integer_mix_enable;
608 bool EXT_shader_integer_mix_warn;
609 bool EXT_shader_samples_identical_enable;
610 bool EXT_shader_samples_identical_warn;
611 bool EXT_texture_array_enable;
612 bool EXT_texture_array_warn;
613 /*@}*/
614
615 /** Extensions supported by the OpenGL implementation. */
616 const struct gl_extensions *extensions;
617
618 bool uses_builtin_functions;
619 bool fs_uses_gl_fragcoord;
620
621 /**
622 * For geometry shaders, size of the most recently seen input declaration
623 * that was a sized array, or 0 if no sized input array declarations have
624 * been seen.
625 *
626 * Unused for other shader types.
627 */
628 unsigned gs_input_size;
629
630 bool fs_early_fragment_tests;
631
632 /**
633 * For tessellation control shaders, size of the most recently seen output
634 * declaration that was a sized array, or 0 if no sized output array
635 * declarations have been seen.
636 *
637 * Unused for other shader types.
638 */
639 unsigned tcs_output_size;
640
641 /** Atomic counter offsets by binding */
642 unsigned atomic_counter_offsets[MAX_COMBINED_ATOMIC_BUFFERS];
643
644 bool allow_extension_directive_midshader;
645
646 /**
647 * Known subroutine type declarations.
648 */
649 int num_subroutine_types;
650 ir_function **subroutine_types;
651
652 /**
653 * Functions that are associated with
654 * subroutine types.
655 */
656 int num_subroutines;
657 ir_function **subroutines;
658
659 /**
660 * field selection temporary parser storage -
661 * did the parser just parse a dot.
662 */
663 bool is_field;
664 };
665
666 # define YYLLOC_DEFAULT(Current, Rhs, N) \
667 do { \
668 if (N) \
669 { \
670 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
671 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
672 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
673 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
674 } \
675 else \
676 { \
677 (Current).first_line = (Current).last_line = \
678 YYRHSLOC(Rhs, 0).last_line; \
679 (Current).first_column = (Current).last_column = \
680 YYRHSLOC(Rhs, 0).last_column; \
681 } \
682 (Current).source = 0; \
683 } while (0)
684
685 /**
686 * Emit a warning to the shader log
687 *
688 * \sa _mesa_glsl_error
689 */
690 extern void _mesa_glsl_warning(const YYLTYPE *locp,
691 _mesa_glsl_parse_state *state,
692 const char *fmt, ...);
693
694 extern void _mesa_glsl_lexer_ctor(struct _mesa_glsl_parse_state *state,
695 const char *string);
696
697 extern void _mesa_glsl_lexer_dtor(struct _mesa_glsl_parse_state *state);
698
699 union YYSTYPE;
700 extern int _mesa_glsl_lexer_lex(union YYSTYPE *yylval, YYLTYPE *yylloc,
701 void *scanner);
702
703 extern int _mesa_glsl_parse(struct _mesa_glsl_parse_state *);
704
705 /**
706 * Process elements of the #extension directive
707 *
708 * \return
709 * If \c name and \c behavior are valid, \c true is returned. Otherwise
710 * \c false is returned.
711 */
712 extern bool _mesa_glsl_process_extension(const char *name, YYLTYPE *name_locp,
713 const char *behavior,
714 YYLTYPE *behavior_locp,
715 _mesa_glsl_parse_state *state);
716
717 #endif /* __cplusplus */
718
719
720 /*
721 * These definitions apply to C and C++
722 */
723 #ifdef __cplusplus
724 extern "C" {
725 #endif
726
727 /**
728 * Get the textual name of the specified shader stage (which is a
729 * gl_shader_stage).
730 */
731 extern const char *
732 _mesa_shader_stage_to_string(unsigned stage);
733
734 extern const char *
735 _mesa_shader_stage_to_abbrev(unsigned stage);
736
737 extern int glcpp_preprocess(void *ctx, const char **shader, char **info_log,
738 const struct gl_extensions *extensions, struct gl_context *gl_ctx);
739
740 extern void _mesa_destroy_shader_compiler(void);
741 extern void _mesa_destroy_shader_compiler_caches(void);
742
743 #ifdef __cplusplus
744 }
745 #endif
746
747
748 #endif /* GLSL_PARSER_EXTRAS_H */