c31f5e264813fc5dfeaa2ebf25b16cc8e93c3637
[mesa.git] / src / glsl / glsl_parser.yy
1 %{
2 /*
3 * Copyright © 2008, 2009 Intel Corporation
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <assert.h>
28
29 #include "ast.h"
30 #include "glsl_parser_extras.h"
31 #include "glsl_types.h"
32 #include "main/context.h"
33
34 #define YYLEX_PARAM state->scanner
35
36 #undef yyerror
37
38 static void yyerror(YYLTYPE *loc, _mesa_glsl_parse_state *st, const char *msg)
39 {
40 _mesa_glsl_error(loc, st, "%s", msg);
41 }
42 %}
43
44 %expect 0
45
46 %pure-parser
47 %error-verbose
48
49 %locations
50 %initial-action {
51 @$.first_line = 1;
52 @$.first_column = 1;
53 @$.last_line = 1;
54 @$.last_column = 1;
55 @$.source = 0;
56 }
57
58 %lex-param {void *scanner}
59 %parse-param {struct _mesa_glsl_parse_state *state}
60
61 %union {
62 int n;
63 float real;
64 const char *identifier;
65
66 struct ast_type_qualifier type_qualifier;
67
68 ast_node *node;
69 ast_type_specifier *type_specifier;
70 ast_fully_specified_type *fully_specified_type;
71 ast_function *function;
72 ast_parameter_declarator *parameter_declarator;
73 ast_function_definition *function_definition;
74 ast_compound_statement *compound_statement;
75 ast_expression *expression;
76 ast_declarator_list *declarator_list;
77 ast_struct_specifier *struct_specifier;
78 ast_declaration *declaration;
79 ast_switch_body *switch_body;
80 ast_case_label *case_label;
81 ast_case_label_list *case_label_list;
82 ast_case_statement *case_statement;
83 ast_case_statement_list *case_statement_list;
84 ast_interface_block *interface_block;
85
86 struct {
87 ast_node *cond;
88 ast_expression *rest;
89 } for_rest_statement;
90
91 struct {
92 ast_node *then_statement;
93 ast_node *else_statement;
94 } selection_rest_statement;
95 }
96
97 %token ATTRIBUTE CONST_TOK BOOL_TOK FLOAT_TOK INT_TOK UINT_TOK
98 %token BREAK CONTINUE DO ELSE FOR IF DISCARD RETURN SWITCH CASE DEFAULT
99 %token BVEC2 BVEC3 BVEC4 IVEC2 IVEC3 IVEC4 UVEC2 UVEC3 UVEC4 VEC2 VEC3 VEC4
100 %token CENTROID IN_TOK OUT_TOK INOUT_TOK UNIFORM VARYING
101 %token NOPERSPECTIVE FLAT SMOOTH
102 %token MAT2X2 MAT2X3 MAT2X4
103 %token MAT3X2 MAT3X3 MAT3X4
104 %token MAT4X2 MAT4X3 MAT4X4
105 %token SAMPLER1D SAMPLER2D SAMPLER3D SAMPLERCUBE SAMPLER1DSHADOW SAMPLER2DSHADOW
106 %token SAMPLERCUBESHADOW SAMPLER1DARRAY SAMPLER2DARRAY SAMPLER1DARRAYSHADOW
107 %token SAMPLER2DARRAYSHADOW SAMPLERCUBEARRAY SAMPLERCUBEARRAYSHADOW
108 %token ISAMPLER1D ISAMPLER2D ISAMPLER3D ISAMPLERCUBE
109 %token ISAMPLER1DARRAY ISAMPLER2DARRAY ISAMPLERCUBEARRAY
110 %token USAMPLER1D USAMPLER2D USAMPLER3D USAMPLERCUBE USAMPLER1DARRAY
111 %token USAMPLER2DARRAY USAMPLERCUBEARRAY
112 %token SAMPLER2DRECT ISAMPLER2DRECT USAMPLER2DRECT SAMPLER2DRECTSHADOW
113 %token SAMPLERBUFFER ISAMPLERBUFFER USAMPLERBUFFER
114 %token SAMPLER2DMS ISAMPLER2DMS USAMPLER2DMS
115 %token SAMPLER2DMSARRAY ISAMPLER2DMSARRAY USAMPLER2DMSARRAY
116 %token SAMPLEREXTERNALOES
117 %token STRUCT VOID_TOK WHILE
118 %token <identifier> IDENTIFIER TYPE_IDENTIFIER NEW_IDENTIFIER
119 %type <identifier> any_identifier
120 %type <interface_block> instance_name_opt
121 %token <real> FLOATCONSTANT
122 %token <n> INTCONSTANT UINTCONSTANT BOOLCONSTANT
123 %token <identifier> FIELD_SELECTION
124 %token LEFT_OP RIGHT_OP
125 %token INC_OP DEC_OP LE_OP GE_OP EQ_OP NE_OP
126 %token AND_OP OR_OP XOR_OP MUL_ASSIGN DIV_ASSIGN ADD_ASSIGN
127 %token MOD_ASSIGN LEFT_ASSIGN RIGHT_ASSIGN AND_ASSIGN XOR_ASSIGN OR_ASSIGN
128 %token SUB_ASSIGN
129 %token INVARIANT
130 %token LOWP MEDIUMP HIGHP SUPERP PRECISION
131
132 %token VERSION_TOK EXTENSION LINE COLON EOL INTERFACE OUTPUT
133 %token PRAGMA_DEBUG_ON PRAGMA_DEBUG_OFF
134 %token PRAGMA_OPTIMIZE_ON PRAGMA_OPTIMIZE_OFF
135 %token PRAGMA_INVARIANT_ALL
136 %token LAYOUT_TOK
137
138 /* Reserved words that are not actually used in the grammar.
139 */
140 %token ASM CLASS UNION ENUM TYPEDEF TEMPLATE THIS PACKED_TOK GOTO
141 %token INLINE_TOK NOINLINE VOLATILE PUBLIC_TOK STATIC EXTERN EXTERNAL
142 %token LONG_TOK SHORT_TOK DOUBLE_TOK HALF FIXED_TOK UNSIGNED INPUT_TOK OUPTUT
143 %token HVEC2 HVEC3 HVEC4 DVEC2 DVEC3 DVEC4 FVEC2 FVEC3 FVEC4
144 %token SAMPLER3DRECT
145 %token SIZEOF CAST NAMESPACE USING
146 %token COHERENT RESTRICT READONLY WRITEONLY RESOURCE ATOMIC_UINT PATCH SAMPLE
147 %token SUBROUTINE
148
149 %token ERROR_TOK
150
151 %token COMMON PARTITION ACTIVE FILTER
152 %token IMAGE1D IMAGE2D IMAGE3D IMAGECUBE IMAGE1DARRAY IMAGE2DARRAY
153 %token IIMAGE1D IIMAGE2D IIMAGE3D IIMAGECUBE IIMAGE1DARRAY IIMAGE2DARRAY
154 %token UIMAGE1D UIMAGE2D UIMAGE3D UIMAGECUBE UIMAGE1DARRAY UIMAGE2DARRAY
155 %token IMAGE1DSHADOW IMAGE2DSHADOW IMAGEBUFFER IIMAGEBUFFER UIMAGEBUFFER
156 %token IMAGE1DARRAYSHADOW IMAGE2DARRAYSHADOW
157 %token ROW_MAJOR
158
159 %type <identifier> variable_identifier
160 %type <node> statement
161 %type <node> statement_list
162 %type <node> simple_statement
163 %type <n> precision_qualifier
164 %type <type_qualifier> type_qualifier
165 %type <type_qualifier> storage_qualifier
166 %type <type_qualifier> interpolation_qualifier
167 %type <type_qualifier> layout_qualifier
168 %type <type_qualifier> layout_qualifier_id_list layout_qualifier_id
169 %type <type_qualifier> interface_block_layout_qualifier
170 %type <type_qualifier> interface_qualifier
171 %type <type_specifier> type_specifier
172 %type <type_specifier> type_specifier_no_prec
173 %type <type_specifier> type_specifier_nonarray
174 %type <identifier> basic_type_specifier_nonarray
175 %type <fully_specified_type> fully_specified_type
176 %type <function> function_prototype
177 %type <function> function_header
178 %type <function> function_header_with_parameters
179 %type <function> function_declarator
180 %type <parameter_declarator> parameter_declarator
181 %type <parameter_declarator> parameter_declaration
182 %type <type_qualifier> parameter_qualifier
183 %type <type_qualifier> parameter_type_qualifier
184 %type <type_specifier> parameter_type_specifier
185 %type <function_definition> function_definition
186 %type <compound_statement> compound_statement_no_new_scope
187 %type <compound_statement> compound_statement
188 %type <node> statement_no_new_scope
189 %type <node> expression_statement
190 %type <expression> expression
191 %type <expression> primary_expression
192 %type <expression> assignment_expression
193 %type <expression> conditional_expression
194 %type <expression> logical_or_expression
195 %type <expression> logical_xor_expression
196 %type <expression> logical_and_expression
197 %type <expression> inclusive_or_expression
198 %type <expression> exclusive_or_expression
199 %type <expression> and_expression
200 %type <expression> equality_expression
201 %type <expression> relational_expression
202 %type <expression> shift_expression
203 %type <expression> additive_expression
204 %type <expression> multiplicative_expression
205 %type <expression> unary_expression
206 %type <expression> constant_expression
207 %type <expression> integer_expression
208 %type <expression> postfix_expression
209 %type <expression> function_call_header_with_parameters
210 %type <expression> function_call_header_no_parameters
211 %type <expression> function_call_header
212 %type <expression> function_call_generic
213 %type <expression> function_call_or_method
214 %type <expression> function_call
215 %type <expression> method_call_generic
216 %type <expression> method_call_header_with_parameters
217 %type <expression> method_call_header_no_parameters
218 %type <expression> method_call_header
219 %type <n> assignment_operator
220 %type <n> unary_operator
221 %type <expression> function_identifier
222 %type <node> external_declaration
223 %type <declarator_list> init_declarator_list
224 %type <declarator_list> single_declaration
225 %type <expression> initializer
226 %type <expression> initializer_list
227 %type <node> declaration
228 %type <node> declaration_statement
229 %type <node> jump_statement
230 %type <node> interface_block
231 %type <interface_block> basic_interface_block
232 %type <struct_specifier> struct_specifier
233 %type <declarator_list> struct_declaration_list
234 %type <declarator_list> struct_declaration
235 %type <declaration> struct_declarator
236 %type <declaration> struct_declarator_list
237 %type <declarator_list> member_list
238 %type <declarator_list> member_declaration
239 %type <node> selection_statement
240 %type <selection_rest_statement> selection_rest_statement
241 %type <node> switch_statement
242 %type <switch_body> switch_body
243 %type <case_label_list> case_label_list
244 %type <case_label> case_label
245 %type <case_statement> case_statement
246 %type <case_statement_list> case_statement_list
247 %type <node> iteration_statement
248 %type <node> condition
249 %type <node> conditionopt
250 %type <node> for_init_statement
251 %type <for_rest_statement> for_rest_statement
252 %type <n> integer_constant
253
254 %right THEN ELSE
255 %%
256
257 translation_unit:
258 version_statement extension_statement_list
259 {
260 _mesa_glsl_initialize_types(state);
261 }
262 external_declaration_list
263 {
264 delete state->symbols;
265 state->symbols = new(ralloc_parent(state)) glsl_symbol_table;
266 _mesa_glsl_initialize_types(state);
267 }
268 ;
269
270 version_statement:
271 /* blank - no #version specified: defaults are already set */
272 | VERSION_TOK INTCONSTANT EOL
273 {
274 state->process_version_directive(&@2, $2, NULL);
275 if (state->error) {
276 YYERROR;
277 }
278 }
279 | VERSION_TOK INTCONSTANT any_identifier EOL
280 {
281 state->process_version_directive(&@2, $2, $3);
282 if (state->error) {
283 YYERROR;
284 }
285 }
286 ;
287
288 pragma_statement:
289 PRAGMA_DEBUG_ON EOL
290 | PRAGMA_DEBUG_OFF EOL
291 | PRAGMA_OPTIMIZE_ON EOL
292 | PRAGMA_OPTIMIZE_OFF EOL
293 | PRAGMA_INVARIANT_ALL EOL
294 {
295 if (!state->is_version(120, 100)) {
296 _mesa_glsl_warning(& @1, state,
297 "pragma `invariant(all)' not supported in %s "
298 "(GLSL ES 1.00 or GLSL 1.20 required).",
299 state->get_version_string());
300 } else {
301 state->all_invariant = true;
302 }
303 }
304 ;
305
306 extension_statement_list:
307
308 | extension_statement_list extension_statement
309 ;
310
311 any_identifier:
312 IDENTIFIER
313 | TYPE_IDENTIFIER
314 | NEW_IDENTIFIER
315 ;
316
317 extension_statement:
318 EXTENSION any_identifier COLON any_identifier EOL
319 {
320 if (!_mesa_glsl_process_extension($2, & @2, $4, & @4, state)) {
321 YYERROR;
322 }
323 }
324 ;
325
326 external_declaration_list:
327 external_declaration
328 {
329 /* FINISHME: The NULL test is required because pragmas are set to
330 * FINISHME: NULL. (See production rule for external_declaration.)
331 */
332 if ($1 != NULL)
333 state->translation_unit.push_tail(& $1->link);
334 }
335 | external_declaration_list external_declaration
336 {
337 /* FINISHME: The NULL test is required because pragmas are set to
338 * FINISHME: NULL. (See production rule for external_declaration.)
339 */
340 if ($2 != NULL)
341 state->translation_unit.push_tail(& $2->link);
342 }
343 ;
344
345 variable_identifier:
346 IDENTIFIER
347 | NEW_IDENTIFIER
348 ;
349
350 primary_expression:
351 variable_identifier
352 {
353 void *ctx = state;
354 $$ = new(ctx) ast_expression(ast_identifier, NULL, NULL, NULL);
355 $$->set_location(yylloc);
356 $$->primary_expression.identifier = $1;
357 }
358 | INTCONSTANT
359 {
360 void *ctx = state;
361 $$ = new(ctx) ast_expression(ast_int_constant, NULL, NULL, NULL);
362 $$->set_location(yylloc);
363 $$->primary_expression.int_constant = $1;
364 }
365 | UINTCONSTANT
366 {
367 void *ctx = state;
368 $$ = new(ctx) ast_expression(ast_uint_constant, NULL, NULL, NULL);
369 $$->set_location(yylloc);
370 $$->primary_expression.uint_constant = $1;
371 }
372 | FLOATCONSTANT
373 {
374 void *ctx = state;
375 $$ = new(ctx) ast_expression(ast_float_constant, NULL, NULL, NULL);
376 $$->set_location(yylloc);
377 $$->primary_expression.float_constant = $1;
378 }
379 | BOOLCONSTANT
380 {
381 void *ctx = state;
382 $$ = new(ctx) ast_expression(ast_bool_constant, NULL, NULL, NULL);
383 $$->set_location(yylloc);
384 $$->primary_expression.bool_constant = $1;
385 }
386 | '(' expression ')'
387 {
388 $$ = $2;
389 }
390 ;
391
392 postfix_expression:
393 primary_expression
394 | postfix_expression '[' integer_expression ']'
395 {
396 void *ctx = state;
397 $$ = new(ctx) ast_expression(ast_array_index, $1, $3, NULL);
398 $$->set_location(yylloc);
399 }
400 | function_call
401 {
402 $$ = $1;
403 }
404 | postfix_expression '.' any_identifier
405 {
406 void *ctx = state;
407 $$ = new(ctx) ast_expression(ast_field_selection, $1, NULL, NULL);
408 $$->set_location(yylloc);
409 $$->primary_expression.identifier = $3;
410 }
411 | postfix_expression INC_OP
412 {
413 void *ctx = state;
414 $$ = new(ctx) ast_expression(ast_post_inc, $1, NULL, NULL);
415 $$->set_location(yylloc);
416 }
417 | postfix_expression DEC_OP
418 {
419 void *ctx = state;
420 $$ = new(ctx) ast_expression(ast_post_dec, $1, NULL, NULL);
421 $$->set_location(yylloc);
422 }
423 ;
424
425 integer_expression:
426 expression
427 ;
428
429 function_call:
430 function_call_or_method
431 ;
432
433 function_call_or_method:
434 function_call_generic
435 | postfix_expression '.' method_call_generic
436 {
437 void *ctx = state;
438 $$ = new(ctx) ast_expression(ast_field_selection, $1, $3, NULL);
439 $$->set_location(yylloc);
440 }
441 ;
442
443 function_call_generic:
444 function_call_header_with_parameters ')'
445 | function_call_header_no_parameters ')'
446 ;
447
448 function_call_header_no_parameters:
449 function_call_header VOID_TOK
450 | function_call_header
451 ;
452
453 function_call_header_with_parameters:
454 function_call_header assignment_expression
455 {
456 $$ = $1;
457 $$->set_location(yylloc);
458 $$->expressions.push_tail(& $2->link);
459 }
460 | function_call_header_with_parameters ',' assignment_expression
461 {
462 $$ = $1;
463 $$->set_location(yylloc);
464 $$->expressions.push_tail(& $3->link);
465 }
466 ;
467
468 // Grammar Note: Constructors look like functions, but lexical
469 // analysis recognized most of them as keywords. They are now
470 // recognized through "type_specifier".
471 function_call_header:
472 function_identifier '('
473 ;
474
475 function_identifier:
476 type_specifier
477 {
478 void *ctx = state;
479 $$ = new(ctx) ast_function_expression($1);
480 $$->set_location(yylloc);
481 }
482 | variable_identifier
483 {
484 void *ctx = state;
485 ast_expression *callee = new(ctx) ast_expression($1);
486 $$ = new(ctx) ast_function_expression(callee);
487 $$->set_location(yylloc);
488 }
489 | FIELD_SELECTION
490 {
491 void *ctx = state;
492 ast_expression *callee = new(ctx) ast_expression($1);
493 $$ = new(ctx) ast_function_expression(callee);
494 $$->set_location(yylloc);
495 }
496 ;
497
498 method_call_generic:
499 method_call_header_with_parameters ')'
500 | method_call_header_no_parameters ')'
501 ;
502
503 method_call_header_no_parameters:
504 method_call_header VOID_TOK
505 | method_call_header
506 ;
507
508 method_call_header_with_parameters:
509 method_call_header assignment_expression
510 {
511 $$ = $1;
512 $$->set_location(yylloc);
513 $$->expressions.push_tail(& $2->link);
514 }
515 | method_call_header_with_parameters ',' assignment_expression
516 {
517 $$ = $1;
518 $$->set_location(yylloc);
519 $$->expressions.push_tail(& $3->link);
520 }
521 ;
522
523 // Grammar Note: Constructors look like methods, but lexical
524 // analysis recognized most of them as keywords. They are now
525 // recognized through "type_specifier".
526 method_call_header:
527 variable_identifier '('
528 {
529 void *ctx = state;
530 ast_expression *callee = new(ctx) ast_expression($1);
531 $$ = new(ctx) ast_function_expression(callee);
532 $$->set_location(yylloc);
533 }
534 ;
535
536 // Grammar Note: No traditional style type casts.
537 unary_expression:
538 postfix_expression
539 | INC_OP unary_expression
540 {
541 void *ctx = state;
542 $$ = new(ctx) ast_expression(ast_pre_inc, $2, NULL, NULL);
543 $$->set_location(yylloc);
544 }
545 | DEC_OP unary_expression
546 {
547 void *ctx = state;
548 $$ = new(ctx) ast_expression(ast_pre_dec, $2, NULL, NULL);
549 $$->set_location(yylloc);
550 }
551 | unary_operator unary_expression
552 {
553 void *ctx = state;
554 $$ = new(ctx) ast_expression($1, $2, NULL, NULL);
555 $$->set_location(yylloc);
556 }
557 ;
558
559 // Grammar Note: No '*' or '&' unary ops. Pointers are not supported.
560 unary_operator:
561 '+' { $$ = ast_plus; }
562 | '-' { $$ = ast_neg; }
563 | '!' { $$ = ast_logic_not; }
564 | '~' { $$ = ast_bit_not; }
565 ;
566
567 multiplicative_expression:
568 unary_expression
569 | multiplicative_expression '*' unary_expression
570 {
571 void *ctx = state;
572 $$ = new(ctx) ast_expression_bin(ast_mul, $1, $3);
573 $$->set_location(yylloc);
574 }
575 | multiplicative_expression '/' unary_expression
576 {
577 void *ctx = state;
578 $$ = new(ctx) ast_expression_bin(ast_div, $1, $3);
579 $$->set_location(yylloc);
580 }
581 | multiplicative_expression '%' unary_expression
582 {
583 void *ctx = state;
584 $$ = new(ctx) ast_expression_bin(ast_mod, $1, $3);
585 $$->set_location(yylloc);
586 }
587 ;
588
589 additive_expression:
590 multiplicative_expression
591 | additive_expression '+' multiplicative_expression
592 {
593 void *ctx = state;
594 $$ = new(ctx) ast_expression_bin(ast_add, $1, $3);
595 $$->set_location(yylloc);
596 }
597 | additive_expression '-' multiplicative_expression
598 {
599 void *ctx = state;
600 $$ = new(ctx) ast_expression_bin(ast_sub, $1, $3);
601 $$->set_location(yylloc);
602 }
603 ;
604
605 shift_expression:
606 additive_expression
607 | shift_expression LEFT_OP additive_expression
608 {
609 void *ctx = state;
610 $$ = new(ctx) ast_expression_bin(ast_lshift, $1, $3);
611 $$->set_location(yylloc);
612 }
613 | shift_expression RIGHT_OP additive_expression
614 {
615 void *ctx = state;
616 $$ = new(ctx) ast_expression_bin(ast_rshift, $1, $3);
617 $$->set_location(yylloc);
618 }
619 ;
620
621 relational_expression:
622 shift_expression
623 | relational_expression '<' shift_expression
624 {
625 void *ctx = state;
626 $$ = new(ctx) ast_expression_bin(ast_less, $1, $3);
627 $$->set_location(yylloc);
628 }
629 | relational_expression '>' shift_expression
630 {
631 void *ctx = state;
632 $$ = new(ctx) ast_expression_bin(ast_greater, $1, $3);
633 $$->set_location(yylloc);
634 }
635 | relational_expression LE_OP shift_expression
636 {
637 void *ctx = state;
638 $$ = new(ctx) ast_expression_bin(ast_lequal, $1, $3);
639 $$->set_location(yylloc);
640 }
641 | relational_expression GE_OP shift_expression
642 {
643 void *ctx = state;
644 $$ = new(ctx) ast_expression_bin(ast_gequal, $1, $3);
645 $$->set_location(yylloc);
646 }
647 ;
648
649 equality_expression:
650 relational_expression
651 | equality_expression EQ_OP relational_expression
652 {
653 void *ctx = state;
654 $$ = new(ctx) ast_expression_bin(ast_equal, $1, $3);
655 $$->set_location(yylloc);
656 }
657 | equality_expression NE_OP relational_expression
658 {
659 void *ctx = state;
660 $$ = new(ctx) ast_expression_bin(ast_nequal, $1, $3);
661 $$->set_location(yylloc);
662 }
663 ;
664
665 and_expression:
666 equality_expression
667 | and_expression '&' equality_expression
668 {
669 void *ctx = state;
670 $$ = new(ctx) ast_expression_bin(ast_bit_and, $1, $3);
671 $$->set_location(yylloc);
672 }
673 ;
674
675 exclusive_or_expression:
676 and_expression
677 | exclusive_or_expression '^' and_expression
678 {
679 void *ctx = state;
680 $$ = new(ctx) ast_expression_bin(ast_bit_xor, $1, $3);
681 $$->set_location(yylloc);
682 }
683 ;
684
685 inclusive_or_expression:
686 exclusive_or_expression
687 | inclusive_or_expression '|' exclusive_or_expression
688 {
689 void *ctx = state;
690 $$ = new(ctx) ast_expression_bin(ast_bit_or, $1, $3);
691 $$->set_location(yylloc);
692 }
693 ;
694
695 logical_and_expression:
696 inclusive_or_expression
697 | logical_and_expression AND_OP inclusive_or_expression
698 {
699 void *ctx = state;
700 $$ = new(ctx) ast_expression_bin(ast_logic_and, $1, $3);
701 $$->set_location(yylloc);
702 }
703 ;
704
705 logical_xor_expression:
706 logical_and_expression
707 | logical_xor_expression XOR_OP logical_and_expression
708 {
709 void *ctx = state;
710 $$ = new(ctx) ast_expression_bin(ast_logic_xor, $1, $3);
711 $$->set_location(yylloc);
712 }
713 ;
714
715 logical_or_expression:
716 logical_xor_expression
717 | logical_or_expression OR_OP logical_xor_expression
718 {
719 void *ctx = state;
720 $$ = new(ctx) ast_expression_bin(ast_logic_or, $1, $3);
721 $$->set_location(yylloc);
722 }
723 ;
724
725 conditional_expression:
726 logical_or_expression
727 | logical_or_expression '?' expression ':' assignment_expression
728 {
729 void *ctx = state;
730 $$ = new(ctx) ast_expression(ast_conditional, $1, $3, $5);
731 $$->set_location(yylloc);
732 }
733 ;
734
735 assignment_expression:
736 conditional_expression
737 | unary_expression assignment_operator assignment_expression
738 {
739 void *ctx = state;
740 $$ = new(ctx) ast_expression($2, $1, $3, NULL);
741 $$->set_location(yylloc);
742 }
743 ;
744
745 assignment_operator:
746 '=' { $$ = ast_assign; }
747 | MUL_ASSIGN { $$ = ast_mul_assign; }
748 | DIV_ASSIGN { $$ = ast_div_assign; }
749 | MOD_ASSIGN { $$ = ast_mod_assign; }
750 | ADD_ASSIGN { $$ = ast_add_assign; }
751 | SUB_ASSIGN { $$ = ast_sub_assign; }
752 | LEFT_ASSIGN { $$ = ast_ls_assign; }
753 | RIGHT_ASSIGN { $$ = ast_rs_assign; }
754 | AND_ASSIGN { $$ = ast_and_assign; }
755 | XOR_ASSIGN { $$ = ast_xor_assign; }
756 | OR_ASSIGN { $$ = ast_or_assign; }
757 ;
758
759 expression:
760 assignment_expression
761 {
762 $$ = $1;
763 }
764 | expression ',' assignment_expression
765 {
766 void *ctx = state;
767 if ($1->oper != ast_sequence) {
768 $$ = new(ctx) ast_expression(ast_sequence, NULL, NULL, NULL);
769 $$->set_location(yylloc);
770 $$->expressions.push_tail(& $1->link);
771 } else {
772 $$ = $1;
773 }
774
775 $$->expressions.push_tail(& $3->link);
776 }
777 ;
778
779 constant_expression:
780 conditional_expression
781 ;
782
783 declaration:
784 function_prototype ';'
785 {
786 state->symbols->pop_scope();
787 $$ = $1;
788 }
789 | init_declarator_list ';'
790 {
791 $$ = $1;
792 }
793 | PRECISION precision_qualifier type_specifier_no_prec ';'
794 {
795 $3->precision = $2;
796 $3->is_precision_statement = true;
797 $$ = $3;
798 }
799 | interface_block
800 {
801 $$ = $1;
802 }
803 ;
804
805 function_prototype:
806 function_declarator ')'
807 ;
808
809 function_declarator:
810 function_header
811 | function_header_with_parameters
812 ;
813
814 function_header_with_parameters:
815 function_header parameter_declaration
816 {
817 $$ = $1;
818 $$->parameters.push_tail(& $2->link);
819 }
820 | function_header_with_parameters ',' parameter_declaration
821 {
822 $$ = $1;
823 $$->parameters.push_tail(& $3->link);
824 }
825 ;
826
827 function_header:
828 fully_specified_type variable_identifier '('
829 {
830 void *ctx = state;
831 $$ = new(ctx) ast_function();
832 $$->set_location(yylloc);
833 $$->return_type = $1;
834 $$->identifier = $2;
835
836 state->symbols->add_function(new(state) ir_function($2));
837 state->symbols->push_scope();
838 }
839 ;
840
841 parameter_declarator:
842 type_specifier any_identifier
843 {
844 void *ctx = state;
845 $$ = new(ctx) ast_parameter_declarator();
846 $$->set_location(yylloc);
847 $$->type = new(ctx) ast_fully_specified_type();
848 $$->type->set_location(yylloc);
849 $$->type->specifier = $1;
850 $$->identifier = $2;
851 }
852 | type_specifier any_identifier '[' constant_expression ']'
853 {
854 void *ctx = state;
855 $$ = new(ctx) ast_parameter_declarator();
856 $$->set_location(yylloc);
857 $$->type = new(ctx) ast_fully_specified_type();
858 $$->type->set_location(yylloc);
859 $$->type->specifier = $1;
860 $$->identifier = $2;
861 $$->is_array = true;
862 $$->array_size = $4;
863 }
864 ;
865
866 parameter_declaration:
867 parameter_type_qualifier parameter_qualifier parameter_declarator
868 {
869 $1.flags.i |= $2.flags.i;
870
871 $$ = $3;
872 $$->type->qualifier = $1;
873 }
874 | parameter_qualifier parameter_declarator
875 {
876 $$ = $2;
877 $$->type->qualifier = $1;
878 }
879 | parameter_type_qualifier parameter_qualifier parameter_type_specifier
880 {
881 void *ctx = state;
882 $1.flags.i |= $2.flags.i;
883
884 $$ = new(ctx) ast_parameter_declarator();
885 $$->set_location(yylloc);
886 $$->type = new(ctx) ast_fully_specified_type();
887 $$->type->qualifier = $1;
888 $$->type->specifier = $3;
889 }
890 | parameter_qualifier parameter_type_specifier
891 {
892 void *ctx = state;
893 $$ = new(ctx) ast_parameter_declarator();
894 $$->set_location(yylloc);
895 $$->type = new(ctx) ast_fully_specified_type();
896 $$->type->qualifier = $1;
897 $$->type->specifier = $2;
898 }
899 ;
900
901 parameter_qualifier:
902 /* empty */
903 {
904 memset(& $$, 0, sizeof($$));
905 }
906 | IN_TOK
907 {
908 memset(& $$, 0, sizeof($$));
909 $$.flags.q.in = 1;
910 }
911 | OUT_TOK
912 {
913 memset(& $$, 0, sizeof($$));
914 $$.flags.q.out = 1;
915 }
916 | INOUT_TOK
917 {
918 memset(& $$, 0, sizeof($$));
919 $$.flags.q.in = 1;
920 $$.flags.q.out = 1;
921 }
922 ;
923
924 parameter_type_specifier:
925 type_specifier
926 ;
927
928 init_declarator_list:
929 single_declaration
930 | init_declarator_list ',' any_identifier
931 {
932 void *ctx = state;
933 ast_declaration *decl = new(ctx) ast_declaration($3, false, NULL, NULL);
934 decl->set_location(yylloc);
935
936 $$ = $1;
937 $$->declarations.push_tail(&decl->link);
938 state->symbols->add_variable(new(state) ir_variable(NULL, $3, ir_var_auto));
939 }
940 | init_declarator_list ',' any_identifier '[' ']'
941 {
942 void *ctx = state;
943 ast_declaration *decl = new(ctx) ast_declaration($3, true, NULL, NULL);
944 decl->set_location(yylloc);
945
946 $$ = $1;
947 $$->declarations.push_tail(&decl->link);
948 state->symbols->add_variable(new(state) ir_variable(NULL, $3, ir_var_auto));
949 }
950 | init_declarator_list ',' any_identifier '[' constant_expression ']'
951 {
952 void *ctx = state;
953 ast_declaration *decl = new(ctx) ast_declaration($3, true, $5, NULL);
954 decl->set_location(yylloc);
955
956 $$ = $1;
957 $$->declarations.push_tail(&decl->link);
958 state->symbols->add_variable(new(state) ir_variable(NULL, $3, ir_var_auto));
959 }
960 | init_declarator_list ',' any_identifier '[' ']' '=' initializer
961 {
962 void *ctx = state;
963 ast_declaration *decl = new(ctx) ast_declaration($3, true, NULL, $7);
964 decl->set_location(yylloc);
965
966 $$ = $1;
967 $$->declarations.push_tail(&decl->link);
968 state->symbols->add_variable(new(state) ir_variable(NULL, $3, ir_var_auto));
969 if ($7->oper == ast_aggregate) {
970 ast_aggregate_initializer *ai = (ast_aggregate_initializer *)$7;
971 ast_type_specifier *type = new(ctx) ast_type_specifier($1->type->specifier, true, NULL);
972 _mesa_ast_set_aggregate_type(type, ai, state);
973 }
974 }
975 | init_declarator_list ',' any_identifier '[' constant_expression ']' '=' initializer
976 {
977 void *ctx = state;
978 ast_declaration *decl = new(ctx) ast_declaration($3, true, $5, $8);
979 decl->set_location(yylloc);
980
981 $$ = $1;
982 $$->declarations.push_tail(&decl->link);
983 state->symbols->add_variable(new(state) ir_variable(NULL, $3, ir_var_auto));
984 if ($8->oper == ast_aggregate) {
985 ast_aggregate_initializer *ai = (ast_aggregate_initializer *)$8;
986 ast_type_specifier *type = new(ctx) ast_type_specifier($1->type->specifier, true, $5);
987 _mesa_ast_set_aggregate_type(type, ai, state);
988 }
989 }
990 | init_declarator_list ',' any_identifier '=' initializer
991 {
992 void *ctx = state;
993 ast_declaration *decl = new(ctx) ast_declaration($3, false, NULL, $5);
994 decl->set_location(yylloc);
995
996 $$ = $1;
997 $$->declarations.push_tail(&decl->link);
998 state->symbols->add_variable(new(state) ir_variable(NULL, $3, ir_var_auto));
999 if ($5->oper == ast_aggregate) {
1000 ast_aggregate_initializer *ai = (ast_aggregate_initializer *)$5;
1001 _mesa_ast_set_aggregate_type($1->type->specifier, ai, state);
1002 }
1003 }
1004 ;
1005
1006 // Grammar Note: No 'enum', or 'typedef'.
1007 single_declaration:
1008 fully_specified_type
1009 {
1010 void *ctx = state;
1011 /* Empty declaration list is valid. */
1012 $$ = new(ctx) ast_declarator_list($1);
1013 $$->set_location(yylloc);
1014 }
1015 | fully_specified_type any_identifier
1016 {
1017 void *ctx = state;
1018 ast_declaration *decl = new(ctx) ast_declaration($2, false, NULL, NULL);
1019
1020 $$ = new(ctx) ast_declarator_list($1);
1021 $$->set_location(yylloc);
1022 $$->declarations.push_tail(&decl->link);
1023 }
1024 | fully_specified_type any_identifier '[' ']'
1025 {
1026 void *ctx = state;
1027 ast_declaration *decl = new(ctx) ast_declaration($2, true, NULL, NULL);
1028
1029 $$ = new(ctx) ast_declarator_list($1);
1030 $$->set_location(yylloc);
1031 $$->declarations.push_tail(&decl->link);
1032 }
1033 | fully_specified_type any_identifier '[' constant_expression ']'
1034 {
1035 void *ctx = state;
1036 ast_declaration *decl = new(ctx) ast_declaration($2, true, $4, NULL);
1037
1038 $$ = new(ctx) ast_declarator_list($1);
1039 $$->set_location(yylloc);
1040 $$->declarations.push_tail(&decl->link);
1041 }
1042 | fully_specified_type any_identifier '[' ']' '=' initializer
1043 {
1044 void *ctx = state;
1045 ast_declaration *decl = new(ctx) ast_declaration($2, true, NULL, $6);
1046
1047 $$ = new(ctx) ast_declarator_list($1);
1048 $$->set_location(yylloc);
1049 $$->declarations.push_tail(&decl->link);
1050 if ($6->oper == ast_aggregate) {
1051 ast_aggregate_initializer *ai = (ast_aggregate_initializer *)$6;
1052 ast_type_specifier *type = new(ctx) ast_type_specifier($1->specifier, true, NULL);
1053 _mesa_ast_set_aggregate_type(type, ai, state);
1054 }
1055 }
1056 | fully_specified_type any_identifier '[' constant_expression ']' '=' initializer
1057 {
1058 void *ctx = state;
1059 ast_declaration *decl = new(ctx) ast_declaration($2, true, $4, $7);
1060
1061 $$ = new(ctx) ast_declarator_list($1);
1062 $$->set_location(yylloc);
1063 $$->declarations.push_tail(&decl->link);
1064 if ($7->oper == ast_aggregate) {
1065 ast_aggregate_initializer *ai = (ast_aggregate_initializer *)$7;
1066 ast_type_specifier *type = new(ctx) ast_type_specifier($1->specifier, true, $4);
1067 _mesa_ast_set_aggregate_type(type, ai, state);
1068 }
1069 }
1070 | fully_specified_type any_identifier '=' initializer
1071 {
1072 void *ctx = state;
1073 ast_declaration *decl = new(ctx) ast_declaration($2, false, NULL, $4);
1074
1075 $$ = new(ctx) ast_declarator_list($1);
1076 $$->set_location(yylloc);
1077 $$->declarations.push_tail(&decl->link);
1078 if ($4->oper == ast_aggregate) {
1079 _mesa_ast_set_aggregate_type($1->specifier, $4, state);
1080 }
1081 }
1082 | INVARIANT variable_identifier // Vertex only.
1083 {
1084 void *ctx = state;
1085 ast_declaration *decl = new(ctx) ast_declaration($2, false, NULL, NULL);
1086
1087 $$ = new(ctx) ast_declarator_list(NULL);
1088 $$->set_location(yylloc);
1089 $$->invariant = true;
1090
1091 $$->declarations.push_tail(&decl->link);
1092 }
1093 ;
1094
1095 fully_specified_type:
1096 type_specifier
1097 {
1098 void *ctx = state;
1099 $$ = new(ctx) ast_fully_specified_type();
1100 $$->set_location(yylloc);
1101 $$->specifier = $1;
1102 }
1103 | type_qualifier type_specifier
1104 {
1105 void *ctx = state;
1106 $$ = new(ctx) ast_fully_specified_type();
1107 $$->set_location(yylloc);
1108 $$->qualifier = $1;
1109 $$->specifier = $2;
1110 }
1111 ;
1112
1113 layout_qualifier:
1114 LAYOUT_TOK '(' layout_qualifier_id_list ')'
1115 {
1116 $$ = $3;
1117 }
1118 ;
1119
1120 layout_qualifier_id_list:
1121 layout_qualifier_id
1122 | layout_qualifier_id_list ',' layout_qualifier_id
1123 {
1124 $$ = $1;
1125 if (!$$.merge_qualifier(& @3, state, $3)) {
1126 YYERROR;
1127 }
1128 }
1129 ;
1130
1131 integer_constant:
1132 INTCONSTANT { $$ = $1; }
1133 | UINTCONSTANT { $$ = $1; }
1134 ;
1135
1136 layout_qualifier_id:
1137 any_identifier
1138 {
1139 memset(& $$, 0, sizeof($$));
1140
1141 /* Layout qualifiers for ARB_fragment_coord_conventions. */
1142 if (!$$.flags.i && state->ARB_fragment_coord_conventions_enable) {
1143 if (strcmp($1, "origin_upper_left") == 0) {
1144 $$.flags.q.origin_upper_left = 1;
1145 } else if (strcmp($1, "pixel_center_integer") == 0) {
1146 $$.flags.q.pixel_center_integer = 1;
1147 }
1148
1149 if ($$.flags.i && state->ARB_fragment_coord_conventions_warn) {
1150 _mesa_glsl_warning(& @1, state,
1151 "GL_ARB_fragment_coord_conventions layout "
1152 "identifier `%s' used\n", $1);
1153 }
1154 }
1155
1156 /* Layout qualifiers for AMD/ARB_conservative_depth. */
1157 if (!$$.flags.i &&
1158 (state->AMD_conservative_depth_enable ||
1159 state->ARB_conservative_depth_enable)) {
1160 if (strcmp($1, "depth_any") == 0) {
1161 $$.flags.q.depth_any = 1;
1162 } else if (strcmp($1, "depth_greater") == 0) {
1163 $$.flags.q.depth_greater = 1;
1164 } else if (strcmp($1, "depth_less") == 0) {
1165 $$.flags.q.depth_less = 1;
1166 } else if (strcmp($1, "depth_unchanged") == 0) {
1167 $$.flags.q.depth_unchanged = 1;
1168 }
1169
1170 if ($$.flags.i && state->AMD_conservative_depth_warn) {
1171 _mesa_glsl_warning(& @1, state,
1172 "GL_AMD_conservative_depth "
1173 "layout qualifier `%s' is used\n", $1);
1174 }
1175 if ($$.flags.i && state->ARB_conservative_depth_warn) {
1176 _mesa_glsl_warning(& @1, state,
1177 "GL_ARB_conservative_depth "
1178 "layout qualifier `%s' is used\n", $1);
1179 }
1180 }
1181
1182 /* See also interface_block_layout_qualifier. */
1183 if (!$$.flags.i && state->ARB_uniform_buffer_object_enable) {
1184 if (strcmp($1, "std140") == 0) {
1185 $$.flags.q.std140 = 1;
1186 } else if (strcmp($1, "shared") == 0) {
1187 $$.flags.q.shared = 1;
1188 } else if (strcmp($1, "column_major") == 0) {
1189 $$.flags.q.column_major = 1;
1190 /* "row_major" is a reserved word in GLSL 1.30+. Its token is parsed
1191 * below in the interface_block_layout_qualifier rule.
1192 *
1193 * It is not a reserved word in GLSL ES 3.00, so it's handled here as
1194 * an identifier.
1195 */
1196 } else if (strcmp($1, "row_major") == 0) {
1197 $$.flags.q.row_major = 1;
1198 }
1199
1200 if ($$.flags.i && state->ARB_uniform_buffer_object_warn) {
1201 _mesa_glsl_warning(& @1, state,
1202 "#version 140 / GL_ARB_uniform_buffer_object "
1203 "layout qualifier `%s' is used\n", $1);
1204 }
1205 }
1206
1207 if (!$$.flags.i) {
1208 _mesa_glsl_error(& @1, state, "unrecognized layout identifier "
1209 "`%s'\n", $1);
1210 YYERROR;
1211 }
1212 }
1213 | any_identifier '=' integer_constant
1214 {
1215 memset(& $$, 0, sizeof($$));
1216
1217 if (state->ARB_explicit_attrib_location_enable) {
1218 if (strcmp("location", $1) == 0) {
1219 $$.flags.q.explicit_location = 1;
1220
1221 if ($3 >= 0) {
1222 $$.location = $3;
1223 } else {
1224 _mesa_glsl_error(& @3, state,
1225 "invalid location %d specified\n", $3);
1226 YYERROR;
1227 }
1228 }
1229
1230 if (strcmp("index", $1) == 0) {
1231 $$.flags.q.explicit_index = 1;
1232
1233 if ($3 >= 0) {
1234 $$.index = $3;
1235 } else {
1236 _mesa_glsl_error(& @3, state,
1237 "invalid index %d specified\n", $3);
1238 YYERROR;
1239 }
1240 }
1241 }
1242
1243 /* If the identifier didn't match any known layout identifiers,
1244 * emit an error.
1245 */
1246 if (!$$.flags.i) {
1247 _mesa_glsl_error(& @1, state, "unrecognized layout identifier "
1248 "`%s'\n", $1);
1249 YYERROR;
1250 } else if (state->ARB_explicit_attrib_location_warn) {
1251 _mesa_glsl_warning(& @1, state,
1252 "GL_ARB_explicit_attrib_location layout "
1253 "identifier `%s' used\n", $1);
1254 }
1255 }
1256 | interface_block_layout_qualifier
1257 {
1258 $$ = $1;
1259 /* Layout qualifiers for ARB_uniform_buffer_object. */
1260 if ($$.flags.q.uniform && !state->ARB_uniform_buffer_object_enable) {
1261 _mesa_glsl_error(& @1, state,
1262 "#version 140 / GL_ARB_uniform_buffer_object "
1263 "layout qualifier `%s' is used\n", $1);
1264 } else if ($$.flags.q.uniform && state->ARB_uniform_buffer_object_warn) {
1265 _mesa_glsl_warning(& @1, state,
1266 "#version 140 / GL_ARB_uniform_buffer_object "
1267 "layout qualifier `%s' is used\n", $1);
1268 }
1269 }
1270 ;
1271
1272 /* This is a separate language rule because we parse these as tokens
1273 * (due to them being reserved keywords) instead of identifiers like
1274 * most qualifiers. See the any_identifier path of
1275 * layout_qualifier_id for the others.
1276 */
1277 interface_block_layout_qualifier:
1278 ROW_MAJOR
1279 {
1280 memset(& $$, 0, sizeof($$));
1281 $$.flags.q.row_major = 1;
1282 }
1283 | PACKED_TOK
1284 {
1285 memset(& $$, 0, sizeof($$));
1286 $$.flags.q.packed = 1;
1287 }
1288 ;
1289
1290 interpolation_qualifier:
1291 SMOOTH
1292 {
1293 memset(& $$, 0, sizeof($$));
1294 $$.flags.q.smooth = 1;
1295 }
1296 | FLAT
1297 {
1298 memset(& $$, 0, sizeof($$));
1299 $$.flags.q.flat = 1;
1300 }
1301 | NOPERSPECTIVE
1302 {
1303 memset(& $$, 0, sizeof($$));
1304 $$.flags.q.noperspective = 1;
1305 }
1306 ;
1307
1308 parameter_type_qualifier:
1309 CONST_TOK
1310 {
1311 memset(& $$, 0, sizeof($$));
1312 $$.flags.q.constant = 1;
1313 }
1314 ;
1315
1316 type_qualifier:
1317 /* Single qualifiers */
1318 INVARIANT
1319 {
1320 memset(& $$, 0, sizeof($$));
1321 $$.flags.q.invariant = 1;
1322 }
1323 | storage_qualifier
1324 | interpolation_qualifier
1325 | layout_qualifier
1326
1327 /* Multiple qualifiers:
1328 * In GLSL 4.20, these can be specified in any order. In earlier versions,
1329 * they appear in this order (see GLSL 1.50 section 4.7 & comments below):
1330 *
1331 * invariant interpolation storage precision ...or...
1332 * layout storage precision
1333 *
1334 * Each qualifier's rule ensures that the accumulated qualifiers on the right
1335 * side don't contain any that must appear on the left hand side.
1336 * For example, when processing a storage qualifier, we check that there are
1337 * no interpolation, layout, or invariant qualifiers to the right.
1338 */
1339 | INVARIANT type_qualifier
1340 {
1341 if ($2.flags.q.invariant)
1342 _mesa_glsl_error(&@1, state, "Duplicate \"invariant\" qualifier.\n");
1343
1344 if ($2.has_layout()) {
1345 _mesa_glsl_error(&@1, state,
1346 "\"invariant\" cannot be used with layout(...).\n");
1347 }
1348
1349 $$ = $2;
1350 $$.flags.q.invariant = 1;
1351 }
1352 | interpolation_qualifier type_qualifier
1353 {
1354 /* Section 4.3 of the GLSL 1.40 specification states:
1355 * "...qualified with one of these interpolation qualifiers"
1356 *
1357 * GLSL 1.30 claims to allow "one or more", but insists that:
1358 * "These interpolation qualifiers may only precede the qualifiers in,
1359 * centroid in, out, or centroid out in a declaration."
1360 *
1361 * ...which means that e.g. smooth can't precede smooth, so there can be
1362 * only one after all, and the 1.40 text is a clarification, not a change.
1363 */
1364 if ($2.has_interpolation())
1365 _mesa_glsl_error(&@1, state, "Duplicate interpolation qualifier.\n");
1366
1367 if ($2.has_layout()) {
1368 _mesa_glsl_error(&@1, state, "Interpolation qualifiers cannot be used "
1369 "with layout(...).\n");
1370 }
1371
1372 if (!state->ARB_shading_language_420pack_enable && $2.flags.q.invariant) {
1373 _mesa_glsl_error(&@1, state, "Interpolation qualifiers must come "
1374 "after \"invariant\".\n");
1375 }
1376
1377 $$ = $1;
1378 $$.flags.i |= $2.flags.i;
1379 }
1380 | layout_qualifier type_qualifier
1381 {
1382 /* The GLSL 1.50 grammar indicates that a layout(...) declaration can be
1383 * used standalone or immediately before a storage qualifier. It cannot
1384 * be used with interpolation qualifiers or invariant. There does not
1385 * appear to be any text indicating that it must come before the storage
1386 * qualifier, but always seems to in examples.
1387 */
1388 if ($2.has_layout())
1389 _mesa_glsl_error(&@1, state, "Duplicate layout(...) qualifiers.\n");
1390
1391 if ($2.flags.q.invariant)
1392 _mesa_glsl_error(&@1, state, "layout(...) cannot be used with "
1393 "the \"invariant\" qualifier\n");
1394
1395 if ($2.has_interpolation()) {
1396 _mesa_glsl_error(&@1, state, "layout(...) cannot be used with "
1397 "interpolation qualifiers.\n");
1398 }
1399
1400 $$ = $1;
1401 $$.flags.i |= $2.flags.i;
1402 }
1403 | storage_qualifier type_qualifier
1404 {
1405 /* Section 4.3 of the GLSL 1.20 specification states:
1406 * "Variable declarations may have a storage qualifier specified..."
1407 * 1.30 clarifies this to "may have one storage qualifier".
1408 */
1409 if ($2.has_storage())
1410 _mesa_glsl_error(&@1, state, "Duplicate storage qualifier.\n");
1411
1412 if (!state->ARB_shading_language_420pack_enable &&
1413 ($2.flags.q.invariant || $2.has_interpolation() || $2.has_layout())) {
1414 _mesa_glsl_error(&@1, state, "Storage qualifiers must come after "
1415 "invariant, interpolation, and layout qualifiers.\n");
1416 }
1417
1418 $$ = $1;
1419 $$.flags.i |= $2.flags.i;
1420 }
1421 ;
1422
1423 storage_qualifier:
1424 CONST_TOK
1425 {
1426 memset(& $$, 0, sizeof($$));
1427 $$.flags.q.constant = 1;
1428 }
1429 | ATTRIBUTE
1430 {
1431 memset(& $$, 0, sizeof($$));
1432 $$.flags.q.attribute = 1;
1433 }
1434 | VARYING
1435 {
1436 memset(& $$, 0, sizeof($$));
1437 $$.flags.q.varying = 1;
1438 }
1439 | CENTROID VARYING
1440 {
1441 memset(& $$, 0, sizeof($$));
1442 $$.flags.q.centroid = 1;
1443 $$.flags.q.varying = 1;
1444 }
1445 | IN_TOK
1446 {
1447 memset(& $$, 0, sizeof($$));
1448 $$.flags.q.in = 1;
1449 }
1450 | OUT_TOK
1451 {
1452 memset(& $$, 0, sizeof($$));
1453 $$.flags.q.out = 1;
1454 }
1455 | CENTROID IN_TOK
1456 {
1457 memset(& $$, 0, sizeof($$));
1458 $$.flags.q.centroid = 1; $$.flags.q.in = 1;
1459 }
1460 | CENTROID OUT_TOK
1461 {
1462 memset(& $$, 0, sizeof($$));
1463 $$.flags.q.centroid = 1; $$.flags.q.out = 1;
1464 }
1465 | UNIFORM
1466 {
1467 memset(& $$, 0, sizeof($$));
1468 $$.flags.q.uniform = 1;
1469 }
1470 ;
1471
1472 type_specifier:
1473 type_specifier_no_prec
1474 {
1475 $$ = $1;
1476 }
1477 | precision_qualifier type_specifier_no_prec
1478 {
1479 $$ = $2;
1480 $$->precision = $1;
1481 }
1482 ;
1483
1484 type_specifier_no_prec:
1485 type_specifier_nonarray
1486 | type_specifier_nonarray '[' ']'
1487 {
1488 $$ = $1;
1489 $$->is_array = true;
1490 $$->array_size = NULL;
1491 }
1492 | type_specifier_nonarray '[' constant_expression ']'
1493 {
1494 $$ = $1;
1495 $$->is_array = true;
1496 $$->array_size = $3;
1497 }
1498 ;
1499
1500 type_specifier_nonarray:
1501 basic_type_specifier_nonarray
1502 {
1503 void *ctx = state;
1504 $$ = new(ctx) ast_type_specifier($1);
1505 $$->set_location(yylloc);
1506 }
1507 | struct_specifier
1508 {
1509 void *ctx = state;
1510 $$ = new(ctx) ast_type_specifier($1);
1511 $$->set_location(yylloc);
1512 }
1513 | TYPE_IDENTIFIER
1514 {
1515 void *ctx = state;
1516 $$ = new(ctx) ast_type_specifier($1);
1517 $$->set_location(yylloc);
1518 }
1519 ;
1520
1521 basic_type_specifier_nonarray:
1522 VOID_TOK { $$ = "void"; }
1523 | FLOAT_TOK { $$ = "float"; }
1524 | INT_TOK { $$ = "int"; }
1525 | UINT_TOK { $$ = "uint"; }
1526 | BOOL_TOK { $$ = "bool"; }
1527 | VEC2 { $$ = "vec2"; }
1528 | VEC3 { $$ = "vec3"; }
1529 | VEC4 { $$ = "vec4"; }
1530 | BVEC2 { $$ = "bvec2"; }
1531 | BVEC3 { $$ = "bvec3"; }
1532 | BVEC4 { $$ = "bvec4"; }
1533 | IVEC2 { $$ = "ivec2"; }
1534 | IVEC3 { $$ = "ivec3"; }
1535 | IVEC4 { $$ = "ivec4"; }
1536 | UVEC2 { $$ = "uvec2"; }
1537 | UVEC3 { $$ = "uvec3"; }
1538 | UVEC4 { $$ = "uvec4"; }
1539 | MAT2X2 { $$ = "mat2"; }
1540 | MAT2X3 { $$ = "mat2x3"; }
1541 | MAT2X4 { $$ = "mat2x4"; }
1542 | MAT3X2 { $$ = "mat3x2"; }
1543 | MAT3X3 { $$ = "mat3"; }
1544 | MAT3X4 { $$ = "mat3x4"; }
1545 | MAT4X2 { $$ = "mat4x2"; }
1546 | MAT4X3 { $$ = "mat4x3"; }
1547 | MAT4X4 { $$ = "mat4"; }
1548 | SAMPLER1D { $$ = "sampler1D"; }
1549 | SAMPLER2D { $$ = "sampler2D"; }
1550 | SAMPLER2DRECT { $$ = "sampler2DRect"; }
1551 | SAMPLER3D { $$ = "sampler3D"; }
1552 | SAMPLERCUBE { $$ = "samplerCube"; }
1553 | SAMPLEREXTERNALOES { $$ = "samplerExternalOES"; }
1554 | SAMPLER1DSHADOW { $$ = "sampler1DShadow"; }
1555 | SAMPLER2DSHADOW { $$ = "sampler2DShadow"; }
1556 | SAMPLER2DRECTSHADOW { $$ = "sampler2DRectShadow"; }
1557 | SAMPLERCUBESHADOW { $$ = "samplerCubeShadow"; }
1558 | SAMPLER1DARRAY { $$ = "sampler1DArray"; }
1559 | SAMPLER2DARRAY { $$ = "sampler2DArray"; }
1560 | SAMPLER1DARRAYSHADOW { $$ = "sampler1DArrayShadow"; }
1561 | SAMPLER2DARRAYSHADOW { $$ = "sampler2DArrayShadow"; }
1562 | SAMPLERBUFFER { $$ = "samplerBuffer"; }
1563 | SAMPLERCUBEARRAY { $$ = "samplerCubeArray"; }
1564 | SAMPLERCUBEARRAYSHADOW { $$ = "samplerCubeArrayShadow"; }
1565 | ISAMPLER1D { $$ = "isampler1D"; }
1566 | ISAMPLER2D { $$ = "isampler2D"; }
1567 | ISAMPLER2DRECT { $$ = "isampler2DRect"; }
1568 | ISAMPLER3D { $$ = "isampler3D"; }
1569 | ISAMPLERCUBE { $$ = "isamplerCube"; }
1570 | ISAMPLER1DARRAY { $$ = "isampler1DArray"; }
1571 | ISAMPLER2DARRAY { $$ = "isampler2DArray"; }
1572 | ISAMPLERBUFFER { $$ = "isamplerBuffer"; }
1573 | ISAMPLERCUBEARRAY { $$ = "isamplerCubeArray"; }
1574 | USAMPLER1D { $$ = "usampler1D"; }
1575 | USAMPLER2D { $$ = "usampler2D"; }
1576 | USAMPLER2DRECT { $$ = "usampler2DRect"; }
1577 | USAMPLER3D { $$ = "usampler3D"; }
1578 | USAMPLERCUBE { $$ = "usamplerCube"; }
1579 | USAMPLER1DARRAY { $$ = "usampler1DArray"; }
1580 | USAMPLER2DARRAY { $$ = "usampler2DArray"; }
1581 | USAMPLERBUFFER { $$ = "usamplerBuffer"; }
1582 | USAMPLERCUBEARRAY { $$ = "usamplerCubeArray"; }
1583 | SAMPLER2DMS { $$ = "sampler2DMS"; }
1584 | ISAMPLER2DMS { $$ = "isampler2DMS"; }
1585 | USAMPLER2DMS { $$ = "usampler2DMS"; }
1586 | SAMPLER2DMSARRAY { $$ = "sampler2DMSArray"; }
1587 | ISAMPLER2DMSARRAY { $$ = "isampler2DMSArray"; }
1588 | USAMPLER2DMSARRAY { $$ = "usampler2DMSArray"; }
1589 ;
1590
1591 precision_qualifier:
1592 HIGHP
1593 {
1594 state->check_precision_qualifiers_allowed(&@1);
1595 $$ = ast_precision_high;
1596 }
1597 | MEDIUMP
1598 {
1599 state->check_precision_qualifiers_allowed(&@1);
1600 $$ = ast_precision_medium;
1601 }
1602 | LOWP
1603 {
1604 state->check_precision_qualifiers_allowed(&@1);
1605 $$ = ast_precision_low;
1606 }
1607 ;
1608
1609 struct_specifier:
1610 STRUCT any_identifier '{' struct_declaration_list '}'
1611 {
1612 void *ctx = state;
1613 $$ = new(ctx) ast_struct_specifier($2, $4);
1614 $$->set_location(yylloc);
1615 state->symbols->add_type($2, glsl_type::void_type);
1616 state->symbols->add_type_ast($2, new(ctx) ast_type_specifier($$));
1617 }
1618 | STRUCT '{' struct_declaration_list '}'
1619 {
1620 void *ctx = state;
1621 $$ = new(ctx) ast_struct_specifier(NULL, $3);
1622 $$->set_location(yylloc);
1623 }
1624 ;
1625
1626 struct_declaration_list:
1627 struct_declaration
1628 {
1629 $$ = $1;
1630 $1->link.self_link();
1631 }
1632 | struct_declaration_list struct_declaration
1633 {
1634 $$ = $1;
1635 $$->link.insert_before(& $2->link);
1636 }
1637 ;
1638
1639 struct_declaration:
1640 type_specifier struct_declarator_list ';'
1641 {
1642 void *ctx = state;
1643 ast_fully_specified_type *type = new(ctx) ast_fully_specified_type();
1644 type->set_location(yylloc);
1645
1646 type->specifier = $1;
1647 $$ = new(ctx) ast_declarator_list(type);
1648 $$->set_location(yylloc);
1649
1650 $$->declarations.push_degenerate_list_at_head(& $2->link);
1651 }
1652 ;
1653
1654 struct_declarator_list:
1655 struct_declarator
1656 {
1657 $$ = $1;
1658 $1->link.self_link();
1659 }
1660 | struct_declarator_list ',' struct_declarator
1661 {
1662 $$ = $1;
1663 $$->link.insert_before(& $3->link);
1664 }
1665 ;
1666
1667 struct_declarator:
1668 any_identifier
1669 {
1670 void *ctx = state;
1671 $$ = new(ctx) ast_declaration($1, false, NULL, NULL);
1672 $$->set_location(yylloc);
1673 }
1674 | any_identifier '[' constant_expression ']'
1675 {
1676 void *ctx = state;
1677 $$ = new(ctx) ast_declaration($1, true, $3, NULL);
1678 $$->set_location(yylloc);
1679 }
1680 ;
1681
1682 initializer:
1683 assignment_expression
1684 | '{' initializer_list '}'
1685 {
1686 $$ = $2;
1687 }
1688 | '{' initializer_list ',' '}'
1689 {
1690 $$ = $2;
1691 }
1692 ;
1693
1694 initializer_list:
1695 initializer
1696 {
1697 void *ctx = state;
1698 $$ = new(ctx) ast_aggregate_initializer();
1699 $$->set_location(yylloc);
1700 $$->expressions.push_tail(& $1->link);
1701 }
1702 | initializer_list ',' initializer
1703 {
1704 $1->expressions.push_tail(& $3->link);
1705 }
1706 ;
1707
1708 declaration_statement:
1709 declaration
1710 ;
1711
1712 // Grammar Note: labeled statements for SWITCH only; 'goto' is not
1713 // supported.
1714 statement:
1715 compound_statement { $$ = (ast_node *) $1; }
1716 | simple_statement
1717 ;
1718
1719 simple_statement:
1720 declaration_statement
1721 | expression_statement
1722 | selection_statement
1723 | switch_statement
1724 | iteration_statement
1725 | jump_statement
1726 ;
1727
1728 compound_statement:
1729 '{' '}'
1730 {
1731 void *ctx = state;
1732 $$ = new(ctx) ast_compound_statement(true, NULL);
1733 $$->set_location(yylloc);
1734 }
1735 | '{'
1736 {
1737 state->symbols->push_scope();
1738 }
1739 statement_list '}'
1740 {
1741 void *ctx = state;
1742 $$ = new(ctx) ast_compound_statement(true, $3);
1743 $$->set_location(yylloc);
1744 state->symbols->pop_scope();
1745 }
1746 ;
1747
1748 statement_no_new_scope:
1749 compound_statement_no_new_scope { $$ = (ast_node *) $1; }
1750 | simple_statement
1751 ;
1752
1753 compound_statement_no_new_scope:
1754 '{' '}'
1755 {
1756 void *ctx = state;
1757 $$ = new(ctx) ast_compound_statement(false, NULL);
1758 $$->set_location(yylloc);
1759 }
1760 | '{' statement_list '}'
1761 {
1762 void *ctx = state;
1763 $$ = new(ctx) ast_compound_statement(false, $2);
1764 $$->set_location(yylloc);
1765 }
1766 ;
1767
1768 statement_list:
1769 statement
1770 {
1771 if ($1 == NULL) {
1772 _mesa_glsl_error(& @1, state, "<nil> statement\n");
1773 assert($1 != NULL);
1774 }
1775
1776 $$ = $1;
1777 $$->link.self_link();
1778 }
1779 | statement_list statement
1780 {
1781 if ($2 == NULL) {
1782 _mesa_glsl_error(& @2, state, "<nil> statement\n");
1783 assert($2 != NULL);
1784 }
1785 $$ = $1;
1786 $$->link.insert_before(& $2->link);
1787 }
1788 ;
1789
1790 expression_statement:
1791 ';'
1792 {
1793 void *ctx = state;
1794 $$ = new(ctx) ast_expression_statement(NULL);
1795 $$->set_location(yylloc);
1796 }
1797 | expression ';'
1798 {
1799 void *ctx = state;
1800 $$ = new(ctx) ast_expression_statement($1);
1801 $$->set_location(yylloc);
1802 }
1803 ;
1804
1805 selection_statement:
1806 IF '(' expression ')' selection_rest_statement
1807 {
1808 $$ = new(state) ast_selection_statement($3, $5.then_statement,
1809 $5.else_statement);
1810 $$->set_location(yylloc);
1811 }
1812 ;
1813
1814 selection_rest_statement:
1815 statement ELSE statement
1816 {
1817 $$.then_statement = $1;
1818 $$.else_statement = $3;
1819 }
1820 | statement %prec THEN
1821 {
1822 $$.then_statement = $1;
1823 $$.else_statement = NULL;
1824 }
1825 ;
1826
1827 condition:
1828 expression
1829 {
1830 $$ = (ast_node *) $1;
1831 }
1832 | fully_specified_type any_identifier '=' initializer
1833 {
1834 void *ctx = state;
1835 ast_declaration *decl = new(ctx) ast_declaration($2, false, NULL, $4);
1836 ast_declarator_list *declarator = new(ctx) ast_declarator_list($1);
1837 decl->set_location(yylloc);
1838 declarator->set_location(yylloc);
1839
1840 declarator->declarations.push_tail(&decl->link);
1841 $$ = declarator;
1842 }
1843 ;
1844
1845 /*
1846 * siwtch_statement grammar is based on the syntax described in the body
1847 * of the GLSL spec, not in it's appendix!!!
1848 */
1849 switch_statement:
1850 SWITCH '(' expression ')' switch_body
1851 {
1852 $$ = new(state) ast_switch_statement($3, $5);
1853 $$->set_location(yylloc);
1854 }
1855 ;
1856
1857 switch_body:
1858 '{' '}'
1859 {
1860 $$ = new(state) ast_switch_body(NULL);
1861 $$->set_location(yylloc);
1862 }
1863 | '{' case_statement_list '}'
1864 {
1865 $$ = new(state) ast_switch_body($2);
1866 $$->set_location(yylloc);
1867 }
1868 ;
1869
1870 case_label:
1871 CASE expression ':'
1872 {
1873 $$ = new(state) ast_case_label($2);
1874 $$->set_location(yylloc);
1875 }
1876 | DEFAULT ':'
1877 {
1878 $$ = new(state) ast_case_label(NULL);
1879 $$->set_location(yylloc);
1880 }
1881 ;
1882
1883 case_label_list:
1884 case_label
1885 {
1886 ast_case_label_list *labels = new(state) ast_case_label_list();
1887
1888 labels->labels.push_tail(& $1->link);
1889 $$ = labels;
1890 $$->set_location(yylloc);
1891 }
1892 | case_label_list case_label
1893 {
1894 $$ = $1;
1895 $$->labels.push_tail(& $2->link);
1896 }
1897 ;
1898
1899 case_statement:
1900 case_label_list statement
1901 {
1902 ast_case_statement *stmts = new(state) ast_case_statement($1);
1903 stmts->set_location(yylloc);
1904
1905 stmts->stmts.push_tail(& $2->link);
1906 $$ = stmts;
1907 }
1908 | case_statement statement
1909 {
1910 $$ = $1;
1911 $$->stmts.push_tail(& $2->link);
1912 }
1913 ;
1914
1915 case_statement_list:
1916 case_statement
1917 {
1918 ast_case_statement_list *cases= new(state) ast_case_statement_list();
1919 cases->set_location(yylloc);
1920
1921 cases->cases.push_tail(& $1->link);
1922 $$ = cases;
1923 }
1924 | case_statement_list case_statement
1925 {
1926 $$ = $1;
1927 $$->cases.push_tail(& $2->link);
1928 }
1929 ;
1930
1931 iteration_statement:
1932 WHILE '(' condition ')' statement_no_new_scope
1933 {
1934 void *ctx = state;
1935 $$ = new(ctx) ast_iteration_statement(ast_iteration_statement::ast_while,
1936 NULL, $3, NULL, $5);
1937 $$->set_location(yylloc);
1938 }
1939 | DO statement WHILE '(' expression ')' ';'
1940 {
1941 void *ctx = state;
1942 $$ = new(ctx) ast_iteration_statement(ast_iteration_statement::ast_do_while,
1943 NULL, $5, NULL, $2);
1944 $$->set_location(yylloc);
1945 }
1946 | FOR '(' for_init_statement for_rest_statement ')' statement_no_new_scope
1947 {
1948 void *ctx = state;
1949 $$ = new(ctx) ast_iteration_statement(ast_iteration_statement::ast_for,
1950 $3, $4.cond, $4.rest, $6);
1951 $$->set_location(yylloc);
1952 }
1953 ;
1954
1955 for_init_statement:
1956 expression_statement
1957 | declaration_statement
1958 ;
1959
1960 conditionopt:
1961 condition
1962 | /* empty */
1963 {
1964 $$ = NULL;
1965 }
1966 ;
1967
1968 for_rest_statement:
1969 conditionopt ';'
1970 {
1971 $$.cond = $1;
1972 $$.rest = NULL;
1973 }
1974 | conditionopt ';' expression
1975 {
1976 $$.cond = $1;
1977 $$.rest = $3;
1978 }
1979 ;
1980
1981 // Grammar Note: No 'goto'. Gotos are not supported.
1982 jump_statement:
1983 CONTINUE ';'
1984 {
1985 void *ctx = state;
1986 $$ = new(ctx) ast_jump_statement(ast_jump_statement::ast_continue, NULL);
1987 $$->set_location(yylloc);
1988 }
1989 | BREAK ';'
1990 {
1991 void *ctx = state;
1992 $$ = new(ctx) ast_jump_statement(ast_jump_statement::ast_break, NULL);
1993 $$->set_location(yylloc);
1994 }
1995 | RETURN ';'
1996 {
1997 void *ctx = state;
1998 $$ = new(ctx) ast_jump_statement(ast_jump_statement::ast_return, NULL);
1999 $$->set_location(yylloc);
2000 }
2001 | RETURN expression ';'
2002 {
2003 void *ctx = state;
2004 $$ = new(ctx) ast_jump_statement(ast_jump_statement::ast_return, $2);
2005 $$->set_location(yylloc);
2006 }
2007 | DISCARD ';' // Fragment shader only.
2008 {
2009 void *ctx = state;
2010 $$ = new(ctx) ast_jump_statement(ast_jump_statement::ast_discard, NULL);
2011 $$->set_location(yylloc);
2012 }
2013 ;
2014
2015 external_declaration:
2016 function_definition { $$ = $1; }
2017 | declaration { $$ = $1; }
2018 | pragma_statement { $$ = NULL; }
2019 | layout_defaults { $$ = NULL; }
2020 ;
2021
2022 function_definition:
2023 function_prototype compound_statement_no_new_scope
2024 {
2025 void *ctx = state;
2026 $$ = new(ctx) ast_function_definition();
2027 $$->set_location(yylloc);
2028 $$->prototype = $1;
2029 $$->body = $2;
2030
2031 state->symbols->pop_scope();
2032 }
2033 ;
2034
2035 /* layout_qualifieropt is packed into this rule */
2036 interface_block:
2037 basic_interface_block
2038 {
2039 $$ = $1;
2040 }
2041 | layout_qualifier basic_interface_block
2042 {
2043 ast_interface_block *block = $2;
2044 if (!block->layout.merge_qualifier(& @1, state, $1)) {
2045 YYERROR;
2046 }
2047 $$ = block;
2048 }
2049 ;
2050
2051 basic_interface_block:
2052 interface_qualifier NEW_IDENTIFIER '{' member_list '}' instance_name_opt ';'
2053 {
2054 ast_interface_block *const block = $6;
2055
2056 block->block_name = $2;
2057 block->declarations.push_degenerate_list_at_head(& $4->link);
2058
2059 if ($1.flags.q.uniform) {
2060 if (!state->ARB_uniform_buffer_object_enable) {
2061 _mesa_glsl_error(& @1, state,
2062 "#version 140 / GL_ARB_uniform_buffer_object "
2063 "required for defining uniform blocks\n");
2064 } else if (state->ARB_uniform_buffer_object_warn) {
2065 _mesa_glsl_warning(& @1, state,
2066 "#version 140 / GL_ARB_uniform_buffer_object "
2067 "required for defining uniform blocks\n");
2068 }
2069 } else {
2070 if (state->es_shader || state->language_version < 150) {
2071 _mesa_glsl_error(& @1, state,
2072 "#version 150 required for using "
2073 "interface blocks.\n");
2074 }
2075 }
2076
2077 /* From the GLSL 1.50.11 spec, section 4.3.7 ("Interface Blocks"):
2078 * "It is illegal to have an input block in a vertex shader
2079 * or an output block in a fragment shader"
2080 */
2081 if ((state->target == vertex_shader) && $1.flags.q.in) {
2082 _mesa_glsl_error(& @1, state,
2083 "`in' interface block is not allowed for "
2084 "a vertex shader\n");
2085 } else if ((state->target == fragment_shader) && $1.flags.q.out) {
2086 _mesa_glsl_error(& @1, state,
2087 "`out' interface block is not allowed for "
2088 "a fragment shader\n");
2089 }
2090
2091 /* Since block arrays require names, and both features are added in
2092 * the same language versions, we don't have to explicitly
2093 * version-check both things.
2094 */
2095 if (block->instance_name != NULL) {
2096 state->check_version(150, 300, & @1, "interface blocks with "
2097 "an instance name are not allowed");
2098 }
2099
2100 unsigned interface_type_mask;
2101 struct ast_type_qualifier temp_type_qualifier;
2102
2103 /* Get a bitmask containing only the in/out/uniform flags, allowing us
2104 * to ignore other irrelevant flags like interpolation qualifiers.
2105 */
2106 temp_type_qualifier.flags.i = 0;
2107 temp_type_qualifier.flags.q.uniform = true;
2108 temp_type_qualifier.flags.q.in = true;
2109 temp_type_qualifier.flags.q.out = true;
2110 interface_type_mask = temp_type_qualifier.flags.i;
2111
2112 /* Get the block's interface qualifier. The interface_qualifier
2113 * production rule guarantees that only one bit will be set (and
2114 * it will be in/out/uniform).
2115 */
2116 unsigned block_interface_qualifier = $1.flags.i;
2117
2118 block->layout.flags.i |= block_interface_qualifier;
2119
2120 foreach_list_typed (ast_declarator_list, member, link, &block->declarations) {
2121 ast_type_qualifier& qualifier = member->type->qualifier;
2122 if ((qualifier.flags.i & interface_type_mask) == 0) {
2123 /* GLSLangSpec.1.50.11, 4.3.7 (Interface Blocks):
2124 * "If no optional qualifier is used in a member declaration, the
2125 * qualifier of the variable is just in, out, or uniform as declared
2126 * by interface-qualifier."
2127 */
2128 qualifier.flags.i |= block_interface_qualifier;
2129 } else if ((qualifier.flags.i & interface_type_mask) !=
2130 block_interface_qualifier) {
2131 /* GLSLangSpec.1.50.11, 4.3.7 (Interface Blocks):
2132 * "If optional qualifiers are used, they can include interpolation
2133 * and storage qualifiers and they must declare an input, output,
2134 * or uniform variable consistent with the interface qualifier of
2135 * the block."
2136 */
2137 _mesa_glsl_error(& @1, state,
2138 "uniform/in/out qualifier on "
2139 "interface block member does not match "
2140 "the interface block\n");
2141 }
2142 }
2143
2144 $$ = block;
2145 }
2146 ;
2147
2148 interface_qualifier:
2149 IN_TOK
2150 {
2151 memset(& $$, 0, sizeof($$));
2152 $$.flags.q.in = 1;
2153 }
2154 | OUT_TOK
2155 {
2156 memset(& $$, 0, sizeof($$));
2157 $$.flags.q.out = 1;
2158 }
2159 | UNIFORM
2160 {
2161 memset(& $$, 0, sizeof($$));
2162 $$.flags.q.uniform = 1;
2163 }
2164 ;
2165
2166 instance_name_opt:
2167 /* empty */
2168 {
2169 $$ = new(state) ast_interface_block(*state->default_uniform_qualifier,
2170 NULL, NULL);
2171 }
2172 | NEW_IDENTIFIER
2173 {
2174 $$ = new(state) ast_interface_block(*state->default_uniform_qualifier,
2175 $1, NULL);
2176 }
2177 | NEW_IDENTIFIER '[' constant_expression ']'
2178 {
2179 $$ = new(state) ast_interface_block(*state->default_uniform_qualifier,
2180 $1, $3);
2181 }
2182 | NEW_IDENTIFIER '[' ']'
2183 {
2184 _mesa_glsl_error(& @1, state,
2185 "instance block arrays must be explicitly sized\n");
2186
2187 $$ = new(state) ast_interface_block(*state->default_uniform_qualifier,
2188 $1, NULL);
2189 }
2190 ;
2191
2192 member_list:
2193 member_declaration
2194 {
2195 $$ = $1;
2196 $1->link.self_link();
2197 }
2198 | member_declaration member_list
2199 {
2200 $$ = $1;
2201 $2->link.insert_before(& $$->link);
2202 }
2203 ;
2204
2205 member_declaration:
2206 fully_specified_type struct_declarator_list ';'
2207 {
2208 void *ctx = state;
2209 ast_fully_specified_type *type = $1;
2210 type->set_location(yylloc);
2211
2212 if (type->qualifier.flags.q.attribute) {
2213 _mesa_glsl_error(& @1, state,
2214 "keyword 'attribute' cannot be used with "
2215 "interface block member\n");
2216 } else if (type->qualifier.flags.q.varying) {
2217 _mesa_glsl_error(& @1, state,
2218 "keyword 'varying' cannot be used with "
2219 "interface block member\n");
2220 }
2221
2222 $$ = new(ctx) ast_declarator_list(type);
2223 $$->set_location(yylloc);
2224 $$->ubo_qualifiers_valid = true;
2225
2226 $$->declarations.push_degenerate_list_at_head(& $2->link);
2227 }
2228 ;
2229
2230 layout_defaults:
2231 layout_qualifier UNIFORM ';'
2232 {
2233 if (!state->default_uniform_qualifier->merge_qualifier(& @1, state, $1)) {
2234 YYERROR;
2235 }
2236 }