glsl: Improve error message when attemping assignment to unsized array
[mesa.git] / src / glsl / ast_to_hir.cpp
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 /**
25 * \file ast_to_hir.c
26 * Convert abstract syntax to to high-level intermediate reprensentation (HIR).
27 *
28 * During the conversion to HIR, the majority of the symantic checking is
29 * preformed on the program. This includes:
30 *
31 * * Symbol table management
32 * * Type checking
33 * * Function binding
34 *
35 * The majority of this work could be done during parsing, and the parser could
36 * probably generate HIR directly. However, this results in frequent changes
37 * to the parser code. Since we do not assume that every system this complier
38 * is built on will have Flex and Bison installed, we have to store the code
39 * generated by these tools in our version control system. In other parts of
40 * the system we've seen problems where a parser was changed but the generated
41 * code was not committed, merge conflicts where created because two developers
42 * had slightly different versions of Bison installed, etc.
43 *
44 * I have also noticed that running Bison generated parsers in GDB is very
45 * irritating. When you get a segfault on '$$ = $1->foo', you can't very
46 * well 'print $1' in GDB.
47 *
48 * As a result, my preference is to put as little C code as possible in the
49 * parser (and lexer) sources.
50 */
51
52 #include "main/core.h" /* for struct gl_extensions */
53 #include "glsl_symbol_table.h"
54 #include "glsl_parser_extras.h"
55 #include "ast.h"
56 #include "glsl_types.h"
57 #include "program/hash_table.h"
58 #include "ir.h"
59
60 static void
61 detect_conflicting_assignments(struct _mesa_glsl_parse_state *state,
62 exec_list *instructions);
63 static void
64 remove_per_vertex_blocks(exec_list *instructions,
65 _mesa_glsl_parse_state *state, ir_variable_mode mode);
66
67
68 void
69 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state)
70 {
71 _mesa_glsl_initialize_variables(instructions, state);
72
73 state->symbols->separate_function_namespace = state->language_version == 110;
74
75 state->current_function = NULL;
76
77 state->toplevel_ir = instructions;
78
79 state->gs_input_prim_type_specified = false;
80
81 /* Section 4.2 of the GLSL 1.20 specification states:
82 * "The built-in functions are scoped in a scope outside the global scope
83 * users declare global variables in. That is, a shader's global scope,
84 * available for user-defined functions and global variables, is nested
85 * inside the scope containing the built-in functions."
86 *
87 * Since built-in functions like ftransform() access built-in variables,
88 * it follows that those must be in the outer scope as well.
89 *
90 * We push scope here to create this nesting effect...but don't pop.
91 * This way, a shader's globals are still in the symbol table for use
92 * by the linker.
93 */
94 state->symbols->push_scope();
95
96 foreach_list_typed (ast_node, ast, link, & state->translation_unit)
97 ast->hir(instructions, state);
98
99 detect_recursion_unlinked(state, instructions);
100 detect_conflicting_assignments(state, instructions);
101
102 state->toplevel_ir = NULL;
103
104 /* Move all of the variable declarations to the front of the IR list, and
105 * reverse the order. This has the (intended!) side effect that vertex
106 * shader inputs and fragment shader outputs will appear in the IR in the
107 * same order that they appeared in the shader code. This results in the
108 * locations being assigned in the declared order. Many (arguably buggy)
109 * applications depend on this behavior, and it matches what nearly all
110 * other drivers do.
111 */
112 foreach_list_safe(node, instructions) {
113 ir_variable *const var = ((ir_instruction *) node)->as_variable();
114
115 if (var == NULL)
116 continue;
117
118 var->remove();
119 instructions->push_head(var);
120 }
121
122 /* From section 7.1 (Built-In Language Variables) of the GLSL 4.10 spec:
123 *
124 * If multiple shaders using members of a built-in block belonging to
125 * the same interface are linked together in the same program, they
126 * must all redeclare the built-in block in the same way, as described
127 * in section 4.3.7 "Interface Blocks" for interface block matching, or
128 * a link error will result.
129 *
130 * The phrase "using members of a built-in block" implies that if two
131 * shaders are linked together and one of them *does not use* any members
132 * of the built-in block, then that shader does not need to have a matching
133 * redeclaration of the built-in block.
134 *
135 * This appears to be a clarification to the behaviour established for
136 * gl_PerVertex by GLSL 1.50, therefore implement it regardless of GLSL
137 * version.
138 *
139 * The definition of "interface" in section 4.3.7 that applies here is as
140 * follows:
141 *
142 * The boundary between adjacent programmable pipeline stages: This
143 * spans all the outputs in all compilation units of the first stage
144 * and all the inputs in all compilation units of the second stage.
145 *
146 * Therefore this rule applies to both inter- and intra-stage linking.
147 *
148 * The easiest way to implement this is to check whether the shader uses
149 * gl_PerVertex right after ast-to-ir conversion, and if it doesn't, simply
150 * remove all the relevant variable declaration from the IR, so that the
151 * linker won't see them and complain about mismatches.
152 */
153 remove_per_vertex_blocks(instructions, state, ir_var_shader_in);
154 remove_per_vertex_blocks(instructions, state, ir_var_shader_out);
155 }
156
157
158 /**
159 * If a conversion is available, convert one operand to a different type
160 *
161 * The \c from \c ir_rvalue is converted "in place".
162 *
163 * \param to Type that the operand it to be converted to
164 * \param from Operand that is being converted
165 * \param state GLSL compiler state
166 *
167 * \return
168 * If a conversion is possible (or unnecessary), \c true is returned.
169 * Otherwise \c false is returned.
170 */
171 bool
172 apply_implicit_conversion(const glsl_type *to, ir_rvalue * &from,
173 struct _mesa_glsl_parse_state *state)
174 {
175 void *ctx = state;
176 if (to->base_type == from->type->base_type)
177 return true;
178
179 /* This conversion was added in GLSL 1.20. If the compilation mode is
180 * GLSL 1.10, the conversion is skipped.
181 */
182 if (!state->is_version(120, 0))
183 return false;
184
185 /* From page 27 (page 33 of the PDF) of the GLSL 1.50 spec:
186 *
187 * "There are no implicit array or structure conversions. For
188 * example, an array of int cannot be implicitly converted to an
189 * array of float. There are no implicit conversions between
190 * signed and unsigned integers."
191 */
192 /* FINISHME: The above comment is partially a lie. There is int/uint
193 * FINISHME: conversion for immediate constants.
194 */
195 if (!to->is_float() || !from->type->is_numeric())
196 return false;
197
198 /* Convert to a floating point type with the same number of components
199 * as the original type - i.e. int to float, not int to vec4.
200 */
201 to = glsl_type::get_instance(GLSL_TYPE_FLOAT, from->type->vector_elements,
202 from->type->matrix_columns);
203
204 switch (from->type->base_type) {
205 case GLSL_TYPE_INT:
206 from = new(ctx) ir_expression(ir_unop_i2f, to, from, NULL);
207 break;
208 case GLSL_TYPE_UINT:
209 from = new(ctx) ir_expression(ir_unop_u2f, to, from, NULL);
210 break;
211 case GLSL_TYPE_BOOL:
212 from = new(ctx) ir_expression(ir_unop_b2f, to, from, NULL);
213 break;
214 default:
215 assert(0);
216 }
217
218 return true;
219 }
220
221
222 static const struct glsl_type *
223 arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b,
224 bool multiply,
225 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
226 {
227 const glsl_type *type_a = value_a->type;
228 const glsl_type *type_b = value_b->type;
229
230 /* From GLSL 1.50 spec, page 56:
231 *
232 * "The arithmetic binary operators add (+), subtract (-),
233 * multiply (*), and divide (/) operate on integer and
234 * floating-point scalars, vectors, and matrices."
235 */
236 if (!type_a->is_numeric() || !type_b->is_numeric()) {
237 _mesa_glsl_error(loc, state,
238 "operands to arithmetic operators must be numeric");
239 return glsl_type::error_type;
240 }
241
242
243 /* "If one operand is floating-point based and the other is
244 * not, then the conversions from Section 4.1.10 "Implicit
245 * Conversions" are applied to the non-floating-point-based operand."
246 */
247 if (!apply_implicit_conversion(type_a, value_b, state)
248 && !apply_implicit_conversion(type_b, value_a, state)) {
249 _mesa_glsl_error(loc, state,
250 "could not implicitly convert operands to "
251 "arithmetic operator");
252 return glsl_type::error_type;
253 }
254 type_a = value_a->type;
255 type_b = value_b->type;
256
257 /* "If the operands are integer types, they must both be signed or
258 * both be unsigned."
259 *
260 * From this rule and the preceeding conversion it can be inferred that
261 * both types must be GLSL_TYPE_FLOAT, or GLSL_TYPE_UINT, or GLSL_TYPE_INT.
262 * The is_numeric check above already filtered out the case where either
263 * type is not one of these, so now the base types need only be tested for
264 * equality.
265 */
266 if (type_a->base_type != type_b->base_type) {
267 _mesa_glsl_error(loc, state,
268 "base type mismatch for arithmetic operator");
269 return glsl_type::error_type;
270 }
271
272 /* "All arithmetic binary operators result in the same fundamental type
273 * (signed integer, unsigned integer, or floating-point) as the
274 * operands they operate on, after operand type conversion. After
275 * conversion, the following cases are valid
276 *
277 * * The two operands are scalars. In this case the operation is
278 * applied, resulting in a scalar."
279 */
280 if (type_a->is_scalar() && type_b->is_scalar())
281 return type_a;
282
283 /* "* One operand is a scalar, and the other is a vector or matrix.
284 * In this case, the scalar operation is applied independently to each
285 * component of the vector or matrix, resulting in the same size
286 * vector or matrix."
287 */
288 if (type_a->is_scalar()) {
289 if (!type_b->is_scalar())
290 return type_b;
291 } else if (type_b->is_scalar()) {
292 return type_a;
293 }
294
295 /* All of the combinations of <scalar, scalar>, <vector, scalar>,
296 * <scalar, vector>, <scalar, matrix>, and <matrix, scalar> have been
297 * handled.
298 */
299 assert(!type_a->is_scalar());
300 assert(!type_b->is_scalar());
301
302 /* "* The two operands are vectors of the same size. In this case, the
303 * operation is done component-wise resulting in the same size
304 * vector."
305 */
306 if (type_a->is_vector() && type_b->is_vector()) {
307 if (type_a == type_b) {
308 return type_a;
309 } else {
310 _mesa_glsl_error(loc, state,
311 "vector size mismatch for arithmetic operator");
312 return glsl_type::error_type;
313 }
314 }
315
316 /* All of the combinations of <scalar, scalar>, <vector, scalar>,
317 * <scalar, vector>, <scalar, matrix>, <matrix, scalar>, and
318 * <vector, vector> have been handled. At least one of the operands must
319 * be matrix. Further, since there are no integer matrix types, the base
320 * type of both operands must be float.
321 */
322 assert(type_a->is_matrix() || type_b->is_matrix());
323 assert(type_a->base_type == GLSL_TYPE_FLOAT);
324 assert(type_b->base_type == GLSL_TYPE_FLOAT);
325
326 /* "* The operator is add (+), subtract (-), or divide (/), and the
327 * operands are matrices with the same number of rows and the same
328 * number of columns. In this case, the operation is done component-
329 * wise resulting in the same size matrix."
330 * * The operator is multiply (*), where both operands are matrices or
331 * one operand is a vector and the other a matrix. A right vector
332 * operand is treated as a column vector and a left vector operand as a
333 * row vector. In all these cases, it is required that the number of
334 * columns of the left operand is equal to the number of rows of the
335 * right operand. Then, the multiply (*) operation does a linear
336 * algebraic multiply, yielding an object that has the same number of
337 * rows as the left operand and the same number of columns as the right
338 * operand. Section 5.10 "Vector and Matrix Operations" explains in
339 * more detail how vectors and matrices are operated on."
340 */
341 if (! multiply) {
342 if (type_a == type_b)
343 return type_a;
344 } else {
345 if (type_a->is_matrix() && type_b->is_matrix()) {
346 /* Matrix multiply. The columns of A must match the rows of B. Given
347 * the other previously tested constraints, this means the vector type
348 * of a row from A must be the same as the vector type of a column from
349 * B.
350 */
351 if (type_a->row_type() == type_b->column_type()) {
352 /* The resulting matrix has the number of columns of matrix B and
353 * the number of rows of matrix A. We get the row count of A by
354 * looking at the size of a vector that makes up a column. The
355 * transpose (size of a row) is done for B.
356 */
357 const glsl_type *const type =
358 glsl_type::get_instance(type_a->base_type,
359 type_a->column_type()->vector_elements,
360 type_b->row_type()->vector_elements);
361 assert(type != glsl_type::error_type);
362
363 return type;
364 }
365 } else if (type_a->is_matrix()) {
366 /* A is a matrix and B is a column vector. Columns of A must match
367 * rows of B. Given the other previously tested constraints, this
368 * means the vector type of a row from A must be the same as the
369 * vector the type of B.
370 */
371 if (type_a->row_type() == type_b) {
372 /* The resulting vector has a number of elements equal to
373 * the number of rows of matrix A. */
374 const glsl_type *const type =
375 glsl_type::get_instance(type_a->base_type,
376 type_a->column_type()->vector_elements,
377 1);
378 assert(type != glsl_type::error_type);
379
380 return type;
381 }
382 } else {
383 assert(type_b->is_matrix());
384
385 /* A is a row vector and B is a matrix. Columns of A must match rows
386 * of B. Given the other previously tested constraints, this means
387 * the type of A must be the same as the vector type of a column from
388 * B.
389 */
390 if (type_a == type_b->column_type()) {
391 /* The resulting vector has a number of elements equal to
392 * the number of columns of matrix B. */
393 const glsl_type *const type =
394 glsl_type::get_instance(type_a->base_type,
395 type_b->row_type()->vector_elements,
396 1);
397 assert(type != glsl_type::error_type);
398
399 return type;
400 }
401 }
402
403 _mesa_glsl_error(loc, state, "size mismatch for matrix multiplication");
404 return glsl_type::error_type;
405 }
406
407
408 /* "All other cases are illegal."
409 */
410 _mesa_glsl_error(loc, state, "type mismatch");
411 return glsl_type::error_type;
412 }
413
414
415 static const struct glsl_type *
416 unary_arithmetic_result_type(const struct glsl_type *type,
417 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
418 {
419 /* From GLSL 1.50 spec, page 57:
420 *
421 * "The arithmetic unary operators negate (-), post- and pre-increment
422 * and decrement (-- and ++) operate on integer or floating-point
423 * values (including vectors and matrices). All unary operators work
424 * component-wise on their operands. These result with the same type
425 * they operated on."
426 */
427 if (!type->is_numeric()) {
428 _mesa_glsl_error(loc, state,
429 "operands to arithmetic operators must be numeric");
430 return glsl_type::error_type;
431 }
432
433 return type;
434 }
435
436 /**
437 * \brief Return the result type of a bit-logic operation.
438 *
439 * If the given types to the bit-logic operator are invalid, return
440 * glsl_type::error_type.
441 *
442 * \param type_a Type of LHS of bit-logic op
443 * \param type_b Type of RHS of bit-logic op
444 */
445 static const struct glsl_type *
446 bit_logic_result_type(const struct glsl_type *type_a,
447 const struct glsl_type *type_b,
448 ast_operators op,
449 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
450 {
451 if (!state->check_bitwise_operations_allowed(loc)) {
452 return glsl_type::error_type;
453 }
454
455 /* From page 50 (page 56 of PDF) of GLSL 1.30 spec:
456 *
457 * "The bitwise operators and (&), exclusive-or (^), and inclusive-or
458 * (|). The operands must be of type signed or unsigned integers or
459 * integer vectors."
460 */
461 if (!type_a->is_integer()) {
462 _mesa_glsl_error(loc, state, "LHS of `%s' must be an integer",
463 ast_expression::operator_string(op));
464 return glsl_type::error_type;
465 }
466 if (!type_b->is_integer()) {
467 _mesa_glsl_error(loc, state, "RHS of `%s' must be an integer",
468 ast_expression::operator_string(op));
469 return glsl_type::error_type;
470 }
471
472 /* "The fundamental types of the operands (signed or unsigned) must
473 * match,"
474 */
475 if (type_a->base_type != type_b->base_type) {
476 _mesa_glsl_error(loc, state, "operands of `%s' must have the same "
477 "base type", ast_expression::operator_string(op));
478 return glsl_type::error_type;
479 }
480
481 /* "The operands cannot be vectors of differing size." */
482 if (type_a->is_vector() &&
483 type_b->is_vector() &&
484 type_a->vector_elements != type_b->vector_elements) {
485 _mesa_glsl_error(loc, state, "operands of `%s' cannot be vectors of "
486 "different sizes", ast_expression::operator_string(op));
487 return glsl_type::error_type;
488 }
489
490 /* "If one operand is a scalar and the other a vector, the scalar is
491 * applied component-wise to the vector, resulting in the same type as
492 * the vector. The fundamental types of the operands [...] will be the
493 * resulting fundamental type."
494 */
495 if (type_a->is_scalar())
496 return type_b;
497 else
498 return type_a;
499 }
500
501 static const struct glsl_type *
502 modulus_result_type(const struct glsl_type *type_a,
503 const struct glsl_type *type_b,
504 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
505 {
506 if (!state->check_version(130, 300, loc, "operator '%%' is reserved")) {
507 return glsl_type::error_type;
508 }
509
510 /* From GLSL 1.50 spec, page 56:
511 * "The operator modulus (%) operates on signed or unsigned integers or
512 * integer vectors. The operand types must both be signed or both be
513 * unsigned."
514 */
515 if (!type_a->is_integer()) {
516 _mesa_glsl_error(loc, state, "LHS of operator %% must be an integer");
517 return glsl_type::error_type;
518 }
519 if (!type_b->is_integer()) {
520 _mesa_glsl_error(loc, state, "RHS of operator %% must be an integer");
521 return glsl_type::error_type;
522 }
523 if (type_a->base_type != type_b->base_type) {
524 _mesa_glsl_error(loc, state,
525 "operands of %% must have the same base type");
526 return glsl_type::error_type;
527 }
528
529 /* "The operands cannot be vectors of differing size. If one operand is
530 * a scalar and the other vector, then the scalar is applied component-
531 * wise to the vector, resulting in the same type as the vector. If both
532 * are vectors of the same size, the result is computed component-wise."
533 */
534 if (type_a->is_vector()) {
535 if (!type_b->is_vector()
536 || (type_a->vector_elements == type_b->vector_elements))
537 return type_a;
538 } else
539 return type_b;
540
541 /* "The operator modulus (%) is not defined for any other data types
542 * (non-integer types)."
543 */
544 _mesa_glsl_error(loc, state, "type mismatch");
545 return glsl_type::error_type;
546 }
547
548
549 static const struct glsl_type *
550 relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b,
551 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
552 {
553 const glsl_type *type_a = value_a->type;
554 const glsl_type *type_b = value_b->type;
555
556 /* From GLSL 1.50 spec, page 56:
557 * "The relational operators greater than (>), less than (<), greater
558 * than or equal (>=), and less than or equal (<=) operate only on
559 * scalar integer and scalar floating-point expressions."
560 */
561 if (!type_a->is_numeric()
562 || !type_b->is_numeric()
563 || !type_a->is_scalar()
564 || !type_b->is_scalar()) {
565 _mesa_glsl_error(loc, state,
566 "operands to relational operators must be scalar and "
567 "numeric");
568 return glsl_type::error_type;
569 }
570
571 /* "Either the operands' types must match, or the conversions from
572 * Section 4.1.10 "Implicit Conversions" will be applied to the integer
573 * operand, after which the types must match."
574 */
575 if (!apply_implicit_conversion(type_a, value_b, state)
576 && !apply_implicit_conversion(type_b, value_a, state)) {
577 _mesa_glsl_error(loc, state,
578 "could not implicitly convert operands to "
579 "relational operator");
580 return glsl_type::error_type;
581 }
582 type_a = value_a->type;
583 type_b = value_b->type;
584
585 if (type_a->base_type != type_b->base_type) {
586 _mesa_glsl_error(loc, state, "base type mismatch");
587 return glsl_type::error_type;
588 }
589
590 /* "The result is scalar Boolean."
591 */
592 return glsl_type::bool_type;
593 }
594
595 /**
596 * \brief Return the result type of a bit-shift operation.
597 *
598 * If the given types to the bit-shift operator are invalid, return
599 * glsl_type::error_type.
600 *
601 * \param type_a Type of LHS of bit-shift op
602 * \param type_b Type of RHS of bit-shift op
603 */
604 static const struct glsl_type *
605 shift_result_type(const struct glsl_type *type_a,
606 const struct glsl_type *type_b,
607 ast_operators op,
608 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
609 {
610 if (!state->check_bitwise_operations_allowed(loc)) {
611 return glsl_type::error_type;
612 }
613
614 /* From page 50 (page 56 of the PDF) of the GLSL 1.30 spec:
615 *
616 * "The shift operators (<<) and (>>). For both operators, the operands
617 * must be signed or unsigned integers or integer vectors. One operand
618 * can be signed while the other is unsigned."
619 */
620 if (!type_a->is_integer()) {
621 _mesa_glsl_error(loc, state, "LHS of operator %s must be an integer or "
622 "integer vector", ast_expression::operator_string(op));
623 return glsl_type::error_type;
624
625 }
626 if (!type_b->is_integer()) {
627 _mesa_glsl_error(loc, state, "RHS of operator %s must be an integer or "
628 "integer vector", ast_expression::operator_string(op));
629 return glsl_type::error_type;
630 }
631
632 /* "If the first operand is a scalar, the second operand has to be
633 * a scalar as well."
634 */
635 if (type_a->is_scalar() && !type_b->is_scalar()) {
636 _mesa_glsl_error(loc, state, "if the first operand of %s is scalar, the "
637 "second must be scalar as well",
638 ast_expression::operator_string(op));
639 return glsl_type::error_type;
640 }
641
642 /* If both operands are vectors, check that they have same number of
643 * elements.
644 */
645 if (type_a->is_vector() &&
646 type_b->is_vector() &&
647 type_a->vector_elements != type_b->vector_elements) {
648 _mesa_glsl_error(loc, state, "vector operands to operator %s must "
649 "have same number of elements",
650 ast_expression::operator_string(op));
651 return glsl_type::error_type;
652 }
653
654 /* "In all cases, the resulting type will be the same type as the left
655 * operand."
656 */
657 return type_a;
658 }
659
660 /**
661 * Validates that a value can be assigned to a location with a specified type
662 *
663 * Validates that \c rhs can be assigned to some location. If the types are
664 * not an exact match but an automatic conversion is possible, \c rhs will be
665 * converted.
666 *
667 * \return
668 * \c NULL if \c rhs cannot be assigned to a location with type \c lhs_type.
669 * Otherwise the actual RHS to be assigned will be returned. This may be
670 * \c rhs, or it may be \c rhs after some type conversion.
671 *
672 * \note
673 * In addition to being used for assignments, this function is used to
674 * type-check return values.
675 */
676 ir_rvalue *
677 validate_assignment(struct _mesa_glsl_parse_state *state,
678 YYLTYPE loc, const glsl_type *lhs_type,
679 ir_rvalue *rhs, bool is_initializer)
680 {
681 /* If there is already some error in the RHS, just return it. Anything
682 * else will lead to an avalanche of error message back to the user.
683 */
684 if (rhs->type->is_error())
685 return rhs;
686
687 /* If the types are identical, the assignment can trivially proceed.
688 */
689 if (rhs->type == lhs_type)
690 return rhs;
691
692 /* If the array element types are the same and the LHS is unsized,
693 * the assignment is okay for initializers embedded in variable
694 * declarations.
695 *
696 * Note: Whole-array assignments are not permitted in GLSL 1.10, but this
697 * is handled by ir_dereference::is_lvalue.
698 */
699 if (lhs_type->is_unsized_array() && rhs->type->is_array()
700 && (lhs_type->element_type() == rhs->type->element_type())) {
701 if (is_initializer) {
702 return rhs;
703 } else {
704 _mesa_glsl_error(&loc, state,
705 "implicitly sized arrays cannot be assigned");
706 return NULL;
707 }
708 }
709
710 /* Check for implicit conversion in GLSL 1.20 */
711 if (apply_implicit_conversion(lhs_type, rhs, state)) {
712 if (rhs->type == lhs_type)
713 return rhs;
714 }
715
716 _mesa_glsl_error(&loc, state,
717 "%s of type %s cannot be assigned to "
718 "variable of type %s",
719 is_initializer ? "initializer" : "value",
720 rhs->type->name, lhs_type->name);
721
722 return NULL;
723 }
724
725 static void
726 mark_whole_array_access(ir_rvalue *access)
727 {
728 ir_dereference_variable *deref = access->as_dereference_variable();
729
730 if (deref && deref->var) {
731 deref->var->max_array_access = deref->type->length - 1;
732 }
733 }
734
735 ir_rvalue *
736 do_assignment(exec_list *instructions, struct _mesa_glsl_parse_state *state,
737 const char *non_lvalue_description,
738 ir_rvalue *lhs, ir_rvalue *rhs, bool is_initializer,
739 YYLTYPE lhs_loc)
740 {
741 void *ctx = state;
742 bool error_emitted = (lhs->type->is_error() || rhs->type->is_error());
743
744 /* If the assignment LHS comes back as an ir_binop_vector_extract
745 * expression, move it to the RHS as an ir_triop_vector_insert.
746 */
747 if (lhs->ir_type == ir_type_expression) {
748 ir_expression *const expr = lhs->as_expression();
749
750 if (unlikely(expr->operation == ir_binop_vector_extract)) {
751 ir_rvalue *new_rhs =
752 validate_assignment(state, lhs_loc, lhs->type,
753 rhs, is_initializer);
754
755 if (new_rhs == NULL) {
756 return lhs;
757 } else {
758 rhs = new(ctx) ir_expression(ir_triop_vector_insert,
759 expr->operands[0]->type,
760 expr->operands[0],
761 new_rhs,
762 expr->operands[1]);
763 lhs = expr->operands[0]->clone(ctx, NULL);
764 }
765 }
766 }
767
768 ir_variable *lhs_var = lhs->variable_referenced();
769 if (lhs_var)
770 lhs_var->assigned = true;
771
772 if (!error_emitted) {
773 if (non_lvalue_description != NULL) {
774 _mesa_glsl_error(&lhs_loc, state,
775 "assignment to %s",
776 non_lvalue_description);
777 error_emitted = true;
778 } else if (lhs->variable_referenced() != NULL
779 && lhs->variable_referenced()->read_only) {
780 _mesa_glsl_error(&lhs_loc, state,
781 "assignment to read-only variable '%s'",
782 lhs->variable_referenced()->name);
783 error_emitted = true;
784
785 } else if (lhs->type->is_array() &&
786 !state->check_version(120, 300, &lhs_loc,
787 "whole array assignment forbidden")) {
788 /* From page 32 (page 38 of the PDF) of the GLSL 1.10 spec:
789 *
790 * "Other binary or unary expressions, non-dereferenced
791 * arrays, function names, swizzles with repeated fields,
792 * and constants cannot be l-values."
793 *
794 * The restriction on arrays is lifted in GLSL 1.20 and GLSL ES 3.00.
795 */
796 error_emitted = true;
797 } else if (!lhs->is_lvalue()) {
798 _mesa_glsl_error(& lhs_loc, state, "non-lvalue in assignment");
799 error_emitted = true;
800 }
801 }
802
803 ir_rvalue *new_rhs =
804 validate_assignment(state, lhs_loc, lhs->type, rhs, is_initializer);
805 if (new_rhs != NULL) {
806 rhs = new_rhs;
807
808 /* If the LHS array was not declared with a size, it takes it size from
809 * the RHS. If the LHS is an l-value and a whole array, it must be a
810 * dereference of a variable. Any other case would require that the LHS
811 * is either not an l-value or not a whole array.
812 */
813 if (lhs->type->is_unsized_array()) {
814 ir_dereference *const d = lhs->as_dereference();
815
816 assert(d != NULL);
817
818 ir_variable *const var = d->variable_referenced();
819
820 assert(var != NULL);
821
822 if (var->max_array_access >= unsigned(rhs->type->array_size())) {
823 /* FINISHME: This should actually log the location of the RHS. */
824 _mesa_glsl_error(& lhs_loc, state, "array size must be > %u due to "
825 "previous access",
826 var->max_array_access);
827 }
828
829 var->type = glsl_type::get_array_instance(lhs->type->element_type(),
830 rhs->type->array_size());
831 d->type = var->type;
832 }
833 mark_whole_array_access(rhs);
834 mark_whole_array_access(lhs);
835 }
836
837 /* Most callers of do_assignment (assign, add_assign, pre_inc/dec,
838 * but not post_inc) need the converted assigned value as an rvalue
839 * to handle things like:
840 *
841 * i = j += 1;
842 *
843 * So we always just store the computed value being assigned to a
844 * temporary and return a deref of that temporary. If the rvalue
845 * ends up not being used, the temp will get copy-propagated out.
846 */
847 ir_variable *var = new(ctx) ir_variable(rhs->type, "assignment_tmp",
848 ir_var_temporary);
849 ir_dereference_variable *deref_var = new(ctx) ir_dereference_variable(var);
850 instructions->push_tail(var);
851 instructions->push_tail(new(ctx) ir_assignment(deref_var, rhs));
852 deref_var = new(ctx) ir_dereference_variable(var);
853
854 if (!error_emitted)
855 instructions->push_tail(new(ctx) ir_assignment(lhs, deref_var));
856
857 return new(ctx) ir_dereference_variable(var);
858 }
859
860 static ir_rvalue *
861 get_lvalue_copy(exec_list *instructions, ir_rvalue *lvalue)
862 {
863 void *ctx = ralloc_parent(lvalue);
864 ir_variable *var;
865
866 var = new(ctx) ir_variable(lvalue->type, "_post_incdec_tmp",
867 ir_var_temporary);
868 instructions->push_tail(var);
869 var->mode = ir_var_auto;
870
871 instructions->push_tail(new(ctx) ir_assignment(new(ctx) ir_dereference_variable(var),
872 lvalue));
873
874 return new(ctx) ir_dereference_variable(var);
875 }
876
877
878 ir_rvalue *
879 ast_node::hir(exec_list *instructions,
880 struct _mesa_glsl_parse_state *state)
881 {
882 (void) instructions;
883 (void) state;
884
885 return NULL;
886 }
887
888 static ir_rvalue *
889 do_comparison(void *mem_ctx, int operation, ir_rvalue *op0, ir_rvalue *op1)
890 {
891 int join_op;
892 ir_rvalue *cmp = NULL;
893
894 if (operation == ir_binop_all_equal)
895 join_op = ir_binop_logic_and;
896 else
897 join_op = ir_binop_logic_or;
898
899 switch (op0->type->base_type) {
900 case GLSL_TYPE_FLOAT:
901 case GLSL_TYPE_UINT:
902 case GLSL_TYPE_INT:
903 case GLSL_TYPE_BOOL:
904 return new(mem_ctx) ir_expression(operation, op0, op1);
905
906 case GLSL_TYPE_ARRAY: {
907 for (unsigned int i = 0; i < op0->type->length; i++) {
908 ir_rvalue *e0, *e1, *result;
909
910 e0 = new(mem_ctx) ir_dereference_array(op0->clone(mem_ctx, NULL),
911 new(mem_ctx) ir_constant(i));
912 e1 = new(mem_ctx) ir_dereference_array(op1->clone(mem_ctx, NULL),
913 new(mem_ctx) ir_constant(i));
914 result = do_comparison(mem_ctx, operation, e0, e1);
915
916 if (cmp) {
917 cmp = new(mem_ctx) ir_expression(join_op, cmp, result);
918 } else {
919 cmp = result;
920 }
921 }
922
923 mark_whole_array_access(op0);
924 mark_whole_array_access(op1);
925 break;
926 }
927
928 case GLSL_TYPE_STRUCT: {
929 for (unsigned int i = 0; i < op0->type->length; i++) {
930 ir_rvalue *e0, *e1, *result;
931 const char *field_name = op0->type->fields.structure[i].name;
932
933 e0 = new(mem_ctx) ir_dereference_record(op0->clone(mem_ctx, NULL),
934 field_name);
935 e1 = new(mem_ctx) ir_dereference_record(op1->clone(mem_ctx, NULL),
936 field_name);
937 result = do_comparison(mem_ctx, operation, e0, e1);
938
939 if (cmp) {
940 cmp = new(mem_ctx) ir_expression(join_op, cmp, result);
941 } else {
942 cmp = result;
943 }
944 }
945 break;
946 }
947
948 case GLSL_TYPE_ERROR:
949 case GLSL_TYPE_VOID:
950 case GLSL_TYPE_SAMPLER:
951 case GLSL_TYPE_INTERFACE:
952 case GLSL_TYPE_ATOMIC_UINT:
953 /* I assume a comparison of a struct containing a sampler just
954 * ignores the sampler present in the type.
955 */
956 break;
957 }
958
959 if (cmp == NULL)
960 cmp = new(mem_ctx) ir_constant(true);
961
962 return cmp;
963 }
964
965 /* For logical operations, we want to ensure that the operands are
966 * scalar booleans. If it isn't, emit an error and return a constant
967 * boolean to avoid triggering cascading error messages.
968 */
969 ir_rvalue *
970 get_scalar_boolean_operand(exec_list *instructions,
971 struct _mesa_glsl_parse_state *state,
972 ast_expression *parent_expr,
973 int operand,
974 const char *operand_name,
975 bool *error_emitted)
976 {
977 ast_expression *expr = parent_expr->subexpressions[operand];
978 void *ctx = state;
979 ir_rvalue *val = expr->hir(instructions, state);
980
981 if (val->type->is_boolean() && val->type->is_scalar())
982 return val;
983
984 if (!*error_emitted) {
985 YYLTYPE loc = expr->get_location();
986 _mesa_glsl_error(&loc, state, "%s of `%s' must be scalar boolean",
987 operand_name,
988 parent_expr->operator_string(parent_expr->oper));
989 *error_emitted = true;
990 }
991
992 return new(ctx) ir_constant(true);
993 }
994
995 /**
996 * If name refers to a builtin array whose maximum allowed size is less than
997 * size, report an error and return true. Otherwise return false.
998 */
999 void
1000 check_builtin_array_max_size(const char *name, unsigned size,
1001 YYLTYPE loc, struct _mesa_glsl_parse_state *state)
1002 {
1003 if ((strcmp("gl_TexCoord", name) == 0)
1004 && (size > state->Const.MaxTextureCoords)) {
1005 /* From page 54 (page 60 of the PDF) of the GLSL 1.20 spec:
1006 *
1007 * "The size [of gl_TexCoord] can be at most
1008 * gl_MaxTextureCoords."
1009 */
1010 _mesa_glsl_error(&loc, state, "`gl_TexCoord' array size cannot "
1011 "be larger than gl_MaxTextureCoords (%u)",
1012 state->Const.MaxTextureCoords);
1013 } else if (strcmp("gl_ClipDistance", name) == 0
1014 && size > state->Const.MaxClipPlanes) {
1015 /* From section 7.1 (Vertex Shader Special Variables) of the
1016 * GLSL 1.30 spec:
1017 *
1018 * "The gl_ClipDistance array is predeclared as unsized and
1019 * must be sized by the shader either redeclaring it with a
1020 * size or indexing it only with integral constant
1021 * expressions. ... The size can be at most
1022 * gl_MaxClipDistances."
1023 */
1024 _mesa_glsl_error(&loc, state, "`gl_ClipDistance' array size cannot "
1025 "be larger than gl_MaxClipDistances (%u)",
1026 state->Const.MaxClipPlanes);
1027 }
1028 }
1029
1030 /**
1031 * Create the constant 1, of a which is appropriate for incrementing and
1032 * decrementing values of the given GLSL type. For example, if type is vec4,
1033 * this creates a constant value of 1.0 having type float.
1034 *
1035 * If the given type is invalid for increment and decrement operators, return
1036 * a floating point 1--the error will be detected later.
1037 */
1038 static ir_rvalue *
1039 constant_one_for_inc_dec(void *ctx, const glsl_type *type)
1040 {
1041 switch (type->base_type) {
1042 case GLSL_TYPE_UINT:
1043 return new(ctx) ir_constant((unsigned) 1);
1044 case GLSL_TYPE_INT:
1045 return new(ctx) ir_constant(1);
1046 default:
1047 case GLSL_TYPE_FLOAT:
1048 return new(ctx) ir_constant(1.0f);
1049 }
1050 }
1051
1052 ir_rvalue *
1053 ast_expression::hir(exec_list *instructions,
1054 struct _mesa_glsl_parse_state *state)
1055 {
1056 void *ctx = state;
1057 static const int operations[AST_NUM_OPERATORS] = {
1058 -1, /* ast_assign doesn't convert to ir_expression. */
1059 -1, /* ast_plus doesn't convert to ir_expression. */
1060 ir_unop_neg,
1061 ir_binop_add,
1062 ir_binop_sub,
1063 ir_binop_mul,
1064 ir_binop_div,
1065 ir_binop_mod,
1066 ir_binop_lshift,
1067 ir_binop_rshift,
1068 ir_binop_less,
1069 ir_binop_greater,
1070 ir_binop_lequal,
1071 ir_binop_gequal,
1072 ir_binop_all_equal,
1073 ir_binop_any_nequal,
1074 ir_binop_bit_and,
1075 ir_binop_bit_xor,
1076 ir_binop_bit_or,
1077 ir_unop_bit_not,
1078 ir_binop_logic_and,
1079 ir_binop_logic_xor,
1080 ir_binop_logic_or,
1081 ir_unop_logic_not,
1082
1083 /* Note: The following block of expression types actually convert
1084 * to multiple IR instructions.
1085 */
1086 ir_binop_mul, /* ast_mul_assign */
1087 ir_binop_div, /* ast_div_assign */
1088 ir_binop_mod, /* ast_mod_assign */
1089 ir_binop_add, /* ast_add_assign */
1090 ir_binop_sub, /* ast_sub_assign */
1091 ir_binop_lshift, /* ast_ls_assign */
1092 ir_binop_rshift, /* ast_rs_assign */
1093 ir_binop_bit_and, /* ast_and_assign */
1094 ir_binop_bit_xor, /* ast_xor_assign */
1095 ir_binop_bit_or, /* ast_or_assign */
1096
1097 -1, /* ast_conditional doesn't convert to ir_expression. */
1098 ir_binop_add, /* ast_pre_inc. */
1099 ir_binop_sub, /* ast_pre_dec. */
1100 ir_binop_add, /* ast_post_inc. */
1101 ir_binop_sub, /* ast_post_dec. */
1102 -1, /* ast_field_selection doesn't conv to ir_expression. */
1103 -1, /* ast_array_index doesn't convert to ir_expression. */
1104 -1, /* ast_function_call doesn't conv to ir_expression. */
1105 -1, /* ast_identifier doesn't convert to ir_expression. */
1106 -1, /* ast_int_constant doesn't convert to ir_expression. */
1107 -1, /* ast_uint_constant doesn't conv to ir_expression. */
1108 -1, /* ast_float_constant doesn't conv to ir_expression. */
1109 -1, /* ast_bool_constant doesn't conv to ir_expression. */
1110 -1, /* ast_sequence doesn't convert to ir_expression. */
1111 };
1112 ir_rvalue *result = NULL;
1113 ir_rvalue *op[3];
1114 const struct glsl_type *type; /* a temporary variable for switch cases */
1115 bool error_emitted = false;
1116 YYLTYPE loc;
1117
1118 loc = this->get_location();
1119
1120 switch (this->oper) {
1121 case ast_aggregate:
1122 assert(!"ast_aggregate: Should never get here.");
1123 break;
1124
1125 case ast_assign: {
1126 op[0] = this->subexpressions[0]->hir(instructions, state);
1127 op[1] = this->subexpressions[1]->hir(instructions, state);
1128
1129 result = do_assignment(instructions, state,
1130 this->subexpressions[0]->non_lvalue_description,
1131 op[0], op[1], false,
1132 this->subexpressions[0]->get_location());
1133 error_emitted = result->type->is_error();
1134 break;
1135 }
1136
1137 case ast_plus:
1138 op[0] = this->subexpressions[0]->hir(instructions, state);
1139
1140 type = unary_arithmetic_result_type(op[0]->type, state, & loc);
1141
1142 error_emitted = type->is_error();
1143
1144 result = op[0];
1145 break;
1146
1147 case ast_neg:
1148 op[0] = this->subexpressions[0]->hir(instructions, state);
1149
1150 type = unary_arithmetic_result_type(op[0]->type, state, & loc);
1151
1152 error_emitted = type->is_error();
1153
1154 result = new(ctx) ir_expression(operations[this->oper], type,
1155 op[0], NULL);
1156 break;
1157
1158 case ast_add:
1159 case ast_sub:
1160 case ast_mul:
1161 case ast_div:
1162 op[0] = this->subexpressions[0]->hir(instructions, state);
1163 op[1] = this->subexpressions[1]->hir(instructions, state);
1164
1165 type = arithmetic_result_type(op[0], op[1],
1166 (this->oper == ast_mul),
1167 state, & loc);
1168 error_emitted = type->is_error();
1169
1170 result = new(ctx) ir_expression(operations[this->oper], type,
1171 op[0], op[1]);
1172 break;
1173
1174 case ast_mod:
1175 op[0] = this->subexpressions[0]->hir(instructions, state);
1176 op[1] = this->subexpressions[1]->hir(instructions, state);
1177
1178 type = modulus_result_type(op[0]->type, op[1]->type, state, & loc);
1179
1180 assert(operations[this->oper] == ir_binop_mod);
1181
1182 result = new(ctx) ir_expression(operations[this->oper], type,
1183 op[0], op[1]);
1184 error_emitted = type->is_error();
1185 break;
1186
1187 case ast_lshift:
1188 case ast_rshift:
1189 if (!state->check_bitwise_operations_allowed(&loc)) {
1190 error_emitted = true;
1191 }
1192
1193 op[0] = this->subexpressions[0]->hir(instructions, state);
1194 op[1] = this->subexpressions[1]->hir(instructions, state);
1195 type = shift_result_type(op[0]->type, op[1]->type, this->oper, state,
1196 &loc);
1197 result = new(ctx) ir_expression(operations[this->oper], type,
1198 op[0], op[1]);
1199 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1200 break;
1201
1202 case ast_less:
1203 case ast_greater:
1204 case ast_lequal:
1205 case ast_gequal:
1206 op[0] = this->subexpressions[0]->hir(instructions, state);
1207 op[1] = this->subexpressions[1]->hir(instructions, state);
1208
1209 type = relational_result_type(op[0], op[1], state, & loc);
1210
1211 /* The relational operators must either generate an error or result
1212 * in a scalar boolean. See page 57 of the GLSL 1.50 spec.
1213 */
1214 assert(type->is_error()
1215 || ((type->base_type == GLSL_TYPE_BOOL)
1216 && type->is_scalar()));
1217
1218 result = new(ctx) ir_expression(operations[this->oper], type,
1219 op[0], op[1]);
1220 error_emitted = type->is_error();
1221 break;
1222
1223 case ast_nequal:
1224 case ast_equal:
1225 op[0] = this->subexpressions[0]->hir(instructions, state);
1226 op[1] = this->subexpressions[1]->hir(instructions, state);
1227
1228 /* From page 58 (page 64 of the PDF) of the GLSL 1.50 spec:
1229 *
1230 * "The equality operators equal (==), and not equal (!=)
1231 * operate on all types. They result in a scalar Boolean. If
1232 * the operand types do not match, then there must be a
1233 * conversion from Section 4.1.10 "Implicit Conversions"
1234 * applied to one operand that can make them match, in which
1235 * case this conversion is done."
1236 */
1237 if ((!apply_implicit_conversion(op[0]->type, op[1], state)
1238 && !apply_implicit_conversion(op[1]->type, op[0], state))
1239 || (op[0]->type != op[1]->type)) {
1240 _mesa_glsl_error(& loc, state, "operands of `%s' must have the same "
1241 "type", (this->oper == ast_equal) ? "==" : "!=");
1242 error_emitted = true;
1243 } else if ((op[0]->type->is_array() || op[1]->type->is_array()) &&
1244 !state->check_version(120, 300, &loc,
1245 "array comparisons forbidden")) {
1246 error_emitted = true;
1247 } else if ((op[0]->type->contains_opaque() ||
1248 op[1]->type->contains_opaque())) {
1249 _mesa_glsl_error(&loc, state, "opaque type comparisons forbidden");
1250 error_emitted = true;
1251 }
1252
1253 if (error_emitted) {
1254 result = new(ctx) ir_constant(false);
1255 } else {
1256 result = do_comparison(ctx, operations[this->oper], op[0], op[1]);
1257 assert(result->type == glsl_type::bool_type);
1258 }
1259 break;
1260
1261 case ast_bit_and:
1262 case ast_bit_xor:
1263 case ast_bit_or:
1264 op[0] = this->subexpressions[0]->hir(instructions, state);
1265 op[1] = this->subexpressions[1]->hir(instructions, state);
1266 type = bit_logic_result_type(op[0]->type, op[1]->type, this->oper,
1267 state, &loc);
1268 result = new(ctx) ir_expression(operations[this->oper], type,
1269 op[0], op[1]);
1270 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1271 break;
1272
1273 case ast_bit_not:
1274 op[0] = this->subexpressions[0]->hir(instructions, state);
1275
1276 if (!state->check_bitwise_operations_allowed(&loc)) {
1277 error_emitted = true;
1278 }
1279
1280 if (!op[0]->type->is_integer()) {
1281 _mesa_glsl_error(&loc, state, "operand of `~' must be an integer");
1282 error_emitted = true;
1283 }
1284
1285 type = error_emitted ? glsl_type::error_type : op[0]->type;
1286 result = new(ctx) ir_expression(ir_unop_bit_not, type, op[0], NULL);
1287 break;
1288
1289 case ast_logic_and: {
1290 exec_list rhs_instructions;
1291 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1292 "LHS", &error_emitted);
1293 op[1] = get_scalar_boolean_operand(&rhs_instructions, state, this, 1,
1294 "RHS", &error_emitted);
1295
1296 if (rhs_instructions.is_empty()) {
1297 result = new(ctx) ir_expression(ir_binop_logic_and, op[0], op[1]);
1298 type = result->type;
1299 } else {
1300 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
1301 "and_tmp",
1302 ir_var_temporary);
1303 instructions->push_tail(tmp);
1304
1305 ir_if *const stmt = new(ctx) ir_if(op[0]);
1306 instructions->push_tail(stmt);
1307
1308 stmt->then_instructions.append_list(&rhs_instructions);
1309 ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp);
1310 ir_assignment *const then_assign =
1311 new(ctx) ir_assignment(then_deref, op[1]);
1312 stmt->then_instructions.push_tail(then_assign);
1313
1314 ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp);
1315 ir_assignment *const else_assign =
1316 new(ctx) ir_assignment(else_deref, new(ctx) ir_constant(false));
1317 stmt->else_instructions.push_tail(else_assign);
1318
1319 result = new(ctx) ir_dereference_variable(tmp);
1320 type = tmp->type;
1321 }
1322 break;
1323 }
1324
1325 case ast_logic_or: {
1326 exec_list rhs_instructions;
1327 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1328 "LHS", &error_emitted);
1329 op[1] = get_scalar_boolean_operand(&rhs_instructions, state, this, 1,
1330 "RHS", &error_emitted);
1331
1332 if (rhs_instructions.is_empty()) {
1333 result = new(ctx) ir_expression(ir_binop_logic_or, op[0], op[1]);
1334 type = result->type;
1335 } else {
1336 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
1337 "or_tmp",
1338 ir_var_temporary);
1339 instructions->push_tail(tmp);
1340
1341 ir_if *const stmt = new(ctx) ir_if(op[0]);
1342 instructions->push_tail(stmt);
1343
1344 ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp);
1345 ir_assignment *const then_assign =
1346 new(ctx) ir_assignment(then_deref, new(ctx) ir_constant(true));
1347 stmt->then_instructions.push_tail(then_assign);
1348
1349 stmt->else_instructions.append_list(&rhs_instructions);
1350 ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp);
1351 ir_assignment *const else_assign =
1352 new(ctx) ir_assignment(else_deref, op[1]);
1353 stmt->else_instructions.push_tail(else_assign);
1354
1355 result = new(ctx) ir_dereference_variable(tmp);
1356 type = tmp->type;
1357 }
1358 break;
1359 }
1360
1361 case ast_logic_xor:
1362 /* From page 33 (page 39 of the PDF) of the GLSL 1.10 spec:
1363 *
1364 * "The logical binary operators and (&&), or ( | | ), and
1365 * exclusive or (^^). They operate only on two Boolean
1366 * expressions and result in a Boolean expression."
1367 */
1368 op[0] = get_scalar_boolean_operand(instructions, state, this, 0, "LHS",
1369 &error_emitted);
1370 op[1] = get_scalar_boolean_operand(instructions, state, this, 1, "RHS",
1371 &error_emitted);
1372
1373 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
1374 op[0], op[1]);
1375 break;
1376
1377 case ast_logic_not:
1378 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1379 "operand", &error_emitted);
1380
1381 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
1382 op[0], NULL);
1383 break;
1384
1385 case ast_mul_assign:
1386 case ast_div_assign:
1387 case ast_add_assign:
1388 case ast_sub_assign: {
1389 op[0] = this->subexpressions[0]->hir(instructions, state);
1390 op[1] = this->subexpressions[1]->hir(instructions, state);
1391
1392 type = arithmetic_result_type(op[0], op[1],
1393 (this->oper == ast_mul_assign),
1394 state, & loc);
1395
1396 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1397 op[0], op[1]);
1398
1399 result = do_assignment(instructions, state,
1400 this->subexpressions[0]->non_lvalue_description,
1401 op[0]->clone(ctx, NULL), temp_rhs, false,
1402 this->subexpressions[0]->get_location());
1403 error_emitted = (op[0]->type->is_error());
1404
1405 /* GLSL 1.10 does not allow array assignment. However, we don't have to
1406 * explicitly test for this because none of the binary expression
1407 * operators allow array operands either.
1408 */
1409
1410 break;
1411 }
1412
1413 case ast_mod_assign: {
1414 op[0] = this->subexpressions[0]->hir(instructions, state);
1415 op[1] = this->subexpressions[1]->hir(instructions, state);
1416
1417 type = modulus_result_type(op[0]->type, op[1]->type, state, & loc);
1418
1419 assert(operations[this->oper] == ir_binop_mod);
1420
1421 ir_rvalue *temp_rhs;
1422 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1423 op[0], op[1]);
1424
1425 result = do_assignment(instructions, state,
1426 this->subexpressions[0]->non_lvalue_description,
1427 op[0]->clone(ctx, NULL), temp_rhs, false,
1428 this->subexpressions[0]->get_location());
1429 error_emitted = type->is_error();
1430 break;
1431 }
1432
1433 case ast_ls_assign:
1434 case ast_rs_assign: {
1435 op[0] = this->subexpressions[0]->hir(instructions, state);
1436 op[1] = this->subexpressions[1]->hir(instructions, state);
1437 type = shift_result_type(op[0]->type, op[1]->type, this->oper, state,
1438 &loc);
1439 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper],
1440 type, op[0], op[1]);
1441 result = do_assignment(instructions, state,
1442 this->subexpressions[0]->non_lvalue_description,
1443 op[0]->clone(ctx, NULL), temp_rhs, false,
1444 this->subexpressions[0]->get_location());
1445 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1446 break;
1447 }
1448
1449 case ast_and_assign:
1450 case ast_xor_assign:
1451 case ast_or_assign: {
1452 op[0] = this->subexpressions[0]->hir(instructions, state);
1453 op[1] = this->subexpressions[1]->hir(instructions, state);
1454 type = bit_logic_result_type(op[0]->type, op[1]->type, this->oper,
1455 state, &loc);
1456 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper],
1457 type, op[0], op[1]);
1458 result = do_assignment(instructions, state,
1459 this->subexpressions[0]->non_lvalue_description,
1460 op[0]->clone(ctx, NULL), temp_rhs, false,
1461 this->subexpressions[0]->get_location());
1462 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1463 break;
1464 }
1465
1466 case ast_conditional: {
1467 /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec:
1468 *
1469 * "The ternary selection operator (?:). It operates on three
1470 * expressions (exp1 ? exp2 : exp3). This operator evaluates the
1471 * first expression, which must result in a scalar Boolean."
1472 */
1473 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1474 "condition", &error_emitted);
1475
1476 /* The :? operator is implemented by generating an anonymous temporary
1477 * followed by an if-statement. The last instruction in each branch of
1478 * the if-statement assigns a value to the anonymous temporary. This
1479 * temporary is the r-value of the expression.
1480 */
1481 exec_list then_instructions;
1482 exec_list else_instructions;
1483
1484 op[1] = this->subexpressions[1]->hir(&then_instructions, state);
1485 op[2] = this->subexpressions[2]->hir(&else_instructions, state);
1486
1487 /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec:
1488 *
1489 * "The second and third expressions can be any type, as
1490 * long their types match, or there is a conversion in
1491 * Section 4.1.10 "Implicit Conversions" that can be applied
1492 * to one of the expressions to make their types match. This
1493 * resulting matching type is the type of the entire
1494 * expression."
1495 */
1496 if ((!apply_implicit_conversion(op[1]->type, op[2], state)
1497 && !apply_implicit_conversion(op[2]->type, op[1], state))
1498 || (op[1]->type != op[2]->type)) {
1499 YYLTYPE loc = this->subexpressions[1]->get_location();
1500
1501 _mesa_glsl_error(& loc, state, "second and third operands of ?: "
1502 "operator must have matching types");
1503 error_emitted = true;
1504 type = glsl_type::error_type;
1505 } else {
1506 type = op[1]->type;
1507 }
1508
1509 /* From page 33 (page 39 of the PDF) of the GLSL 1.10 spec:
1510 *
1511 * "The second and third expressions must be the same type, but can
1512 * be of any type other than an array."
1513 */
1514 if (type->is_array() &&
1515 !state->check_version(120, 300, &loc,
1516 "second and third operands of ?: operator "
1517 "cannot be arrays")) {
1518 error_emitted = true;
1519 }
1520
1521 ir_constant *cond_val = op[0]->constant_expression_value();
1522 ir_constant *then_val = op[1]->constant_expression_value();
1523 ir_constant *else_val = op[2]->constant_expression_value();
1524
1525 if (then_instructions.is_empty()
1526 && else_instructions.is_empty()
1527 && (cond_val != NULL) && (then_val != NULL) && (else_val != NULL)) {
1528 result = (cond_val->value.b[0]) ? then_val : else_val;
1529 } else {
1530 ir_variable *const tmp =
1531 new(ctx) ir_variable(type, "conditional_tmp", ir_var_temporary);
1532 instructions->push_tail(tmp);
1533
1534 ir_if *const stmt = new(ctx) ir_if(op[0]);
1535 instructions->push_tail(stmt);
1536
1537 then_instructions.move_nodes_to(& stmt->then_instructions);
1538 ir_dereference *const then_deref =
1539 new(ctx) ir_dereference_variable(tmp);
1540 ir_assignment *const then_assign =
1541 new(ctx) ir_assignment(then_deref, op[1]);
1542 stmt->then_instructions.push_tail(then_assign);
1543
1544 else_instructions.move_nodes_to(& stmt->else_instructions);
1545 ir_dereference *const else_deref =
1546 new(ctx) ir_dereference_variable(tmp);
1547 ir_assignment *const else_assign =
1548 new(ctx) ir_assignment(else_deref, op[2]);
1549 stmt->else_instructions.push_tail(else_assign);
1550
1551 result = new(ctx) ir_dereference_variable(tmp);
1552 }
1553 break;
1554 }
1555
1556 case ast_pre_inc:
1557 case ast_pre_dec: {
1558 this->non_lvalue_description = (this->oper == ast_pre_inc)
1559 ? "pre-increment operation" : "pre-decrement operation";
1560
1561 op[0] = this->subexpressions[0]->hir(instructions, state);
1562 op[1] = constant_one_for_inc_dec(ctx, op[0]->type);
1563
1564 type = arithmetic_result_type(op[0], op[1], false, state, & loc);
1565
1566 ir_rvalue *temp_rhs;
1567 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1568 op[0], op[1]);
1569
1570 result = do_assignment(instructions, state,
1571 this->subexpressions[0]->non_lvalue_description,
1572 op[0]->clone(ctx, NULL), temp_rhs, false,
1573 this->subexpressions[0]->get_location());
1574 error_emitted = op[0]->type->is_error();
1575 break;
1576 }
1577
1578 case ast_post_inc:
1579 case ast_post_dec: {
1580 this->non_lvalue_description = (this->oper == ast_post_inc)
1581 ? "post-increment operation" : "post-decrement operation";
1582 op[0] = this->subexpressions[0]->hir(instructions, state);
1583 op[1] = constant_one_for_inc_dec(ctx, op[0]->type);
1584
1585 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1586
1587 type = arithmetic_result_type(op[0], op[1], false, state, & loc);
1588
1589 ir_rvalue *temp_rhs;
1590 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1591 op[0], op[1]);
1592
1593 /* Get a temporary of a copy of the lvalue before it's modified.
1594 * This may get thrown away later.
1595 */
1596 result = get_lvalue_copy(instructions, op[0]->clone(ctx, NULL));
1597
1598 (void)do_assignment(instructions, state,
1599 this->subexpressions[0]->non_lvalue_description,
1600 op[0]->clone(ctx, NULL), temp_rhs, false,
1601 this->subexpressions[0]->get_location());
1602
1603 error_emitted = op[0]->type->is_error();
1604 break;
1605 }
1606
1607 case ast_field_selection:
1608 result = _mesa_ast_field_selection_to_hir(this, instructions, state);
1609 break;
1610
1611 case ast_array_index: {
1612 YYLTYPE index_loc = subexpressions[1]->get_location();
1613
1614 op[0] = subexpressions[0]->hir(instructions, state);
1615 op[1] = subexpressions[1]->hir(instructions, state);
1616
1617 result = _mesa_ast_array_index_to_hir(ctx, state, op[0], op[1],
1618 loc, index_loc);
1619
1620 if (result->type->is_error())
1621 error_emitted = true;
1622
1623 break;
1624 }
1625
1626 case ast_function_call:
1627 /* Should *NEVER* get here. ast_function_call should always be handled
1628 * by ast_function_expression::hir.
1629 */
1630 assert(0);
1631 break;
1632
1633 case ast_identifier: {
1634 /* ast_identifier can appear several places in a full abstract syntax
1635 * tree. This particular use must be at location specified in the grammar
1636 * as 'variable_identifier'.
1637 */
1638 ir_variable *var =
1639 state->symbols->get_variable(this->primary_expression.identifier);
1640
1641 if (var != NULL) {
1642 var->used = true;
1643 result = new(ctx) ir_dereference_variable(var);
1644 } else {
1645 _mesa_glsl_error(& loc, state, "`%s' undeclared",
1646 this->primary_expression.identifier);
1647
1648 result = ir_rvalue::error_value(ctx);
1649 error_emitted = true;
1650 }
1651 break;
1652 }
1653
1654 case ast_int_constant:
1655 result = new(ctx) ir_constant(this->primary_expression.int_constant);
1656 break;
1657
1658 case ast_uint_constant:
1659 result = new(ctx) ir_constant(this->primary_expression.uint_constant);
1660 break;
1661
1662 case ast_float_constant:
1663 result = new(ctx) ir_constant(this->primary_expression.float_constant);
1664 break;
1665
1666 case ast_bool_constant:
1667 result = new(ctx) ir_constant(bool(this->primary_expression.bool_constant));
1668 break;
1669
1670 case ast_sequence: {
1671 /* It should not be possible to generate a sequence in the AST without
1672 * any expressions in it.
1673 */
1674 assert(!this->expressions.is_empty());
1675
1676 /* The r-value of a sequence is the last expression in the sequence. If
1677 * the other expressions in the sequence do not have side-effects (and
1678 * therefore add instructions to the instruction list), they get dropped
1679 * on the floor.
1680 */
1681 exec_node *previous_tail_pred = NULL;
1682 YYLTYPE previous_operand_loc = loc;
1683
1684 foreach_list_typed (ast_node, ast, link, &this->expressions) {
1685 /* If one of the operands of comma operator does not generate any
1686 * code, we want to emit a warning. At each pass through the loop
1687 * previous_tail_pred will point to the last instruction in the
1688 * stream *before* processing the previous operand. Naturally,
1689 * instructions->tail_pred will point to the last instruction in the
1690 * stream *after* processing the previous operand. If the two
1691 * pointers match, then the previous operand had no effect.
1692 *
1693 * The warning behavior here differs slightly from GCC. GCC will
1694 * only emit a warning if none of the left-hand operands have an
1695 * effect. However, it will emit a warning for each. I believe that
1696 * there are some cases in C (especially with GCC extensions) where
1697 * it is useful to have an intermediate step in a sequence have no
1698 * effect, but I don't think these cases exist in GLSL. Either way,
1699 * it would be a giant hassle to replicate that behavior.
1700 */
1701 if (previous_tail_pred == instructions->tail_pred) {
1702 _mesa_glsl_warning(&previous_operand_loc, state,
1703 "left-hand operand of comma expression has "
1704 "no effect");
1705 }
1706
1707 /* tail_pred is directly accessed instead of using the get_tail()
1708 * method for performance reasons. get_tail() has extra code to
1709 * return NULL when the list is empty. We don't care about that
1710 * here, so using tail_pred directly is fine.
1711 */
1712 previous_tail_pred = instructions->tail_pred;
1713 previous_operand_loc = ast->get_location();
1714
1715 result = ast->hir(instructions, state);
1716 }
1717
1718 /* Any errors should have already been emitted in the loop above.
1719 */
1720 error_emitted = true;
1721 break;
1722 }
1723 }
1724 type = NULL; /* use result->type, not type. */
1725 assert(result != NULL);
1726
1727 if (result->type->is_error() && !error_emitted)
1728 _mesa_glsl_error(& loc, state, "type mismatch");
1729
1730 return result;
1731 }
1732
1733
1734 ir_rvalue *
1735 ast_expression_statement::hir(exec_list *instructions,
1736 struct _mesa_glsl_parse_state *state)
1737 {
1738 /* It is possible to have expression statements that don't have an
1739 * expression. This is the solitary semicolon:
1740 *
1741 * for (i = 0; i < 5; i++)
1742 * ;
1743 *
1744 * In this case the expression will be NULL. Test for NULL and don't do
1745 * anything in that case.
1746 */
1747 if (expression != NULL)
1748 expression->hir(instructions, state);
1749
1750 /* Statements do not have r-values.
1751 */
1752 return NULL;
1753 }
1754
1755
1756 ir_rvalue *
1757 ast_compound_statement::hir(exec_list *instructions,
1758 struct _mesa_glsl_parse_state *state)
1759 {
1760 if (new_scope)
1761 state->symbols->push_scope();
1762
1763 foreach_list_typed (ast_node, ast, link, &this->statements)
1764 ast->hir(instructions, state);
1765
1766 if (new_scope)
1767 state->symbols->pop_scope();
1768
1769 /* Compound statements do not have r-values.
1770 */
1771 return NULL;
1772 }
1773
1774
1775 static const glsl_type *
1776 process_array_type(YYLTYPE *loc, const glsl_type *base, ast_node *array_size,
1777 struct _mesa_glsl_parse_state *state)
1778 {
1779 unsigned length = 0;
1780
1781 if (base == NULL)
1782 return glsl_type::error_type;
1783
1784 /* From page 19 (page 25) of the GLSL 1.20 spec:
1785 *
1786 * "Only one-dimensional arrays may be declared."
1787 */
1788 if (base->is_array()) {
1789 _mesa_glsl_error(loc, state,
1790 "invalid array of `%s' (only one-dimensional arrays "
1791 "may be declared)",
1792 base->name);
1793 return glsl_type::error_type;
1794 }
1795
1796 if (array_size != NULL) {
1797 exec_list dummy_instructions;
1798 ir_rvalue *const ir = array_size->hir(& dummy_instructions, state);
1799 YYLTYPE loc = array_size->get_location();
1800
1801 if (ir != NULL) {
1802 if (!ir->type->is_integer()) {
1803 _mesa_glsl_error(& loc, state, "array size must be integer type");
1804 } else if (!ir->type->is_scalar()) {
1805 _mesa_glsl_error(& loc, state, "array size must be scalar type");
1806 } else {
1807 ir_constant *const size = ir->constant_expression_value();
1808
1809 if (size == NULL) {
1810 _mesa_glsl_error(& loc, state, "array size must be a "
1811 "constant valued expression");
1812 } else if (size->value.i[0] <= 0) {
1813 _mesa_glsl_error(& loc, state, "array size must be > 0");
1814 } else {
1815 assert(size->type == ir->type);
1816 length = size->value.u[0];
1817
1818 /* If the array size is const (and we've verified that
1819 * it is) then no instructions should have been emitted
1820 * when we converted it to HIR. If they were emitted,
1821 * then either the array size isn't const after all, or
1822 * we are emitting unnecessary instructions.
1823 */
1824 assert(dummy_instructions.is_empty());
1825 }
1826 }
1827 }
1828 }
1829
1830 const glsl_type *array_type = glsl_type::get_array_instance(base, length);
1831 return array_type != NULL ? array_type : glsl_type::error_type;
1832 }
1833
1834
1835 const glsl_type *
1836 ast_type_specifier::glsl_type(const char **name,
1837 struct _mesa_glsl_parse_state *state) const
1838 {
1839 const struct glsl_type *type;
1840
1841 type = state->symbols->get_type(this->type_name);
1842 *name = this->type_name;
1843
1844 if (this->is_array) {
1845 YYLTYPE loc = this->get_location();
1846 type = process_array_type(&loc, type, this->array_size, state);
1847 }
1848
1849 return type;
1850 }
1851
1852 const glsl_type *
1853 ast_fully_specified_type::glsl_type(const char **name,
1854 struct _mesa_glsl_parse_state *state) const
1855 {
1856 const struct glsl_type *type = this->specifier->glsl_type(name, state);
1857
1858 if (type == NULL)
1859 return NULL;
1860
1861 if (type->base_type == GLSL_TYPE_FLOAT
1862 && state->es_shader
1863 && state->target == fragment_shader
1864 && this->qualifier.precision == ast_precision_none
1865 && state->symbols->get_variable("#default precision") == NULL) {
1866 YYLTYPE loc = this->get_location();
1867 _mesa_glsl_error(&loc, state,
1868 "no precision specified this scope for type `%s'",
1869 type->name);
1870 }
1871
1872 return type;
1873 }
1874
1875 /**
1876 * Determine whether a toplevel variable declaration declares a varying. This
1877 * function operates by examining the variable's mode and the shader target,
1878 * so it correctly identifies linkage variables regardless of whether they are
1879 * declared using the deprecated "varying" syntax or the new "in/out" syntax.
1880 *
1881 * Passing a non-toplevel variable declaration (e.g. a function parameter) to
1882 * this function will produce undefined results.
1883 */
1884 static bool
1885 is_varying_var(ir_variable *var, _mesa_glsl_parser_targets target)
1886 {
1887 switch (target) {
1888 case vertex_shader:
1889 return var->mode == ir_var_shader_out;
1890 case fragment_shader:
1891 return var->mode == ir_var_shader_in;
1892 default:
1893 return var->mode == ir_var_shader_out || var->mode == ir_var_shader_in;
1894 }
1895 }
1896
1897
1898 /**
1899 * Matrix layout qualifiers are only allowed on certain types
1900 */
1901 static void
1902 validate_matrix_layout_for_type(struct _mesa_glsl_parse_state *state,
1903 YYLTYPE *loc,
1904 const glsl_type *type,
1905 ir_variable *var)
1906 {
1907 if (var && !var->is_in_uniform_block()) {
1908 /* Layout qualifiers may only apply to interface blocks and fields in
1909 * them.
1910 */
1911 _mesa_glsl_error(loc, state,
1912 "uniform block layout qualifiers row_major and "
1913 "column_major may not be applied to variables "
1914 "outside of uniform blocks");
1915 } else if (!type->is_matrix()) {
1916 /* The OpenGL ES 3.0 conformance tests did not originally allow
1917 * matrix layout qualifiers on non-matrices. However, the OpenGL
1918 * 4.4 and OpenGL ES 3.0 (revision TBD) specifications were
1919 * amended to specifically allow these layouts on all types. Emit
1920 * a warning so that people know their code may not be portable.
1921 */
1922 _mesa_glsl_warning(loc, state,
1923 "uniform block layout qualifiers row_major and "
1924 "column_major applied to non-matrix types may "
1925 "be rejected by older compilers");
1926 } else if (type->is_record()) {
1927 /* We allow 'layout(row_major)' on structure types because it's the only
1928 * way to get row-major layouts on matrices contained in structures.
1929 */
1930 _mesa_glsl_warning(loc, state,
1931 "uniform block layout qualifiers row_major and "
1932 "column_major applied to structure types is not "
1933 "strictly conformant and may be rejected by other "
1934 "compilers");
1935 }
1936 }
1937
1938 static bool
1939 validate_binding_qualifier(struct _mesa_glsl_parse_state *state,
1940 YYLTYPE *loc,
1941 ir_variable *var,
1942 const ast_type_qualifier *qual)
1943 {
1944 if (var->mode != ir_var_uniform) {
1945 _mesa_glsl_error(loc, state,
1946 "the \"binding\" qualifier only applies to uniforms");
1947 return false;
1948 }
1949
1950 if (qual->binding < 0) {
1951 _mesa_glsl_error(loc, state, "binding values must be >= 0");
1952 return false;
1953 }
1954
1955 const struct gl_context *const ctx = state->ctx;
1956 unsigned elements = var->type->is_array() ? var->type->length : 1;
1957 unsigned max_index = qual->binding + elements - 1;
1958
1959 if (var->type->is_interface()) {
1960 /* UBOs. From page 60 of the GLSL 4.20 specification:
1961 * "If the binding point for any uniform block instance is less than zero,
1962 * or greater than or equal to the implementation-dependent maximum
1963 * number of uniform buffer bindings, a compilation error will occur.
1964 * When the binding identifier is used with a uniform block instanced as
1965 * an array of size N, all elements of the array from binding through
1966 * binding + N – 1 must be within this range."
1967 *
1968 * The implementation-dependent maximum is GL_MAX_UNIFORM_BUFFER_BINDINGS.
1969 */
1970 if (max_index >= ctx->Const.MaxUniformBufferBindings) {
1971 _mesa_glsl_error(loc, state, "layout(binding = %d) for %d UBOs exceeds "
1972 "the maximum number of UBO binding points (%d)",
1973 qual->binding, elements,
1974 ctx->Const.MaxUniformBufferBindings);
1975 return false;
1976 }
1977 } else if (var->type->is_sampler() ||
1978 (var->type->is_array() && var->type->fields.array->is_sampler())) {
1979 /* Samplers. From page 63 of the GLSL 4.20 specification:
1980 * "If the binding is less than zero, or greater than or equal to the
1981 * implementation-dependent maximum supported number of units, a
1982 * compilation error will occur. When the binding identifier is used
1983 * with an array of size N, all elements of the array from binding
1984 * through binding + N - 1 must be within this range."
1985 */
1986 unsigned limit = 0;
1987 switch (state->target) {
1988 case vertex_shader:
1989 limit = ctx->Const.VertexProgram.MaxTextureImageUnits;
1990 break;
1991 case geometry_shader:
1992 limit = ctx->Const.GeometryProgram.MaxTextureImageUnits;
1993 break;
1994 case fragment_shader:
1995 limit = ctx->Const.FragmentProgram.MaxTextureImageUnits;
1996 break;
1997 }
1998
1999 if (max_index >= limit) {
2000 _mesa_glsl_error(loc, state, "layout(binding = %d) for %d samplers "
2001 "exceeds the maximum number of texture image units "
2002 "(%d)", qual->binding, elements, limit);
2003
2004 return false;
2005 }
2006 } else if (var->type->contains_atomic()) {
2007 assert(ctx->Const.MaxAtomicBufferBindings <= MAX_COMBINED_ATOMIC_BUFFERS);
2008 if (unsigned(qual->binding) >= ctx->Const.MaxAtomicBufferBindings) {
2009 _mesa_glsl_error(loc, state, "layout(binding = %d) exceeds the "
2010 " maximum number of atomic counter buffer bindings"
2011 "(%d)", qual->binding,
2012 ctx->Const.MaxAtomicBufferBindings);
2013
2014 return false;
2015 }
2016 } else {
2017 _mesa_glsl_error(loc, state,
2018 "the \"binding\" qualifier only applies to uniform "
2019 "blocks, samplers, atomic counters, or arrays thereof");
2020 return false;
2021 }
2022
2023 return true;
2024 }
2025
2026
2027 static glsl_interp_qualifier
2028 interpret_interpolation_qualifier(const struct ast_type_qualifier *qual,
2029 ir_variable_mode mode,
2030 struct _mesa_glsl_parse_state *state,
2031 YYLTYPE *loc)
2032 {
2033 glsl_interp_qualifier interpolation;
2034 if (qual->flags.q.flat)
2035 interpolation = INTERP_QUALIFIER_FLAT;
2036 else if (qual->flags.q.noperspective)
2037 interpolation = INTERP_QUALIFIER_NOPERSPECTIVE;
2038 else if (qual->flags.q.smooth)
2039 interpolation = INTERP_QUALIFIER_SMOOTH;
2040 else
2041 interpolation = INTERP_QUALIFIER_NONE;
2042
2043 if (interpolation != INTERP_QUALIFIER_NONE) {
2044 if (mode != ir_var_shader_in && mode != ir_var_shader_out) {
2045 _mesa_glsl_error(loc, state,
2046 "interpolation qualifier `%s' can only be applied to "
2047 "shader inputs or outputs.",
2048 interpolation_string(interpolation));
2049
2050 }
2051
2052 if ((state->target == vertex_shader && mode == ir_var_shader_in) ||
2053 (state->target == fragment_shader && mode == ir_var_shader_out)) {
2054 _mesa_glsl_error(loc, state,
2055 "interpolation qualifier `%s' cannot be applied to "
2056 "vertex shader inputs or fragment shader outputs",
2057 interpolation_string(interpolation));
2058 }
2059 }
2060
2061 return interpolation;
2062 }
2063
2064
2065 static void
2066 validate_explicit_location(const struct ast_type_qualifier *qual,
2067 ir_variable *var,
2068 struct _mesa_glsl_parse_state *state,
2069 YYLTYPE *loc)
2070 {
2071 bool fail = false;
2072
2073 /* In the vertex shader only shader inputs can be given explicit
2074 * locations.
2075 *
2076 * In the fragment shader only shader outputs can be given explicit
2077 * locations.
2078 */
2079 switch (state->target) {
2080 case vertex_shader:
2081 if (var->mode == ir_var_shader_in) {
2082 if (!state->check_explicit_attrib_location_allowed(loc, var))
2083 return;
2084
2085 break;
2086 }
2087
2088 fail = true;
2089 break;
2090
2091 case geometry_shader:
2092 _mesa_glsl_error(loc, state,
2093 "geometry shader variables cannot be given "
2094 "explicit locations");
2095 return;
2096
2097 case fragment_shader:
2098 if (var->mode == ir_var_shader_out) {
2099 if (!state->check_explicit_attrib_location_allowed(loc, var))
2100 return;
2101
2102 break;
2103 }
2104
2105 fail = true;
2106 break;
2107 };
2108
2109 if (fail) {
2110 _mesa_glsl_error(loc, state,
2111 "%s cannot be given an explicit location in %s shader",
2112 mode_string(var),
2113 _mesa_glsl_shader_target_name(state->target));
2114 } else {
2115 var->explicit_location = true;
2116
2117 /* This bit of silliness is needed because invalid explicit locations
2118 * are supposed to be flagged during linking. Small negative values
2119 * biased by VERT_ATTRIB_GENERIC0 or FRAG_RESULT_DATA0 could alias
2120 * built-in values (e.g., -16+VERT_ATTRIB_GENERIC0 = VERT_ATTRIB_POS).
2121 * The linker needs to be able to differentiate these cases. This
2122 * ensures that negative values stay negative.
2123 */
2124 if (qual->location >= 0) {
2125 var->location = (state->target == vertex_shader)
2126 ? (qual->location + VERT_ATTRIB_GENERIC0)
2127 : (qual->location + FRAG_RESULT_DATA0);
2128 } else {
2129 var->location = qual->location;
2130 }
2131
2132 if (qual->flags.q.explicit_index) {
2133 /* From the GLSL 4.30 specification, section 4.4.2 (Output
2134 * Layout Qualifiers):
2135 *
2136 * "It is also a compile-time error if a fragment shader
2137 * sets a layout index to less than 0 or greater than 1."
2138 *
2139 * Older specifications don't mandate a behavior; we take
2140 * this as a clarification and always generate the error.
2141 */
2142 if (qual->index < 0 || qual->index > 1) {
2143 _mesa_glsl_error(loc, state,
2144 "explicit index may only be 0 or 1");
2145 } else {
2146 var->explicit_index = true;
2147 var->index = qual->index;
2148 }
2149 }
2150 }
2151
2152 return;
2153 }
2154
2155 static void
2156 apply_type_qualifier_to_variable(const struct ast_type_qualifier *qual,
2157 ir_variable *var,
2158 struct _mesa_glsl_parse_state *state,
2159 YYLTYPE *loc,
2160 bool is_parameter)
2161 {
2162 STATIC_ASSERT(sizeof(qual->flags.q) <= sizeof(qual->flags.i));
2163
2164 if (qual->flags.q.invariant) {
2165 if (var->used) {
2166 _mesa_glsl_error(loc, state,
2167 "variable `%s' may not be redeclared "
2168 "`invariant' after being used",
2169 var->name);
2170 } else {
2171 var->invariant = 1;
2172 }
2173 }
2174
2175 if (qual->flags.q.constant || qual->flags.q.attribute
2176 || qual->flags.q.uniform
2177 || (qual->flags.q.varying && (state->target == fragment_shader)))
2178 var->read_only = 1;
2179
2180 if (qual->flags.q.centroid)
2181 var->centroid = 1;
2182
2183 if (qual->flags.q.attribute && state->target != vertex_shader) {
2184 var->type = glsl_type::error_type;
2185 _mesa_glsl_error(loc, state,
2186 "`attribute' variables may not be declared in the "
2187 "%s shader",
2188 _mesa_glsl_shader_target_name(state->target));
2189 }
2190
2191 /* Section 6.1.1 (Function Calling Conventions) of the GLSL 1.10 spec says:
2192 *
2193 * "However, the const qualifier cannot be used with out or inout."
2194 *
2195 * The same section of the GLSL 4.40 spec further clarifies this saying:
2196 *
2197 * "The const qualifier cannot be used with out or inout, or a
2198 * compile-time error results."
2199 */
2200 if (is_parameter && qual->flags.q.constant && qual->flags.q.out) {
2201 _mesa_glsl_error(loc, state,
2202 "`const' may not be applied to `out' or `inout' "
2203 "function parameters");
2204 }
2205
2206 /* If there is no qualifier that changes the mode of the variable, leave
2207 * the setting alone.
2208 */
2209 if (qual->flags.q.in && qual->flags.q.out)
2210 var->mode = ir_var_function_inout;
2211 else if (qual->flags.q.in)
2212 var->mode = is_parameter ? ir_var_function_in : ir_var_shader_in;
2213 else if (qual->flags.q.attribute
2214 || (qual->flags.q.varying && (state->target == fragment_shader)))
2215 var->mode = ir_var_shader_in;
2216 else if (qual->flags.q.out)
2217 var->mode = is_parameter ? ir_var_function_out : ir_var_shader_out;
2218 else if (qual->flags.q.varying && (state->target == vertex_shader))
2219 var->mode = ir_var_shader_out;
2220 else if (qual->flags.q.uniform)
2221 var->mode = ir_var_uniform;
2222
2223 if (!is_parameter && is_varying_var(var, state->target)) {
2224 /* This variable is being used to link data between shader stages (in
2225 * pre-glsl-1.30 parlance, it's a "varying"). Check that it has a type
2226 * that is allowed for such purposes.
2227 *
2228 * From page 25 (page 31 of the PDF) of the GLSL 1.10 spec:
2229 *
2230 * "The varying qualifier can be used only with the data types
2231 * float, vec2, vec3, vec4, mat2, mat3, and mat4, or arrays of
2232 * these."
2233 *
2234 * This was relaxed in GLSL version 1.30 and GLSL ES version 3.00. From
2235 * page 31 (page 37 of the PDF) of the GLSL 1.30 spec:
2236 *
2237 * "Fragment inputs can only be signed and unsigned integers and
2238 * integer vectors, float, floating-point vectors, matrices, or
2239 * arrays of these. Structures cannot be input.
2240 *
2241 * Similar text exists in the section on vertex shader outputs.
2242 *
2243 * Similar text exists in the GLSL ES 3.00 spec, except that the GLSL ES
2244 * 3.00 spec allows structs as well. Varying structs are also allowed
2245 * in GLSL 1.50.
2246 */
2247 switch (var->type->get_scalar_type()->base_type) {
2248 case GLSL_TYPE_FLOAT:
2249 /* Ok in all GLSL versions */
2250 break;
2251 case GLSL_TYPE_UINT:
2252 case GLSL_TYPE_INT:
2253 if (state->is_version(130, 300))
2254 break;
2255 _mesa_glsl_error(loc, state,
2256 "varying variables must be of base type float in %s",
2257 state->get_version_string());
2258 break;
2259 case GLSL_TYPE_STRUCT:
2260 if (state->is_version(150, 300))
2261 break;
2262 _mesa_glsl_error(loc, state,
2263 "varying variables may not be of type struct");
2264 break;
2265 default:
2266 _mesa_glsl_error(loc, state, "illegal type for a varying variable");
2267 break;
2268 }
2269 }
2270
2271 if (state->all_invariant && (state->current_function == NULL)) {
2272 switch (state->target) {
2273 case vertex_shader:
2274 if (var->mode == ir_var_shader_out)
2275 var->invariant = true;
2276 break;
2277 case geometry_shader:
2278 if ((var->mode == ir_var_shader_in)
2279 || (var->mode == ir_var_shader_out))
2280 var->invariant = true;
2281 break;
2282 case fragment_shader:
2283 if (var->mode == ir_var_shader_in)
2284 var->invariant = true;
2285 break;
2286 }
2287 }
2288
2289 var->interpolation =
2290 interpret_interpolation_qualifier(qual, (ir_variable_mode) var->mode,
2291 state, loc);
2292
2293 var->pixel_center_integer = qual->flags.q.pixel_center_integer;
2294 var->origin_upper_left = qual->flags.q.origin_upper_left;
2295 if ((qual->flags.q.origin_upper_left || qual->flags.q.pixel_center_integer)
2296 && (strcmp(var->name, "gl_FragCoord") != 0)) {
2297 const char *const qual_string = (qual->flags.q.origin_upper_left)
2298 ? "origin_upper_left" : "pixel_center_integer";
2299
2300 _mesa_glsl_error(loc, state,
2301 "layout qualifier `%s' can only be applied to "
2302 "fragment shader input `gl_FragCoord'",
2303 qual_string);
2304 }
2305
2306 if (qual->flags.q.explicit_location) {
2307 validate_explicit_location(qual, var, state, loc);
2308 } else if (qual->flags.q.explicit_index) {
2309 _mesa_glsl_error(loc, state,
2310 "explicit index requires explicit location");
2311 }
2312
2313 if (qual->flags.q.explicit_binding &&
2314 validate_binding_qualifier(state, loc, var, qual)) {
2315 var->explicit_binding = true;
2316 var->binding = qual->binding;
2317 }
2318
2319 if (var->type->contains_atomic()) {
2320 if (var->mode == ir_var_uniform) {
2321 if (var->explicit_binding) {
2322 unsigned *offset = &state->atomic_counter_offsets[var->binding];
2323
2324 if (*offset % ATOMIC_COUNTER_SIZE)
2325 _mesa_glsl_error(loc, state,
2326 "misaligned atomic counter offset");
2327
2328 var->atomic.offset = *offset;
2329 *offset += var->type->atomic_size();
2330
2331 } else {
2332 _mesa_glsl_error(loc, state,
2333 "atomic counters require explicit binding point");
2334 }
2335 } else if (var->mode != ir_var_function_in) {
2336 _mesa_glsl_error(loc, state, "atomic counters may only be declared as "
2337 "function parameters or uniform-qualified "
2338 "global variables");
2339 }
2340 }
2341
2342 /* Does the declaration use the deprecated 'attribute' or 'varying'
2343 * keywords?
2344 */
2345 const bool uses_deprecated_qualifier = qual->flags.q.attribute
2346 || qual->flags.q.varying;
2347
2348 /* Is the 'layout' keyword used with parameters that allow relaxed checking.
2349 * Many implementations of GL_ARB_fragment_coord_conventions_enable and some
2350 * implementations (only Mesa?) GL_ARB_explicit_attrib_location_enable
2351 * allowed the layout qualifier to be used with 'varying' and 'attribute'.
2352 * These extensions and all following extensions that add the 'layout'
2353 * keyword have been modified to require the use of 'in' or 'out'.
2354 *
2355 * The following extension do not allow the deprecated keywords:
2356 *
2357 * GL_AMD_conservative_depth
2358 * GL_ARB_conservative_depth
2359 * GL_ARB_gpu_shader5
2360 * GL_ARB_separate_shader_objects
2361 * GL_ARB_tesselation_shader
2362 * GL_ARB_transform_feedback3
2363 * GL_ARB_uniform_buffer_object
2364 *
2365 * It is unknown whether GL_EXT_shader_image_load_store or GL_NV_gpu_shader5
2366 * allow layout with the deprecated keywords.
2367 */
2368 const bool relaxed_layout_qualifier_checking =
2369 state->ARB_fragment_coord_conventions_enable;
2370
2371 if (qual->has_layout() && uses_deprecated_qualifier) {
2372 if (relaxed_layout_qualifier_checking) {
2373 _mesa_glsl_warning(loc, state,
2374 "`layout' qualifier may not be used with "
2375 "`attribute' or `varying'");
2376 } else {
2377 _mesa_glsl_error(loc, state,
2378 "`layout' qualifier may not be used with "
2379 "`attribute' or `varying'");
2380 }
2381 }
2382
2383 /* Layout qualifiers for gl_FragDepth, which are enabled by extension
2384 * AMD_conservative_depth.
2385 */
2386 int depth_layout_count = qual->flags.q.depth_any
2387 + qual->flags.q.depth_greater
2388 + qual->flags.q.depth_less
2389 + qual->flags.q.depth_unchanged;
2390 if (depth_layout_count > 0
2391 && !state->AMD_conservative_depth_enable
2392 && !state->ARB_conservative_depth_enable) {
2393 _mesa_glsl_error(loc, state,
2394 "extension GL_AMD_conservative_depth or "
2395 "GL_ARB_conservative_depth must be enabled "
2396 "to use depth layout qualifiers");
2397 } else if (depth_layout_count > 0
2398 && strcmp(var->name, "gl_FragDepth") != 0) {
2399 _mesa_glsl_error(loc, state,
2400 "depth layout qualifiers can be applied only to "
2401 "gl_FragDepth");
2402 } else if (depth_layout_count > 1
2403 && strcmp(var->name, "gl_FragDepth") == 0) {
2404 _mesa_glsl_error(loc, state,
2405 "at most one depth layout qualifier can be applied to "
2406 "gl_FragDepth");
2407 }
2408 if (qual->flags.q.depth_any)
2409 var->depth_layout = ir_depth_layout_any;
2410 else if (qual->flags.q.depth_greater)
2411 var->depth_layout = ir_depth_layout_greater;
2412 else if (qual->flags.q.depth_less)
2413 var->depth_layout = ir_depth_layout_less;
2414 else if (qual->flags.q.depth_unchanged)
2415 var->depth_layout = ir_depth_layout_unchanged;
2416 else
2417 var->depth_layout = ir_depth_layout_none;
2418
2419 if (qual->flags.q.std140 ||
2420 qual->flags.q.packed ||
2421 qual->flags.q.shared) {
2422 _mesa_glsl_error(loc, state,
2423 "uniform block layout qualifiers std140, packed, and "
2424 "shared can only be applied to uniform blocks, not "
2425 "members");
2426 }
2427
2428 if (qual->flags.q.row_major || qual->flags.q.column_major) {
2429 validate_matrix_layout_for_type(state, loc, var->type, var);
2430 }
2431 }
2432
2433 /**
2434 * Get the variable that is being redeclared by this declaration
2435 *
2436 * Semantic checks to verify the validity of the redeclaration are also
2437 * performed. If semantic checks fail, compilation error will be emitted via
2438 * \c _mesa_glsl_error, but a non-\c NULL pointer will still be returned.
2439 *
2440 * \returns
2441 * A pointer to an existing variable in the current scope if the declaration
2442 * is a redeclaration, \c NULL otherwise.
2443 */
2444 static ir_variable *
2445 get_variable_being_redeclared(ir_variable *var, YYLTYPE loc,
2446 struct _mesa_glsl_parse_state *state,
2447 bool allow_all_redeclarations)
2448 {
2449 /* Check if this declaration is actually a re-declaration, either to
2450 * resize an array or add qualifiers to an existing variable.
2451 *
2452 * This is allowed for variables in the current scope, or when at
2453 * global scope (for built-ins in the implicit outer scope).
2454 */
2455 ir_variable *earlier = state->symbols->get_variable(var->name);
2456 if (earlier == NULL ||
2457 (state->current_function != NULL &&
2458 !state->symbols->name_declared_this_scope(var->name))) {
2459 return NULL;
2460 }
2461
2462
2463 /* From page 24 (page 30 of the PDF) of the GLSL 1.50 spec,
2464 *
2465 * "It is legal to declare an array without a size and then
2466 * later re-declare the same name as an array of the same
2467 * type and specify a size."
2468 */
2469 if (earlier->type->is_unsized_array() && var->type->is_array()
2470 && (var->type->element_type() == earlier->type->element_type())) {
2471 /* FINISHME: This doesn't match the qualifiers on the two
2472 * FINISHME: declarations. It's not 100% clear whether this is
2473 * FINISHME: required or not.
2474 */
2475
2476 const unsigned size = unsigned(var->type->array_size());
2477 check_builtin_array_max_size(var->name, size, loc, state);
2478 if ((size > 0) && (size <= earlier->max_array_access)) {
2479 _mesa_glsl_error(& loc, state, "array size must be > %u due to "
2480 "previous access",
2481 earlier->max_array_access);
2482 }
2483
2484 earlier->type = var->type;
2485 delete var;
2486 var = NULL;
2487 } else if ((state->ARB_fragment_coord_conventions_enable ||
2488 state->is_version(150, 0))
2489 && strcmp(var->name, "gl_FragCoord") == 0
2490 && earlier->type == var->type
2491 && earlier->mode == var->mode) {
2492 /* Allow redeclaration of gl_FragCoord for ARB_fcc layout
2493 * qualifiers.
2494 */
2495 earlier->origin_upper_left = var->origin_upper_left;
2496 earlier->pixel_center_integer = var->pixel_center_integer;
2497
2498 /* According to section 4.3.7 of the GLSL 1.30 spec,
2499 * the following built-in varaibles can be redeclared with an
2500 * interpolation qualifier:
2501 * * gl_FrontColor
2502 * * gl_BackColor
2503 * * gl_FrontSecondaryColor
2504 * * gl_BackSecondaryColor
2505 * * gl_Color
2506 * * gl_SecondaryColor
2507 */
2508 } else if (state->is_version(130, 0)
2509 && (strcmp(var->name, "gl_FrontColor") == 0
2510 || strcmp(var->name, "gl_BackColor") == 0
2511 || strcmp(var->name, "gl_FrontSecondaryColor") == 0
2512 || strcmp(var->name, "gl_BackSecondaryColor") == 0
2513 || strcmp(var->name, "gl_Color") == 0
2514 || strcmp(var->name, "gl_SecondaryColor") == 0)
2515 && earlier->type == var->type
2516 && earlier->mode == var->mode) {
2517 earlier->interpolation = var->interpolation;
2518
2519 /* Layout qualifiers for gl_FragDepth. */
2520 } else if ((state->AMD_conservative_depth_enable ||
2521 state->ARB_conservative_depth_enable)
2522 && strcmp(var->name, "gl_FragDepth") == 0
2523 && earlier->type == var->type
2524 && earlier->mode == var->mode) {
2525
2526 /** From the AMD_conservative_depth spec:
2527 * Within any shader, the first redeclarations of gl_FragDepth
2528 * must appear before any use of gl_FragDepth.
2529 */
2530 if (earlier->used) {
2531 _mesa_glsl_error(&loc, state,
2532 "the first redeclaration of gl_FragDepth "
2533 "must appear before any use of gl_FragDepth");
2534 }
2535
2536 /* Prevent inconsistent redeclaration of depth layout qualifier. */
2537 if (earlier->depth_layout != ir_depth_layout_none
2538 && earlier->depth_layout != var->depth_layout) {
2539 _mesa_glsl_error(&loc, state,
2540 "gl_FragDepth: depth layout is declared here "
2541 "as '%s, but it was previously declared as "
2542 "'%s'",
2543 depth_layout_string(var->depth_layout),
2544 depth_layout_string(earlier->depth_layout));
2545 }
2546
2547 earlier->depth_layout = var->depth_layout;
2548
2549 } else if (allow_all_redeclarations) {
2550 if (earlier->mode != var->mode) {
2551 _mesa_glsl_error(&loc, state,
2552 "redeclaration of `%s' with incorrect qualifiers",
2553 var->name);
2554 } else if (earlier->type != var->type) {
2555 _mesa_glsl_error(&loc, state,
2556 "redeclaration of `%s' has incorrect type",
2557 var->name);
2558 }
2559 } else {
2560 _mesa_glsl_error(&loc, state, "`%s' redeclared", var->name);
2561 }
2562
2563 return earlier;
2564 }
2565
2566 /**
2567 * Generate the IR for an initializer in a variable declaration
2568 */
2569 ir_rvalue *
2570 process_initializer(ir_variable *var, ast_declaration *decl,
2571 ast_fully_specified_type *type,
2572 exec_list *initializer_instructions,
2573 struct _mesa_glsl_parse_state *state)
2574 {
2575 ir_rvalue *result = NULL;
2576
2577 YYLTYPE initializer_loc = decl->initializer->get_location();
2578
2579 /* From page 24 (page 30 of the PDF) of the GLSL 1.10 spec:
2580 *
2581 * "All uniform variables are read-only and are initialized either
2582 * directly by an application via API commands, or indirectly by
2583 * OpenGL."
2584 */
2585 if (var->mode == ir_var_uniform) {
2586 state->check_version(120, 0, &initializer_loc,
2587 "cannot initialize uniforms");
2588 }
2589
2590 if (var->type->is_sampler()) {
2591 _mesa_glsl_error(& initializer_loc, state,
2592 "cannot initialize samplers");
2593 }
2594
2595 if ((var->mode == ir_var_shader_in) && (state->current_function == NULL)) {
2596 _mesa_glsl_error(& initializer_loc, state,
2597 "cannot initialize %s shader input / %s",
2598 _mesa_glsl_shader_target_name(state->target),
2599 (state->target == vertex_shader)
2600 ? "attribute" : "varying");
2601 }
2602
2603 ir_dereference *const lhs = new(state) ir_dereference_variable(var);
2604 ir_rvalue *rhs = decl->initializer->hir(initializer_instructions,
2605 state);
2606
2607 /* Calculate the constant value if this is a const or uniform
2608 * declaration.
2609 */
2610 if (type->qualifier.flags.q.constant
2611 || type->qualifier.flags.q.uniform) {
2612 ir_rvalue *new_rhs = validate_assignment(state, initializer_loc,
2613 var->type, rhs, true);
2614 if (new_rhs != NULL) {
2615 rhs = new_rhs;
2616
2617 ir_constant *constant_value = rhs->constant_expression_value();
2618 if (!constant_value) {
2619 /* If ARB_shading_language_420pack is enabled, initializers of
2620 * const-qualified local variables do not have to be constant
2621 * expressions. Const-qualified global variables must still be
2622 * initialized with constant expressions.
2623 */
2624 if (!state->ARB_shading_language_420pack_enable
2625 || state->current_function == NULL) {
2626 _mesa_glsl_error(& initializer_loc, state,
2627 "initializer of %s variable `%s' must be a "
2628 "constant expression",
2629 (type->qualifier.flags.q.constant)
2630 ? "const" : "uniform",
2631 decl->identifier);
2632 if (var->type->is_numeric()) {
2633 /* Reduce cascading errors. */
2634 var->constant_value = ir_constant::zero(state, var->type);
2635 }
2636 }
2637 } else {
2638 rhs = constant_value;
2639 var->constant_value = constant_value;
2640 }
2641 } else {
2642 if (var->type->is_numeric()) {
2643 /* Reduce cascading errors. */
2644 var->constant_value = ir_constant::zero(state, var->type);
2645 }
2646 }
2647 }
2648
2649 if (rhs && !rhs->type->is_error()) {
2650 bool temp = var->read_only;
2651 if (type->qualifier.flags.q.constant)
2652 var->read_only = false;
2653
2654 /* Never emit code to initialize a uniform.
2655 */
2656 const glsl_type *initializer_type;
2657 if (!type->qualifier.flags.q.uniform) {
2658 result = do_assignment(initializer_instructions, state,
2659 NULL,
2660 lhs, rhs, true,
2661 type->get_location());
2662 initializer_type = result->type;
2663 } else
2664 initializer_type = rhs->type;
2665
2666 var->constant_initializer = rhs->constant_expression_value();
2667 var->has_initializer = true;
2668
2669 /* If the declared variable is an unsized array, it must inherrit
2670 * its full type from the initializer. A declaration such as
2671 *
2672 * uniform float a[] = float[](1.0, 2.0, 3.0, 3.0);
2673 *
2674 * becomes
2675 *
2676 * uniform float a[4] = float[](1.0, 2.0, 3.0, 3.0);
2677 *
2678 * The assignment generated in the if-statement (below) will also
2679 * automatically handle this case for non-uniforms.
2680 *
2681 * If the declared variable is not an array, the types must
2682 * already match exactly. As a result, the type assignment
2683 * here can be done unconditionally. For non-uniforms the call
2684 * to do_assignment can change the type of the initializer (via
2685 * the implicit conversion rules). For uniforms the initializer
2686 * must be a constant expression, and the type of that expression
2687 * was validated above.
2688 */
2689 var->type = initializer_type;
2690
2691 var->read_only = temp;
2692 }
2693
2694 return result;
2695 }
2696
2697
2698 /**
2699 * Do additional processing necessary for geometry shader input declarations
2700 * (this covers both interface blocks arrays and bare input variables).
2701 */
2702 static void
2703 handle_geometry_shader_input_decl(struct _mesa_glsl_parse_state *state,
2704 YYLTYPE loc, ir_variable *var)
2705 {
2706 unsigned num_vertices = 0;
2707 if (state->gs_input_prim_type_specified) {
2708 num_vertices = vertices_per_prim(state->gs_input_prim_type);
2709 }
2710
2711 /* Geometry shader input variables must be arrays. Caller should have
2712 * reported an error for this.
2713 */
2714 if (!var->type->is_array()) {
2715 assert(state->error);
2716
2717 /* To avoid cascading failures, short circuit the checks below. */
2718 return;
2719 }
2720
2721 if (var->type->is_unsized_array()) {
2722 /* Section 4.3.8.1 (Input Layout Qualifiers) of the GLSL 1.50 spec says:
2723 *
2724 * All geometry shader input unsized array declarations will be
2725 * sized by an earlier input layout qualifier, when present, as per
2726 * the following table.
2727 *
2728 * Followed by a table mapping each allowed input layout qualifier to
2729 * the corresponding input length.
2730 */
2731 if (num_vertices != 0)
2732 var->type = glsl_type::get_array_instance(var->type->fields.array,
2733 num_vertices);
2734 } else {
2735 /* Section 4.3.8.1 (Input Layout Qualifiers) of the GLSL 1.50 spec
2736 * includes the following examples of compile-time errors:
2737 *
2738 * // code sequence within one shader...
2739 * in vec4 Color1[]; // size unknown
2740 * ...Color1.length()...// illegal, length() unknown
2741 * in vec4 Color2[2]; // size is 2
2742 * ...Color1.length()...// illegal, Color1 still has no size
2743 * in vec4 Color3[3]; // illegal, input sizes are inconsistent
2744 * layout(lines) in; // legal, input size is 2, matching
2745 * in vec4 Color4[3]; // illegal, contradicts layout
2746 * ...
2747 *
2748 * To detect the case illustrated by Color3, we verify that the size of
2749 * an explicitly-sized array matches the size of any previously declared
2750 * explicitly-sized array. To detect the case illustrated by Color4, we
2751 * verify that the size of an explicitly-sized array is consistent with
2752 * any previously declared input layout.
2753 */
2754 if (num_vertices != 0 && var->type->length != num_vertices) {
2755 _mesa_glsl_error(&loc, state,
2756 "geometry shader input size contradicts previously"
2757 " declared layout (size is %u, but layout requires a"
2758 " size of %u)", var->type->length, num_vertices);
2759 } else if (state->gs_input_size != 0 &&
2760 var->type->length != state->gs_input_size) {
2761 _mesa_glsl_error(&loc, state,
2762 "geometry shader input sizes are "
2763 "inconsistent (size is %u, but a previous "
2764 "declaration has size %u)",
2765 var->type->length, state->gs_input_size);
2766 } else {
2767 state->gs_input_size = var->type->length;
2768 }
2769 }
2770 }
2771
2772
2773 void
2774 validate_identifier(const char *identifier, YYLTYPE loc,
2775 struct _mesa_glsl_parse_state *state)
2776 {
2777 /* From page 15 (page 21 of the PDF) of the GLSL 1.10 spec,
2778 *
2779 * "Identifiers starting with "gl_" are reserved for use by
2780 * OpenGL, and may not be declared in a shader as either a
2781 * variable or a function."
2782 */
2783 if (strncmp(identifier, "gl_", 3) == 0) {
2784 _mesa_glsl_error(&loc, state,
2785 "identifier `%s' uses reserved `gl_' prefix",
2786 identifier);
2787 } else if (strstr(identifier, "__")) {
2788 /* From page 14 (page 20 of the PDF) of the GLSL 1.10
2789 * spec:
2790 *
2791 * "In addition, all identifiers containing two
2792 * consecutive underscores (__) are reserved as
2793 * possible future keywords."
2794 */
2795 _mesa_glsl_error(&loc, state,
2796 "identifier `%s' uses reserved `__' string",
2797 identifier);
2798 }
2799 }
2800
2801
2802 ir_rvalue *
2803 ast_declarator_list::hir(exec_list *instructions,
2804 struct _mesa_glsl_parse_state *state)
2805 {
2806 void *ctx = state;
2807 const struct glsl_type *decl_type;
2808 const char *type_name = NULL;
2809 ir_rvalue *result = NULL;
2810 YYLTYPE loc = this->get_location();
2811
2812 /* From page 46 (page 52 of the PDF) of the GLSL 1.50 spec:
2813 *
2814 * "To ensure that a particular output variable is invariant, it is
2815 * necessary to use the invariant qualifier. It can either be used to
2816 * qualify a previously declared variable as being invariant
2817 *
2818 * invariant gl_Position; // make existing gl_Position be invariant"
2819 *
2820 * In these cases the parser will set the 'invariant' flag in the declarator
2821 * list, and the type will be NULL.
2822 */
2823 if (this->invariant) {
2824 assert(this->type == NULL);
2825
2826 if (state->current_function != NULL) {
2827 _mesa_glsl_error(& loc, state,
2828 "all uses of `invariant' keyword must be at global "
2829 "scope");
2830 }
2831
2832 foreach_list_typed (ast_declaration, decl, link, &this->declarations) {
2833 assert(!decl->is_array);
2834 assert(decl->array_size == NULL);
2835 assert(decl->initializer == NULL);
2836
2837 ir_variable *const earlier =
2838 state->symbols->get_variable(decl->identifier);
2839 if (earlier == NULL) {
2840 _mesa_glsl_error(& loc, state,
2841 "undeclared variable `%s' cannot be marked "
2842 "invariant", decl->identifier);
2843 } else if ((state->target == vertex_shader)
2844 && (earlier->mode != ir_var_shader_out)) {
2845 _mesa_glsl_error(& loc, state,
2846 "`%s' cannot be marked invariant, vertex shader "
2847 "outputs only", decl->identifier);
2848 } else if ((state->target == fragment_shader)
2849 && (earlier->mode != ir_var_shader_in)) {
2850 _mesa_glsl_error(& loc, state,
2851 "`%s' cannot be marked invariant, fragment shader "
2852 "inputs only", decl->identifier);
2853 } else if (earlier->used) {
2854 _mesa_glsl_error(& loc, state,
2855 "variable `%s' may not be redeclared "
2856 "`invariant' after being used",
2857 earlier->name);
2858 } else {
2859 earlier->invariant = true;
2860 }
2861 }
2862
2863 /* Invariant redeclarations do not have r-values.
2864 */
2865 return NULL;
2866 }
2867
2868 assert(this->type != NULL);
2869 assert(!this->invariant);
2870
2871 /* The type specifier may contain a structure definition. Process that
2872 * before any of the variable declarations.
2873 */
2874 (void) this->type->specifier->hir(instructions, state);
2875
2876 decl_type = this->type->glsl_type(& type_name, state);
2877
2878 /* An offset-qualified atomic counter declaration sets the default
2879 * offset for the next declaration within the same atomic counter
2880 * buffer.
2881 */
2882 if (decl_type && decl_type->contains_atomic()) {
2883 if (type->qualifier.flags.q.explicit_binding &&
2884 type->qualifier.flags.q.explicit_offset)
2885 state->atomic_counter_offsets[type->qualifier.binding] =
2886 type->qualifier.offset;
2887 }
2888
2889 if (this->declarations.is_empty()) {
2890 /* If there is no structure involved in the program text, there are two
2891 * possible scenarios:
2892 *
2893 * - The program text contained something like 'vec4;'. This is an
2894 * empty declaration. It is valid but weird. Emit a warning.
2895 *
2896 * - The program text contained something like 'S;' and 'S' is not the
2897 * name of a known structure type. This is both invalid and weird.
2898 * Emit an error.
2899 *
2900 * - The program text contained something like 'mediump float;'
2901 * when the programmer probably meant 'precision mediump
2902 * float;' Emit a warning with a description of what they
2903 * probably meant to do.
2904 *
2905 * Note that if decl_type is NULL and there is a structure involved,
2906 * there must have been some sort of error with the structure. In this
2907 * case we assume that an error was already generated on this line of
2908 * code for the structure. There is no need to generate an additional,
2909 * confusing error.
2910 */
2911 assert(this->type->specifier->structure == NULL || decl_type != NULL
2912 || state->error);
2913
2914 if (decl_type == NULL) {
2915 _mesa_glsl_error(&loc, state,
2916 "invalid type `%s' in empty declaration",
2917 type_name);
2918 } else if (decl_type->base_type == GLSL_TYPE_ATOMIC_UINT) {
2919 /* Empty atomic counter declarations are allowed and useful
2920 * to set the default offset qualifier.
2921 */
2922 return NULL;
2923 } else if (this->type->qualifier.precision != ast_precision_none) {
2924 if (this->type->specifier->structure != NULL) {
2925 _mesa_glsl_error(&loc, state,
2926 "precision qualifiers can't be applied "
2927 "to structures");
2928 } else {
2929 static const char *const precision_names[] = {
2930 "highp",
2931 "highp",
2932 "mediump",
2933 "lowp"
2934 };
2935
2936 _mesa_glsl_warning(&loc, state,
2937 "empty declaration with precision qualifier, "
2938 "to set the default precision, use "
2939 "`precision %s %s;'",
2940 precision_names[this->type->qualifier.precision],
2941 type_name);
2942 }
2943 } else {
2944 _mesa_glsl_warning(&loc, state, "empty declaration");
2945 }
2946 }
2947
2948 foreach_list_typed (ast_declaration, decl, link, &this->declarations) {
2949 const struct glsl_type *var_type;
2950 ir_variable *var;
2951
2952 /* FINISHME: Emit a warning if a variable declaration shadows a
2953 * FINISHME: declaration at a higher scope.
2954 */
2955
2956 if ((decl_type == NULL) || decl_type->is_void()) {
2957 if (type_name != NULL) {
2958 _mesa_glsl_error(& loc, state,
2959 "invalid type `%s' in declaration of `%s'",
2960 type_name, decl->identifier);
2961 } else {
2962 _mesa_glsl_error(& loc, state,
2963 "invalid type in declaration of `%s'",
2964 decl->identifier);
2965 }
2966 continue;
2967 }
2968
2969 if (decl->is_array) {
2970 var_type = process_array_type(&loc, decl_type, decl->array_size,
2971 state);
2972 if (var_type->is_error())
2973 continue;
2974 } else {
2975 var_type = decl_type;
2976 }
2977
2978 var = new(ctx) ir_variable(var_type, decl->identifier, ir_var_auto);
2979
2980 /* The 'varying in' and 'varying out' qualifiers can only be used with
2981 * ARB_geometry_shader4 and EXT_geometry_shader4, which we don't support
2982 * yet.
2983 */
2984 if (this->type->qualifier.flags.q.varying) {
2985 if (this->type->qualifier.flags.q.in) {
2986 _mesa_glsl_error(& loc, state,
2987 "`varying in' qualifier in declaration of "
2988 "`%s' only valid for geometry shaders using "
2989 "ARB_geometry_shader4 or EXT_geometry_shader4",
2990 decl->identifier);
2991 } else if (this->type->qualifier.flags.q.out) {
2992 _mesa_glsl_error(& loc, state,
2993 "`varying out' qualifier in declaration of "
2994 "`%s' only valid for geometry shaders using "
2995 "ARB_geometry_shader4 or EXT_geometry_shader4",
2996 decl->identifier);
2997 }
2998 }
2999
3000 /* From page 22 (page 28 of the PDF) of the GLSL 1.10 specification;
3001 *
3002 * "Global variables can only use the qualifiers const,
3003 * attribute, uni form, or varying. Only one may be
3004 * specified.
3005 *
3006 * Local variables can only use the qualifier const."
3007 *
3008 * This is relaxed in GLSL 1.30 and GLSL ES 3.00. It is also relaxed by
3009 * any extension that adds the 'layout' keyword.
3010 */
3011 if (!state->is_version(130, 300)
3012 && !state->has_explicit_attrib_location()
3013 && !state->ARB_fragment_coord_conventions_enable) {
3014 if (this->type->qualifier.flags.q.out) {
3015 _mesa_glsl_error(& loc, state,
3016 "`out' qualifier in declaration of `%s' "
3017 "only valid for function parameters in %s",
3018 decl->identifier, state->get_version_string());
3019 }
3020 if (this->type->qualifier.flags.q.in) {
3021 _mesa_glsl_error(& loc, state,
3022 "`in' qualifier in declaration of `%s' "
3023 "only valid for function parameters in %s",
3024 decl->identifier, state->get_version_string());
3025 }
3026 /* FINISHME: Test for other invalid qualifiers. */
3027 }
3028
3029 apply_type_qualifier_to_variable(& this->type->qualifier, var, state,
3030 & loc, false);
3031
3032 if (this->type->qualifier.flags.q.invariant) {
3033 if ((state->target == vertex_shader) &&
3034 var->mode != ir_var_shader_out) {
3035 _mesa_glsl_error(& loc, state,
3036 "`%s' cannot be marked invariant, vertex shader "
3037 "outputs only", var->name);
3038 } else if ((state->target == fragment_shader) &&
3039 var->mode != ir_var_shader_in) {
3040 /* FINISHME: Note that this doesn't work for invariant on
3041 * a function signature inval
3042 */
3043 _mesa_glsl_error(& loc, state,
3044 "`%s' cannot be marked invariant, fragment shader "
3045 "inputs only", var->name);
3046 }
3047 }
3048
3049 if (state->current_function != NULL) {
3050 const char *mode = NULL;
3051 const char *extra = "";
3052
3053 /* There is no need to check for 'inout' here because the parser will
3054 * only allow that in function parameter lists.
3055 */
3056 if (this->type->qualifier.flags.q.attribute) {
3057 mode = "attribute";
3058 } else if (this->type->qualifier.flags.q.uniform) {
3059 mode = "uniform";
3060 } else if (this->type->qualifier.flags.q.varying) {
3061 mode = "varying";
3062 } else if (this->type->qualifier.flags.q.in) {
3063 mode = "in";
3064 extra = " or in function parameter list";
3065 } else if (this->type->qualifier.flags.q.out) {
3066 mode = "out";
3067 extra = " or in function parameter list";
3068 }
3069
3070 if (mode) {
3071 _mesa_glsl_error(& loc, state,
3072 "%s variable `%s' must be declared at "
3073 "global scope%s",
3074 mode, var->name, extra);
3075 }
3076 } else if (var->mode == ir_var_shader_in) {
3077 var->read_only = true;
3078
3079 if (state->target == vertex_shader) {
3080 bool error_emitted = false;
3081
3082 /* From page 31 (page 37 of the PDF) of the GLSL 1.50 spec:
3083 *
3084 * "Vertex shader inputs can only be float, floating-point
3085 * vectors, matrices, signed and unsigned integers and integer
3086 * vectors. Vertex shader inputs can also form arrays of these
3087 * types, but not structures."
3088 *
3089 * From page 31 (page 27 of the PDF) of the GLSL 1.30 spec:
3090 *
3091 * "Vertex shader inputs can only be float, floating-point
3092 * vectors, matrices, signed and unsigned integers and integer
3093 * vectors. They cannot be arrays or structures."
3094 *
3095 * From page 23 (page 29 of the PDF) of the GLSL 1.20 spec:
3096 *
3097 * "The attribute qualifier can be used only with float,
3098 * floating-point vectors, and matrices. Attribute variables
3099 * cannot be declared as arrays or structures."
3100 *
3101 * From page 33 (page 39 of the PDF) of the GLSL ES 3.00 spec:
3102 *
3103 * "Vertex shader inputs can only be float, floating-point
3104 * vectors, matrices, signed and unsigned integers and integer
3105 * vectors. Vertex shader inputs cannot be arrays or
3106 * structures."
3107 */
3108 const glsl_type *check_type = var->type->is_array()
3109 ? var->type->fields.array : var->type;
3110
3111 switch (check_type->base_type) {
3112 case GLSL_TYPE_FLOAT:
3113 break;
3114 case GLSL_TYPE_UINT:
3115 case GLSL_TYPE_INT:
3116 if (state->is_version(120, 300))
3117 break;
3118 /* FALLTHROUGH */
3119 default:
3120 _mesa_glsl_error(& loc, state,
3121 "vertex shader input / attribute cannot have "
3122 "type %s`%s'",
3123 var->type->is_array() ? "array of " : "",
3124 check_type->name);
3125 error_emitted = true;
3126 }
3127
3128 if (!error_emitted && var->type->is_array() &&
3129 !state->check_version(150, 0, &loc,
3130 "vertex shader input / attribute "
3131 "cannot have array type")) {
3132 error_emitted = true;
3133 }
3134 } else if (state->target == geometry_shader) {
3135 /* From section 4.3.4 (Inputs) of the GLSL 1.50 spec:
3136 *
3137 * Geometry shader input variables get the per-vertex values
3138 * written out by vertex shader output variables of the same
3139 * names. Since a geometry shader operates on a set of
3140 * vertices, each input varying variable (or input block, see
3141 * interface blocks below) needs to be declared as an array.
3142 */
3143 if (!var->type->is_array()) {
3144 _mesa_glsl_error(&loc, state,
3145 "geometry shader inputs must be arrays");
3146 }
3147
3148 handle_geometry_shader_input_decl(state, loc, var);
3149 }
3150 }
3151
3152 /* Integer fragment inputs must be qualified with 'flat'. In GLSL ES,
3153 * so must integer vertex outputs.
3154 *
3155 * From section 4.3.4 ("Inputs") of the GLSL 1.50 spec:
3156 * "Fragment shader inputs that are signed or unsigned integers or
3157 * integer vectors must be qualified with the interpolation qualifier
3158 * flat."
3159 *
3160 * From section 4.3.4 ("Input Variables") of the GLSL 3.00 ES spec:
3161 * "Fragment shader inputs that are, or contain, signed or unsigned
3162 * integers or integer vectors must be qualified with the
3163 * interpolation qualifier flat."
3164 *
3165 * From section 4.3.6 ("Output Variables") of the GLSL 3.00 ES spec:
3166 * "Vertex shader outputs that are, or contain, signed or unsigned
3167 * integers or integer vectors must be qualified with the
3168 * interpolation qualifier flat."
3169 *
3170 * Note that prior to GLSL 1.50, this requirement applied to vertex
3171 * outputs rather than fragment inputs. That creates problems in the
3172 * presence of geometry shaders, so we adopt the GLSL 1.50 rule for all
3173 * desktop GL shaders. For GLSL ES shaders, we follow the spec and
3174 * apply the restriction to both vertex outputs and fragment inputs.
3175 *
3176 * Note also that the desktop GLSL specs are missing the text "or
3177 * contain"; this is presumably an oversight, since there is no
3178 * reasonable way to interpolate a fragment shader input that contains
3179 * an integer.
3180 */
3181 if (state->is_version(130, 300) &&
3182 var->type->contains_integer() &&
3183 var->interpolation != INTERP_QUALIFIER_FLAT &&
3184 ((state->target == fragment_shader && var->mode == ir_var_shader_in)
3185 || (state->target == vertex_shader && var->mode == ir_var_shader_out
3186 && state->es_shader))) {
3187 const char *var_type = (state->target == vertex_shader) ?
3188 "vertex output" : "fragment input";
3189 _mesa_glsl_error(&loc, state, "if a %s is (or contains) "
3190 "an integer, then it must be qualified with 'flat'",
3191 var_type);
3192 }
3193
3194
3195 /* Interpolation qualifiers cannot be applied to 'centroid' and
3196 * 'centroid varying'.
3197 *
3198 * From page 29 (page 35 of the PDF) of the GLSL 1.30 spec:
3199 * "interpolation qualifiers may only precede the qualifiers in,
3200 * centroid in, out, or centroid out in a declaration. They do not apply
3201 * to the deprecated storage qualifiers varying or centroid varying."
3202 *
3203 * These deprecated storage qualifiers do not exist in GLSL ES 3.00.
3204 */
3205 if (state->is_version(130, 0)
3206 && this->type->qualifier.has_interpolation()
3207 && this->type->qualifier.flags.q.varying) {
3208
3209 const char *i = this->type->qualifier.interpolation_string();
3210 assert(i != NULL);
3211 const char *s;
3212 if (this->type->qualifier.flags.q.centroid)
3213 s = "centroid varying";
3214 else
3215 s = "varying";
3216
3217 _mesa_glsl_error(&loc, state,
3218 "qualifier '%s' cannot be applied to the "
3219 "deprecated storage qualifier '%s'", i, s);
3220 }
3221
3222
3223 /* Interpolation qualifiers can only apply to vertex shader outputs and
3224 * fragment shader inputs.
3225 *
3226 * From page 29 (page 35 of the PDF) of the GLSL 1.30 spec:
3227 * "Outputs from a vertex shader (out) and inputs to a fragment
3228 * shader (in) can be further qualified with one or more of these
3229 * interpolation qualifiers"
3230 *
3231 * From page 31 (page 37 of the PDF) of the GLSL ES 3.00 spec:
3232 * "These interpolation qualifiers may only precede the qualifiers
3233 * in, centroid in, out, or centroid out in a declaration. They do
3234 * not apply to inputs into a vertex shader or outputs from a
3235 * fragment shader."
3236 */
3237 if (state->is_version(130, 300)
3238 && this->type->qualifier.has_interpolation()) {
3239
3240 const char *i = this->type->qualifier.interpolation_string();
3241 assert(i != NULL);
3242
3243 switch (state->target) {
3244 case vertex_shader:
3245 if (this->type->qualifier.flags.q.in) {
3246 _mesa_glsl_error(&loc, state,
3247 "qualifier '%s' cannot be applied to vertex "
3248 "shader inputs", i);
3249 }
3250 break;
3251 case fragment_shader:
3252 if (this->type->qualifier.flags.q.out) {
3253 _mesa_glsl_error(&loc, state,
3254 "qualifier '%s' cannot be applied to fragment "
3255 "shader outputs", i);
3256 }
3257 break;
3258 default:
3259 break;
3260 }
3261 }
3262
3263
3264 /* From section 4.3.4 of the GLSL 1.30 spec:
3265 * "It is an error to use centroid in in a vertex shader."
3266 *
3267 * From section 4.3.4 of the GLSL ES 3.00 spec:
3268 * "It is an error to use centroid in or interpolation qualifiers in
3269 * a vertex shader input."
3270 */
3271 if (state->is_version(130, 300)
3272 && this->type->qualifier.flags.q.centroid
3273 && this->type->qualifier.flags.q.in
3274 && state->target == vertex_shader) {
3275
3276 _mesa_glsl_error(&loc, state,
3277 "'centroid in' cannot be used in a vertex shader");
3278 }
3279
3280 /* Section 4.3.6 of the GLSL 1.30 specification states:
3281 * "It is an error to use centroid out in a fragment shader."
3282 *
3283 * The GL_ARB_shading_language_420pack extension specification states:
3284 * "It is an error to use auxiliary storage qualifiers or interpolation
3285 * qualifiers on an output in a fragment shader."
3286 */
3287 if (state->target == fragment_shader &&
3288 this->type->qualifier.flags.q.out &&
3289 this->type->qualifier.has_auxiliary_storage()) {
3290 _mesa_glsl_error(&loc, state,
3291 "auxiliary storage qualifiers cannot be used on "
3292 "fragment shader outputs");
3293 }
3294
3295 /* Precision qualifiers exists only in GLSL versions 1.00 and >= 1.30.
3296 */
3297 if (this->type->qualifier.precision != ast_precision_none) {
3298 state->check_precision_qualifiers_allowed(&loc);
3299 }
3300
3301
3302 /* Precision qualifiers apply to floating point, integer and sampler
3303 * types.
3304 *
3305 * Section 4.5.2 (Precision Qualifiers) of the GLSL 1.30 spec says:
3306 * "Any floating point or any integer declaration can have the type
3307 * preceded by one of these precision qualifiers [...] Literal
3308 * constants do not have precision qualifiers. Neither do Boolean
3309 * variables.
3310 *
3311 * Section 4.5 (Precision and Precision Qualifiers) of the GLSL 1.30
3312 * spec also says:
3313 *
3314 * "Precision qualifiers are added for code portability with OpenGL
3315 * ES, not for functionality. They have the same syntax as in OpenGL
3316 * ES."
3317 *
3318 * Section 8 (Built-In Functions) of the GLSL ES 1.00 spec says:
3319 *
3320 * "uniform lowp sampler2D sampler;
3321 * highp vec2 coord;
3322 * ...
3323 * lowp vec4 col = texture2D (sampler, coord);
3324 * // texture2D returns lowp"
3325 *
3326 * From this, we infer that GLSL 1.30 (and later) should allow precision
3327 * qualifiers on sampler types just like float and integer types.
3328 */
3329 if (this->type->qualifier.precision != ast_precision_none
3330 && !var->type->is_float()
3331 && !var->type->is_integer()
3332 && !var->type->is_record()
3333 && !var->type->is_sampler()
3334 && !(var->type->is_array()
3335 && (var->type->fields.array->is_float()
3336 || var->type->fields.array->is_integer()))) {
3337
3338 _mesa_glsl_error(&loc, state,
3339 "precision qualifiers apply only to floating point"
3340 ", integer and sampler types");
3341 }
3342
3343 /* From page 17 (page 23 of the PDF) of the GLSL 1.20 spec:
3344 *
3345 * "[Sampler types] can only be declared as function
3346 * parameters or uniform variables (see Section 4.3.5
3347 * "Uniform")".
3348 */
3349 if (var_type->contains_sampler() &&
3350 !this->type->qualifier.flags.q.uniform) {
3351 _mesa_glsl_error(&loc, state, "samplers must be declared uniform");
3352 }
3353
3354 /* Process the initializer and add its instructions to a temporary
3355 * list. This list will be added to the instruction stream (below) after
3356 * the declaration is added. This is done because in some cases (such as
3357 * redeclarations) the declaration may not actually be added to the
3358 * instruction stream.
3359 */
3360 exec_list initializer_instructions;
3361 ir_variable *earlier =
3362 get_variable_being_redeclared(var, decl->get_location(), state,
3363 false /* allow_all_redeclarations */);
3364 if (earlier != NULL) {
3365 if (strncmp(var->name, "gl_", 3) == 0 &&
3366 earlier->how_declared == ir_var_declared_in_block) {
3367 _mesa_glsl_error(&loc, state,
3368 "`%s' has already been redeclared using "
3369 "gl_PerVertex", var->name);
3370 }
3371 earlier->how_declared = ir_var_declared_normally;
3372 }
3373
3374 if (decl->initializer != NULL) {
3375 result = process_initializer((earlier == NULL) ? var : earlier,
3376 decl, this->type,
3377 &initializer_instructions, state);
3378 }
3379
3380 /* From page 23 (page 29 of the PDF) of the GLSL 1.10 spec:
3381 *
3382 * "It is an error to write to a const variable outside of
3383 * its declaration, so they must be initialized when
3384 * declared."
3385 */
3386 if (this->type->qualifier.flags.q.constant && decl->initializer == NULL) {
3387 _mesa_glsl_error(& loc, state,
3388 "const declaration of `%s' must be initialized",
3389 decl->identifier);
3390 }
3391
3392 if (state->es_shader) {
3393 const glsl_type *const t = (earlier == NULL)
3394 ? var->type : earlier->type;
3395
3396 if (t->is_unsized_array())
3397 /* Section 10.17 of the GLSL ES 1.00 specification states that
3398 * unsized array declarations have been removed from the language.
3399 * Arrays that are sized using an initializer are still explicitly
3400 * sized. However, GLSL ES 1.00 does not allow array
3401 * initializers. That is only allowed in GLSL ES 3.00.
3402 *
3403 * Section 4.1.9 (Arrays) of the GLSL ES 3.00 spec says:
3404 *
3405 * "An array type can also be formed without specifying a size
3406 * if the definition includes an initializer:
3407 *
3408 * float x[] = float[2] (1.0, 2.0); // declares an array of size 2
3409 * float y[] = float[] (1.0, 2.0, 3.0); // declares an array of size 3
3410 *
3411 * float a[5];
3412 * float b[] = a;"
3413 */
3414 _mesa_glsl_error(& loc, state,
3415 "unsized array declarations are not allowed in "
3416 "GLSL ES");
3417 }
3418
3419 /* If the declaration is not a redeclaration, there are a few additional
3420 * semantic checks that must be applied. In addition, variable that was
3421 * created for the declaration should be added to the IR stream.
3422 */
3423 if (earlier == NULL) {
3424 validate_identifier(decl->identifier, loc, state);
3425
3426 /* Add the variable to the symbol table. Note that the initializer's
3427 * IR was already processed earlier (though it hasn't been emitted
3428 * yet), without the variable in scope.
3429 *
3430 * This differs from most C-like languages, but it follows the GLSL
3431 * specification. From page 28 (page 34 of the PDF) of the GLSL 1.50
3432 * spec:
3433 *
3434 * "Within a declaration, the scope of a name starts immediately
3435 * after the initializer if present or immediately after the name
3436 * being declared if not."
3437 */
3438 if (!state->symbols->add_variable(var)) {
3439 YYLTYPE loc = this->get_location();
3440 _mesa_glsl_error(&loc, state, "name `%s' already taken in the "
3441 "current scope", decl->identifier);
3442 continue;
3443 }
3444
3445 /* Push the variable declaration to the top. It means that all the
3446 * variable declarations will appear in a funny last-to-first order,
3447 * but otherwise we run into trouble if a function is prototyped, a
3448 * global var is decled, then the function is defined with usage of
3449 * the global var. See glslparsertest's CorrectModule.frag.
3450 */
3451 instructions->push_head(var);
3452 }
3453
3454 instructions->append_list(&initializer_instructions);
3455 }
3456
3457
3458 /* Generally, variable declarations do not have r-values. However,
3459 * one is used for the declaration in
3460 *
3461 * while (bool b = some_condition()) {
3462 * ...
3463 * }
3464 *
3465 * so we return the rvalue from the last seen declaration here.
3466 */
3467 return result;
3468 }
3469
3470
3471 ir_rvalue *
3472 ast_parameter_declarator::hir(exec_list *instructions,
3473 struct _mesa_glsl_parse_state *state)
3474 {
3475 void *ctx = state;
3476 const struct glsl_type *type;
3477 const char *name = NULL;
3478 YYLTYPE loc = this->get_location();
3479
3480 type = this->type->glsl_type(& name, state);
3481
3482 if (type == NULL) {
3483 if (name != NULL) {
3484 _mesa_glsl_error(& loc, state,
3485 "invalid type `%s' in declaration of `%s'",
3486 name, this->identifier);
3487 } else {
3488 _mesa_glsl_error(& loc, state,
3489 "invalid type in declaration of `%s'",
3490 this->identifier);
3491 }
3492
3493 type = glsl_type::error_type;
3494 }
3495
3496 /* From page 62 (page 68 of the PDF) of the GLSL 1.50 spec:
3497 *
3498 * "Functions that accept no input arguments need not use void in the
3499 * argument list because prototypes (or definitions) are required and
3500 * therefore there is no ambiguity when an empty argument list "( )" is
3501 * declared. The idiom "(void)" as a parameter list is provided for
3502 * convenience."
3503 *
3504 * Placing this check here prevents a void parameter being set up
3505 * for a function, which avoids tripping up checks for main taking
3506 * parameters and lookups of an unnamed symbol.
3507 */
3508 if (type->is_void()) {
3509 if (this->identifier != NULL)
3510 _mesa_glsl_error(& loc, state,
3511 "named parameter cannot have type `void'");
3512
3513 is_void = true;
3514 return NULL;
3515 }
3516
3517 if (formal_parameter && (this->identifier == NULL)) {
3518 _mesa_glsl_error(& loc, state, "formal parameter lacks a name");
3519 return NULL;
3520 }
3521
3522 /* This only handles "vec4 foo[..]". The earlier specifier->glsl_type(...)
3523 * call already handled the "vec4[..] foo" case.
3524 */
3525 if (this->is_array) {
3526 type = process_array_type(&loc, type, this->array_size, state);
3527 }
3528
3529 if (!type->is_error() && type->is_unsized_array()) {
3530 _mesa_glsl_error(&loc, state, "arrays passed as parameters must have "
3531 "a declared size");
3532 type = glsl_type::error_type;
3533 }
3534
3535 is_void = false;
3536 ir_variable *var = new(ctx)
3537 ir_variable(type, this->identifier, ir_var_function_in);
3538
3539 /* Apply any specified qualifiers to the parameter declaration. Note that
3540 * for function parameters the default mode is 'in'.
3541 */
3542 apply_type_qualifier_to_variable(& this->type->qualifier, var, state, & loc,
3543 true);
3544
3545 /* From page 17 (page 23 of the PDF) of the GLSL 1.20 spec:
3546 *
3547 * "Samplers cannot be treated as l-values; hence cannot be used
3548 * as out or inout function parameters, nor can they be assigned
3549 * into."
3550 */
3551 if ((var->mode == ir_var_function_inout || var->mode == ir_var_function_out)
3552 && type->contains_sampler()) {
3553 _mesa_glsl_error(&loc, state, "out and inout parameters cannot contain samplers");
3554 type = glsl_type::error_type;
3555 }
3556
3557 /* From page 39 (page 45 of the PDF) of the GLSL 1.10 spec:
3558 *
3559 * "When calling a function, expressions that do not evaluate to
3560 * l-values cannot be passed to parameters declared as out or inout."
3561 *
3562 * From page 32 (page 38 of the PDF) of the GLSL 1.10 spec:
3563 *
3564 * "Other binary or unary expressions, non-dereferenced arrays,
3565 * function names, swizzles with repeated fields, and constants
3566 * cannot be l-values."
3567 *
3568 * So for GLSL 1.10, passing an array as an out or inout parameter is not
3569 * allowed. This restriction is removed in GLSL 1.20, and in GLSL ES.
3570 */
3571 if ((var->mode == ir_var_function_inout || var->mode == ir_var_function_out)
3572 && type->is_array()
3573 && !state->check_version(120, 100, &loc,
3574 "arrays cannot be out or inout parameters")) {
3575 type = glsl_type::error_type;
3576 }
3577
3578 instructions->push_tail(var);
3579
3580 /* Parameter declarations do not have r-values.
3581 */
3582 return NULL;
3583 }
3584
3585
3586 void
3587 ast_parameter_declarator::parameters_to_hir(exec_list *ast_parameters,
3588 bool formal,
3589 exec_list *ir_parameters,
3590 _mesa_glsl_parse_state *state)
3591 {
3592 ast_parameter_declarator *void_param = NULL;
3593 unsigned count = 0;
3594
3595 foreach_list_typed (ast_parameter_declarator, param, link, ast_parameters) {
3596 param->formal_parameter = formal;
3597 param->hir(ir_parameters, state);
3598
3599 if (param->is_void)
3600 void_param = param;
3601
3602 count++;
3603 }
3604
3605 if ((void_param != NULL) && (count > 1)) {
3606 YYLTYPE loc = void_param->get_location();
3607
3608 _mesa_glsl_error(& loc, state,
3609 "`void' parameter must be only parameter");
3610 }
3611 }
3612
3613
3614 void
3615 emit_function(_mesa_glsl_parse_state *state, ir_function *f)
3616 {
3617 /* IR invariants disallow function declarations or definitions
3618 * nested within other function definitions. But there is no
3619 * requirement about the relative order of function declarations
3620 * and definitions with respect to one another. So simply insert
3621 * the new ir_function block at the end of the toplevel instruction
3622 * list.
3623 */
3624 state->toplevel_ir->push_tail(f);
3625 }
3626
3627
3628 ir_rvalue *
3629 ast_function::hir(exec_list *instructions,
3630 struct _mesa_glsl_parse_state *state)
3631 {
3632 void *ctx = state;
3633 ir_function *f = NULL;
3634 ir_function_signature *sig = NULL;
3635 exec_list hir_parameters;
3636
3637 const char *const name = identifier;
3638
3639 /* New functions are always added to the top-level IR instruction stream,
3640 * so this instruction list pointer is ignored. See also emit_function
3641 * (called below).
3642 */
3643 (void) instructions;
3644
3645 /* From page 21 (page 27 of the PDF) of the GLSL 1.20 spec,
3646 *
3647 * "Function declarations (prototypes) cannot occur inside of functions;
3648 * they must be at global scope, or for the built-in functions, outside
3649 * the global scope."
3650 *
3651 * From page 27 (page 33 of the PDF) of the GLSL ES 1.00.16 spec,
3652 *
3653 * "User defined functions may only be defined within the global scope."
3654 *
3655 * Note that this language does not appear in GLSL 1.10.
3656 */
3657 if ((state->current_function != NULL) &&
3658 state->is_version(120, 100)) {
3659 YYLTYPE loc = this->get_location();
3660 _mesa_glsl_error(&loc, state,
3661 "declaration of function `%s' not allowed within "
3662 "function body", name);
3663 }
3664
3665 validate_identifier(name, this->get_location(), state);
3666
3667 /* Convert the list of function parameters to HIR now so that they can be
3668 * used below to compare this function's signature with previously seen
3669 * signatures for functions with the same name.
3670 */
3671 ast_parameter_declarator::parameters_to_hir(& this->parameters,
3672 is_definition,
3673 & hir_parameters, state);
3674
3675 const char *return_type_name;
3676 const glsl_type *return_type =
3677 this->return_type->glsl_type(& return_type_name, state);
3678
3679 if (!return_type) {
3680 YYLTYPE loc = this->get_location();
3681 _mesa_glsl_error(&loc, state,
3682 "function `%s' has undeclared return type `%s'",
3683 name, return_type_name);
3684 return_type = glsl_type::error_type;
3685 }
3686
3687 /* From page 56 (page 62 of the PDF) of the GLSL 1.30 spec:
3688 * "No qualifier is allowed on the return type of a function."
3689 */
3690 if (this->return_type->has_qualifiers()) {
3691 YYLTYPE loc = this->get_location();
3692 _mesa_glsl_error(& loc, state,
3693 "function `%s' return type has qualifiers", name);
3694 }
3695
3696 /* Section 6.1 (Function Definitions) of the GLSL 1.20 spec says:
3697 *
3698 * "Arrays are allowed as arguments and as the return type. In both
3699 * cases, the array must be explicitly sized."
3700 */
3701 if (return_type->is_unsized_array()) {
3702 YYLTYPE loc = this->get_location();
3703 _mesa_glsl_error(& loc, state,
3704 "function `%s' return type array must be explicitly "
3705 "sized", name);
3706 }
3707
3708 /* From page 17 (page 23 of the PDF) of the GLSL 1.20 spec:
3709 *
3710 * "[Sampler types] can only be declared as function parameters
3711 * or uniform variables (see Section 4.3.5 "Uniform")".
3712 */
3713 if (return_type->contains_sampler()) {
3714 YYLTYPE loc = this->get_location();
3715 _mesa_glsl_error(&loc, state,
3716 "function `%s' return type can't contain a sampler",
3717 name);
3718 }
3719
3720 /* Verify that this function's signature either doesn't match a previously
3721 * seen signature for a function with the same name, or, if a match is found,
3722 * that the previously seen signature does not have an associated definition.
3723 */
3724 f = state->symbols->get_function(name);
3725 if (f != NULL && (state->es_shader || f->has_user_signature())) {
3726 sig = f->exact_matching_signature(state, &hir_parameters);
3727 if (sig != NULL) {
3728 const char *badvar = sig->qualifiers_match(&hir_parameters);
3729 if (badvar != NULL) {
3730 YYLTYPE loc = this->get_location();
3731
3732 _mesa_glsl_error(&loc, state, "function `%s' parameter `%s' "
3733 "qualifiers don't match prototype", name, badvar);
3734 }
3735
3736 if (sig->return_type != return_type) {
3737 YYLTYPE loc = this->get_location();
3738
3739 _mesa_glsl_error(&loc, state, "function `%s' return type doesn't "
3740 "match prototype", name);
3741 }
3742
3743 if (sig->is_defined) {
3744 if (is_definition) {
3745 YYLTYPE loc = this->get_location();
3746 _mesa_glsl_error(& loc, state, "function `%s' redefined", name);
3747 } else {
3748 /* We just encountered a prototype that exactly matches a
3749 * function that's already been defined. This is redundant,
3750 * and we should ignore it.
3751 */
3752 return NULL;
3753 }
3754 }
3755 }
3756 } else {
3757 f = new(ctx) ir_function(name);
3758 if (!state->symbols->add_function(f)) {
3759 /* This function name shadows a non-function use of the same name. */
3760 YYLTYPE loc = this->get_location();
3761
3762 _mesa_glsl_error(&loc, state, "function name `%s' conflicts with "
3763 "non-function", name);
3764 return NULL;
3765 }
3766
3767 emit_function(state, f);
3768 }
3769
3770 /* Verify the return type of main() */
3771 if (strcmp(name, "main") == 0) {
3772 if (! return_type->is_void()) {
3773 YYLTYPE loc = this->get_location();
3774
3775 _mesa_glsl_error(& loc, state, "main() must return void");
3776 }
3777
3778 if (!hir_parameters.is_empty()) {
3779 YYLTYPE loc = this->get_location();
3780
3781 _mesa_glsl_error(& loc, state, "main() must not take any parameters");
3782 }
3783 }
3784
3785 /* Finish storing the information about this new function in its signature.
3786 */
3787 if (sig == NULL) {
3788 sig = new(ctx) ir_function_signature(return_type);
3789 f->add_signature(sig);
3790 }
3791
3792 sig->replace_parameters(&hir_parameters);
3793 signature = sig;
3794
3795 /* Function declarations (prototypes) do not have r-values.
3796 */
3797 return NULL;
3798 }
3799
3800
3801 ir_rvalue *
3802 ast_function_definition::hir(exec_list *instructions,
3803 struct _mesa_glsl_parse_state *state)
3804 {
3805 prototype->is_definition = true;
3806 prototype->hir(instructions, state);
3807
3808 ir_function_signature *signature = prototype->signature;
3809 if (signature == NULL)
3810 return NULL;
3811
3812 assert(state->current_function == NULL);
3813 state->current_function = signature;
3814 state->found_return = false;
3815
3816 /* Duplicate parameters declared in the prototype as concrete variables.
3817 * Add these to the symbol table.
3818 */
3819 state->symbols->push_scope();
3820 foreach_iter(exec_list_iterator, iter, signature->parameters) {
3821 ir_variable *const var = ((ir_instruction *) iter.get())->as_variable();
3822
3823 assert(var != NULL);
3824
3825 /* The only way a parameter would "exist" is if two parameters have
3826 * the same name.
3827 */
3828 if (state->symbols->name_declared_this_scope(var->name)) {
3829 YYLTYPE loc = this->get_location();
3830
3831 _mesa_glsl_error(& loc, state, "parameter `%s' redeclared", var->name);
3832 } else {
3833 state->symbols->add_variable(var);
3834 }
3835 }
3836
3837 /* Convert the body of the function to HIR. */
3838 this->body->hir(&signature->body, state);
3839 signature->is_defined = true;
3840
3841 state->symbols->pop_scope();
3842
3843 assert(state->current_function == signature);
3844 state->current_function = NULL;
3845
3846 if (!signature->return_type->is_void() && !state->found_return) {
3847 YYLTYPE loc = this->get_location();
3848 _mesa_glsl_error(& loc, state, "function `%s' has non-void return type "
3849 "%s, but no return statement",
3850 signature->function_name(),
3851 signature->return_type->name);
3852 }
3853
3854 /* Function definitions do not have r-values.
3855 */
3856 return NULL;
3857 }
3858
3859
3860 ir_rvalue *
3861 ast_jump_statement::hir(exec_list *instructions,
3862 struct _mesa_glsl_parse_state *state)
3863 {
3864 void *ctx = state;
3865
3866 switch (mode) {
3867 case ast_return: {
3868 ir_return *inst;
3869 assert(state->current_function);
3870
3871 if (opt_return_value) {
3872 ir_rvalue *ret = opt_return_value->hir(instructions, state);
3873
3874 /* The value of the return type can be NULL if the shader says
3875 * 'return foo();' and foo() is a function that returns void.
3876 *
3877 * NOTE: The GLSL spec doesn't say that this is an error. The type
3878 * of the return value is void. If the return type of the function is
3879 * also void, then this should compile without error. Seriously.
3880 */
3881 const glsl_type *const ret_type =
3882 (ret == NULL) ? glsl_type::void_type : ret->type;
3883
3884 /* Implicit conversions are not allowed for return values prior to
3885 * ARB_shading_language_420pack.
3886 */
3887 if (state->current_function->return_type != ret_type) {
3888 YYLTYPE loc = this->get_location();
3889
3890 if (state->ARB_shading_language_420pack_enable) {
3891 if (!apply_implicit_conversion(state->current_function->return_type,
3892 ret, state)) {
3893 _mesa_glsl_error(& loc, state,
3894 "could not implicitly convert return value "
3895 "to %s, in function `%s'",
3896 state->current_function->return_type->name,
3897 state->current_function->function_name());
3898 }
3899 } else {
3900 _mesa_glsl_error(& loc, state,
3901 "`return' with wrong type %s, in function `%s' "
3902 "returning %s",
3903 ret_type->name,
3904 state->current_function->function_name(),
3905 state->current_function->return_type->name);
3906 }
3907 } else if (state->current_function->return_type->base_type ==
3908 GLSL_TYPE_VOID) {
3909 YYLTYPE loc = this->get_location();
3910
3911 /* The ARB_shading_language_420pack, GLSL ES 3.0, and GLSL 4.20
3912 * specs add a clarification:
3913 *
3914 * "A void function can only use return without a return argument, even if
3915 * the return argument has void type. Return statements only accept values:
3916 *
3917 * void func1() { }
3918 * void func2() { return func1(); } // illegal return statement"
3919 */
3920 _mesa_glsl_error(& loc, state,
3921 "void functions can only use `return' without a "
3922 "return argument");
3923 }
3924
3925 inst = new(ctx) ir_return(ret);
3926 } else {
3927 if (state->current_function->return_type->base_type !=
3928 GLSL_TYPE_VOID) {
3929 YYLTYPE loc = this->get_location();
3930
3931 _mesa_glsl_error(& loc, state,
3932 "`return' with no value, in function %s returning "
3933 "non-void",
3934 state->current_function->function_name());
3935 }
3936 inst = new(ctx) ir_return;
3937 }
3938
3939 state->found_return = true;
3940 instructions->push_tail(inst);
3941 break;
3942 }
3943
3944 case ast_discard:
3945 if (state->target != fragment_shader) {
3946 YYLTYPE loc = this->get_location();
3947
3948 _mesa_glsl_error(& loc, state,
3949 "`discard' may only appear in a fragment shader");
3950 }
3951 instructions->push_tail(new(ctx) ir_discard);
3952 break;
3953
3954 case ast_break:
3955 case ast_continue:
3956 if (mode == ast_continue &&
3957 state->loop_nesting_ast == NULL) {
3958 YYLTYPE loc = this->get_location();
3959
3960 _mesa_glsl_error(& loc, state,
3961 "continue may only appear in a loop");
3962 } else if (mode == ast_break &&
3963 state->loop_nesting_ast == NULL &&
3964 state->switch_state.switch_nesting_ast == NULL) {
3965 YYLTYPE loc = this->get_location();
3966
3967 _mesa_glsl_error(& loc, state,
3968 "break may only appear in a loop or a switch");
3969 } else {
3970 /* For a loop, inline the for loop expression again,
3971 * since we don't know where near the end of
3972 * the loop body the normal copy of it
3973 * is going to be placed.
3974 */
3975 if (state->loop_nesting_ast != NULL &&
3976 mode == ast_continue &&
3977 state->loop_nesting_ast->rest_expression) {
3978 state->loop_nesting_ast->rest_expression->hir(instructions,
3979 state);
3980 }
3981
3982 if (state->switch_state.is_switch_innermost &&
3983 mode == ast_break) {
3984 /* Force break out of switch by setting is_break switch state.
3985 */
3986 ir_variable *const is_break_var = state->switch_state.is_break_var;
3987 ir_dereference_variable *const deref_is_break_var =
3988 new(ctx) ir_dereference_variable(is_break_var);
3989 ir_constant *const true_val = new(ctx) ir_constant(true);
3990 ir_assignment *const set_break_var =
3991 new(ctx) ir_assignment(deref_is_break_var, true_val);
3992
3993 instructions->push_tail(set_break_var);
3994 }
3995 else {
3996 ir_loop_jump *const jump =
3997 new(ctx) ir_loop_jump((mode == ast_break)
3998 ? ir_loop_jump::jump_break
3999 : ir_loop_jump::jump_continue);
4000 instructions->push_tail(jump);
4001 }
4002 }
4003
4004 break;
4005 }
4006
4007 /* Jump instructions do not have r-values.
4008 */
4009 return NULL;
4010 }
4011
4012
4013 ir_rvalue *
4014 ast_selection_statement::hir(exec_list *instructions,
4015 struct _mesa_glsl_parse_state *state)
4016 {
4017 void *ctx = state;
4018
4019 ir_rvalue *const condition = this->condition->hir(instructions, state);
4020
4021 /* From page 66 (page 72 of the PDF) of the GLSL 1.50 spec:
4022 *
4023 * "Any expression whose type evaluates to a Boolean can be used as the
4024 * conditional expression bool-expression. Vector types are not accepted
4025 * as the expression to if."
4026 *
4027 * The checks are separated so that higher quality diagnostics can be
4028 * generated for cases where both rules are violated.
4029 */
4030 if (!condition->type->is_boolean() || !condition->type->is_scalar()) {
4031 YYLTYPE loc = this->condition->get_location();
4032
4033 _mesa_glsl_error(& loc, state, "if-statement condition must be scalar "
4034 "boolean");
4035 }
4036
4037 ir_if *const stmt = new(ctx) ir_if(condition);
4038
4039 if (then_statement != NULL) {
4040 state->symbols->push_scope();
4041 then_statement->hir(& stmt->then_instructions, state);
4042 state->symbols->pop_scope();
4043 }
4044
4045 if (else_statement != NULL) {
4046 state->symbols->push_scope();
4047 else_statement->hir(& stmt->else_instructions, state);
4048 state->symbols->pop_scope();
4049 }
4050
4051 instructions->push_tail(stmt);
4052
4053 /* if-statements do not have r-values.
4054 */
4055 return NULL;
4056 }
4057
4058
4059 ir_rvalue *
4060 ast_switch_statement::hir(exec_list *instructions,
4061 struct _mesa_glsl_parse_state *state)
4062 {
4063 void *ctx = state;
4064
4065 ir_rvalue *const test_expression =
4066 this->test_expression->hir(instructions, state);
4067
4068 /* From page 66 (page 55 of the PDF) of the GLSL 1.50 spec:
4069 *
4070 * "The type of init-expression in a switch statement must be a
4071 * scalar integer."
4072 */
4073 if (!test_expression->type->is_scalar() ||
4074 !test_expression->type->is_integer()) {
4075 YYLTYPE loc = this->test_expression->get_location();
4076
4077 _mesa_glsl_error(& loc,
4078 state,
4079 "switch-statement expression must be scalar "
4080 "integer");
4081 }
4082
4083 /* Track the switch-statement nesting in a stack-like manner.
4084 */
4085 struct glsl_switch_state saved = state->switch_state;
4086
4087 state->switch_state.is_switch_innermost = true;
4088 state->switch_state.switch_nesting_ast = this;
4089 state->switch_state.labels_ht = hash_table_ctor(0, hash_table_pointer_hash,
4090 hash_table_pointer_compare);
4091 state->switch_state.previous_default = NULL;
4092
4093 /* Initalize is_fallthru state to false.
4094 */
4095 ir_rvalue *const is_fallthru_val = new (ctx) ir_constant(false);
4096 state->switch_state.is_fallthru_var =
4097 new(ctx) ir_variable(glsl_type::bool_type,
4098 "switch_is_fallthru_tmp",
4099 ir_var_temporary);
4100 instructions->push_tail(state->switch_state.is_fallthru_var);
4101
4102 ir_dereference_variable *deref_is_fallthru_var =
4103 new(ctx) ir_dereference_variable(state->switch_state.is_fallthru_var);
4104 instructions->push_tail(new(ctx) ir_assignment(deref_is_fallthru_var,
4105 is_fallthru_val));
4106
4107 /* Initalize is_break state to false.
4108 */
4109 ir_rvalue *const is_break_val = new (ctx) ir_constant(false);
4110 state->switch_state.is_break_var = new(ctx) ir_variable(glsl_type::bool_type,
4111 "switch_is_break_tmp",
4112 ir_var_temporary);
4113 instructions->push_tail(state->switch_state.is_break_var);
4114
4115 ir_dereference_variable *deref_is_break_var =
4116 new(ctx) ir_dereference_variable(state->switch_state.is_break_var);
4117 instructions->push_tail(new(ctx) ir_assignment(deref_is_break_var,
4118 is_break_val));
4119
4120 /* Cache test expression.
4121 */
4122 test_to_hir(instructions, state);
4123
4124 /* Emit code for body of switch stmt.
4125 */
4126 body->hir(instructions, state);
4127
4128 hash_table_dtor(state->switch_state.labels_ht);
4129
4130 state->switch_state = saved;
4131
4132 /* Switch statements do not have r-values. */
4133 return NULL;
4134 }
4135
4136
4137 void
4138 ast_switch_statement::test_to_hir(exec_list *instructions,
4139 struct _mesa_glsl_parse_state *state)
4140 {
4141 void *ctx = state;
4142
4143 /* Cache value of test expression. */
4144 ir_rvalue *const test_val =
4145 test_expression->hir(instructions,
4146 state);
4147
4148 state->switch_state.test_var = new(ctx) ir_variable(test_val->type,
4149 "switch_test_tmp",
4150 ir_var_temporary);
4151 ir_dereference_variable *deref_test_var =
4152 new(ctx) ir_dereference_variable(state->switch_state.test_var);
4153
4154 instructions->push_tail(state->switch_state.test_var);
4155 instructions->push_tail(new(ctx) ir_assignment(deref_test_var, test_val));
4156 }
4157
4158
4159 ir_rvalue *
4160 ast_switch_body::hir(exec_list *instructions,
4161 struct _mesa_glsl_parse_state *state)
4162 {
4163 if (stmts != NULL)
4164 stmts->hir(instructions, state);
4165
4166 /* Switch bodies do not have r-values. */
4167 return NULL;
4168 }
4169
4170 ir_rvalue *
4171 ast_case_statement_list::hir(exec_list *instructions,
4172 struct _mesa_glsl_parse_state *state)
4173 {
4174 foreach_list_typed (ast_case_statement, case_stmt, link, & this->cases)
4175 case_stmt->hir(instructions, state);
4176
4177 /* Case statements do not have r-values. */
4178 return NULL;
4179 }
4180
4181 ir_rvalue *
4182 ast_case_statement::hir(exec_list *instructions,
4183 struct _mesa_glsl_parse_state *state)
4184 {
4185 labels->hir(instructions, state);
4186
4187 /* Conditionally set fallthru state based on break state. */
4188 ir_constant *const false_val = new(state) ir_constant(false);
4189 ir_dereference_variable *const deref_is_fallthru_var =
4190 new(state) ir_dereference_variable(state->switch_state.is_fallthru_var);
4191 ir_dereference_variable *const deref_is_break_var =
4192 new(state) ir_dereference_variable(state->switch_state.is_break_var);
4193 ir_assignment *const reset_fallthru_on_break =
4194 new(state) ir_assignment(deref_is_fallthru_var,
4195 false_val,
4196 deref_is_break_var);
4197 instructions->push_tail(reset_fallthru_on_break);
4198
4199 /* Guard case statements depending on fallthru state. */
4200 ir_dereference_variable *const deref_fallthru_guard =
4201 new(state) ir_dereference_variable(state->switch_state.is_fallthru_var);
4202 ir_if *const test_fallthru = new(state) ir_if(deref_fallthru_guard);
4203
4204 foreach_list_typed (ast_node, stmt, link, & this->stmts)
4205 stmt->hir(& test_fallthru->then_instructions, state);
4206
4207 instructions->push_tail(test_fallthru);
4208
4209 /* Case statements do not have r-values. */
4210 return NULL;
4211 }
4212
4213
4214 ir_rvalue *
4215 ast_case_label_list::hir(exec_list *instructions,
4216 struct _mesa_glsl_parse_state *state)
4217 {
4218 foreach_list_typed (ast_case_label, label, link, & this->labels)
4219 label->hir(instructions, state);
4220
4221 /* Case labels do not have r-values. */
4222 return NULL;
4223 }
4224
4225 ir_rvalue *
4226 ast_case_label::hir(exec_list *instructions,
4227 struct _mesa_glsl_parse_state *state)
4228 {
4229 void *ctx = state;
4230
4231 ir_dereference_variable *deref_fallthru_var =
4232 new(ctx) ir_dereference_variable(state->switch_state.is_fallthru_var);
4233
4234 ir_rvalue *const true_val = new(ctx) ir_constant(true);
4235
4236 /* If not default case, ... */
4237 if (this->test_value != NULL) {
4238 /* Conditionally set fallthru state based on
4239 * comparison of cached test expression value to case label.
4240 */
4241 ir_rvalue *const label_rval = this->test_value->hir(instructions, state);
4242 ir_constant *label_const = label_rval->constant_expression_value();
4243
4244 if (!label_const) {
4245 YYLTYPE loc = this->test_value->get_location();
4246
4247 _mesa_glsl_error(& loc, state,
4248 "switch statement case label must be a "
4249 "constant expression");
4250
4251 /* Stuff a dummy value in to allow processing to continue. */
4252 label_const = new(ctx) ir_constant(0);
4253 } else {
4254 ast_expression *previous_label = (ast_expression *)
4255 hash_table_find(state->switch_state.labels_ht,
4256 (void *)(uintptr_t)label_const->value.u[0]);
4257
4258 if (previous_label) {
4259 YYLTYPE loc = this->test_value->get_location();
4260 _mesa_glsl_error(& loc, state,
4261 "duplicate case value");
4262
4263 loc = previous_label->get_location();
4264 _mesa_glsl_error(& loc, state,
4265 "this is the previous case label");
4266 } else {
4267 hash_table_insert(state->switch_state.labels_ht,
4268 this->test_value,
4269 (void *)(uintptr_t)label_const->value.u[0]);
4270 }
4271 }
4272
4273 ir_dereference_variable *deref_test_var =
4274 new(ctx) ir_dereference_variable(state->switch_state.test_var);
4275
4276 ir_rvalue *const test_cond = new(ctx) ir_expression(ir_binop_all_equal,
4277 label_const,
4278 deref_test_var);
4279
4280 ir_assignment *set_fallthru_on_test =
4281 new(ctx) ir_assignment(deref_fallthru_var,
4282 true_val,
4283 test_cond);
4284
4285 instructions->push_tail(set_fallthru_on_test);
4286 } else { /* default case */
4287 if (state->switch_state.previous_default) {
4288 YYLTYPE loc = this->get_location();
4289 _mesa_glsl_error(& loc, state,
4290 "multiple default labels in one switch");
4291
4292 loc = state->switch_state.previous_default->get_location();
4293 _mesa_glsl_error(& loc, state,
4294 "this is the first default label");
4295 }
4296 state->switch_state.previous_default = this;
4297
4298 /* Set falltrhu state. */
4299 ir_assignment *set_fallthru =
4300 new(ctx) ir_assignment(deref_fallthru_var, true_val);
4301
4302 instructions->push_tail(set_fallthru);
4303 }
4304
4305 /* Case statements do not have r-values. */
4306 return NULL;
4307 }
4308
4309 void
4310 ast_iteration_statement::condition_to_hir(ir_loop *stmt,
4311 struct _mesa_glsl_parse_state *state)
4312 {
4313 void *ctx = state;
4314
4315 if (condition != NULL) {
4316 ir_rvalue *const cond =
4317 condition->hir(& stmt->body_instructions, state);
4318
4319 if ((cond == NULL)
4320 || !cond->type->is_boolean() || !cond->type->is_scalar()) {
4321 YYLTYPE loc = condition->get_location();
4322
4323 _mesa_glsl_error(& loc, state,
4324 "loop condition must be scalar boolean");
4325 } else {
4326 /* As the first code in the loop body, generate a block that looks
4327 * like 'if (!condition) break;' as the loop termination condition.
4328 */
4329 ir_rvalue *const not_cond =
4330 new(ctx) ir_expression(ir_unop_logic_not, cond);
4331
4332 ir_if *const if_stmt = new(ctx) ir_if(not_cond);
4333
4334 ir_jump *const break_stmt =
4335 new(ctx) ir_loop_jump(ir_loop_jump::jump_break);
4336
4337 if_stmt->then_instructions.push_tail(break_stmt);
4338 stmt->body_instructions.push_tail(if_stmt);
4339 }
4340 }
4341 }
4342
4343
4344 ir_rvalue *
4345 ast_iteration_statement::hir(exec_list *instructions,
4346 struct _mesa_glsl_parse_state *state)
4347 {
4348 void *ctx = state;
4349
4350 /* For-loops and while-loops start a new scope, but do-while loops do not.
4351 */
4352 if (mode != ast_do_while)
4353 state->symbols->push_scope();
4354
4355 if (init_statement != NULL)
4356 init_statement->hir(instructions, state);
4357
4358 ir_loop *const stmt = new(ctx) ir_loop();
4359 instructions->push_tail(stmt);
4360
4361 /* Track the current loop nesting. */
4362 ast_iteration_statement *nesting_ast = state->loop_nesting_ast;
4363
4364 state->loop_nesting_ast = this;
4365
4366 /* Likewise, indicate that following code is closest to a loop,
4367 * NOT closest to a switch.
4368 */
4369 bool saved_is_switch_innermost = state->switch_state.is_switch_innermost;
4370 state->switch_state.is_switch_innermost = false;
4371
4372 if (mode != ast_do_while)
4373 condition_to_hir(stmt, state);
4374
4375 if (body != NULL)
4376 body->hir(& stmt->body_instructions, state);
4377
4378 if (rest_expression != NULL)
4379 rest_expression->hir(& stmt->body_instructions, state);
4380
4381 if (mode == ast_do_while)
4382 condition_to_hir(stmt, state);
4383
4384 if (mode != ast_do_while)
4385 state->symbols->pop_scope();
4386
4387 /* Restore previous nesting before returning. */
4388 state->loop_nesting_ast = nesting_ast;
4389 state->switch_state.is_switch_innermost = saved_is_switch_innermost;
4390
4391 /* Loops do not have r-values.
4392 */
4393 return NULL;
4394 }
4395
4396
4397 /**
4398 * Determine if the given type is valid for establishing a default precision
4399 * qualifier.
4400 *
4401 * From GLSL ES 3.00 section 4.5.4 ("Default Precision Qualifiers"):
4402 *
4403 * "The precision statement
4404 *
4405 * precision precision-qualifier type;
4406 *
4407 * can be used to establish a default precision qualifier. The type field
4408 * can be either int or float or any of the sampler types, and the
4409 * precision-qualifier can be lowp, mediump, or highp."
4410 *
4411 * GLSL ES 1.00 has similar language. GLSL 1.30 doesn't allow precision
4412 * qualifiers on sampler types, but this seems like an oversight (since the
4413 * intention of including these in GLSL 1.30 is to allow compatibility with ES
4414 * shaders). So we allow int, float, and all sampler types regardless of GLSL
4415 * version.
4416 */
4417 static bool
4418 is_valid_default_precision_type(const struct glsl_type *const type)
4419 {
4420 if (type == NULL)
4421 return false;
4422
4423 switch (type->base_type) {
4424 case GLSL_TYPE_INT:
4425 case GLSL_TYPE_FLOAT:
4426 /* "int" and "float" are valid, but vectors and matrices are not. */
4427 return type->vector_elements == 1 && type->matrix_columns == 1;
4428 case GLSL_TYPE_SAMPLER:
4429 return true;
4430 default:
4431 return false;
4432 }
4433 }
4434
4435
4436 ir_rvalue *
4437 ast_type_specifier::hir(exec_list *instructions,
4438 struct _mesa_glsl_parse_state *state)
4439 {
4440 if (this->default_precision == ast_precision_none && this->structure == NULL)
4441 return NULL;
4442
4443 YYLTYPE loc = this->get_location();
4444
4445 /* If this is a precision statement, check that the type to which it is
4446 * applied is either float or int.
4447 *
4448 * From section 4.5.3 of the GLSL 1.30 spec:
4449 * "The precision statement
4450 * precision precision-qualifier type;
4451 * can be used to establish a default precision qualifier. The type
4452 * field can be either int or float [...]. Any other types or
4453 * qualifiers will result in an error.
4454 */
4455 if (this->default_precision != ast_precision_none) {
4456 if (!state->check_precision_qualifiers_allowed(&loc))
4457 return NULL;
4458
4459 if (this->structure != NULL) {
4460 _mesa_glsl_error(&loc, state,
4461 "precision qualifiers do not apply to structures");
4462 return NULL;
4463 }
4464
4465 if (this->is_array) {
4466 _mesa_glsl_error(&loc, state,
4467 "default precision statements do not apply to "
4468 "arrays");
4469 return NULL;
4470 }
4471
4472 const struct glsl_type *const type =
4473 state->symbols->get_type(this->type_name);
4474 if (!is_valid_default_precision_type(type)) {
4475 _mesa_glsl_error(&loc, state,
4476 "default precision statements apply only to "
4477 "float, int, and sampler types");
4478 return NULL;
4479 }
4480
4481 if (type->base_type == GLSL_TYPE_FLOAT
4482 && state->es_shader
4483 && state->target == fragment_shader) {
4484 /* Section 4.5.3 (Default Precision Qualifiers) of the GLSL ES 1.00
4485 * spec says:
4486 *
4487 * "The fragment language has no default precision qualifier for
4488 * floating point types."
4489 *
4490 * As a result, we have to track whether or not default precision has
4491 * been specified for float in GLSL ES fragment shaders.
4492 *
4493 * Earlier in that same section, the spec says:
4494 *
4495 * "Non-precision qualified declarations will use the precision
4496 * qualifier specified in the most recent precision statement
4497 * that is still in scope. The precision statement has the same
4498 * scoping rules as variable declarations. If it is declared
4499 * inside a compound statement, its effect stops at the end of
4500 * the innermost statement it was declared in. Precision
4501 * statements in nested scopes override precision statements in
4502 * outer scopes. Multiple precision statements for the same basic
4503 * type can appear inside the same scope, with later statements
4504 * overriding earlier statements within that scope."
4505 *
4506 * Default precision specifications follow the same scope rules as
4507 * variables. So, we can track the state of the default float
4508 * precision in the symbol table, and the rules will just work. This
4509 * is a slight abuse of the symbol table, but it has the semantics
4510 * that we want.
4511 */
4512 ir_variable *const junk =
4513 new(state) ir_variable(type, "#default precision",
4514 ir_var_temporary);
4515
4516 state->symbols->add_variable(junk);
4517 }
4518
4519 /* FINISHME: Translate precision statements into IR. */
4520 return NULL;
4521 }
4522
4523 /* _mesa_ast_set_aggregate_type() sets the <structure> field so that
4524 * process_record_constructor() can do type-checking on C-style initializer
4525 * expressions of structs, but ast_struct_specifier should only be translated
4526 * to HIR if it is declaring the type of a structure.
4527 *
4528 * The ->is_declaration field is false for initializers of variables
4529 * declared separately from the struct's type definition.
4530 *
4531 * struct S { ... }; (is_declaration = true)
4532 * struct T { ... } t = { ... }; (is_declaration = true)
4533 * S s = { ... }; (is_declaration = false)
4534 */
4535 if (this->structure != NULL && this->structure->is_declaration)
4536 return this->structure->hir(instructions, state);
4537
4538 return NULL;
4539 }
4540
4541
4542 /**
4543 * Process a structure or interface block tree into an array of structure fields
4544 *
4545 * After parsing, where there are some syntax differnces, structures and
4546 * interface blocks are almost identical. They are similar enough that the
4547 * AST for each can be processed the same way into a set of
4548 * \c glsl_struct_field to describe the members.
4549 *
4550 * If we're processing an interface block, var_mode should be the type of the
4551 * interface block (ir_var_shader_in, ir_var_shader_out, or ir_var_uniform).
4552 * If we're processing a structure, var_mode should be ir_var_auto.
4553 *
4554 * \return
4555 * The number of fields processed. A pointer to the array structure fields is
4556 * stored in \c *fields_ret.
4557 */
4558 unsigned
4559 ast_process_structure_or_interface_block(exec_list *instructions,
4560 struct _mesa_glsl_parse_state *state,
4561 exec_list *declarations,
4562 YYLTYPE &loc,
4563 glsl_struct_field **fields_ret,
4564 bool is_interface,
4565 bool block_row_major,
4566 bool allow_reserved_names,
4567 ir_variable_mode var_mode)
4568 {
4569 unsigned decl_count = 0;
4570
4571 /* Make an initial pass over the list of fields to determine how
4572 * many there are. Each element in this list is an ast_declarator_list.
4573 * This means that we actually need to count the number of elements in the
4574 * 'declarations' list in each of the elements.
4575 */
4576 foreach_list_typed (ast_declarator_list, decl_list, link, declarations) {
4577 foreach_list_const (decl_ptr, & decl_list->declarations) {
4578 decl_count++;
4579 }
4580 }
4581
4582 /* Allocate storage for the fields and process the field
4583 * declarations. As the declarations are processed, try to also convert
4584 * the types to HIR. This ensures that structure definitions embedded in
4585 * other structure definitions or in interface blocks are processed.
4586 */
4587 glsl_struct_field *const fields = ralloc_array(state, glsl_struct_field,
4588 decl_count);
4589
4590 unsigned i = 0;
4591 foreach_list_typed (ast_declarator_list, decl_list, link, declarations) {
4592 const char *type_name;
4593
4594 decl_list->type->specifier->hir(instructions, state);
4595
4596 /* Section 10.9 of the GLSL ES 1.00 specification states that
4597 * embedded structure definitions have been removed from the language.
4598 */
4599 if (state->es_shader && decl_list->type->specifier->structure != NULL) {
4600 _mesa_glsl_error(&loc, state, "embedded structure definitions are "
4601 "not allowed in GLSL ES 1.00");
4602 }
4603
4604 const glsl_type *decl_type =
4605 decl_list->type->glsl_type(& type_name, state);
4606
4607 foreach_list_typed (ast_declaration, decl, link,
4608 &decl_list->declarations) {
4609 if (!allow_reserved_names)
4610 validate_identifier(decl->identifier, loc, state);
4611
4612 /* From the GL_ARB_uniform_buffer_object spec:
4613 *
4614 * "Sampler types are not allowed inside of uniform
4615 * blocks. All other types, arrays, and structures
4616 * allowed for uniforms are allowed within a uniform
4617 * block."
4618 *
4619 * It should be impossible for decl_type to be NULL here. Cases that
4620 * might naturally lead to decl_type being NULL, especially for the
4621 * is_interface case, will have resulted in compilation having
4622 * already halted due to a syntax error.
4623 */
4624 const struct glsl_type *field_type =
4625 decl_type != NULL ? decl_type : glsl_type::error_type;
4626
4627 if (is_interface && field_type->contains_sampler()) {
4628 YYLTYPE loc = decl_list->get_location();
4629 _mesa_glsl_error(&loc, state,
4630 "uniform in non-default uniform block contains sampler");
4631 }
4632
4633 if (field_type->contains_atomic()) {
4634 /* FINISHME: Add a spec quotation here once updated spec
4635 * FINISHME: language is available. See Khronos bug #10903
4636 * FINISHME: on whether atomic counters are allowed in
4637 * FINISHME: structures.
4638 */
4639 YYLTYPE loc = decl_list->get_location();
4640 _mesa_glsl_error(&loc, state, "atomic counter in structure or "
4641 "uniform block");
4642 }
4643
4644 const struct ast_type_qualifier *const qual =
4645 & decl_list->type->qualifier;
4646 if (qual->flags.q.std140 ||
4647 qual->flags.q.packed ||
4648 qual->flags.q.shared) {
4649 _mesa_glsl_error(&loc, state,
4650 "uniform block layout qualifiers std140, packed, and "
4651 "shared can only be applied to uniform blocks, not "
4652 "members");
4653 }
4654
4655 if (decl->is_array) {
4656 field_type = process_array_type(&loc, decl_type, decl->array_size,
4657 state);
4658 }
4659 fields[i].type = field_type;
4660 fields[i].name = decl->identifier;
4661 fields[i].location = -1;
4662 fields[i].interpolation =
4663 interpret_interpolation_qualifier(qual, var_mode, state, &loc);
4664 fields[i].centroid = qual->flags.q.centroid ? 1 : 0;
4665
4666 if (qual->flags.q.row_major || qual->flags.q.column_major) {
4667 if (!qual->flags.q.uniform) {
4668 _mesa_glsl_error(&loc, state,
4669 "row_major and column_major can only be "
4670 "applied to uniform interface blocks");
4671 } else
4672 validate_matrix_layout_for_type(state, &loc, field_type, NULL);
4673 }
4674
4675 if (qual->flags.q.uniform && qual->has_interpolation()) {
4676 _mesa_glsl_error(&loc, state,
4677 "interpolation qualifiers cannot be used "
4678 "with uniform interface blocks");
4679 }
4680
4681 if (field_type->is_matrix() ||
4682 (field_type->is_array() && field_type->fields.array->is_matrix())) {
4683 fields[i].row_major = block_row_major;
4684 if (qual->flags.q.row_major)
4685 fields[i].row_major = true;
4686 else if (qual->flags.q.column_major)
4687 fields[i].row_major = false;
4688 }
4689
4690 i++;
4691 }
4692 }
4693
4694 assert(i == decl_count);
4695
4696 *fields_ret = fields;
4697 return decl_count;
4698 }
4699
4700
4701 ir_rvalue *
4702 ast_struct_specifier::hir(exec_list *instructions,
4703 struct _mesa_glsl_parse_state *state)
4704 {
4705 YYLTYPE loc = this->get_location();
4706
4707 /* Section 4.1.8 (Structures) of the GLSL 1.10 spec says:
4708 *
4709 * "Anonymous structures are not supported; so embedded structures must
4710 * have a declarator. A name given to an embedded struct is scoped at
4711 * the same level as the struct it is embedded in."
4712 *
4713 * The same section of the GLSL 1.20 spec says:
4714 *
4715 * "Anonymous structures are not supported. Embedded structures are not
4716 * supported.
4717 *
4718 * struct S { float f; };
4719 * struct T {
4720 * S; // Error: anonymous structures disallowed
4721 * struct { ... }; // Error: embedded structures disallowed
4722 * S s; // Okay: nested structures with name are allowed
4723 * };"
4724 *
4725 * The GLSL ES 1.00 and 3.00 specs have similar langauge and examples. So,
4726 * we allow embedded structures in 1.10 only.
4727 */
4728 if (state->language_version != 110 && state->struct_specifier_depth != 0)
4729 _mesa_glsl_error(&loc, state,
4730 "embedded structure declartions are not allowed");
4731
4732 state->struct_specifier_depth++;
4733
4734 glsl_struct_field *fields;
4735 unsigned decl_count =
4736 ast_process_structure_or_interface_block(instructions,
4737 state,
4738 &this->declarations,
4739 loc,
4740 &fields,
4741 false,
4742 false,
4743 false /* allow_reserved_names */,
4744 ir_var_auto);
4745
4746 validate_identifier(this->name, loc, state);
4747
4748 const glsl_type *t =
4749 glsl_type::get_record_instance(fields, decl_count, this->name);
4750
4751 if (!state->symbols->add_type(name, t)) {
4752 _mesa_glsl_error(& loc, state, "struct `%s' previously defined", name);
4753 } else {
4754 const glsl_type **s = reralloc(state, state->user_structures,
4755 const glsl_type *,
4756 state->num_user_structures + 1);
4757 if (s != NULL) {
4758 s[state->num_user_structures] = t;
4759 state->user_structures = s;
4760 state->num_user_structures++;
4761 }
4762 }
4763
4764 state->struct_specifier_depth--;
4765
4766 /* Structure type definitions do not have r-values.
4767 */
4768 return NULL;
4769 }
4770
4771
4772 /**
4773 * Visitor class which detects whether a given interface block has been used.
4774 */
4775 class interface_block_usage_visitor : public ir_hierarchical_visitor
4776 {
4777 public:
4778 interface_block_usage_visitor(ir_variable_mode mode, const glsl_type *block)
4779 : mode(mode), block(block), found(false)
4780 {
4781 }
4782
4783 virtual ir_visitor_status visit(ir_dereference_variable *ir)
4784 {
4785 if (ir->var->mode == mode && ir->var->get_interface_type() == block) {
4786 found = true;
4787 return visit_stop;
4788 }
4789 return visit_continue;
4790 }
4791
4792 bool usage_found() const
4793 {
4794 return this->found;
4795 }
4796
4797 private:
4798 ir_variable_mode mode;
4799 const glsl_type *block;
4800 bool found;
4801 };
4802
4803
4804 ir_rvalue *
4805 ast_interface_block::hir(exec_list *instructions,
4806 struct _mesa_glsl_parse_state *state)
4807 {
4808 YYLTYPE loc = this->get_location();
4809
4810 /* The ast_interface_block has a list of ast_declarator_lists. We
4811 * need to turn those into ir_variables with an association
4812 * with this uniform block.
4813 */
4814 enum glsl_interface_packing packing;
4815 if (this->layout.flags.q.shared) {
4816 packing = GLSL_INTERFACE_PACKING_SHARED;
4817 } else if (this->layout.flags.q.packed) {
4818 packing = GLSL_INTERFACE_PACKING_PACKED;
4819 } else {
4820 /* The default layout is std140.
4821 */
4822 packing = GLSL_INTERFACE_PACKING_STD140;
4823 }
4824
4825 ir_variable_mode var_mode;
4826 const char *iface_type_name;
4827 if (this->layout.flags.q.in) {
4828 var_mode = ir_var_shader_in;
4829 iface_type_name = "in";
4830 } else if (this->layout.flags.q.out) {
4831 var_mode = ir_var_shader_out;
4832 iface_type_name = "out";
4833 } else if (this->layout.flags.q.uniform) {
4834 var_mode = ir_var_uniform;
4835 iface_type_name = "uniform";
4836 } else {
4837 var_mode = ir_var_auto;
4838 iface_type_name = "UNKNOWN";
4839 assert(!"interface block layout qualifier not found!");
4840 }
4841
4842 bool redeclaring_per_vertex = strcmp(this->block_name, "gl_PerVertex") == 0;
4843 bool block_row_major = this->layout.flags.q.row_major;
4844 exec_list declared_variables;
4845 glsl_struct_field *fields;
4846 unsigned int num_variables =
4847 ast_process_structure_or_interface_block(&declared_variables,
4848 state,
4849 &this->declarations,
4850 loc,
4851 &fields,
4852 true,
4853 block_row_major,
4854 redeclaring_per_vertex,
4855 var_mode);
4856
4857 if (!redeclaring_per_vertex)
4858 validate_identifier(this->block_name, loc, state);
4859
4860 const glsl_type *earlier_per_vertex = NULL;
4861 if (redeclaring_per_vertex) {
4862 /* Find the previous declaration of gl_PerVertex. If we're redeclaring
4863 * the named interface block gl_in, we can find it by looking at the
4864 * previous declaration of gl_in. Otherwise we can find it by looking
4865 * at the previous decalartion of any of the built-in outputs,
4866 * e.g. gl_Position.
4867 *
4868 * Also check that the instance name and array-ness of the redeclaration
4869 * are correct.
4870 */
4871 switch (var_mode) {
4872 case ir_var_shader_in:
4873 if (ir_variable *earlier_gl_in =
4874 state->symbols->get_variable("gl_in")) {
4875 earlier_per_vertex = earlier_gl_in->get_interface_type();
4876 } else {
4877 _mesa_glsl_error(&loc, state,
4878 "redeclaration of gl_PerVertex input not allowed "
4879 "in the %s shader",
4880 _mesa_glsl_shader_target_name(state->target));
4881 }
4882 if (this->instance_name == NULL ||
4883 strcmp(this->instance_name, "gl_in") != 0 || !this->is_array) {
4884 _mesa_glsl_error(&loc, state,
4885 "gl_PerVertex input must be redeclared as "
4886 "gl_in[]");
4887 }
4888 break;
4889 case ir_var_shader_out:
4890 if (ir_variable *earlier_gl_Position =
4891 state->symbols->get_variable("gl_Position")) {
4892 earlier_per_vertex = earlier_gl_Position->get_interface_type();
4893 } else {
4894 _mesa_glsl_error(&loc, state,
4895 "redeclaration of gl_PerVertex output not "
4896 "allowed in the %s shader",
4897 _mesa_glsl_shader_target_name(state->target));
4898 }
4899 if (this->instance_name != NULL) {
4900 _mesa_glsl_error(&loc, state,
4901 "gl_PerVertex input may not be redeclared with "
4902 "an instance name");
4903 }
4904 break;
4905 default:
4906 _mesa_glsl_error(&loc, state,
4907 "gl_PerVertex must be declared as an input or an "
4908 "output");
4909 break;
4910 }
4911
4912 if (earlier_per_vertex == NULL) {
4913 /* An error has already been reported. Bail out to avoid null
4914 * dereferences later in this function.
4915 */
4916 return NULL;
4917 }
4918
4919 /* Copy locations from the old gl_PerVertex interface block. */
4920 for (unsigned i = 0; i < num_variables; i++) {
4921 int j = earlier_per_vertex->field_index(fields[i].name);
4922 if (j == -1) {
4923 _mesa_glsl_error(&loc, state,
4924 "redeclaration of gl_PerVertex must be a subset "
4925 "of the built-in members of gl_PerVertex");
4926 } else {
4927 fields[i].location =
4928 earlier_per_vertex->fields.structure[j].location;
4929 fields[i].interpolation =
4930 earlier_per_vertex->fields.structure[j].interpolation;
4931 fields[i].centroid =
4932 earlier_per_vertex->fields.structure[j].centroid;
4933 }
4934 }
4935
4936 /* From section 7.1 ("Built-in Language Variables") of the GLSL 4.10
4937 * spec:
4938 *
4939 * If a built-in interface block is redeclared, it must appear in
4940 * the shader before any use of any member included in the built-in
4941 * declaration, or a compilation error will result.
4942 *
4943 * This appears to be a clarification to the behaviour established for
4944 * gl_PerVertex by GLSL 1.50, therefore we implement this behaviour
4945 * regardless of GLSL version.
4946 */
4947 interface_block_usage_visitor v(var_mode, earlier_per_vertex);
4948 v.run(instructions);
4949 if (v.usage_found()) {
4950 _mesa_glsl_error(&loc, state,
4951 "redeclaration of a built-in interface block must "
4952 "appear before any use of any member of the "
4953 "interface block");
4954 }
4955 }
4956
4957 const glsl_type *block_type =
4958 glsl_type::get_interface_instance(fields,
4959 num_variables,
4960 packing,
4961 this->block_name);
4962
4963 if (!state->symbols->add_interface(block_type->name, block_type, var_mode)) {
4964 YYLTYPE loc = this->get_location();
4965 _mesa_glsl_error(&loc, state, "interface block `%s' with type `%s' "
4966 "already taken in the current scope",
4967 this->block_name, iface_type_name);
4968 }
4969
4970 /* Since interface blocks cannot contain statements, it should be
4971 * impossible for the block to generate any instructions.
4972 */
4973 assert(declared_variables.is_empty());
4974
4975 /* From section 4.3.4 (Inputs) of the GLSL 1.50 spec:
4976 *
4977 * Geometry shader input variables get the per-vertex values written
4978 * out by vertex shader output variables of the same names. Since a
4979 * geometry shader operates on a set of vertices, each input varying
4980 * variable (or input block, see interface blocks below) needs to be
4981 * declared as an array.
4982 */
4983 if (state->target == geometry_shader && !this->is_array &&
4984 var_mode == ir_var_shader_in) {
4985 _mesa_glsl_error(&loc, state, "geometry shader inputs must be arrays");
4986 }
4987
4988 /* Page 39 (page 45 of the PDF) of section 4.3.7 in the GLSL ES 3.00 spec
4989 * says:
4990 *
4991 * "If an instance name (instance-name) is used, then it puts all the
4992 * members inside a scope within its own name space, accessed with the
4993 * field selector ( . ) operator (analogously to structures)."
4994 */
4995 if (this->instance_name) {
4996 if (redeclaring_per_vertex) {
4997 /* When a built-in in an unnamed interface block is redeclared,
4998 * get_variable_being_redeclared() calls
4999 * check_builtin_array_max_size() to make sure that built-in array
5000 * variables aren't redeclared to illegal sizes. But we're looking
5001 * at a redeclaration of a named built-in interface block. So we
5002 * have to manually call check_builtin_array_max_size() for all parts
5003 * of the interface that are arrays.
5004 */
5005 for (unsigned i = 0; i < num_variables; i++) {
5006 if (fields[i].type->is_array()) {
5007 const unsigned size = fields[i].type->array_size();
5008 check_builtin_array_max_size(fields[i].name, size, loc, state);
5009 }
5010 }
5011 } else {
5012 validate_identifier(this->instance_name, loc, state);
5013 }
5014
5015 ir_variable *var;
5016
5017 if (this->is_array) {
5018 /* Section 4.3.7 (Interface Blocks) of the GLSL 1.50 spec says:
5019 *
5020 * For uniform blocks declared an array, each individual array
5021 * element corresponds to a separate buffer object backing one
5022 * instance of the block. As the array size indicates the number
5023 * of buffer objects needed, uniform block array declarations
5024 * must specify an array size.
5025 *
5026 * And a few paragraphs later:
5027 *
5028 * Geometry shader input blocks must be declared as arrays and
5029 * follow the array declaration and linking rules for all
5030 * geometry shader inputs. All other input and output block
5031 * arrays must specify an array size.
5032 *
5033 * The upshot of this is that the only circumstance where an
5034 * interface array size *doesn't* need to be specified is on a
5035 * geometry shader input.
5036 */
5037 if (this->array_size == NULL &&
5038 (state->target != geometry_shader || !this->layout.flags.q.in)) {
5039 _mesa_glsl_error(&loc, state,
5040 "only geometry shader inputs may be unsized "
5041 "instance block arrays");
5042
5043 }
5044
5045 const glsl_type *block_array_type =
5046 process_array_type(&loc, block_type, this->array_size, state);
5047
5048 var = new(state) ir_variable(block_array_type,
5049 this->instance_name,
5050 var_mode);
5051 } else {
5052 var = new(state) ir_variable(block_type,
5053 this->instance_name,
5054 var_mode);
5055 }
5056
5057 if (state->target == geometry_shader && var_mode == ir_var_shader_in)
5058 handle_geometry_shader_input_decl(state, loc, var);
5059
5060 if (ir_variable *earlier =
5061 state->symbols->get_variable(this->instance_name)) {
5062 if (!redeclaring_per_vertex) {
5063 _mesa_glsl_error(&loc, state, "`%s' redeclared",
5064 this->instance_name);
5065 }
5066 earlier->how_declared = ir_var_declared_normally;
5067 earlier->type = var->type;
5068 earlier->reinit_interface_type(block_type);
5069 delete var;
5070 } else {
5071 state->symbols->add_variable(var);
5072 instructions->push_tail(var);
5073 }
5074 } else {
5075 /* In order to have an array size, the block must also be declared with
5076 * an instane name.
5077 */
5078 assert(!this->is_array);
5079
5080 for (unsigned i = 0; i < num_variables; i++) {
5081 ir_variable *var =
5082 new(state) ir_variable(fields[i].type,
5083 ralloc_strdup(state, fields[i].name),
5084 var_mode);
5085 var->interpolation = fields[i].interpolation;
5086 var->centroid = fields[i].centroid;
5087 var->init_interface_type(block_type);
5088
5089 if (redeclaring_per_vertex) {
5090 ir_variable *earlier =
5091 get_variable_being_redeclared(var, loc, state,
5092 true /* allow_all_redeclarations */);
5093 if (strncmp(var->name, "gl_", 3) != 0 || earlier == NULL) {
5094 _mesa_glsl_error(&loc, state,
5095 "redeclaration of gl_PerVertex can only "
5096 "include built-in variables");
5097 } else if (earlier->how_declared == ir_var_declared_normally) {
5098 _mesa_glsl_error(&loc, state,
5099 "`%s' has already been redeclared", var->name);
5100 } else {
5101 earlier->how_declared = ir_var_declared_in_block;
5102 earlier->reinit_interface_type(block_type);
5103 }
5104 continue;
5105 }
5106
5107 if (state->symbols->get_variable(var->name) != NULL)
5108 _mesa_glsl_error(&loc, state, "`%s' redeclared", var->name);
5109
5110 /* Propagate the "binding" keyword into this UBO's fields;
5111 * the UBO declaration itself doesn't get an ir_variable unless it
5112 * has an instance name. This is ugly.
5113 */
5114 var->explicit_binding = this->layout.flags.q.explicit_binding;
5115 var->binding = this->layout.binding;
5116
5117 state->symbols->add_variable(var);
5118 instructions->push_tail(var);
5119 }
5120
5121 if (redeclaring_per_vertex && block_type != earlier_per_vertex) {
5122 /* From section 7.1 ("Built-in Language Variables") of the GLSL 4.10 spec:
5123 *
5124 * It is also a compilation error ... to redeclare a built-in
5125 * block and then use a member from that built-in block that was
5126 * not included in the redeclaration.
5127 *
5128 * This appears to be a clarification to the behaviour established
5129 * for gl_PerVertex by GLSL 1.50, therefore we implement this
5130 * behaviour regardless of GLSL version.
5131 *
5132 * To prevent the shader from using a member that was not included in
5133 * the redeclaration, we disable any ir_variables that are still
5134 * associated with the old declaration of gl_PerVertex (since we've
5135 * already updated all of the variables contained in the new
5136 * gl_PerVertex to point to it).
5137 *
5138 * As a side effect this will prevent
5139 * validate_intrastage_interface_blocks() from getting confused and
5140 * thinking there are conflicting definitions of gl_PerVertex in the
5141 * shader.
5142 */
5143 foreach_list_safe(node, instructions) {
5144 ir_variable *const var = ((ir_instruction *) node)->as_variable();
5145 if (var != NULL &&
5146 var->get_interface_type() == earlier_per_vertex &&
5147 var->mode == var_mode) {
5148 if (var->how_declared == ir_var_declared_normally) {
5149 _mesa_glsl_error(&loc, state,
5150 "redeclaration of gl_PerVertex cannot "
5151 "follow a redeclaration of `%s'",
5152 var->name);
5153 }
5154 state->symbols->disable_variable(var->name);
5155 var->remove();
5156 }
5157 }
5158 }
5159 }
5160
5161 return NULL;
5162 }
5163
5164
5165 ir_rvalue *
5166 ast_gs_input_layout::hir(exec_list *instructions,
5167 struct _mesa_glsl_parse_state *state)
5168 {
5169 YYLTYPE loc = this->get_location();
5170
5171 /* If any geometry input layout declaration preceded this one, make sure it
5172 * was consistent with this one.
5173 */
5174 if (state->gs_input_prim_type_specified &&
5175 state->gs_input_prim_type != this->prim_type) {
5176 _mesa_glsl_error(&loc, state,
5177 "geometry shader input layout does not match"
5178 " previous declaration");
5179 return NULL;
5180 }
5181
5182 /* If any shader inputs occurred before this declaration and specified an
5183 * array size, make sure the size they specified is consistent with the
5184 * primitive type.
5185 */
5186 unsigned num_vertices = vertices_per_prim(this->prim_type);
5187 if (state->gs_input_size != 0 && state->gs_input_size != num_vertices) {
5188 _mesa_glsl_error(&loc, state,
5189 "this geometry shader input layout implies %u vertices"
5190 " per primitive, but a previous input is declared"
5191 " with size %u", num_vertices, state->gs_input_size);
5192 return NULL;
5193 }
5194
5195 state->gs_input_prim_type_specified = true;
5196 state->gs_input_prim_type = this->prim_type;
5197
5198 /* If any shader inputs occurred before this declaration and did not
5199 * specify an array size, their size is determined now.
5200 */
5201 foreach_list (node, instructions) {
5202 ir_variable *var = ((ir_instruction *) node)->as_variable();
5203 if (var == NULL || var->mode != ir_var_shader_in)
5204 continue;
5205
5206 /* Note: gl_PrimitiveIDIn has mode ir_var_shader_in, but it's not an
5207 * array; skip it.
5208 */
5209
5210 if (var->type->is_unsized_array()) {
5211 if (var->max_array_access >= num_vertices) {
5212 _mesa_glsl_error(&loc, state,
5213 "this geometry shader input layout implies %u"
5214 " vertices, but an access to element %u of input"
5215 " `%s' already exists", num_vertices,
5216 var->max_array_access, var->name);
5217 } else {
5218 var->type = glsl_type::get_array_instance(var->type->fields.array,
5219 num_vertices);
5220 }
5221 }
5222 }
5223
5224 return NULL;
5225 }
5226
5227
5228 static void
5229 detect_conflicting_assignments(struct _mesa_glsl_parse_state *state,
5230 exec_list *instructions)
5231 {
5232 bool gl_FragColor_assigned = false;
5233 bool gl_FragData_assigned = false;
5234 bool user_defined_fs_output_assigned = false;
5235 ir_variable *user_defined_fs_output = NULL;
5236
5237 /* It would be nice to have proper location information. */
5238 YYLTYPE loc;
5239 memset(&loc, 0, sizeof(loc));
5240
5241 foreach_list(node, instructions) {
5242 ir_variable *var = ((ir_instruction *)node)->as_variable();
5243
5244 if (!var || !var->assigned)
5245 continue;
5246
5247 if (strcmp(var->name, "gl_FragColor") == 0)
5248 gl_FragColor_assigned = true;
5249 else if (strcmp(var->name, "gl_FragData") == 0)
5250 gl_FragData_assigned = true;
5251 else if (strncmp(var->name, "gl_", 3) != 0) {
5252 if (state->target == fragment_shader &&
5253 var->mode == ir_var_shader_out) {
5254 user_defined_fs_output_assigned = true;
5255 user_defined_fs_output = var;
5256 }
5257 }
5258 }
5259
5260 /* From the GLSL 1.30 spec:
5261 *
5262 * "If a shader statically assigns a value to gl_FragColor, it
5263 * may not assign a value to any element of gl_FragData. If a
5264 * shader statically writes a value to any element of
5265 * gl_FragData, it may not assign a value to
5266 * gl_FragColor. That is, a shader may assign values to either
5267 * gl_FragColor or gl_FragData, but not both. Multiple shaders
5268 * linked together must also consistently write just one of
5269 * these variables. Similarly, if user declared output
5270 * variables are in use (statically assigned to), then the
5271 * built-in variables gl_FragColor and gl_FragData may not be
5272 * assigned to. These incorrect usages all generate compile
5273 * time errors."
5274 */
5275 if (gl_FragColor_assigned && gl_FragData_assigned) {
5276 _mesa_glsl_error(&loc, state, "fragment shader writes to both "
5277 "`gl_FragColor' and `gl_FragData'");
5278 } else if (gl_FragColor_assigned && user_defined_fs_output_assigned) {
5279 _mesa_glsl_error(&loc, state, "fragment shader writes to both "
5280 "`gl_FragColor' and `%s'",
5281 user_defined_fs_output->name);
5282 } else if (gl_FragData_assigned && user_defined_fs_output_assigned) {
5283 _mesa_glsl_error(&loc, state, "fragment shader writes to both "
5284 "`gl_FragData' and `%s'",
5285 user_defined_fs_output->name);
5286 }
5287 }
5288
5289
5290 static void
5291 remove_per_vertex_blocks(exec_list *instructions,
5292 _mesa_glsl_parse_state *state, ir_variable_mode mode)
5293 {
5294 /* Find the gl_PerVertex interface block of the appropriate (in/out) mode,
5295 * if it exists in this shader type.
5296 */
5297 const glsl_type *per_vertex = NULL;
5298 switch (mode) {
5299 case ir_var_shader_in:
5300 if (ir_variable *gl_in = state->symbols->get_variable("gl_in"))
5301 per_vertex = gl_in->get_interface_type();
5302 break;
5303 case ir_var_shader_out:
5304 if (ir_variable *gl_Position =
5305 state->symbols->get_variable("gl_Position")) {
5306 per_vertex = gl_Position->get_interface_type();
5307 }
5308 break;
5309 default:
5310 assert(!"Unexpected mode");
5311 break;
5312 }
5313
5314 /* If we didn't find a built-in gl_PerVertex interface block, then we don't
5315 * need to do anything.
5316 */
5317 if (per_vertex == NULL)
5318 return;
5319
5320 /* If the interface block is used by the shader, then we don't need to do
5321 * anything.
5322 */
5323 interface_block_usage_visitor v(mode, per_vertex);
5324 v.run(instructions);
5325 if (v.usage_found())
5326 return;
5327
5328 /* Remove any ir_variable declarations that refer to the interface block
5329 * we're removing.
5330 */
5331 foreach_list_safe(node, instructions) {
5332 ir_variable *const var = ((ir_instruction *) node)->as_variable();
5333 if (var != NULL && var->get_interface_type() == per_vertex &&
5334 var->mode == mode) {
5335 state->symbols->disable_variable(var->name);
5336 var->remove();
5337 }
5338 }
5339 }