glsl: add several EmitNo* options, and MaxUnrollIterations
[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 "ir.h"
58
59 void
60 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state)
61 {
62 _mesa_glsl_initialize_variables(instructions, state);
63 _mesa_glsl_initialize_functions(instructions, state);
64
65 state->symbols->language_version = state->language_version;
66
67 state->current_function = NULL;
68
69 /* Section 4.2 of the GLSL 1.20 specification states:
70 * "The built-in functions are scoped in a scope outside the global scope
71 * users declare global variables in. That is, a shader's global scope,
72 * available for user-defined functions and global variables, is nested
73 * inside the scope containing the built-in functions."
74 *
75 * Since built-in functions like ftransform() access built-in variables,
76 * it follows that those must be in the outer scope as well.
77 *
78 * We push scope here to create this nesting effect...but don't pop.
79 * This way, a shader's globals are still in the symbol table for use
80 * by the linker.
81 */
82 state->symbols->push_scope();
83
84 foreach_list_typed (ast_node, ast, link, & state->translation_unit)
85 ast->hir(instructions, state);
86 }
87
88
89 /**
90 * If a conversion is available, convert one operand to a different type
91 *
92 * The \c from \c ir_rvalue is converted "in place".
93 *
94 * \param to Type that the operand it to be converted to
95 * \param from Operand that is being converted
96 * \param state GLSL compiler state
97 *
98 * \return
99 * If a conversion is possible (or unnecessary), \c true is returned.
100 * Otherwise \c false is returned.
101 */
102 bool
103 apply_implicit_conversion(const glsl_type *to, ir_rvalue * &from,
104 struct _mesa_glsl_parse_state *state)
105 {
106 void *ctx = state;
107 if (to->base_type == from->type->base_type)
108 return true;
109
110 /* This conversion was added in GLSL 1.20. If the compilation mode is
111 * GLSL 1.10, the conversion is skipped.
112 */
113 if (state->language_version < 120)
114 return false;
115
116 /* From page 27 (page 33 of the PDF) of the GLSL 1.50 spec:
117 *
118 * "There are no implicit array or structure conversions. For
119 * example, an array of int cannot be implicitly converted to an
120 * array of float. There are no implicit conversions between
121 * signed and unsigned integers."
122 */
123 /* FINISHME: The above comment is partially a lie. There is int/uint
124 * FINISHME: conversion for immediate constants.
125 */
126 if (!to->is_float() || !from->type->is_numeric())
127 return false;
128
129 /* Convert to a floating point type with the same number of components
130 * as the original type - i.e. int to float, not int to vec4.
131 */
132 to = glsl_type::get_instance(GLSL_TYPE_FLOAT, from->type->vector_elements,
133 from->type->matrix_columns);
134
135 switch (from->type->base_type) {
136 case GLSL_TYPE_INT:
137 from = new(ctx) ir_expression(ir_unop_i2f, to, from, NULL);
138 break;
139 case GLSL_TYPE_UINT:
140 from = new(ctx) ir_expression(ir_unop_u2f, to, from, NULL);
141 break;
142 case GLSL_TYPE_BOOL:
143 from = new(ctx) ir_expression(ir_unop_b2f, to, from, NULL);
144 break;
145 default:
146 assert(0);
147 }
148
149 return true;
150 }
151
152
153 static const struct glsl_type *
154 arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b,
155 bool multiply,
156 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
157 {
158 const glsl_type *type_a = value_a->type;
159 const glsl_type *type_b = value_b->type;
160
161 /* From GLSL 1.50 spec, page 56:
162 *
163 * "The arithmetic binary operators add (+), subtract (-),
164 * multiply (*), and divide (/) operate on integer and
165 * floating-point scalars, vectors, and matrices."
166 */
167 if (!type_a->is_numeric() || !type_b->is_numeric()) {
168 _mesa_glsl_error(loc, state,
169 "Operands to arithmetic operators must be numeric");
170 return glsl_type::error_type;
171 }
172
173
174 /* "If one operand is floating-point based and the other is
175 * not, then the conversions from Section 4.1.10 "Implicit
176 * Conversions" are applied to the non-floating-point-based operand."
177 */
178 if (!apply_implicit_conversion(type_a, value_b, state)
179 && !apply_implicit_conversion(type_b, value_a, state)) {
180 _mesa_glsl_error(loc, state,
181 "Could not implicitly convert operands to "
182 "arithmetic operator");
183 return glsl_type::error_type;
184 }
185 type_a = value_a->type;
186 type_b = value_b->type;
187
188 /* "If the operands are integer types, they must both be signed or
189 * both be unsigned."
190 *
191 * From this rule and the preceeding conversion it can be inferred that
192 * both types must be GLSL_TYPE_FLOAT, or GLSL_TYPE_UINT, or GLSL_TYPE_INT.
193 * The is_numeric check above already filtered out the case where either
194 * type is not one of these, so now the base types need only be tested for
195 * equality.
196 */
197 if (type_a->base_type != type_b->base_type) {
198 _mesa_glsl_error(loc, state,
199 "base type mismatch for arithmetic operator");
200 return glsl_type::error_type;
201 }
202
203 /* "All arithmetic binary operators result in the same fundamental type
204 * (signed integer, unsigned integer, or floating-point) as the
205 * operands they operate on, after operand type conversion. After
206 * conversion, the following cases are valid
207 *
208 * * The two operands are scalars. In this case the operation is
209 * applied, resulting in a scalar."
210 */
211 if (type_a->is_scalar() && type_b->is_scalar())
212 return type_a;
213
214 /* "* One operand is a scalar, and the other is a vector or matrix.
215 * In this case, the scalar operation is applied independently to each
216 * component of the vector or matrix, resulting in the same size
217 * vector or matrix."
218 */
219 if (type_a->is_scalar()) {
220 if (!type_b->is_scalar())
221 return type_b;
222 } else if (type_b->is_scalar()) {
223 return type_a;
224 }
225
226 /* All of the combinations of <scalar, scalar>, <vector, scalar>,
227 * <scalar, vector>, <scalar, matrix>, and <matrix, scalar> have been
228 * handled.
229 */
230 assert(!type_a->is_scalar());
231 assert(!type_b->is_scalar());
232
233 /* "* The two operands are vectors of the same size. In this case, the
234 * operation is done component-wise resulting in the same size
235 * vector."
236 */
237 if (type_a->is_vector() && type_b->is_vector()) {
238 if (type_a == type_b) {
239 return type_a;
240 } else {
241 _mesa_glsl_error(loc, state,
242 "vector size mismatch for arithmetic operator");
243 return glsl_type::error_type;
244 }
245 }
246
247 /* All of the combinations of <scalar, scalar>, <vector, scalar>,
248 * <scalar, vector>, <scalar, matrix>, <matrix, scalar>, and
249 * <vector, vector> have been handled. At least one of the operands must
250 * be matrix. Further, since there are no integer matrix types, the base
251 * type of both operands must be float.
252 */
253 assert(type_a->is_matrix() || type_b->is_matrix());
254 assert(type_a->base_type == GLSL_TYPE_FLOAT);
255 assert(type_b->base_type == GLSL_TYPE_FLOAT);
256
257 /* "* The operator is add (+), subtract (-), or divide (/), and the
258 * operands are matrices with the same number of rows and the same
259 * number of columns. In this case, the operation is done component-
260 * wise resulting in the same size matrix."
261 * * The operator is multiply (*), where both operands are matrices or
262 * one operand is a vector and the other a matrix. A right vector
263 * operand is treated as a column vector and a left vector operand as a
264 * row vector. In all these cases, it is required that the number of
265 * columns of the left operand is equal to the number of rows of the
266 * right operand. Then, the multiply (*) operation does a linear
267 * algebraic multiply, yielding an object that has the same number of
268 * rows as the left operand and the same number of columns as the right
269 * operand. Section 5.10 "Vector and Matrix Operations" explains in
270 * more detail how vectors and matrices are operated on."
271 */
272 if (! multiply) {
273 if (type_a == type_b)
274 return type_a;
275 } else {
276 if (type_a->is_matrix() && type_b->is_matrix()) {
277 /* Matrix multiply. The columns of A must match the rows of B. Given
278 * the other previously tested constraints, this means the vector type
279 * of a row from A must be the same as the vector type of a column from
280 * B.
281 */
282 if (type_a->row_type() == type_b->column_type()) {
283 /* The resulting matrix has the number of columns of matrix B and
284 * the number of rows of matrix A. We get the row count of A by
285 * looking at the size of a vector that makes up a column. The
286 * transpose (size of a row) is done for B.
287 */
288 const glsl_type *const type =
289 glsl_type::get_instance(type_a->base_type,
290 type_a->column_type()->vector_elements,
291 type_b->row_type()->vector_elements);
292 assert(type != glsl_type::error_type);
293
294 return type;
295 }
296 } else if (type_a->is_matrix()) {
297 /* A is a matrix and B is a column vector. Columns of A must match
298 * rows of B. Given the other previously tested constraints, this
299 * means the vector type of a row from A must be the same as the
300 * vector the type of B.
301 */
302 if (type_a->row_type() == type_b) {
303 /* The resulting vector has a number of elements equal to
304 * the number of rows of matrix A. */
305 const glsl_type *const type =
306 glsl_type::get_instance(type_a->base_type,
307 type_a->column_type()->vector_elements,
308 1);
309 assert(type != glsl_type::error_type);
310
311 return type;
312 }
313 } else {
314 assert(type_b->is_matrix());
315
316 /* A is a row vector and B is a matrix. Columns of A must match rows
317 * of B. Given the other previously tested constraints, this means
318 * the type of A must be the same as the vector type of a column from
319 * B.
320 */
321 if (type_a == type_b->column_type()) {
322 /* The resulting vector has a number of elements equal to
323 * the number of columns of matrix B. */
324 const glsl_type *const type =
325 glsl_type::get_instance(type_a->base_type,
326 type_b->row_type()->vector_elements,
327 1);
328 assert(type != glsl_type::error_type);
329
330 return type;
331 }
332 }
333
334 _mesa_glsl_error(loc, state, "size mismatch for matrix multiplication");
335 return glsl_type::error_type;
336 }
337
338
339 /* "All other cases are illegal."
340 */
341 _mesa_glsl_error(loc, state, "type mismatch");
342 return glsl_type::error_type;
343 }
344
345
346 static const struct glsl_type *
347 unary_arithmetic_result_type(const struct glsl_type *type,
348 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
349 {
350 /* From GLSL 1.50 spec, page 57:
351 *
352 * "The arithmetic unary operators negate (-), post- and pre-increment
353 * and decrement (-- and ++) operate on integer or floating-point
354 * values (including vectors and matrices). All unary operators work
355 * component-wise on their operands. These result with the same type
356 * they operated on."
357 */
358 if (!type->is_numeric()) {
359 _mesa_glsl_error(loc, state,
360 "Operands to arithmetic operators must be numeric");
361 return glsl_type::error_type;
362 }
363
364 return type;
365 }
366
367
368 static const struct glsl_type *
369 modulus_result_type(const struct glsl_type *type_a,
370 const struct glsl_type *type_b,
371 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
372 {
373 /* From GLSL 1.50 spec, page 56:
374 * "The operator modulus (%) operates on signed or unsigned integers or
375 * integer vectors. The operand types must both be signed or both be
376 * unsigned."
377 */
378 if (!type_a->is_integer() || !type_b->is_integer()
379 || (type_a->base_type != type_b->base_type)) {
380 _mesa_glsl_error(loc, state, "type mismatch");
381 return glsl_type::error_type;
382 }
383
384 /* "The operands cannot be vectors of differing size. If one operand is
385 * a scalar and the other vector, then the scalar is applied component-
386 * wise to the vector, resulting in the same type as the vector. If both
387 * are vectors of the same size, the result is computed component-wise."
388 */
389 if (type_a->is_vector()) {
390 if (!type_b->is_vector()
391 || (type_a->vector_elements == type_b->vector_elements))
392 return type_a;
393 } else
394 return type_b;
395
396 /* "The operator modulus (%) is not defined for any other data types
397 * (non-integer types)."
398 */
399 _mesa_glsl_error(loc, state, "type mismatch");
400 return glsl_type::error_type;
401 }
402
403
404 static const struct glsl_type *
405 relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b,
406 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
407 {
408 const glsl_type *type_a = value_a->type;
409 const glsl_type *type_b = value_b->type;
410
411 /* From GLSL 1.50 spec, page 56:
412 * "The relational operators greater than (>), less than (<), greater
413 * than or equal (>=), and less than or equal (<=) operate only on
414 * scalar integer and scalar floating-point expressions."
415 */
416 if (!type_a->is_numeric()
417 || !type_b->is_numeric()
418 || !type_a->is_scalar()
419 || !type_b->is_scalar()) {
420 _mesa_glsl_error(loc, state,
421 "Operands to relational operators must be scalar and "
422 "numeric");
423 return glsl_type::error_type;
424 }
425
426 /* "Either the operands' types must match, or the conversions from
427 * Section 4.1.10 "Implicit Conversions" will be applied to the integer
428 * operand, after which the types must match."
429 */
430 if (!apply_implicit_conversion(type_a, value_b, state)
431 && !apply_implicit_conversion(type_b, value_a, state)) {
432 _mesa_glsl_error(loc, state,
433 "Could not implicitly convert operands to "
434 "relational operator");
435 return glsl_type::error_type;
436 }
437 type_a = value_a->type;
438 type_b = value_b->type;
439
440 if (type_a->base_type != type_b->base_type) {
441 _mesa_glsl_error(loc, state, "base type mismatch");
442 return glsl_type::error_type;
443 }
444
445 /* "The result is scalar Boolean."
446 */
447 return glsl_type::bool_type;
448 }
449
450
451 /**
452 * Validates that a value can be assigned to a location with a specified type
453 *
454 * Validates that \c rhs can be assigned to some location. If the types are
455 * not an exact match but an automatic conversion is possible, \c rhs will be
456 * converted.
457 *
458 * \return
459 * \c NULL if \c rhs cannot be assigned to a location with type \c lhs_type.
460 * Otherwise the actual RHS to be assigned will be returned. This may be
461 * \c rhs, or it may be \c rhs after some type conversion.
462 *
463 * \note
464 * In addition to being used for assignments, this function is used to
465 * type-check return values.
466 */
467 ir_rvalue *
468 validate_assignment(struct _mesa_glsl_parse_state *state,
469 const glsl_type *lhs_type, ir_rvalue *rhs)
470 {
471 const glsl_type *rhs_type = rhs->type;
472
473 /* If there is already some error in the RHS, just return it. Anything
474 * else will lead to an avalanche of error message back to the user.
475 */
476 if (rhs_type->is_error())
477 return rhs;
478
479 /* If the types are identical, the assignment can trivially proceed.
480 */
481 if (rhs_type == lhs_type)
482 return rhs;
483
484 /* If the array element types are the same and the size of the LHS is zero,
485 * the assignment is okay.
486 *
487 * Note: Whole-array assignments are not permitted in GLSL 1.10, but this
488 * is handled by ir_dereference::is_lvalue.
489 */
490 if (lhs_type->is_array() && rhs->type->is_array()
491 && (lhs_type->element_type() == rhs->type->element_type())
492 && (lhs_type->array_size() == 0)) {
493 return rhs;
494 }
495
496 /* Check for implicit conversion in GLSL 1.20 */
497 if (apply_implicit_conversion(lhs_type, rhs, state)) {
498 rhs_type = rhs->type;
499 if (rhs_type == lhs_type)
500 return rhs;
501 }
502
503 return NULL;
504 }
505
506 ir_rvalue *
507 do_assignment(exec_list *instructions, struct _mesa_glsl_parse_state *state,
508 ir_rvalue *lhs, ir_rvalue *rhs,
509 YYLTYPE lhs_loc)
510 {
511 void *ctx = state;
512 bool error_emitted = (lhs->type->is_error() || rhs->type->is_error());
513
514 if (!error_emitted) {
515 if (!lhs->is_lvalue()) {
516 _mesa_glsl_error(& lhs_loc, state, "non-lvalue in assignment");
517 error_emitted = true;
518 }
519
520 if (state->es_shader && lhs->type->is_array()) {
521 _mesa_glsl_error(&lhs_loc, state, "whole array assignment is not "
522 "allowed in GLSL ES 1.00.");
523 error_emitted = true;
524 }
525 }
526
527 ir_rvalue *new_rhs = validate_assignment(state, lhs->type, rhs);
528 if (new_rhs == NULL) {
529 _mesa_glsl_error(& lhs_loc, state, "type mismatch");
530 } else {
531 rhs = new_rhs;
532
533 /* If the LHS array was not declared with a size, it takes it size from
534 * the RHS. If the LHS is an l-value and a whole array, it must be a
535 * dereference of a variable. Any other case would require that the LHS
536 * is either not an l-value or not a whole array.
537 */
538 if (lhs->type->array_size() == 0) {
539 ir_dereference *const d = lhs->as_dereference();
540
541 assert(d != NULL);
542
543 ir_variable *const var = d->variable_referenced();
544
545 assert(var != NULL);
546
547 if (var->max_array_access >= unsigned(rhs->type->array_size())) {
548 /* FINISHME: This should actually log the location of the RHS. */
549 _mesa_glsl_error(& lhs_loc, state, "array size must be > %u due to "
550 "previous access",
551 var->max_array_access);
552 }
553
554 var->type = glsl_type::get_array_instance(lhs->type->element_type(),
555 rhs->type->array_size());
556 d->type = var->type;
557 }
558 }
559
560 /* Most callers of do_assignment (assign, add_assign, pre_inc/dec,
561 * but not post_inc) need the converted assigned value as an rvalue
562 * to handle things like:
563 *
564 * i = j += 1;
565 *
566 * So we always just store the computed value being assigned to a
567 * temporary and return a deref of that temporary. If the rvalue
568 * ends up not being used, the temp will get copy-propagated out.
569 */
570 ir_variable *var = new(ctx) ir_variable(rhs->type, "assignment_tmp",
571 ir_var_temporary);
572 ir_dereference_variable *deref_var = new(ctx) ir_dereference_variable(var);
573 instructions->push_tail(var);
574 instructions->push_tail(new(ctx) ir_assignment(deref_var,
575 rhs,
576 NULL));
577 deref_var = new(ctx) ir_dereference_variable(var);
578
579 if (!error_emitted)
580 instructions->push_tail(new(ctx) ir_assignment(lhs, deref_var, NULL));
581
582 return new(ctx) ir_dereference_variable(var);
583 }
584
585 static ir_rvalue *
586 get_lvalue_copy(exec_list *instructions, ir_rvalue *lvalue)
587 {
588 void *ctx = talloc_parent(lvalue);
589 ir_variable *var;
590
591 var = new(ctx) ir_variable(lvalue->type, "_post_incdec_tmp",
592 ir_var_temporary);
593 instructions->push_tail(var);
594 var->mode = ir_var_auto;
595
596 instructions->push_tail(new(ctx) ir_assignment(new(ctx) ir_dereference_variable(var),
597 lvalue, NULL));
598
599 /* Once we've created this temporary, mark it read only so it's no
600 * longer considered an lvalue.
601 */
602 var->read_only = true;
603
604 return new(ctx) ir_dereference_variable(var);
605 }
606
607
608 ir_rvalue *
609 ast_node::hir(exec_list *instructions,
610 struct _mesa_glsl_parse_state *state)
611 {
612 (void) instructions;
613 (void) state;
614
615 return NULL;
616 }
617
618
619 ir_rvalue *
620 ast_expression::hir(exec_list *instructions,
621 struct _mesa_glsl_parse_state *state)
622 {
623 void *ctx = state;
624 static const int operations[AST_NUM_OPERATORS] = {
625 -1, /* ast_assign doesn't convert to ir_expression. */
626 -1, /* ast_plus doesn't convert to ir_expression. */
627 ir_unop_neg,
628 ir_binop_add,
629 ir_binop_sub,
630 ir_binop_mul,
631 ir_binop_div,
632 ir_binop_mod,
633 ir_binop_lshift,
634 ir_binop_rshift,
635 ir_binop_less,
636 ir_binop_greater,
637 ir_binop_lequal,
638 ir_binop_gequal,
639 ir_binop_equal,
640 ir_binop_nequal,
641 ir_binop_bit_and,
642 ir_binop_bit_xor,
643 ir_binop_bit_or,
644 ir_unop_bit_not,
645 ir_binop_logic_and,
646 ir_binop_logic_xor,
647 ir_binop_logic_or,
648 ir_unop_logic_not,
649
650 /* Note: The following block of expression types actually convert
651 * to multiple IR instructions.
652 */
653 ir_binop_mul, /* ast_mul_assign */
654 ir_binop_div, /* ast_div_assign */
655 ir_binop_mod, /* ast_mod_assign */
656 ir_binop_add, /* ast_add_assign */
657 ir_binop_sub, /* ast_sub_assign */
658 ir_binop_lshift, /* ast_ls_assign */
659 ir_binop_rshift, /* ast_rs_assign */
660 ir_binop_bit_and, /* ast_and_assign */
661 ir_binop_bit_xor, /* ast_xor_assign */
662 ir_binop_bit_or, /* ast_or_assign */
663
664 -1, /* ast_conditional doesn't convert to ir_expression. */
665 ir_binop_add, /* ast_pre_inc. */
666 ir_binop_sub, /* ast_pre_dec. */
667 ir_binop_add, /* ast_post_inc. */
668 ir_binop_sub, /* ast_post_dec. */
669 -1, /* ast_field_selection doesn't conv to ir_expression. */
670 -1, /* ast_array_index doesn't convert to ir_expression. */
671 -1, /* ast_function_call doesn't conv to ir_expression. */
672 -1, /* ast_identifier doesn't convert to ir_expression. */
673 -1, /* ast_int_constant doesn't convert to ir_expression. */
674 -1, /* ast_uint_constant doesn't conv to ir_expression. */
675 -1, /* ast_float_constant doesn't conv to ir_expression. */
676 -1, /* ast_bool_constant doesn't conv to ir_expression. */
677 -1, /* ast_sequence doesn't convert to ir_expression. */
678 };
679 ir_rvalue *result = NULL;
680 ir_rvalue *op[3];
681 const struct glsl_type *type = glsl_type::error_type;
682 bool error_emitted = false;
683 YYLTYPE loc;
684
685 loc = this->get_location();
686
687 switch (this->oper) {
688 case ast_assign: {
689 op[0] = this->subexpressions[0]->hir(instructions, state);
690 op[1] = this->subexpressions[1]->hir(instructions, state);
691
692 result = do_assignment(instructions, state, op[0], op[1],
693 this->subexpressions[0]->get_location());
694 error_emitted = result->type->is_error();
695 type = result->type;
696 break;
697 }
698
699 case ast_plus:
700 op[0] = this->subexpressions[0]->hir(instructions, state);
701
702 type = unary_arithmetic_result_type(op[0]->type, state, & loc);
703
704 error_emitted = type->is_error();
705
706 result = op[0];
707 break;
708
709 case ast_neg:
710 op[0] = this->subexpressions[0]->hir(instructions, state);
711
712 type = unary_arithmetic_result_type(op[0]->type, state, & loc);
713
714 error_emitted = type->is_error();
715
716 result = new(ctx) ir_expression(operations[this->oper], type,
717 op[0], NULL);
718 break;
719
720 case ast_add:
721 case ast_sub:
722 case ast_mul:
723 case ast_div:
724 op[0] = this->subexpressions[0]->hir(instructions, state);
725 op[1] = this->subexpressions[1]->hir(instructions, state);
726
727 type = arithmetic_result_type(op[0], op[1],
728 (this->oper == ast_mul),
729 state, & loc);
730 error_emitted = type->is_error();
731
732 result = new(ctx) ir_expression(operations[this->oper], type,
733 op[0], op[1]);
734 break;
735
736 case ast_mod:
737 op[0] = this->subexpressions[0]->hir(instructions, state);
738 op[1] = this->subexpressions[1]->hir(instructions, state);
739
740 type = modulus_result_type(op[0]->type, op[1]->type, state, & loc);
741
742 assert(operations[this->oper] == ir_binop_mod);
743
744 result = new(ctx) ir_expression(operations[this->oper], type,
745 op[0], op[1]);
746 error_emitted = type->is_error();
747 break;
748
749 case ast_lshift:
750 case ast_rshift:
751 _mesa_glsl_error(& loc, state, "FINISHME: implement bit-shift operators");
752 error_emitted = true;
753 break;
754
755 case ast_less:
756 case ast_greater:
757 case ast_lequal:
758 case ast_gequal:
759 op[0] = this->subexpressions[0]->hir(instructions, state);
760 op[1] = this->subexpressions[1]->hir(instructions, state);
761
762 type = relational_result_type(op[0], op[1], state, & loc);
763
764 /* The relational operators must either generate an error or result
765 * in a scalar boolean. See page 57 of the GLSL 1.50 spec.
766 */
767 assert(type->is_error()
768 || ((type->base_type == GLSL_TYPE_BOOL)
769 && type->is_scalar()));
770
771 result = new(ctx) ir_expression(operations[this->oper], type,
772 op[0], op[1]);
773 error_emitted = type->is_error();
774 break;
775
776 case ast_nequal:
777 case ast_equal:
778 op[0] = this->subexpressions[0]->hir(instructions, state);
779 op[1] = this->subexpressions[1]->hir(instructions, state);
780
781 /* From page 58 (page 64 of the PDF) of the GLSL 1.50 spec:
782 *
783 * "The equality operators equal (==), and not equal (!=)
784 * operate on all types. They result in a scalar Boolean. If
785 * the operand types do not match, then there must be a
786 * conversion from Section 4.1.10 "Implicit Conversions"
787 * applied to one operand that can make them match, in which
788 * case this conversion is done."
789 */
790 if ((!apply_implicit_conversion(op[0]->type, op[1], state)
791 && !apply_implicit_conversion(op[1]->type, op[0], state))
792 || (op[0]->type != op[1]->type)) {
793 _mesa_glsl_error(& loc, state, "operands of `%s' must have the same "
794 "type", (this->oper == ast_equal) ? "==" : "!=");
795 error_emitted = true;
796 } else if ((state->language_version <= 110)
797 && (op[0]->type->is_array() || op[1]->type->is_array())) {
798 _mesa_glsl_error(& loc, state, "array comparisons forbidden in "
799 "GLSL 1.10");
800 error_emitted = true;
801 }
802
803 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
804 op[0], op[1]);
805 type = glsl_type::bool_type;
806
807 assert(result->type == glsl_type::bool_type);
808 break;
809
810 case ast_bit_and:
811 case ast_bit_xor:
812 case ast_bit_or:
813 op[0] = this->subexpressions[0]->hir(instructions, state);
814 op[1] = this->subexpressions[1]->hir(instructions, state);
815
816 if (state->language_version < 130) {
817 _mesa_glsl_error(&loc, state, "bit-wise operations require GLSL 1.30");
818 error_emitted = true;
819 }
820
821 if (!op[0]->type->is_integer()) {
822 _mesa_glsl_error(&loc, state, "LHS of `%s' must be an integer",
823 operator_string(this->oper));
824 error_emitted = true;
825 }
826
827 if (!op[1]->type->is_integer()) {
828 _mesa_glsl_error(&loc, state, "RHS of `%s' must be an integer",
829 operator_string(this->oper));
830 error_emitted = true;
831 }
832
833 if (op[0]->type->base_type != op[1]->type->base_type) {
834 _mesa_glsl_error(&loc, state, "operands of `%s' must have the same "
835 "base type", operator_string(this->oper));
836 error_emitted = true;
837 }
838
839 if (op[0]->type->is_vector() && op[1]->type->is_vector()
840 && op[0]->type->vector_elements != op[1]->type->vector_elements) {
841 _mesa_glsl_error(&loc, state, "operands of `%s' cannot be vectors of "
842 "different sizes", operator_string(this->oper));
843 error_emitted = true;
844 }
845
846 type = op[0]->type->is_scalar() ? op[1]->type : op[0]->type;
847 result = new(ctx) ir_expression(operations[this->oper], type,
848 op[0], op[1]);
849 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
850 break;
851
852 case ast_bit_not:
853 op[0] = this->subexpressions[0]->hir(instructions, state);
854
855 if (state->language_version < 130) {
856 _mesa_glsl_error(&loc, state, "bit-wise operations require GLSL 1.30");
857 error_emitted = true;
858 }
859
860 if (!op[0]->type->is_integer()) {
861 _mesa_glsl_error(&loc, state, "operand of `~' must be an integer");
862 error_emitted = true;
863 }
864
865 type = op[0]->type;
866 result = new(ctx) ir_expression(ir_unop_bit_not, type, op[0], NULL);
867 break;
868
869 case ast_logic_and: {
870 op[0] = this->subexpressions[0]->hir(instructions, state);
871
872 if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) {
873 YYLTYPE loc = this->subexpressions[0]->get_location();
874
875 _mesa_glsl_error(& loc, state, "LHS of `%s' must be scalar boolean",
876 operator_string(this->oper));
877 error_emitted = true;
878 }
879
880 ir_constant *op0_const = op[0]->constant_expression_value();
881 if (op0_const) {
882 if (op0_const->value.b[0]) {
883 op[1] = this->subexpressions[1]->hir(instructions, state);
884
885 if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) {
886 YYLTYPE loc = this->subexpressions[1]->get_location();
887
888 _mesa_glsl_error(& loc, state,
889 "RHS of `%s' must be scalar boolean",
890 operator_string(this->oper));
891 error_emitted = true;
892 }
893 result = op[1];
894 } else {
895 result = op0_const;
896 }
897 type = glsl_type::bool_type;
898 } else {
899 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
900 "and_tmp",
901 ir_var_temporary);
902 instructions->push_tail(tmp);
903
904 ir_if *const stmt = new(ctx) ir_if(op[0]);
905 instructions->push_tail(stmt);
906
907 op[1] = this->subexpressions[1]->hir(&stmt->then_instructions, state);
908
909 if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) {
910 YYLTYPE loc = this->subexpressions[1]->get_location();
911
912 _mesa_glsl_error(& loc, state,
913 "RHS of `%s' must be scalar boolean",
914 operator_string(this->oper));
915 error_emitted = true;
916 }
917
918 ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp);
919 ir_assignment *const then_assign =
920 new(ctx) ir_assignment(then_deref, op[1], NULL);
921 stmt->then_instructions.push_tail(then_assign);
922
923 ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp);
924 ir_assignment *const else_assign =
925 new(ctx) ir_assignment(else_deref, new(ctx) ir_constant(false), NULL);
926 stmt->else_instructions.push_tail(else_assign);
927
928 result = new(ctx) ir_dereference_variable(tmp);
929 type = tmp->type;
930 }
931 break;
932 }
933
934 case ast_logic_or: {
935 op[0] = this->subexpressions[0]->hir(instructions, state);
936
937 if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) {
938 YYLTYPE loc = this->subexpressions[0]->get_location();
939
940 _mesa_glsl_error(& loc, state, "LHS of `%s' must be scalar boolean",
941 operator_string(this->oper));
942 error_emitted = true;
943 }
944
945 ir_constant *op0_const = op[0]->constant_expression_value();
946 if (op0_const) {
947 if (op0_const->value.b[0]) {
948 result = op0_const;
949 } else {
950 op[1] = this->subexpressions[1]->hir(instructions, state);
951
952 if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) {
953 YYLTYPE loc = this->subexpressions[1]->get_location();
954
955 _mesa_glsl_error(& loc, state,
956 "RHS of `%s' must be scalar boolean",
957 operator_string(this->oper));
958 error_emitted = true;
959 }
960 result = op[1];
961 }
962 type = glsl_type::bool_type;
963 } else {
964 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
965 "or_tmp",
966 ir_var_temporary);
967 instructions->push_tail(tmp);
968
969 ir_if *const stmt = new(ctx) ir_if(op[0]);
970 instructions->push_tail(stmt);
971
972 op[1] = this->subexpressions[1]->hir(&stmt->else_instructions, state);
973
974 if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) {
975 YYLTYPE loc = this->subexpressions[1]->get_location();
976
977 _mesa_glsl_error(& loc, state, "RHS of `%s' must be scalar boolean",
978 operator_string(this->oper));
979 error_emitted = true;
980 }
981
982 ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp);
983 ir_assignment *const then_assign =
984 new(ctx) ir_assignment(then_deref, new(ctx) ir_constant(true), NULL);
985 stmt->then_instructions.push_tail(then_assign);
986
987 ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp);
988 ir_assignment *const else_assign =
989 new(ctx) ir_assignment(else_deref, op[1], NULL);
990 stmt->else_instructions.push_tail(else_assign);
991
992 result = new(ctx) ir_dereference_variable(tmp);
993 type = tmp->type;
994 }
995 break;
996 }
997
998 case ast_logic_xor:
999 op[0] = this->subexpressions[0]->hir(instructions, state);
1000 op[1] = this->subexpressions[1]->hir(instructions, state);
1001
1002
1003 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
1004 op[0], op[1]);
1005 type = glsl_type::bool_type;
1006 break;
1007
1008 case ast_logic_not:
1009 op[0] = this->subexpressions[0]->hir(instructions, state);
1010
1011 if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) {
1012 YYLTYPE loc = this->subexpressions[0]->get_location();
1013
1014 _mesa_glsl_error(& loc, state,
1015 "operand of `!' must be scalar boolean");
1016 error_emitted = true;
1017 }
1018
1019 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
1020 op[0], NULL);
1021 type = glsl_type::bool_type;
1022 break;
1023
1024 case ast_mul_assign:
1025 case ast_div_assign:
1026 case ast_add_assign:
1027 case ast_sub_assign: {
1028 op[0] = this->subexpressions[0]->hir(instructions, state);
1029 op[1] = this->subexpressions[1]->hir(instructions, state);
1030
1031 type = arithmetic_result_type(op[0], op[1],
1032 (this->oper == ast_mul_assign),
1033 state, & loc);
1034
1035 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1036 op[0], op[1]);
1037
1038 result = do_assignment(instructions, state,
1039 op[0]->clone(ctx, NULL), temp_rhs,
1040 this->subexpressions[0]->get_location());
1041 type = result->type;
1042 error_emitted = (op[0]->type->is_error());
1043
1044 /* GLSL 1.10 does not allow array assignment. However, we don't have to
1045 * explicitly test for this because none of the binary expression
1046 * operators allow array operands either.
1047 */
1048
1049 break;
1050 }
1051
1052 case ast_mod_assign: {
1053 op[0] = this->subexpressions[0]->hir(instructions, state);
1054 op[1] = this->subexpressions[1]->hir(instructions, state);
1055
1056 type = modulus_result_type(op[0]->type, op[1]->type, state, & loc);
1057
1058 assert(operations[this->oper] == ir_binop_mod);
1059
1060 ir_rvalue *temp_rhs;
1061 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1062 op[0], op[1]);
1063
1064 result = do_assignment(instructions, state,
1065 op[0]->clone(ctx, NULL), temp_rhs,
1066 this->subexpressions[0]->get_location());
1067 type = result->type;
1068 error_emitted = type->is_error();
1069 break;
1070 }
1071
1072 case ast_ls_assign:
1073 case ast_rs_assign:
1074 _mesa_glsl_error(& loc, state,
1075 "FINISHME: implement bit-shift assignment operators");
1076 error_emitted = true;
1077 break;
1078
1079 case ast_and_assign:
1080 case ast_xor_assign:
1081 case ast_or_assign:
1082 _mesa_glsl_error(& loc, state,
1083 "FINISHME: implement logic assignment operators");
1084 error_emitted = true;
1085 break;
1086
1087 case ast_conditional: {
1088 op[0] = this->subexpressions[0]->hir(instructions, state);
1089
1090 /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec:
1091 *
1092 * "The ternary selection operator (?:). It operates on three
1093 * expressions (exp1 ? exp2 : exp3). This operator evaluates the
1094 * first expression, which must result in a scalar Boolean."
1095 */
1096 if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) {
1097 YYLTYPE loc = this->subexpressions[0]->get_location();
1098
1099 _mesa_glsl_error(& loc, state, "?: condition must be scalar boolean");
1100 error_emitted = true;
1101 }
1102
1103 /* The :? operator is implemented by generating an anonymous temporary
1104 * followed by an if-statement. The last instruction in each branch of
1105 * the if-statement assigns a value to the anonymous temporary. This
1106 * temporary is the r-value of the expression.
1107 */
1108 exec_list then_instructions;
1109 exec_list else_instructions;
1110
1111 op[1] = this->subexpressions[1]->hir(&then_instructions, state);
1112 op[2] = this->subexpressions[2]->hir(&else_instructions, state);
1113
1114 /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec:
1115 *
1116 * "The second and third expressions can be any type, as
1117 * long their types match, or there is a conversion in
1118 * Section 4.1.10 "Implicit Conversions" that can be applied
1119 * to one of the expressions to make their types match. This
1120 * resulting matching type is the type of the entire
1121 * expression."
1122 */
1123 if ((!apply_implicit_conversion(op[1]->type, op[2], state)
1124 && !apply_implicit_conversion(op[2]->type, op[1], state))
1125 || (op[1]->type != op[2]->type)) {
1126 YYLTYPE loc = this->subexpressions[1]->get_location();
1127
1128 _mesa_glsl_error(& loc, state, "Second and third operands of ?: "
1129 "operator must have matching types.");
1130 error_emitted = true;
1131 type = glsl_type::error_type;
1132 } else {
1133 type = op[1]->type;
1134 }
1135
1136 /* From page 33 (page 39 of the PDF) of the GLSL 1.10 spec:
1137 *
1138 * "The second and third expressions must be the same type, but can
1139 * be of any type other than an array."
1140 */
1141 if ((state->language_version <= 110) && type->is_array()) {
1142 _mesa_glsl_error(& loc, state, "Second and third operands of ?: "
1143 "operator must not be arrays.");
1144 error_emitted = true;
1145 }
1146
1147 ir_constant *cond_val = op[0]->constant_expression_value();
1148 ir_constant *then_val = op[1]->constant_expression_value();
1149 ir_constant *else_val = op[2]->constant_expression_value();
1150
1151 if (then_instructions.is_empty()
1152 && else_instructions.is_empty()
1153 && (cond_val != NULL) && (then_val != NULL) && (else_val != NULL)) {
1154 result = (cond_val->value.b[0]) ? then_val : else_val;
1155 } else {
1156 ir_variable *const tmp =
1157 new(ctx) ir_variable(type, "conditional_tmp", ir_var_temporary);
1158 instructions->push_tail(tmp);
1159
1160 ir_if *const stmt = new(ctx) ir_if(op[0]);
1161 instructions->push_tail(stmt);
1162
1163 then_instructions.move_nodes_to(& stmt->then_instructions);
1164 ir_dereference *const then_deref =
1165 new(ctx) ir_dereference_variable(tmp);
1166 ir_assignment *const then_assign =
1167 new(ctx) ir_assignment(then_deref, op[1], NULL);
1168 stmt->then_instructions.push_tail(then_assign);
1169
1170 else_instructions.move_nodes_to(& stmt->else_instructions);
1171 ir_dereference *const else_deref =
1172 new(ctx) ir_dereference_variable(tmp);
1173 ir_assignment *const else_assign =
1174 new(ctx) ir_assignment(else_deref, op[2], NULL);
1175 stmt->else_instructions.push_tail(else_assign);
1176
1177 result = new(ctx) ir_dereference_variable(tmp);
1178 }
1179 break;
1180 }
1181
1182 case ast_pre_inc:
1183 case ast_pre_dec: {
1184 op[0] = this->subexpressions[0]->hir(instructions, state);
1185 if (op[0]->type->base_type == GLSL_TYPE_FLOAT)
1186 op[1] = new(ctx) ir_constant(1.0f);
1187 else
1188 op[1] = new(ctx) ir_constant(1);
1189
1190 type = arithmetic_result_type(op[0], op[1], false, state, & loc);
1191
1192 ir_rvalue *temp_rhs;
1193 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1194 op[0], op[1]);
1195
1196 result = do_assignment(instructions, state,
1197 op[0]->clone(ctx, NULL), temp_rhs,
1198 this->subexpressions[0]->get_location());
1199 type = result->type;
1200 error_emitted = op[0]->type->is_error();
1201 break;
1202 }
1203
1204 case ast_post_inc:
1205 case ast_post_dec: {
1206 op[0] = this->subexpressions[0]->hir(instructions, state);
1207 if (op[0]->type->base_type == GLSL_TYPE_FLOAT)
1208 op[1] = new(ctx) ir_constant(1.0f);
1209 else
1210 op[1] = new(ctx) ir_constant(1);
1211
1212 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1213
1214 type = arithmetic_result_type(op[0], op[1], false, state, & loc);
1215
1216 ir_rvalue *temp_rhs;
1217 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1218 op[0], op[1]);
1219
1220 /* Get a temporary of a copy of the lvalue before it's modified.
1221 * This may get thrown away later.
1222 */
1223 result = get_lvalue_copy(instructions, op[0]->clone(ctx, NULL));
1224
1225 (void)do_assignment(instructions, state,
1226 op[0]->clone(ctx, NULL), temp_rhs,
1227 this->subexpressions[0]->get_location());
1228
1229 type = result->type;
1230 error_emitted = op[0]->type->is_error();
1231 break;
1232 }
1233
1234 case ast_field_selection:
1235 result = _mesa_ast_field_selection_to_hir(this, instructions, state);
1236 type = result->type;
1237 break;
1238
1239 case ast_array_index: {
1240 YYLTYPE index_loc = subexpressions[1]->get_location();
1241
1242 op[0] = subexpressions[0]->hir(instructions, state);
1243 op[1] = subexpressions[1]->hir(instructions, state);
1244
1245 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1246
1247 ir_rvalue *const array = op[0];
1248
1249 result = new(ctx) ir_dereference_array(op[0], op[1]);
1250
1251 /* Do not use op[0] after this point. Use array.
1252 */
1253 op[0] = NULL;
1254
1255
1256 if (error_emitted)
1257 break;
1258
1259 if (!array->type->is_array()
1260 && !array->type->is_matrix()
1261 && !array->type->is_vector()) {
1262 _mesa_glsl_error(& index_loc, state,
1263 "cannot dereference non-array / non-matrix / "
1264 "non-vector");
1265 error_emitted = true;
1266 }
1267
1268 if (!op[1]->type->is_integer()) {
1269 _mesa_glsl_error(& index_loc, state,
1270 "array index must be integer type");
1271 error_emitted = true;
1272 } else if (!op[1]->type->is_scalar()) {
1273 _mesa_glsl_error(& index_loc, state,
1274 "array index must be scalar");
1275 error_emitted = true;
1276 }
1277
1278 /* If the array index is a constant expression and the array has a
1279 * declared size, ensure that the access is in-bounds. If the array
1280 * index is not a constant expression, ensure that the array has a
1281 * declared size.
1282 */
1283 ir_constant *const const_index = op[1]->constant_expression_value();
1284 if (const_index != NULL) {
1285 const int idx = const_index->value.i[0];
1286 const char *type_name;
1287 unsigned bound = 0;
1288
1289 if (array->type->is_matrix()) {
1290 type_name = "matrix";
1291 } else if (array->type->is_vector()) {
1292 type_name = "vector";
1293 } else {
1294 type_name = "array";
1295 }
1296
1297 /* From page 24 (page 30 of the PDF) of the GLSL 1.50 spec:
1298 *
1299 * "It is illegal to declare an array with a size, and then
1300 * later (in the same shader) index the same array with an
1301 * integral constant expression greater than or equal to the
1302 * declared size. It is also illegal to index an array with a
1303 * negative constant expression."
1304 */
1305 if (array->type->is_matrix()) {
1306 if (array->type->row_type()->vector_elements <= idx) {
1307 bound = array->type->row_type()->vector_elements;
1308 }
1309 } else if (array->type->is_vector()) {
1310 if (array->type->vector_elements <= idx) {
1311 bound = array->type->vector_elements;
1312 }
1313 } else {
1314 if ((array->type->array_size() > 0)
1315 && (array->type->array_size() <= idx)) {
1316 bound = array->type->array_size();
1317 }
1318 }
1319
1320 if (bound > 0) {
1321 _mesa_glsl_error(& loc, state, "%s index must be < %u",
1322 type_name, bound);
1323 error_emitted = true;
1324 } else if (idx < 0) {
1325 _mesa_glsl_error(& loc, state, "%s index must be >= 0",
1326 type_name);
1327 error_emitted = true;
1328 }
1329
1330 if (array->type->is_array()) {
1331 /* If the array is a variable dereference, it dereferences the
1332 * whole array, by definition. Use this to get the variable.
1333 *
1334 * FINISHME: Should some methods for getting / setting / testing
1335 * FINISHME: array access limits be added to ir_dereference?
1336 */
1337 ir_variable *const v = array->whole_variable_referenced();
1338 if ((v != NULL) && (unsigned(idx) > v->max_array_access))
1339 v->max_array_access = idx;
1340 }
1341 } else if (array->type->array_size() == 0) {
1342 _mesa_glsl_error(&loc, state, "unsized array index must be constant");
1343 } else {
1344 if (array->type->is_array()) {
1345 /* whole_variable_referenced can return NULL if the array is a
1346 * member of a structure. In this case it is safe to not update
1347 * the max_array_access field because it is never used for fields
1348 * of structures.
1349 */
1350 ir_variable *v = array->whole_variable_referenced();
1351 if (v != NULL)
1352 v->max_array_access = array->type->array_size();
1353 }
1354 }
1355
1356 if (error_emitted)
1357 result->type = glsl_type::error_type;
1358
1359 type = result->type;
1360 break;
1361 }
1362
1363 case ast_function_call:
1364 /* Should *NEVER* get here. ast_function_call should always be handled
1365 * by ast_function_expression::hir.
1366 */
1367 assert(0);
1368 break;
1369
1370 case ast_identifier: {
1371 /* ast_identifier can appear several places in a full abstract syntax
1372 * tree. This particular use must be at location specified in the grammar
1373 * as 'variable_identifier'.
1374 */
1375 ir_variable *var =
1376 state->symbols->get_variable(this->primary_expression.identifier);
1377
1378 result = new(ctx) ir_dereference_variable(var);
1379
1380 if (var != NULL) {
1381 type = result->type;
1382 } else {
1383 _mesa_glsl_error(& loc, state, "`%s' undeclared",
1384 this->primary_expression.identifier);
1385
1386 error_emitted = true;
1387 }
1388 break;
1389 }
1390
1391 case ast_int_constant:
1392 type = glsl_type::int_type;
1393 result = new(ctx) ir_constant(this->primary_expression.int_constant);
1394 break;
1395
1396 case ast_uint_constant:
1397 type = glsl_type::uint_type;
1398 result = new(ctx) ir_constant(this->primary_expression.uint_constant);
1399 break;
1400
1401 case ast_float_constant:
1402 type = glsl_type::float_type;
1403 result = new(ctx) ir_constant(this->primary_expression.float_constant);
1404 break;
1405
1406 case ast_bool_constant:
1407 type = glsl_type::bool_type;
1408 result = new(ctx) ir_constant(bool(this->primary_expression.bool_constant));
1409 break;
1410
1411 case ast_sequence: {
1412 /* It should not be possible to generate a sequence in the AST without
1413 * any expressions in it.
1414 */
1415 assert(!this->expressions.is_empty());
1416
1417 /* The r-value of a sequence is the last expression in the sequence. If
1418 * the other expressions in the sequence do not have side-effects (and
1419 * therefore add instructions to the instruction list), they get dropped
1420 * on the floor.
1421 */
1422 foreach_list_typed (ast_node, ast, link, &this->expressions)
1423 result = ast->hir(instructions, state);
1424
1425 type = result->type;
1426
1427 /* Any errors should have already been emitted in the loop above.
1428 */
1429 error_emitted = true;
1430 break;
1431 }
1432 }
1433
1434 if (type->is_error() && !error_emitted)
1435 _mesa_glsl_error(& loc, state, "type mismatch");
1436
1437 return result;
1438 }
1439
1440
1441 ir_rvalue *
1442 ast_expression_statement::hir(exec_list *instructions,
1443 struct _mesa_glsl_parse_state *state)
1444 {
1445 /* It is possible to have expression statements that don't have an
1446 * expression. This is the solitary semicolon:
1447 *
1448 * for (i = 0; i < 5; i++)
1449 * ;
1450 *
1451 * In this case the expression will be NULL. Test for NULL and don't do
1452 * anything in that case.
1453 */
1454 if (expression != NULL)
1455 expression->hir(instructions, state);
1456
1457 /* Statements do not have r-values.
1458 */
1459 return NULL;
1460 }
1461
1462
1463 ir_rvalue *
1464 ast_compound_statement::hir(exec_list *instructions,
1465 struct _mesa_glsl_parse_state *state)
1466 {
1467 if (new_scope)
1468 state->symbols->push_scope();
1469
1470 foreach_list_typed (ast_node, ast, link, &this->statements)
1471 ast->hir(instructions, state);
1472
1473 if (new_scope)
1474 state->symbols->pop_scope();
1475
1476 /* Compound statements do not have r-values.
1477 */
1478 return NULL;
1479 }
1480
1481
1482 static const glsl_type *
1483 process_array_type(YYLTYPE *loc, const glsl_type *base, ast_node *array_size,
1484 struct _mesa_glsl_parse_state *state)
1485 {
1486 unsigned length = 0;
1487
1488 /* FINISHME: Reject delcarations of multidimensional arrays. */
1489
1490 if (array_size != NULL) {
1491 exec_list dummy_instructions;
1492 ir_rvalue *const ir = array_size->hir(& dummy_instructions, state);
1493 YYLTYPE loc = array_size->get_location();
1494
1495 /* FINISHME: Verify that the grammar forbids side-effects in array
1496 * FINISHME: sizes. i.e., 'vec4 [x = 12] data'
1497 */
1498 assert(dummy_instructions.is_empty());
1499
1500 if (ir != NULL) {
1501 if (!ir->type->is_integer()) {
1502 _mesa_glsl_error(& loc, state, "array size must be integer type");
1503 } else if (!ir->type->is_scalar()) {
1504 _mesa_glsl_error(& loc, state, "array size must be scalar type");
1505 } else {
1506 ir_constant *const size = ir->constant_expression_value();
1507
1508 if (size == NULL) {
1509 _mesa_glsl_error(& loc, state, "array size must be a "
1510 "constant valued expression");
1511 } else if (size->value.i[0] <= 0) {
1512 _mesa_glsl_error(& loc, state, "array size must be > 0");
1513 } else {
1514 assert(size->type == ir->type);
1515 length = size->value.u[0];
1516 }
1517 }
1518 }
1519 } else if (state->es_shader) {
1520 /* Section 10.17 of the GLSL ES 1.00 specification states that unsized
1521 * array declarations have been removed from the language.
1522 */
1523 _mesa_glsl_error(loc, state, "unsized array declarations are not "
1524 "allowed in GLSL ES 1.00.");
1525 }
1526
1527 return glsl_type::get_array_instance(base, length);
1528 }
1529
1530
1531 const glsl_type *
1532 ast_type_specifier::glsl_type(const char **name,
1533 struct _mesa_glsl_parse_state *state) const
1534 {
1535 const struct glsl_type *type;
1536
1537 if ((this->type_specifier == ast_struct) && (this->type_name == NULL)) {
1538 /* FINISHME: Handle annonymous structures. */
1539 type = NULL;
1540 } else {
1541 type = state->symbols->get_type(this->type_name);
1542 *name = this->type_name;
1543
1544 if (this->is_array) {
1545 YYLTYPE loc = this->get_location();
1546 type = process_array_type(&loc, type, this->array_size, state);
1547 }
1548 }
1549
1550 return type;
1551 }
1552
1553
1554 static void
1555 apply_type_qualifier_to_variable(const struct ast_type_qualifier *qual,
1556 ir_variable *var,
1557 struct _mesa_glsl_parse_state *state,
1558 YYLTYPE *loc)
1559 {
1560 if (qual->invariant)
1561 var->invariant = 1;
1562
1563 /* FINISHME: Mark 'in' variables at global scope as read-only. */
1564 if (qual->constant || qual->attribute || qual->uniform
1565 || (qual->varying && (state->target == fragment_shader)))
1566 var->read_only = 1;
1567
1568 if (qual->centroid)
1569 var->centroid = 1;
1570
1571 if (qual->attribute && state->target != vertex_shader) {
1572 var->type = glsl_type::error_type;
1573 _mesa_glsl_error(loc, state,
1574 "`attribute' variables may not be declared in the "
1575 "%s shader",
1576 _mesa_glsl_shader_target_name(state->target));
1577 }
1578
1579 /* From page 25 (page 31 of the PDF) of the GLSL 1.10 spec:
1580 *
1581 * "The varying qualifier can be used only with the data types
1582 * float, vec2, vec3, vec4, mat2, mat3, and mat4, or arrays of
1583 * these."
1584 */
1585 if (qual->varying) {
1586 const glsl_type *non_array_type;
1587
1588 if (var->type && var->type->is_array())
1589 non_array_type = var->type->fields.array;
1590 else
1591 non_array_type = var->type;
1592
1593 if (non_array_type && non_array_type->base_type != GLSL_TYPE_FLOAT) {
1594 var->type = glsl_type::error_type;
1595 _mesa_glsl_error(loc, state,
1596 "varying variables must be of base type float");
1597 }
1598 }
1599
1600 /* If there is no qualifier that changes the mode of the variable, leave
1601 * the setting alone.
1602 */
1603 if (qual->in && qual->out)
1604 var->mode = ir_var_inout;
1605 else if (qual->attribute || qual->in
1606 || (qual->varying && (state->target == fragment_shader)))
1607 var->mode = ir_var_in;
1608 else if (qual->out || (qual->varying && (state->target == vertex_shader)))
1609 var->mode = ir_var_out;
1610 else if (qual->uniform)
1611 var->mode = ir_var_uniform;
1612
1613 if (qual->flat)
1614 var->interpolation = ir_var_flat;
1615 else if (qual->noperspective)
1616 var->interpolation = ir_var_noperspective;
1617 else
1618 var->interpolation = ir_var_smooth;
1619
1620 var->pixel_center_integer = qual->pixel_center_integer;
1621 var->origin_upper_left = qual->origin_upper_left;
1622 if ((qual->origin_upper_left || qual->pixel_center_integer)
1623 && (strcmp(var->name, "gl_FragCoord") != 0)) {
1624 const char *const qual_string = (qual->origin_upper_left)
1625 ? "origin_upper_left" : "pixel_center_integer";
1626
1627 _mesa_glsl_error(loc, state,
1628 "layout qualifier `%s' can only be applied to "
1629 "fragment shader input `gl_FragCoord'",
1630 qual_string);
1631 }
1632
1633 if (var->type->is_array() && state->language_version != 110) {
1634 var->array_lvalue = true;
1635 }
1636 }
1637
1638
1639 ir_rvalue *
1640 ast_declarator_list::hir(exec_list *instructions,
1641 struct _mesa_glsl_parse_state *state)
1642 {
1643 void *ctx = state;
1644 const struct glsl_type *decl_type;
1645 const char *type_name = NULL;
1646 ir_rvalue *result = NULL;
1647 YYLTYPE loc = this->get_location();
1648
1649 /* From page 46 (page 52 of the PDF) of the GLSL 1.50 spec:
1650 *
1651 * "To ensure that a particular output variable is invariant, it is
1652 * necessary to use the invariant qualifier. It can either be used to
1653 * qualify a previously declared variable as being invariant
1654 *
1655 * invariant gl_Position; // make existing gl_Position be invariant"
1656 *
1657 * In these cases the parser will set the 'invariant' flag in the declarator
1658 * list, and the type will be NULL.
1659 */
1660 if (this->invariant) {
1661 assert(this->type == NULL);
1662
1663 if (state->current_function != NULL) {
1664 _mesa_glsl_error(& loc, state,
1665 "All uses of `invariant' keyword must be at global "
1666 "scope\n");
1667 }
1668
1669 foreach_list_typed (ast_declaration, decl, link, &this->declarations) {
1670 assert(!decl->is_array);
1671 assert(decl->array_size == NULL);
1672 assert(decl->initializer == NULL);
1673
1674 ir_variable *const earlier =
1675 state->symbols->get_variable(decl->identifier);
1676 if (earlier == NULL) {
1677 _mesa_glsl_error(& loc, state,
1678 "Undeclared variable `%s' cannot be marked "
1679 "invariant\n", decl->identifier);
1680 } else if ((state->target == vertex_shader)
1681 && (earlier->mode != ir_var_out)) {
1682 _mesa_glsl_error(& loc, state,
1683 "`%s' cannot be marked invariant, vertex shader "
1684 "outputs only\n", decl->identifier);
1685 } else if ((state->target == fragment_shader)
1686 && (earlier->mode != ir_var_in)) {
1687 _mesa_glsl_error(& loc, state,
1688 "`%s' cannot be marked invariant, fragment shader "
1689 "inputs only\n", decl->identifier);
1690 } else {
1691 earlier->invariant = true;
1692 }
1693 }
1694
1695 /* Invariant redeclarations do not have r-values.
1696 */
1697 return NULL;
1698 }
1699
1700 assert(this->type != NULL);
1701 assert(!this->invariant);
1702
1703 /* The type specifier may contain a structure definition. Process that
1704 * before any of the variable declarations.
1705 */
1706 (void) this->type->specifier->hir(instructions, state);
1707
1708 decl_type = this->type->specifier->glsl_type(& type_name, state);
1709 if (this->declarations.is_empty()) {
1710 /* The only valid case where the declaration list can be empty is when
1711 * the declaration is setting the default precision of a built-in type
1712 * (e.g., 'precision highp vec4;').
1713 */
1714
1715 if (decl_type != NULL) {
1716 } else {
1717 _mesa_glsl_error(& loc, state, "incomplete declaration");
1718 }
1719 }
1720
1721 foreach_list_typed (ast_declaration, decl, link, &this->declarations) {
1722 const struct glsl_type *var_type;
1723 ir_variable *var;
1724
1725 /* FINISHME: Emit a warning if a variable declaration shadows a
1726 * FINISHME: declaration at a higher scope.
1727 */
1728
1729 if ((decl_type == NULL) || decl_type->is_void()) {
1730 if (type_name != NULL) {
1731 _mesa_glsl_error(& loc, state,
1732 "invalid type `%s' in declaration of `%s'",
1733 type_name, decl->identifier);
1734 } else {
1735 _mesa_glsl_error(& loc, state,
1736 "invalid type in declaration of `%s'",
1737 decl->identifier);
1738 }
1739 continue;
1740 }
1741
1742 if (decl->is_array) {
1743 var_type = process_array_type(&loc, decl_type, decl->array_size,
1744 state);
1745 } else {
1746 var_type = decl_type;
1747 }
1748
1749 var = new(ctx) ir_variable(var_type, decl->identifier, ir_var_auto);
1750
1751 /* From page 22 (page 28 of the PDF) of the GLSL 1.10 specification;
1752 *
1753 * "Global variables can only use the qualifiers const,
1754 * attribute, uni form, or varying. Only one may be
1755 * specified.
1756 *
1757 * Local variables can only use the qualifier const."
1758 *
1759 * This is relaxed in GLSL 1.30.
1760 */
1761 if (state->language_version < 120) {
1762 if (this->type->qualifier.out) {
1763 _mesa_glsl_error(& loc, state,
1764 "`out' qualifier in declaration of `%s' "
1765 "only valid for function parameters in GLSL 1.10.",
1766 decl->identifier);
1767 }
1768 if (this->type->qualifier.in) {
1769 _mesa_glsl_error(& loc, state,
1770 "`in' qualifier in declaration of `%s' "
1771 "only valid for function parameters in GLSL 1.10.",
1772 decl->identifier);
1773 }
1774 /* FINISHME: Test for other invalid qualifiers. */
1775 }
1776
1777 apply_type_qualifier_to_variable(& this->type->qualifier, var, state,
1778 & loc);
1779
1780 if (this->type->qualifier.invariant) {
1781 if ((state->target == vertex_shader) && !(var->mode == ir_var_out ||
1782 var->mode == ir_var_inout)) {
1783 /* FINISHME: Note that this doesn't work for invariant on
1784 * a function signature outval
1785 */
1786 _mesa_glsl_error(& loc, state,
1787 "`%s' cannot be marked invariant, vertex shader "
1788 "outputs only\n", var->name);
1789 } else if ((state->target == fragment_shader) &&
1790 !(var->mode == ir_var_in || var->mode == ir_var_inout)) {
1791 /* FINISHME: Note that this doesn't work for invariant on
1792 * a function signature inval
1793 */
1794 _mesa_glsl_error(& loc, state,
1795 "`%s' cannot be marked invariant, fragment shader "
1796 "inputs only\n", var->name);
1797 }
1798 }
1799
1800 if (state->current_function != NULL) {
1801 const char *mode = NULL;
1802 const char *extra = "";
1803
1804 /* There is no need to check for 'inout' here because the parser will
1805 * only allow that in function parameter lists.
1806 */
1807 if (this->type->qualifier.attribute) {
1808 mode = "attribute";
1809 } else if (this->type->qualifier.uniform) {
1810 mode = "uniform";
1811 } else if (this->type->qualifier.varying) {
1812 mode = "varying";
1813 } else if (this->type->qualifier.in) {
1814 mode = "in";
1815 extra = " or in function parameter list";
1816 } else if (this->type->qualifier.out) {
1817 mode = "out";
1818 extra = " or in function parameter list";
1819 }
1820
1821 if (mode) {
1822 _mesa_glsl_error(& loc, state,
1823 "%s variable `%s' must be declared at "
1824 "global scope%s",
1825 mode, var->name, extra);
1826 }
1827 } else if (var->mode == ir_var_in) {
1828 if (state->target == vertex_shader) {
1829 bool error_emitted = false;
1830
1831 /* From page 31 (page 37 of the PDF) of the GLSL 1.50 spec:
1832 *
1833 * "Vertex shader inputs can only be float, floating-point
1834 * vectors, matrices, signed and unsigned integers and integer
1835 * vectors. Vertex shader inputs can also form arrays of these
1836 * types, but not structures."
1837 *
1838 * From page 31 (page 27 of the PDF) of the GLSL 1.30 spec:
1839 *
1840 * "Vertex shader inputs can only be float, floating-point
1841 * vectors, matrices, signed and unsigned integers and integer
1842 * vectors. They cannot be arrays or structures."
1843 *
1844 * From page 23 (page 29 of the PDF) of the GLSL 1.20 spec:
1845 *
1846 * "The attribute qualifier can be used only with float,
1847 * floating-point vectors, and matrices. Attribute variables
1848 * cannot be declared as arrays or structures."
1849 */
1850 const glsl_type *check_type = var->type->is_array()
1851 ? var->type->fields.array : var->type;
1852
1853 switch (check_type->base_type) {
1854 case GLSL_TYPE_FLOAT:
1855 break;
1856 case GLSL_TYPE_UINT:
1857 case GLSL_TYPE_INT:
1858 if (state->language_version > 120)
1859 break;
1860 /* FALLTHROUGH */
1861 default:
1862 _mesa_glsl_error(& loc, state,
1863 "vertex shader input / attribute cannot have "
1864 "type %s`%s'",
1865 var->type->is_array() ? "array of " : "",
1866 check_type->name);
1867 error_emitted = true;
1868 }
1869
1870 if (!error_emitted && (state->language_version <= 130)
1871 && var->type->is_array()) {
1872 _mesa_glsl_error(& loc, state,
1873 "vertex shader input / attribute cannot have "
1874 "array type");
1875 error_emitted = true;
1876 }
1877 }
1878 }
1879
1880 /* Process the initializer and add its instructions to a temporary
1881 * list. This list will be added to the instruction stream (below) after
1882 * the declaration is added. This is done because in some cases (such as
1883 * redeclarations) the declaration may not actually be added to the
1884 * instruction stream.
1885 */
1886 exec_list initializer_instructions;
1887 if (decl->initializer != NULL) {
1888 YYLTYPE initializer_loc = decl->initializer->get_location();
1889
1890 /* From page 24 (page 30 of the PDF) of the GLSL 1.10 spec:
1891 *
1892 * "All uniform variables are read-only and are initialized either
1893 * directly by an application via API commands, or indirectly by
1894 * OpenGL."
1895 */
1896 if ((state->language_version <= 110)
1897 && (var->mode == ir_var_uniform)) {
1898 _mesa_glsl_error(& initializer_loc, state,
1899 "cannot initialize uniforms in GLSL 1.10");
1900 }
1901
1902 if (var->type->is_sampler()) {
1903 _mesa_glsl_error(& initializer_loc, state,
1904 "cannot initialize samplers");
1905 }
1906
1907 if ((var->mode == ir_var_in) && (state->current_function == NULL)) {
1908 _mesa_glsl_error(& initializer_loc, state,
1909 "cannot initialize %s shader input / %s",
1910 _mesa_glsl_shader_target_name(state->target),
1911 (state->target == vertex_shader)
1912 ? "attribute" : "varying");
1913 }
1914
1915 ir_dereference *const lhs = new(ctx) ir_dereference_variable(var);
1916 ir_rvalue *rhs = decl->initializer->hir(&initializer_instructions,
1917 state);
1918
1919 /* Calculate the constant value if this is a const or uniform
1920 * declaration.
1921 */
1922 if (this->type->qualifier.constant || this->type->qualifier.uniform) {
1923 ir_rvalue *new_rhs = validate_assignment(state, var->type, rhs);
1924 if (new_rhs != NULL) {
1925 rhs = new_rhs;
1926
1927 ir_constant *constant_value = rhs->constant_expression_value();
1928 if (!constant_value) {
1929 _mesa_glsl_error(& initializer_loc, state,
1930 "initializer of %s variable `%s' must be a "
1931 "constant expression",
1932 (this->type->qualifier.constant)
1933 ? "const" : "uniform",
1934 decl->identifier);
1935 if (var->type->is_numeric()) {
1936 /* Reduce cascading errors. */
1937 var->constant_value = ir_constant::zero(ctx, var->type);
1938 }
1939 } else {
1940 rhs = constant_value;
1941 var->constant_value = constant_value;
1942 }
1943 } else {
1944 _mesa_glsl_error(&initializer_loc, state,
1945 "initializer of type %s cannot be assigned to "
1946 "variable of type %s",
1947 rhs->type->name, var->type->name);
1948 if (var->type->is_numeric()) {
1949 /* Reduce cascading errors. */
1950 var->constant_value = ir_constant::zero(ctx, var->type);
1951 }
1952 }
1953 }
1954
1955 if (rhs && !rhs->type->is_error()) {
1956 bool temp = var->read_only;
1957 if (this->type->qualifier.constant)
1958 var->read_only = false;
1959
1960 /* Never emit code to initialize a uniform.
1961 */
1962 if (!this->type->qualifier.uniform)
1963 result = do_assignment(&initializer_instructions, state,
1964 lhs, rhs,
1965 this->get_location());
1966 var->read_only = temp;
1967 }
1968 }
1969
1970 /* From page 23 (page 29 of the PDF) of the GLSL 1.10 spec:
1971 *
1972 * "It is an error to write to a const variable outside of
1973 * its declaration, so they must be initialized when
1974 * declared."
1975 */
1976 if (this->type->qualifier.constant && decl->initializer == NULL) {
1977 _mesa_glsl_error(& loc, state,
1978 "const declaration of `%s' must be initialized");
1979 }
1980
1981 /* Check if this declaration is actually a re-declaration, either to
1982 * resize an array or add qualifiers to an existing variable.
1983 *
1984 * This is allowed for variables in the current scope, or when at
1985 * global scope (for built-ins in the implicit outer scope).
1986 */
1987 ir_variable *earlier = state->symbols->get_variable(decl->identifier);
1988 if (earlier != NULL && (state->current_function == NULL ||
1989 state->symbols->name_declared_this_scope(decl->identifier))) {
1990
1991 /* From page 24 (page 30 of the PDF) of the GLSL 1.50 spec,
1992 *
1993 * "It is legal to declare an array without a size and then
1994 * later re-declare the same name as an array of the same
1995 * type and specify a size."
1996 */
1997 if ((earlier->type->array_size() == 0)
1998 && var->type->is_array()
1999 && (var->type->element_type() == earlier->type->element_type())) {
2000 /* FINISHME: This doesn't match the qualifiers on the two
2001 * FINISHME: declarations. It's not 100% clear whether this is
2002 * FINISHME: required or not.
2003 */
2004
2005 /* From page 54 (page 60 of the PDF) of the GLSL 1.20 spec:
2006 *
2007 * "The size [of gl_TexCoord] can be at most
2008 * gl_MaxTextureCoords."
2009 */
2010 const unsigned size = unsigned(var->type->array_size());
2011 if ((strcmp("gl_TexCoord", var->name) == 0)
2012 && (size > state->Const.MaxTextureCoords)) {
2013 YYLTYPE loc = this->get_location();
2014
2015 _mesa_glsl_error(& loc, state, "`gl_TexCoord' array size cannot "
2016 "be larger than gl_MaxTextureCoords (%u)\n",
2017 state->Const.MaxTextureCoords);
2018 } else if ((size > 0) && (size <= earlier->max_array_access)) {
2019 YYLTYPE loc = this->get_location();
2020
2021 _mesa_glsl_error(& loc, state, "array size must be > %u due to "
2022 "previous access",
2023 earlier->max_array_access);
2024 }
2025
2026 earlier->type = var->type;
2027 delete var;
2028 var = NULL;
2029 } else if (state->extensions->ARB_fragment_coord_conventions
2030 && strcmp(var->name, "gl_FragCoord") == 0
2031 && earlier->type == var->type
2032 && earlier->mode == var->mode) {
2033 /* Allow redeclaration of gl_FragCoord for ARB_fcc layout
2034 * qualifiers.
2035 */
2036 earlier->origin_upper_left = var->origin_upper_left;
2037 earlier->pixel_center_integer = var->pixel_center_integer;
2038 } else {
2039 YYLTYPE loc = this->get_location();
2040 _mesa_glsl_error(&loc, state, "`%s' redeclared", decl->identifier);
2041 }
2042
2043 continue;
2044 }
2045
2046 /* By now, we know it's a new variable declaration (we didn't hit the
2047 * above "continue").
2048 *
2049 * From page 15 (page 21 of the PDF) of the GLSL 1.10 spec,
2050 *
2051 * "Identifiers starting with "gl_" are reserved for use by
2052 * OpenGL, and may not be declared in a shader as either a
2053 * variable or a function."
2054 */
2055 if (strncmp(decl->identifier, "gl_", 3) == 0)
2056 _mesa_glsl_error(& loc, state,
2057 "identifier `%s' uses reserved `gl_' prefix",
2058 decl->identifier);
2059
2060 /* Add the variable to the symbol table. Note that the initializer's
2061 * IR was already processed earlier (though it hasn't been emitted yet),
2062 * without the variable in scope.
2063 *
2064 * This differs from most C-like languages, but it follows the GLSL
2065 * specification. From page 28 (page 34 of the PDF) of the GLSL 1.50
2066 * spec:
2067 *
2068 * "Within a declaration, the scope of a name starts immediately
2069 * after the initializer if present or immediately after the name
2070 * being declared if not."
2071 */
2072 if (!state->symbols->add_variable(var->name, var)) {
2073 YYLTYPE loc = this->get_location();
2074 _mesa_glsl_error(&loc, state, "name `%s' already taken in the "
2075 "current scope", decl->identifier);
2076 continue;
2077 }
2078
2079 /* Push the variable declaration to the top. It means that all
2080 * the variable declarations will appear in a funny
2081 * last-to-first order, but otherwise we run into trouble if a
2082 * function is prototyped, a global var is decled, then the
2083 * function is defined with usage of the global var. See
2084 * glslparsertest's CorrectModule.frag.
2085 */
2086 instructions->push_head(var);
2087 instructions->append_list(&initializer_instructions);
2088 }
2089
2090
2091 /* Generally, variable declarations do not have r-values. However,
2092 * one is used for the declaration in
2093 *
2094 * while (bool b = some_condition()) {
2095 * ...
2096 * }
2097 *
2098 * so we return the rvalue from the last seen declaration here.
2099 */
2100 return result;
2101 }
2102
2103
2104 ir_rvalue *
2105 ast_parameter_declarator::hir(exec_list *instructions,
2106 struct _mesa_glsl_parse_state *state)
2107 {
2108 void *ctx = state;
2109 const struct glsl_type *type;
2110 const char *name = NULL;
2111 YYLTYPE loc = this->get_location();
2112
2113 type = this->type->specifier->glsl_type(& name, state);
2114
2115 if (type == NULL) {
2116 if (name != NULL) {
2117 _mesa_glsl_error(& loc, state,
2118 "invalid type `%s' in declaration of `%s'",
2119 name, this->identifier);
2120 } else {
2121 _mesa_glsl_error(& loc, state,
2122 "invalid type in declaration of `%s'",
2123 this->identifier);
2124 }
2125
2126 type = glsl_type::error_type;
2127 }
2128
2129 /* From page 62 (page 68 of the PDF) of the GLSL 1.50 spec:
2130 *
2131 * "Functions that accept no input arguments need not use void in the
2132 * argument list because prototypes (or definitions) are required and
2133 * therefore there is no ambiguity when an empty argument list "( )" is
2134 * declared. The idiom "(void)" as a parameter list is provided for
2135 * convenience."
2136 *
2137 * Placing this check here prevents a void parameter being set up
2138 * for a function, which avoids tripping up checks for main taking
2139 * parameters and lookups of an unnamed symbol.
2140 */
2141 if (type->is_void()) {
2142 if (this->identifier != NULL)
2143 _mesa_glsl_error(& loc, state,
2144 "named parameter cannot have type `void'");
2145
2146 is_void = true;
2147 return NULL;
2148 }
2149
2150 if (formal_parameter && (this->identifier == NULL)) {
2151 _mesa_glsl_error(& loc, state, "formal parameter lacks a name");
2152 return NULL;
2153 }
2154
2155 /* This only handles "vec4 foo[..]". The earlier specifier->glsl_type(...)
2156 * call already handled the "vec4[..] foo" case.
2157 */
2158 if (this->is_array) {
2159 type = process_array_type(&loc, type, this->array_size, state);
2160 }
2161
2162 if (type->array_size() == 0) {
2163 _mesa_glsl_error(&loc, state, "arrays passed as parameters must have "
2164 "a declared size.");
2165 type = glsl_type::error_type;
2166 }
2167
2168 is_void = false;
2169 ir_variable *var = new(ctx) ir_variable(type, this->identifier, ir_var_in);
2170
2171 /* Apply any specified qualifiers to the parameter declaration. Note that
2172 * for function parameters the default mode is 'in'.
2173 */
2174 apply_type_qualifier_to_variable(& this->type->qualifier, var, state, & loc);
2175
2176 instructions->push_tail(var);
2177
2178 /* Parameter declarations do not have r-values.
2179 */
2180 return NULL;
2181 }
2182
2183
2184 void
2185 ast_parameter_declarator::parameters_to_hir(exec_list *ast_parameters,
2186 bool formal,
2187 exec_list *ir_parameters,
2188 _mesa_glsl_parse_state *state)
2189 {
2190 ast_parameter_declarator *void_param = NULL;
2191 unsigned count = 0;
2192
2193 foreach_list_typed (ast_parameter_declarator, param, link, ast_parameters) {
2194 param->formal_parameter = formal;
2195 param->hir(ir_parameters, state);
2196
2197 if (param->is_void)
2198 void_param = param;
2199
2200 count++;
2201 }
2202
2203 if ((void_param != NULL) && (count > 1)) {
2204 YYLTYPE loc = void_param->get_location();
2205
2206 _mesa_glsl_error(& loc, state,
2207 "`void' parameter must be only parameter");
2208 }
2209 }
2210
2211
2212 ir_rvalue *
2213 ast_function::hir(exec_list *instructions,
2214 struct _mesa_glsl_parse_state *state)
2215 {
2216 void *ctx = state;
2217 ir_function *f = NULL;
2218 ir_function_signature *sig = NULL;
2219 exec_list hir_parameters;
2220
2221 const char *const name = identifier;
2222
2223 /* From page 21 (page 27 of the PDF) of the GLSL 1.20 spec,
2224 *
2225 * "Function declarations (prototypes) cannot occur inside of functions;
2226 * they must be at global scope, or for the built-in functions, outside
2227 * the global scope."
2228 *
2229 * From page 27 (page 33 of the PDF) of the GLSL ES 1.00.16 spec,
2230 *
2231 * "User defined functions may only be defined within the global scope."
2232 *
2233 * Note that this language does not appear in GLSL 1.10.
2234 */
2235 if ((state->current_function != NULL) && (state->language_version != 110)) {
2236 YYLTYPE loc = this->get_location();
2237 _mesa_glsl_error(&loc, state,
2238 "declaration of function `%s' not allowed within "
2239 "function body", name);
2240 }
2241
2242 /* From page 15 (page 21 of the PDF) of the GLSL 1.10 spec,
2243 *
2244 * "Identifiers starting with "gl_" are reserved for use by
2245 * OpenGL, and may not be declared in a shader as either a
2246 * variable or a function."
2247 */
2248 if (strncmp(name, "gl_", 3) == 0) {
2249 YYLTYPE loc = this->get_location();
2250 _mesa_glsl_error(&loc, state,
2251 "identifier `%s' uses reserved `gl_' prefix", name);
2252 }
2253
2254 /* Convert the list of function parameters to HIR now so that they can be
2255 * used below to compare this function's signature with previously seen
2256 * signatures for functions with the same name.
2257 */
2258 ast_parameter_declarator::parameters_to_hir(& this->parameters,
2259 is_definition,
2260 & hir_parameters, state);
2261
2262 const char *return_type_name;
2263 const glsl_type *return_type =
2264 this->return_type->specifier->glsl_type(& return_type_name, state);
2265
2266 if (!return_type) {
2267 YYLTYPE loc = this->get_location();
2268 _mesa_glsl_error(&loc, state,
2269 "function `%s' has undeclared return type `%s'",
2270 name, return_type_name);
2271 return_type = glsl_type::error_type;
2272 }
2273
2274 /* From page 56 (page 62 of the PDF) of the GLSL 1.30 spec:
2275 * "No qualifier is allowed on the return type of a function."
2276 */
2277 if (this->return_type->has_qualifiers()) {
2278 YYLTYPE loc = this->get_location();
2279 _mesa_glsl_error(& loc, state,
2280 "function `%s' return type has qualifiers", name);
2281 }
2282
2283 /* Verify that this function's signature either doesn't match a previously
2284 * seen signature for a function with the same name, or, if a match is found,
2285 * that the previously seen signature does not have an associated definition.
2286 */
2287 f = state->symbols->get_function(name);
2288 if (f != NULL && (state->es_shader || !f->has_builtin_signature())) {
2289 sig = f->exact_matching_signature(&hir_parameters);
2290 if (sig != NULL) {
2291 const char *badvar = sig->qualifiers_match(&hir_parameters);
2292 if (badvar != NULL) {
2293 YYLTYPE loc = this->get_location();
2294
2295 _mesa_glsl_error(&loc, state, "function `%s' parameter `%s' "
2296 "qualifiers don't match prototype", name, badvar);
2297 }
2298
2299 if (sig->return_type != return_type) {
2300 YYLTYPE loc = this->get_location();
2301
2302 _mesa_glsl_error(&loc, state, "function `%s' return type doesn't "
2303 "match prototype", name);
2304 }
2305
2306 if (is_definition && sig->is_defined) {
2307 YYLTYPE loc = this->get_location();
2308
2309 _mesa_glsl_error(& loc, state, "function `%s' redefined", name);
2310 }
2311 }
2312 } else {
2313 f = new(ctx) ir_function(name);
2314 if (!state->symbols->add_function(f->name, f)) {
2315 /* This function name shadows a non-function use of the same name. */
2316 YYLTYPE loc = this->get_location();
2317
2318 _mesa_glsl_error(&loc, state, "function name `%s' conflicts with "
2319 "non-function", name);
2320 return NULL;
2321 }
2322
2323 /* Emit the new function header */
2324 if (state->current_function == NULL)
2325 instructions->push_tail(f);
2326 else {
2327 /* IR invariants disallow function declarations or definitions nested
2328 * within other function definitions. Insert the new ir_function
2329 * block in the instruction sequence before the ir_function block
2330 * containing the current ir_function_signature.
2331 *
2332 * This can only happen in a GLSL 1.10 shader. In all other GLSL
2333 * versions this nesting is disallowed. There is a check for this at
2334 * the top of this function.
2335 */
2336 ir_function *const curr =
2337 const_cast<ir_function *>(state->current_function->function());
2338
2339 curr->insert_before(f);
2340 }
2341 }
2342
2343 /* Verify the return type of main() */
2344 if (strcmp(name, "main") == 0) {
2345 if (! return_type->is_void()) {
2346 YYLTYPE loc = this->get_location();
2347
2348 _mesa_glsl_error(& loc, state, "main() must return void");
2349 }
2350
2351 if (!hir_parameters.is_empty()) {
2352 YYLTYPE loc = this->get_location();
2353
2354 _mesa_glsl_error(& loc, state, "main() must not take any parameters");
2355 }
2356 }
2357
2358 /* Finish storing the information about this new function in its signature.
2359 */
2360 if (sig == NULL) {
2361 sig = new(ctx) ir_function_signature(return_type);
2362 f->add_signature(sig);
2363 }
2364
2365 sig->replace_parameters(&hir_parameters);
2366 signature = sig;
2367
2368 /* Function declarations (prototypes) do not have r-values.
2369 */
2370 return NULL;
2371 }
2372
2373
2374 ir_rvalue *
2375 ast_function_definition::hir(exec_list *instructions,
2376 struct _mesa_glsl_parse_state *state)
2377 {
2378 prototype->is_definition = true;
2379 prototype->hir(instructions, state);
2380
2381 ir_function_signature *signature = prototype->signature;
2382 if (signature == NULL)
2383 return NULL;
2384
2385 assert(state->current_function == NULL);
2386 state->current_function = signature;
2387 state->found_return = false;
2388
2389 /* Duplicate parameters declared in the prototype as concrete variables.
2390 * Add these to the symbol table.
2391 */
2392 state->symbols->push_scope();
2393 foreach_iter(exec_list_iterator, iter, signature->parameters) {
2394 ir_variable *const var = ((ir_instruction *) iter.get())->as_variable();
2395
2396 assert(var != NULL);
2397
2398 /* The only way a parameter would "exist" is if two parameters have
2399 * the same name.
2400 */
2401 if (state->symbols->name_declared_this_scope(var->name)) {
2402 YYLTYPE loc = this->get_location();
2403
2404 _mesa_glsl_error(& loc, state, "parameter `%s' redeclared", var->name);
2405 } else {
2406 state->symbols->add_variable(var->name, var);
2407 }
2408 }
2409
2410 /* Convert the body of the function to HIR. */
2411 this->body->hir(&signature->body, state);
2412 signature->is_defined = true;
2413
2414 state->symbols->pop_scope();
2415
2416 assert(state->current_function == signature);
2417 state->current_function = NULL;
2418
2419 if (!signature->return_type->is_void() && !state->found_return) {
2420 YYLTYPE loc = this->get_location();
2421 _mesa_glsl_error(& loc, state, "function `%s' has non-void return type "
2422 "%s, but no return statement",
2423 signature->function_name(),
2424 signature->return_type->name);
2425 }
2426
2427 /* Function definitions do not have r-values.
2428 */
2429 return NULL;
2430 }
2431
2432
2433 ir_rvalue *
2434 ast_jump_statement::hir(exec_list *instructions,
2435 struct _mesa_glsl_parse_state *state)
2436 {
2437 void *ctx = state;
2438
2439 switch (mode) {
2440 case ast_return: {
2441 ir_return *inst;
2442 assert(state->current_function);
2443
2444 if (opt_return_value) {
2445 if (state->current_function->return_type->base_type ==
2446 GLSL_TYPE_VOID) {
2447 YYLTYPE loc = this->get_location();
2448
2449 _mesa_glsl_error(& loc, state,
2450 "`return` with a value, in function `%s' "
2451 "returning void",
2452 state->current_function->function_name());
2453 }
2454
2455 ir_expression *const ret = (ir_expression *)
2456 opt_return_value->hir(instructions, state);
2457 assert(ret != NULL);
2458
2459 /* Implicit conversions are not allowed for return values. */
2460 if (state->current_function->return_type != ret->type) {
2461 YYLTYPE loc = this->get_location();
2462
2463 _mesa_glsl_error(& loc, state,
2464 "`return' with wrong type %s, in function `%s' "
2465 "returning %s",
2466 ret->type->name,
2467 state->current_function->function_name(),
2468 state->current_function->return_type->name);
2469 }
2470
2471 inst = new(ctx) ir_return(ret);
2472 } else {
2473 if (state->current_function->return_type->base_type !=
2474 GLSL_TYPE_VOID) {
2475 YYLTYPE loc = this->get_location();
2476
2477 _mesa_glsl_error(& loc, state,
2478 "`return' with no value, in function %s returning "
2479 "non-void",
2480 state->current_function->function_name());
2481 }
2482 inst = new(ctx) ir_return;
2483 }
2484
2485 state->found_return = true;
2486 instructions->push_tail(inst);
2487 break;
2488 }
2489
2490 case ast_discard:
2491 if (state->target != fragment_shader) {
2492 YYLTYPE loc = this->get_location();
2493
2494 _mesa_glsl_error(& loc, state,
2495 "`discard' may only appear in a fragment shader");
2496 }
2497 instructions->push_tail(new(ctx) ir_discard);
2498 break;
2499
2500 case ast_break:
2501 case ast_continue:
2502 /* FINISHME: Handle switch-statements. They cannot contain 'continue',
2503 * FINISHME: and they use a different IR instruction for 'break'.
2504 */
2505 /* FINISHME: Correctly handle the nesting. If a switch-statement is
2506 * FINISHME: inside a loop, a 'continue' is valid and will bind to the
2507 * FINISHME: loop.
2508 */
2509 if (state->loop_or_switch_nesting == NULL) {
2510 YYLTYPE loc = this->get_location();
2511
2512 _mesa_glsl_error(& loc, state,
2513 "`%s' may only appear in a loop",
2514 (mode == ast_break) ? "break" : "continue");
2515 } else {
2516 ir_loop *const loop = state->loop_or_switch_nesting->as_loop();
2517
2518 /* Inline the for loop expression again, since we don't know
2519 * where near the end of the loop body the normal copy of it
2520 * is going to be placed.
2521 */
2522 if (mode == ast_continue &&
2523 state->loop_or_switch_nesting_ast->rest_expression) {
2524 state->loop_or_switch_nesting_ast->rest_expression->hir(instructions,
2525 state);
2526 }
2527
2528 if (loop != NULL) {
2529 ir_loop_jump *const jump =
2530 new(ctx) ir_loop_jump((mode == ast_break)
2531 ? ir_loop_jump::jump_break
2532 : ir_loop_jump::jump_continue);
2533 instructions->push_tail(jump);
2534 }
2535 }
2536
2537 break;
2538 }
2539
2540 /* Jump instructions do not have r-values.
2541 */
2542 return NULL;
2543 }
2544
2545
2546 ir_rvalue *
2547 ast_selection_statement::hir(exec_list *instructions,
2548 struct _mesa_glsl_parse_state *state)
2549 {
2550 void *ctx = state;
2551
2552 ir_rvalue *const condition = this->condition->hir(instructions, state);
2553
2554 /* From page 66 (page 72 of the PDF) of the GLSL 1.50 spec:
2555 *
2556 * "Any expression whose type evaluates to a Boolean can be used as the
2557 * conditional expression bool-expression. Vector types are not accepted
2558 * as the expression to if."
2559 *
2560 * The checks are separated so that higher quality diagnostics can be
2561 * generated for cases where both rules are violated.
2562 */
2563 if (!condition->type->is_boolean() || !condition->type->is_scalar()) {
2564 YYLTYPE loc = this->condition->get_location();
2565
2566 _mesa_glsl_error(& loc, state, "if-statement condition must be scalar "
2567 "boolean");
2568 }
2569
2570 ir_if *const stmt = new(ctx) ir_if(condition);
2571
2572 if (then_statement != NULL) {
2573 state->symbols->push_scope();
2574 then_statement->hir(& stmt->then_instructions, state);
2575 state->symbols->pop_scope();
2576 }
2577
2578 if (else_statement != NULL) {
2579 state->symbols->push_scope();
2580 else_statement->hir(& stmt->else_instructions, state);
2581 state->symbols->pop_scope();
2582 }
2583
2584 instructions->push_tail(stmt);
2585
2586 /* if-statements do not have r-values.
2587 */
2588 return NULL;
2589 }
2590
2591
2592 void
2593 ast_iteration_statement::condition_to_hir(ir_loop *stmt,
2594 struct _mesa_glsl_parse_state *state)
2595 {
2596 void *ctx = state;
2597
2598 if (condition != NULL) {
2599 ir_rvalue *const cond =
2600 condition->hir(& stmt->body_instructions, state);
2601
2602 if ((cond == NULL)
2603 || !cond->type->is_boolean() || !cond->type->is_scalar()) {
2604 YYLTYPE loc = condition->get_location();
2605
2606 _mesa_glsl_error(& loc, state,
2607 "loop condition must be scalar boolean");
2608 } else {
2609 /* As the first code in the loop body, generate a block that looks
2610 * like 'if (!condition) break;' as the loop termination condition.
2611 */
2612 ir_rvalue *const not_cond =
2613 new(ctx) ir_expression(ir_unop_logic_not, glsl_type::bool_type, cond,
2614 NULL);
2615
2616 ir_if *const if_stmt = new(ctx) ir_if(not_cond);
2617
2618 ir_jump *const break_stmt =
2619 new(ctx) ir_loop_jump(ir_loop_jump::jump_break);
2620
2621 if_stmt->then_instructions.push_tail(break_stmt);
2622 stmt->body_instructions.push_tail(if_stmt);
2623 }
2624 }
2625 }
2626
2627
2628 ir_rvalue *
2629 ast_iteration_statement::hir(exec_list *instructions,
2630 struct _mesa_glsl_parse_state *state)
2631 {
2632 void *ctx = state;
2633
2634 /* For-loops and while-loops start a new scope, but do-while loops do not.
2635 */
2636 if (mode != ast_do_while)
2637 state->symbols->push_scope();
2638
2639 if (init_statement != NULL)
2640 init_statement->hir(instructions, state);
2641
2642 ir_loop *const stmt = new(ctx) ir_loop();
2643 instructions->push_tail(stmt);
2644
2645 /* Track the current loop and / or switch-statement nesting.
2646 */
2647 ir_instruction *const nesting = state->loop_or_switch_nesting;
2648 ast_iteration_statement *nesting_ast = state->loop_or_switch_nesting_ast;
2649
2650 state->loop_or_switch_nesting = stmt;
2651 state->loop_or_switch_nesting_ast = this;
2652
2653 if (mode != ast_do_while)
2654 condition_to_hir(stmt, state);
2655
2656 if (body != NULL)
2657 body->hir(& stmt->body_instructions, state);
2658
2659 if (rest_expression != NULL)
2660 rest_expression->hir(& stmt->body_instructions, state);
2661
2662 if (mode == ast_do_while)
2663 condition_to_hir(stmt, state);
2664
2665 if (mode != ast_do_while)
2666 state->symbols->pop_scope();
2667
2668 /* Restore previous nesting before returning.
2669 */
2670 state->loop_or_switch_nesting = nesting;
2671 state->loop_or_switch_nesting_ast = nesting_ast;
2672
2673 /* Loops do not have r-values.
2674 */
2675 return NULL;
2676 }
2677
2678
2679 ir_rvalue *
2680 ast_type_specifier::hir(exec_list *instructions,
2681 struct _mesa_glsl_parse_state *state)
2682 {
2683 if (this->structure != NULL)
2684 return this->structure->hir(instructions, state);
2685
2686 return NULL;
2687 }
2688
2689
2690 ir_rvalue *
2691 ast_struct_specifier::hir(exec_list *instructions,
2692 struct _mesa_glsl_parse_state *state)
2693 {
2694 unsigned decl_count = 0;
2695
2696 /* Make an initial pass over the list of structure fields to determine how
2697 * many there are. Each element in this list is an ast_declarator_list.
2698 * This means that we actually need to count the number of elements in the
2699 * 'declarations' list in each of the elements.
2700 */
2701 foreach_list_typed (ast_declarator_list, decl_list, link,
2702 &this->declarations) {
2703 foreach_list_const (decl_ptr, & decl_list->declarations) {
2704 decl_count++;
2705 }
2706 }
2707
2708
2709 /* Allocate storage for the structure fields and process the field
2710 * declarations. As the declarations are processed, try to also convert
2711 * the types to HIR. This ensures that structure definitions embedded in
2712 * other structure definitions are processed.
2713 */
2714 glsl_struct_field *const fields = talloc_array(state, glsl_struct_field,
2715 decl_count);
2716
2717 unsigned i = 0;
2718 foreach_list_typed (ast_declarator_list, decl_list, link,
2719 &this->declarations) {
2720 const char *type_name;
2721
2722 decl_list->type->specifier->hir(instructions, state);
2723
2724 /* Section 10.9 of the GLSL ES 1.00 specification states that
2725 * embedded structure definitions have been removed from the language.
2726 */
2727 if (state->es_shader && decl_list->type->specifier->structure != NULL) {
2728 YYLTYPE loc = this->get_location();
2729 _mesa_glsl_error(&loc, state, "Embedded structure definitions are "
2730 "not allowed in GLSL ES 1.00.");
2731 }
2732
2733 const glsl_type *decl_type =
2734 decl_list->type->specifier->glsl_type(& type_name, state);
2735
2736 foreach_list_typed (ast_declaration, decl, link,
2737 &decl_list->declarations) {
2738 const struct glsl_type *field_type = decl_type;
2739 if (decl->is_array) {
2740 YYLTYPE loc = decl->get_location();
2741 field_type = process_array_type(&loc, decl_type, decl->array_size,
2742 state);
2743 }
2744 fields[i].type = (field_type != NULL)
2745 ? field_type : glsl_type::error_type;
2746 fields[i].name = decl->identifier;
2747 i++;
2748 }
2749 }
2750
2751 assert(i == decl_count);
2752
2753 const char *name;
2754 if (this->name == NULL) {
2755 static unsigned anon_count = 1;
2756 char buf[32];
2757
2758 snprintf(buf, sizeof(buf), "#anon_struct_%04x", anon_count);
2759 anon_count++;
2760
2761 name = strdup(buf);
2762 } else {
2763 name = this->name;
2764 }
2765
2766 const glsl_type *t =
2767 glsl_type::get_record_instance(fields, decl_count, name);
2768
2769 YYLTYPE loc = this->get_location();
2770 if (!state->symbols->add_type(name, t)) {
2771 _mesa_glsl_error(& loc, state, "struct `%s' previously defined", name);
2772 } else {
2773
2774 const glsl_type **s = (const glsl_type **)
2775 realloc(state->user_structures,
2776 sizeof(state->user_structures[0]) *
2777 (state->num_user_structures + 1));
2778 if (s != NULL) {
2779 s[state->num_user_structures] = t;
2780 state->user_structures = s;
2781 state->num_user_structures++;
2782 }
2783 }
2784
2785 /* Structure type definitions do not have r-values.
2786 */
2787 return NULL;
2788 }