blob: 75ba3a9bafa704d428b34b72d7b0d0017ff2563e [file] [log] [blame]
Ian Romanicka87ac252010-02-22 13:19:34 -08001/*
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 */
Eric Anholtac95f2f2010-06-22 10:38:52 -070051
Chia-I Wubfd7c9a2010-08-23 17:51:42 +080052#include "main/core.h" /* for struct gl_extensions */
Ian Romanick8bde4ce2010-03-19 11:57:24 -070053#include "glsl_symbol_table.h"
Ian Romanicka87ac252010-02-22 13:19:34 -080054#include "glsl_parser_extras.h"
55#include "ast.h"
56#include "glsl_types.h"
57#include "ir.h"
58
Ian Romanickd949a9a2010-03-10 09:55:22 -080059void
60_mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state)
61{
Ian Romanickadfb0cd2010-03-10 10:43:16 -080062 _mesa_glsl_initialize_variables(instructions, state);
Eric Anholtc22c4002010-03-26 18:20:30 -070063 _mesa_glsl_initialize_functions(instructions, state);
Ian Romanickadfb0cd2010-03-10 10:43:16 -080064
Kenneth Graunke814c89a2010-09-05 00:31:28 -070065 state->symbols->language_version = state->language_version;
66
Ian Romanick41ec6a42010-03-19 17:08:05 -070067 state->current_function = NULL;
68
Kenneth Graunkea0442852010-08-23 14:52:06 -070069 /* 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
Ian Romanick2b97dc62010-05-10 17:42:05 -070084 foreach_list_typed (ast_node, ast, link, & state->translation_unit)
Ian Romanick304ea902010-05-10 11:17:53 -070085 ast->hir(instructions, state);
Ian Romanickd949a9a2010-03-10 09:55:22 -080086}
87
88
Ian Romanick01045362010-03-29 16:17:56 -070089/**
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 */
Kenneth Graunkef32d3df2010-09-01 20:03:17 -0700102bool
Ian Romanickbfb09c22010-03-29 16:32:55 -0700103apply_implicit_conversion(const glsl_type *to, ir_rvalue * &from,
Ian Romanick01045362010-03-29 16:17:56 -0700104 struct _mesa_glsl_parse_state *state)
105{
Kenneth Graunke953ff122010-06-25 13:14:37 -0700106 void *ctx = state;
Ian Romanickbfb09c22010-03-29 16:32:55 -0700107 if (to->base_type == from->type->base_type)
Ian Romanick01045362010-03-29 16:17:56 -0700108 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 */
Ian Romanickbfb09c22010-03-29 16:32:55 -0700126 if (!to->is_float() || !from->type->is_numeric())
Ian Romanick01045362010-03-29 16:17:56 -0700127 return false;
128
Kenneth Graunke506199b2010-06-29 15:59:27 -0700129 /* 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
Ian Romanickbfb09c22010-03-29 16:32:55 -0700135 switch (from->type->base_type) {
Ian Romanick01045362010-03-29 16:17:56 -0700136 case GLSL_TYPE_INT:
Carl Worth1660a292010-06-23 18:11:51 -0700137 from = new(ctx) ir_expression(ir_unop_i2f, to, from, NULL);
Ian Romanick01045362010-03-29 16:17:56 -0700138 break;
139 case GLSL_TYPE_UINT:
Carl Worth1660a292010-06-23 18:11:51 -0700140 from = new(ctx) ir_expression(ir_unop_u2f, to, from, NULL);
Ian Romanick01045362010-03-29 16:17:56 -0700141 break;
142 case GLSL_TYPE_BOOL:
Carl Worth1660a292010-06-23 18:11:51 -0700143 from = new(ctx) ir_expression(ir_unop_b2f, to, from, NULL);
Eric Anholtdc58b3f2010-04-02 02:13:43 -1000144 break;
Ian Romanick01045362010-03-29 16:17:56 -0700145 default:
146 assert(0);
147 }
148
149 return true;
150}
151
152
Ian Romanicka87ac252010-02-22 13:19:34 -0800153static const struct glsl_type *
Ian Romanickbfb09c22010-03-29 16:32:55 -0700154arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b,
Ian Romanicka87ac252010-02-22 13:19:34 -0800155 bool multiply,
Eric Anholta13bb142010-03-31 16:38:11 -1000156 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800157{
Eric Anholt336b4ad2010-05-19 10:38:37 -0700158 const glsl_type *type_a = value_a->type;
159 const glsl_type *type_b = value_b->type;
Ian Romanick01045362010-03-29 16:17:56 -0700160
Ian Romanicka87ac252010-02-22 13:19:34 -0800161 /* 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 */
Ian Romanick60b54d92010-03-24 17:08:13 -0700167 if (!type_a->is_numeric() || !type_b->is_numeric()) {
Eric Anholta13bb142010-03-31 16:38:11 -1000168 _mesa_glsl_error(loc, state,
169 "Operands to arithmetic operators must be numeric");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700170 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800171 }
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."
Ian Romanicka87ac252010-02-22 13:19:34 -0800177 */
Ian Romanick01045362010-03-29 16:17:56 -0700178 if (!apply_implicit_conversion(type_a, value_b, state)
179 && !apply_implicit_conversion(type_b, value_a, state)) {
Eric Anholta13bb142010-03-31 16:38:11 -1000180 _mesa_glsl_error(loc, state,
181 "Could not implicitly convert operands to "
182 "arithmetic operator");
Ian Romanick01045362010-03-29 16:17:56 -0700183 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800184 }
Eric Anholt336b4ad2010-05-19 10:38:37 -0700185 type_a = value_a->type;
186 type_b = value_b->type;
187
Ian Romanicka87ac252010-02-22 13:19:34 -0800188 /* "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.
Ian Romanick60b54d92010-03-24 17:08:13 -0700193 * 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.
Ian Romanicka87ac252010-02-22 13:19:34 -0800196 */
197 if (type_a->base_type != type_b->base_type) {
Eric Anholta13bb142010-03-31 16:38:11 -1000198 _mesa_glsl_error(loc, state,
199 "base type mismatch for arithmetic operator");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700200 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800201 }
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 */
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800211 if (type_a->is_scalar() && type_b->is_scalar())
Ian Romanicka87ac252010-02-22 13:19:34 -0800212 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 */
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800219 if (type_a->is_scalar()) {
220 if (!type_b->is_scalar())
Ian Romanicka87ac252010-02-22 13:19:34 -0800221 return type_b;
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800222 } else if (type_b->is_scalar()) {
Ian Romanicka87ac252010-02-22 13:19:34 -0800223 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 */
Ian Romanick60b54d92010-03-24 17:08:13 -0700230 assert(!type_a->is_scalar());
231 assert(!type_b->is_scalar());
Ian Romanicka87ac252010-02-22 13:19:34 -0800232
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 */
Ian Romanicka2dd22f2010-03-09 15:55:16 -0800237 if (type_a->is_vector() && type_b->is_vector()) {
Eric Anholta13bb142010-03-31 16:38:11 -1000238 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 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800245 }
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 */
Ian Romanick60b54d92010-03-24 17:08:13 -0700253 assert(type_a->is_matrix() || type_b->is_matrix());
Ian Romanicka87ac252010-02-22 13:19:34 -0800254 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) {
Eric Anholta13bb142010-03-31 16:38:11 -1000273 if (type_a == type_b)
274 return type_a;
Ian Romanicka87ac252010-02-22 13:19:34 -0800275 } else {
Ian Romanickfce11502010-03-09 15:58:52 -0800276 if (type_a->is_matrix() && type_b->is_matrix()) {
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700277 /* 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 */
Eric Anholta13bb142010-03-31 16:38:11 -1000288 const glsl_type *const type =
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700289 glsl_type::get_instance(type_a->base_type,
290 type_a->column_type()->vector_elements,
291 type_b->row_type()->vector_elements);
Eric Anholta13bb142010-03-31 16:38:11 -1000292 assert(type != glsl_type::error_type);
293
294 return type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800295 }
Ian Romanickfce11502010-03-09 15:58:52 -0800296 } else if (type_a->is_matrix()) {
Ian Romanicka87ac252010-02-22 13:19:34 -0800297 /* A is a matrix and B is a column vector. Columns of A must match
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700298 * 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.
Ian Romanicka87ac252010-02-22 13:19:34 -0800301 */
Carl Worth47c90b12010-07-22 14:56:14 -0700302 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 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800313 } else {
Ian Romanickfce11502010-03-09 15:58:52 -0800314 assert(type_b->is_matrix());
Ian Romanicka87ac252010-02-22 13:19:34 -0800315
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700316 /* 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.
Ian Romanicka87ac252010-02-22 13:19:34 -0800320 */
Carl Worth47c90b12010-07-22 14:56:14 -0700321 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 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800332 }
Eric Anholta13bb142010-03-31 16:38:11 -1000333
334 _mesa_glsl_error(loc, state, "size mismatch for matrix multiplication");
335 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800336 }
337
338
339 /* "All other cases are illegal."
340 */
Eric Anholta13bb142010-03-31 16:38:11 -1000341 _mesa_glsl_error(loc, state, "type mismatch");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700342 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800343}
344
345
346static const struct glsl_type *
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000347unary_arithmetic_result_type(const struct glsl_type *type,
348 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800349{
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 */
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000358 if (!type->is_numeric()) {
359 _mesa_glsl_error(loc, state,
360 "Operands to arithmetic operators must be numeric");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700361 return glsl_type::error_type;
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000362 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800363
364 return type;
365}
366
Chad Versacecfdbf8b2010-10-15 11:28:05 -0700367/**
368 * \brief Return the result type of a bit-logic operation.
369 *
370 * If the given types to the bit-logic operator are invalid, return
371 * glsl_type::error_type.
372 *
373 * \param type_a Type of LHS of bit-logic op
374 * \param type_b Type of RHS of bit-logic op
375 */
376static const struct glsl_type *
377bit_logic_result_type(const struct glsl_type *type_a,
378 const struct glsl_type *type_b,
379 ast_operators op,
380 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
381{
382 if (state->language_version < 130) {
383 _mesa_glsl_error(loc, state, "bit operations require GLSL 1.30");
384 return glsl_type::error_type;
385 }
386
387 /* From page 50 (page 56 of PDF) of GLSL 1.30 spec:
388 *
389 * "The bitwise operators and (&), exclusive-or (^), and inclusive-or
390 * (|). The operands must be of type signed or unsigned integers or
391 * integer vectors."
392 */
393 if (!type_a->is_integer()) {
394 _mesa_glsl_error(loc, state, "LHS of `%s' must be an integer",
395 ast_expression::operator_string(op));
396 return glsl_type::error_type;
397 }
398 if (!type_b->is_integer()) {
399 _mesa_glsl_error(loc, state, "RHS of `%s' must be an integer",
400 ast_expression::operator_string(op));
401 return glsl_type::error_type;
402 }
403
404 /* "The fundamental types of the operands (signed or unsigned) must
405 * match,"
406 */
407 if (type_a->base_type != type_b->base_type) {
408 _mesa_glsl_error(loc, state, "operands of `%s' must have the same "
409 "base type", ast_expression::operator_string(op));
410 return glsl_type::error_type;
411 }
412
413 /* "The operands cannot be vectors of differing size." */
414 if (type_a->is_vector() &&
415 type_b->is_vector() &&
416 type_a->vector_elements != type_b->vector_elements) {
417 _mesa_glsl_error(loc, state, "operands of `%s' cannot be vectors of "
418 "different sizes", ast_expression::operator_string(op));
419 return glsl_type::error_type;
420 }
421
422 /* "If one operand is a scalar and the other a vector, the scalar is
423 * applied component-wise to the vector, resulting in the same type as
424 * the vector. The fundamental types of the operands [...] will be the
425 * resulting fundamental type."
426 */
427 if (type_a->is_scalar())
428 return type_b;
429 else
430 return type_a;
431}
Ian Romanicka87ac252010-02-22 13:19:34 -0800432
433static const struct glsl_type *
434modulus_result_type(const struct glsl_type *type_a,
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000435 const struct glsl_type *type_b,
436 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800437{
438 /* From GLSL 1.50 spec, page 56:
439 * "The operator modulus (%) operates on signed or unsigned integers or
440 * integer vectors. The operand types must both be signed or both be
441 * unsigned."
442 */
Ian Romanick40176e22010-03-26 14:38:37 -0700443 if (!type_a->is_integer() || !type_b->is_integer()
Ian Romanicka87ac252010-02-22 13:19:34 -0800444 || (type_a->base_type != type_b->base_type)) {
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000445 _mesa_glsl_error(loc, state, "type mismatch");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700446 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800447 }
448
449 /* "The operands cannot be vectors of differing size. If one operand is
450 * a scalar and the other vector, then the scalar is applied component-
451 * wise to the vector, resulting in the same type as the vector. If both
452 * are vectors of the same size, the result is computed component-wise."
453 */
Ian Romanicka2dd22f2010-03-09 15:55:16 -0800454 if (type_a->is_vector()) {
455 if (!type_b->is_vector()
Ian Romanicka87ac252010-02-22 13:19:34 -0800456 || (type_a->vector_elements == type_b->vector_elements))
457 return type_a;
458 } else
459 return type_b;
460
461 /* "The operator modulus (%) is not defined for any other data types
462 * (non-integer types)."
463 */
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000464 _mesa_glsl_error(loc, state, "type mismatch");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700465 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800466}
467
468
469static const struct glsl_type *
Ian Romanickbfb09c22010-03-29 16:32:55 -0700470relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b,
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000471 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800472{
Eric Anholt336b4ad2010-05-19 10:38:37 -0700473 const glsl_type *type_a = value_a->type;
474 const glsl_type *type_b = value_b->type;
Ian Romanick0150f5f2010-03-29 16:20:07 -0700475
Ian Romanicka87ac252010-02-22 13:19:34 -0800476 /* From GLSL 1.50 spec, page 56:
477 * "The relational operators greater than (>), less than (<), greater
478 * than or equal (>=), and less than or equal (<=) operate only on
479 * scalar integer and scalar floating-point expressions."
480 */
Ian Romanicka6d653d2010-03-26 14:40:37 -0700481 if (!type_a->is_numeric()
482 || !type_b->is_numeric()
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800483 || !type_a->is_scalar()
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000484 || !type_b->is_scalar()) {
485 _mesa_glsl_error(loc, state,
486 "Operands to relational operators must be scalar and "
487 "numeric");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700488 return glsl_type::error_type;
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000489 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800490
491 /* "Either the operands' types must match, or the conversions from
492 * Section 4.1.10 "Implicit Conversions" will be applied to the integer
493 * operand, after which the types must match."
Ian Romanicka87ac252010-02-22 13:19:34 -0800494 */
Ian Romanick0150f5f2010-03-29 16:20:07 -0700495 if (!apply_implicit_conversion(type_a, value_b, state)
496 && !apply_implicit_conversion(type_b, value_a, state)) {
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000497 _mesa_glsl_error(loc, state,
498 "Could not implicitly convert operands to "
499 "relational operator");
Ian Romanick0150f5f2010-03-29 16:20:07 -0700500 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800501 }
Eric Anholt336b4ad2010-05-19 10:38:37 -0700502 type_a = value_a->type;
503 type_b = value_b->type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800504
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000505 if (type_a->base_type != type_b->base_type) {
506 _mesa_glsl_error(loc, state, "base type mismatch");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700507 return glsl_type::error_type;
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000508 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800509
510 /* "The result is scalar Boolean."
511 */
Ian Romanick0471e8b2010-03-26 14:33:41 -0700512 return glsl_type::bool_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800513}
514
Chad Versacec0197ab2010-10-15 09:49:46 -0700515/**
516 * \brief Return the result type of a bit-shift operation.
517 *
518 * If the given types to the bit-shift operator are invalid, return
519 * glsl_type::error_type.
520 *
521 * \param type_a Type of LHS of bit-shift op
522 * \param type_b Type of RHS of bit-shift op
523 */
524static const struct glsl_type *
525shift_result_type(const struct glsl_type *type_a,
526 const struct glsl_type *type_b,
527 ast_operators op,
528 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
529{
530 if (state->language_version < 130) {
531 _mesa_glsl_error(loc, state, "bit operations require GLSL 1.30");
532 return glsl_type::error_type;
533 }
534
535 /* From page 50 (page 56 of the PDF) of the GLSL 1.30 spec:
536 *
537 * "The shift operators (<<) and (>>). For both operators, the operands
538 * must be signed or unsigned integers or integer vectors. One operand
539 * can be signed while the other is unsigned."
540 */
541 if (!type_a->is_integer()) {
542 _mesa_glsl_error(loc, state, "LHS of operator %s must be an integer or "
543 "integer vector", ast_expression::operator_string(op));
544 return glsl_type::error_type;
545
546 }
547 if (!type_b->is_integer()) {
548 _mesa_glsl_error(loc, state, "RHS of operator %s must be an integer or "
549 "integer vector", ast_expression::operator_string(op));
550 return glsl_type::error_type;
551 }
552
553 /* "If the first operand is a scalar, the second operand has to be
554 * a scalar as well."
555 */
556 if (type_a->is_scalar() && !type_b->is_scalar()) {
557 _mesa_glsl_error(loc, state, "If the first operand of %s is scalar, the "
558 "second must be scalar as well",
559 ast_expression::operator_string(op));
560 return glsl_type::error_type;
561 }
562
563 /* If both operands are vectors, check that they have same number of
564 * elements.
565 */
566 if (type_a->is_vector() &&
567 type_b->is_vector() &&
568 type_a->vector_elements != type_b->vector_elements) {
569 _mesa_glsl_error(loc, state, "Vector operands to operator %s must "
570 "have same number of elements",
571 ast_expression::operator_string(op));
572 return glsl_type::error_type;
573 }
574
575 /* "In all cases, the resulting type will be the same type as the left
576 * operand."
577 */
578 return type_a;
579}
Ian Romanicka87ac252010-02-22 13:19:34 -0800580
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700581/**
582 * Validates that a value can be assigned to a location with a specified type
583 *
584 * Validates that \c rhs can be assigned to some location. If the types are
585 * not an exact match but an automatic conversion is possible, \c rhs will be
586 * converted.
587 *
588 * \return
589 * \c NULL if \c rhs cannot be assigned to a location with type \c lhs_type.
590 * Otherwise the actual RHS to be assigned will be returned. This may be
591 * \c rhs, or it may be \c rhs after some type conversion.
592 *
593 * \note
594 * In addition to being used for assignments, this function is used to
595 * type-check return values.
596 */
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700597ir_rvalue *
Eric Anholt336b4ad2010-05-19 10:38:37 -0700598validate_assignment(struct _mesa_glsl_parse_state *state,
599 const glsl_type *lhs_type, ir_rvalue *rhs)
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700600{
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700601 /* If there is already some error in the RHS, just return it. Anything
602 * else will lead to an avalanche of error message back to the user.
603 */
Ian Romanickec530102010-12-10 15:47:11 -0800604 if (rhs->type->is_error())
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700605 return rhs;
606
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700607 /* If the types are identical, the assignment can trivially proceed.
608 */
Ian Romanickec530102010-12-10 15:47:11 -0800609 if (rhs->type == lhs_type)
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700610 return rhs;
611
Ian Romanick0157f412010-04-02 17:44:39 -0700612 /* If the array element types are the same and the size of the LHS is zero,
613 * the assignment is okay.
614 *
615 * Note: Whole-array assignments are not permitted in GLSL 1.10, but this
616 * is handled by ir_dereference::is_lvalue.
617 */
618 if (lhs_type->is_array() && rhs->type->is_array()
619 && (lhs_type->element_type() == rhs->type->element_type())
620 && (lhs_type->array_size() == 0)) {
621 return rhs;
622 }
623
Eric Anholt336b4ad2010-05-19 10:38:37 -0700624 /* Check for implicit conversion in GLSL 1.20 */
625 if (apply_implicit_conversion(lhs_type, rhs, state)) {
Ian Romanickec530102010-12-10 15:47:11 -0800626 if (rhs->type == lhs_type)
Eric Anholt336b4ad2010-05-19 10:38:37 -0700627 return rhs;
628 }
629
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700630 return NULL;
631}
632
Eric Anholt10a68522010-03-26 11:53:37 -0700633ir_rvalue *
634do_assignment(exec_list *instructions, struct _mesa_glsl_parse_state *state,
635 ir_rvalue *lhs, ir_rvalue *rhs,
636 YYLTYPE lhs_loc)
637{
Kenneth Graunke953ff122010-06-25 13:14:37 -0700638 void *ctx = state;
Eric Anholt10a68522010-03-26 11:53:37 -0700639 bool error_emitted = (lhs->type->is_error() || rhs->type->is_error());
640
641 if (!error_emitted) {
Eric Anholt10a68522010-03-26 11:53:37 -0700642 if (!lhs->is_lvalue()) {
643 _mesa_glsl_error(& lhs_loc, state, "non-lvalue in assignment");
644 error_emitted = true;
645 }
Kenneth Graunke10eaa8b2010-09-07 02:59:38 -0700646
647 if (state->es_shader && lhs->type->is_array()) {
648 _mesa_glsl_error(&lhs_loc, state, "whole array assignment is not "
649 "allowed in GLSL ES 1.00.");
650 error_emitted = true;
651 }
Eric Anholt10a68522010-03-26 11:53:37 -0700652 }
653
Eric Anholt336b4ad2010-05-19 10:38:37 -0700654 ir_rvalue *new_rhs = validate_assignment(state, lhs->type, rhs);
Eric Anholt10a68522010-03-26 11:53:37 -0700655 if (new_rhs == NULL) {
656 _mesa_glsl_error(& lhs_loc, state, "type mismatch");
657 } else {
658 rhs = new_rhs;
Ian Romanick0157f412010-04-02 17:44:39 -0700659
660 /* If the LHS array was not declared with a size, it takes it size from
661 * the RHS. If the LHS is an l-value and a whole array, it must be a
662 * dereference of a variable. Any other case would require that the LHS
663 * is either not an l-value or not a whole array.
664 */
665 if (lhs->type->array_size() == 0) {
666 ir_dereference *const d = lhs->as_dereference();
667
668 assert(d != NULL);
669
Ian Romanick36ea2862010-05-19 13:52:29 +0200670 ir_variable *const var = d->variable_referenced();
Ian Romanick0157f412010-04-02 17:44:39 -0700671
672 assert(var != NULL);
673
Ian Romanick63f39422010-04-05 14:35:47 -0700674 if (var->max_array_access >= unsigned(rhs->type->array_size())) {
675 /* FINISHME: This should actually log the location of the RHS. */
676 _mesa_glsl_error(& lhs_loc, state, "array size must be > %u due to "
677 "previous access",
678 var->max_array_access);
679 }
680
Ian Romanickf38d15b2010-07-20 15:33:40 -0700681 var->type = glsl_type::get_array_instance(lhs->type->element_type(),
Ian Romanick0157f412010-04-02 17:44:39 -0700682 rhs->type->array_size());
Eric Anholt9703ed02010-07-22 15:50:37 -0700683 d->type = var->type;
Ian Romanick0157f412010-04-02 17:44:39 -0700684 }
Eric Anholt10a68522010-03-26 11:53:37 -0700685 }
686
Eric Anholt2731a732010-06-23 14:51:14 -0700687 /* Most callers of do_assignment (assign, add_assign, pre_inc/dec,
688 * but not post_inc) need the converted assigned value as an rvalue
689 * to handle things like:
690 *
691 * i = j += 1;
692 *
693 * So we always just store the computed value being assigned to a
694 * temporary and return a deref of that temporary. If the rvalue
695 * ends up not being used, the temp will get copy-propagated out.
696 */
Ian Romanick7e2aa912010-07-19 17:12:42 -0700697 ir_variable *var = new(ctx) ir_variable(rhs->type, "assignment_tmp",
698 ir_var_temporary);
Eric Anholte33c1032010-06-24 15:13:03 -0700699 ir_dereference_variable *deref_var = new(ctx) ir_dereference_variable(var);
Eric Anholtae805922010-06-24 09:06:12 -0700700 instructions->push_tail(var);
Eric Anholte33c1032010-06-24 15:13:03 -0700701 instructions->push_tail(new(ctx) ir_assignment(deref_var,
Carl Worth1660a292010-06-23 18:11:51 -0700702 rhs,
703 NULL));
Eric Anholte33c1032010-06-24 15:13:03 -0700704 deref_var = new(ctx) ir_dereference_variable(var);
Eric Anholt10a68522010-03-26 11:53:37 -0700705
Ian Romanick8e9ce2e2010-08-03 15:02:35 -0700706 if (!error_emitted)
707 instructions->push_tail(new(ctx) ir_assignment(lhs, deref_var, NULL));
Eric Anholt2731a732010-06-23 14:51:14 -0700708
Carl Worth1660a292010-06-23 18:11:51 -0700709 return new(ctx) ir_dereference_variable(var);
Eric Anholt10a68522010-03-26 11:53:37 -0700710}
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700711
Eric Anholtde38f0e2010-03-26 12:14:54 -0700712static ir_rvalue *
Eric Anholt959a9ec2010-06-23 14:43:50 -0700713get_lvalue_copy(exec_list *instructions, ir_rvalue *lvalue)
Eric Anholtde38f0e2010-03-26 12:14:54 -0700714{
Carl Worth1660a292010-06-23 18:11:51 -0700715 void *ctx = talloc_parent(lvalue);
Eric Anholtde38f0e2010-03-26 12:14:54 -0700716 ir_variable *var;
Eric Anholtde38f0e2010-03-26 12:14:54 -0700717
Ian Romanick7e2aa912010-07-19 17:12:42 -0700718 var = new(ctx) ir_variable(lvalue->type, "_post_incdec_tmp",
719 ir_var_temporary);
Eric Anholt43b5b032010-07-07 14:04:30 -0700720 instructions->push_tail(var);
Eric Anholtde38f0e2010-03-26 12:14:54 -0700721 var->mode = ir_var_auto;
722
Carl Worth1660a292010-06-23 18:11:51 -0700723 instructions->push_tail(new(ctx) ir_assignment(new(ctx) ir_dereference_variable(var),
724 lvalue, NULL));
Eric Anholtde38f0e2010-03-26 12:14:54 -0700725
726 /* Once we've created this temporary, mark it read only so it's no
727 * longer considered an lvalue.
728 */
729 var->read_only = true;
730
Carl Worth1660a292010-06-23 18:11:51 -0700731 return new(ctx) ir_dereference_variable(var);
Eric Anholtde38f0e2010-03-26 12:14:54 -0700732}
733
734
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700735ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -0800736ast_node::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -0800737 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -0800738{
Ian Romanick18238de2010-03-01 13:49:10 -0800739 (void) instructions;
740 (void) state;
741
742 return NULL;
743}
744
Eric Anholtb4f58562010-12-01 15:55:53 -0800745static void
746mark_whole_array_access(ir_rvalue *access)
747{
748 ir_dereference_variable *deref = access->as_dereference_variable();
749
750 if (deref) {
751 deref->var->max_array_access = deref->type->length - 1;
752 }
753}
754
Eric Anholtff796332010-11-30 11:23:28 -0800755static ir_rvalue *
756do_comparison(void *mem_ctx, int operation, ir_rvalue *op0, ir_rvalue *op1)
757{
758 int join_op;
Ian Romanick6d36be52010-12-02 12:17:36 -0800759 ir_rvalue *cmp = NULL;
Eric Anholtff796332010-11-30 11:23:28 -0800760
761 if (operation == ir_binop_all_equal)
762 join_op = ir_binop_logic_and;
763 else
764 join_op = ir_binop_logic_or;
765
766 switch (op0->type->base_type) {
767 case GLSL_TYPE_FLOAT:
768 case GLSL_TYPE_UINT:
769 case GLSL_TYPE_INT:
770 case GLSL_TYPE_BOOL:
771 return new(mem_ctx) ir_expression(operation, op0, op1);
772
773 case GLSL_TYPE_ARRAY: {
Eric Anholtff796332010-11-30 11:23:28 -0800774 for (unsigned int i = 0; i < op0->type->length; i++) {
775 ir_rvalue *e0, *e1, *result;
776
777 e0 = new(mem_ctx) ir_dereference_array(op0->clone(mem_ctx, NULL),
778 new(mem_ctx) ir_constant(i));
779 e1 = new(mem_ctx) ir_dereference_array(op1->clone(mem_ctx, NULL),
780 new(mem_ctx) ir_constant(i));
781 result = do_comparison(mem_ctx, operation, e0, e1);
782
Ian Romanick6d36be52010-12-02 12:17:36 -0800783 if (cmp) {
784 cmp = new(mem_ctx) ir_expression(join_op, cmp, result);
Eric Anholtff796332010-11-30 11:23:28 -0800785 } else {
Ian Romanick6d36be52010-12-02 12:17:36 -0800786 cmp = result;
Eric Anholtff796332010-11-30 11:23:28 -0800787 }
788 }
Eric Anholtb4f58562010-12-01 15:55:53 -0800789
790 mark_whole_array_access(op0);
791 mark_whole_array_access(op1);
Ian Romanick6d36be52010-12-02 12:17:36 -0800792 break;
Eric Anholtff796332010-11-30 11:23:28 -0800793 }
794
795 case GLSL_TYPE_STRUCT: {
Eric Anholtff796332010-11-30 11:23:28 -0800796 for (unsigned int i = 0; i < op0->type->length; i++) {
797 ir_rvalue *e0, *e1, *result;
798 const char *field_name = op0->type->fields.structure[i].name;
799
800 e0 = new(mem_ctx) ir_dereference_record(op0->clone(mem_ctx, NULL),
801 field_name);
802 e1 = new(mem_ctx) ir_dereference_record(op1->clone(mem_ctx, NULL),
803 field_name);
804 result = do_comparison(mem_ctx, operation, e0, e1);
805
Ian Romanick6d36be52010-12-02 12:17:36 -0800806 if (cmp) {
807 cmp = new(mem_ctx) ir_expression(join_op, cmp, result);
Eric Anholtff796332010-11-30 11:23:28 -0800808 } else {
Ian Romanick6d36be52010-12-02 12:17:36 -0800809 cmp = result;
Eric Anholtff796332010-11-30 11:23:28 -0800810 }
811 }
Ian Romanick6d36be52010-12-02 12:17:36 -0800812 break;
Eric Anholtff796332010-11-30 11:23:28 -0800813 }
814
815 case GLSL_TYPE_ERROR:
816 case GLSL_TYPE_VOID:
817 case GLSL_TYPE_SAMPLER:
818 /* I assume a comparison of a struct containing a sampler just
819 * ignores the sampler present in the type.
820 */
Ian Romanick6d36be52010-12-02 12:17:36 -0800821 break;
822
823 default:
824 assert(!"Should not get here.");
825 break;
Eric Anholtff796332010-11-30 11:23:28 -0800826 }
Eric Anholtd56c9742010-11-30 13:28:47 -0800827
Ian Romanick6d36be52010-12-02 12:17:36 -0800828 if (cmp == NULL)
829 cmp = new(mem_ctx) ir_constant(true);
830
831 return cmp;
Eric Anholtff796332010-11-30 11:23:28 -0800832}
Ian Romanick18238de2010-03-01 13:49:10 -0800833
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700834ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -0800835ast_expression::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -0800836 struct _mesa_glsl_parse_state *state)
837{
Kenneth Graunke953ff122010-06-25 13:14:37 -0700838 void *ctx = state;
Ian Romanicka87ac252010-02-22 13:19:34 -0800839 static const int operations[AST_NUM_OPERATORS] = {
840 -1, /* ast_assign doesn't convert to ir_expression. */
841 -1, /* ast_plus doesn't convert to ir_expression. */
842 ir_unop_neg,
843 ir_binop_add,
844 ir_binop_sub,
845 ir_binop_mul,
846 ir_binop_div,
847 ir_binop_mod,
848 ir_binop_lshift,
849 ir_binop_rshift,
850 ir_binop_less,
851 ir_binop_greater,
852 ir_binop_lequal,
853 ir_binop_gequal,
Luca Barbieri4dfb8992010-09-08 01:31:39 +0200854 ir_binop_all_equal,
855 ir_binop_any_nequal,
Ian Romanicka87ac252010-02-22 13:19:34 -0800856 ir_binop_bit_and,
857 ir_binop_bit_xor,
858 ir_binop_bit_or,
859 ir_unop_bit_not,
860 ir_binop_logic_and,
861 ir_binop_logic_xor,
862 ir_binop_logic_or,
863 ir_unop_logic_not,
864
865 /* Note: The following block of expression types actually convert
866 * to multiple IR instructions.
867 */
868 ir_binop_mul, /* ast_mul_assign */
869 ir_binop_div, /* ast_div_assign */
870 ir_binop_mod, /* ast_mod_assign */
871 ir_binop_add, /* ast_add_assign */
872 ir_binop_sub, /* ast_sub_assign */
873 ir_binop_lshift, /* ast_ls_assign */
874 ir_binop_rshift, /* ast_rs_assign */
875 ir_binop_bit_and, /* ast_and_assign */
876 ir_binop_bit_xor, /* ast_xor_assign */
877 ir_binop_bit_or, /* ast_or_assign */
878
879 -1, /* ast_conditional doesn't convert to ir_expression. */
Eric Anholtde38f0e2010-03-26 12:14:54 -0700880 ir_binop_add, /* ast_pre_inc. */
881 ir_binop_sub, /* ast_pre_dec. */
882 ir_binop_add, /* ast_post_inc. */
883 ir_binop_sub, /* ast_post_dec. */
Ian Romanicka87ac252010-02-22 13:19:34 -0800884 -1, /* ast_field_selection doesn't conv to ir_expression. */
885 -1, /* ast_array_index doesn't convert to ir_expression. */
886 -1, /* ast_function_call doesn't conv to ir_expression. */
887 -1, /* ast_identifier doesn't convert to ir_expression. */
888 -1, /* ast_int_constant doesn't convert to ir_expression. */
889 -1, /* ast_uint_constant doesn't conv to ir_expression. */
890 -1, /* ast_float_constant doesn't conv to ir_expression. */
891 -1, /* ast_bool_constant doesn't conv to ir_expression. */
892 -1, /* ast_sequence doesn't convert to ir_expression. */
893 };
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700894 ir_rvalue *result = NULL;
Aras Pranckevicius1c325af2010-07-29 15:35:22 +0300895 ir_rvalue *op[3];
Ian Romanick0471e8b2010-03-26 14:33:41 -0700896 const struct glsl_type *type = glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800897 bool error_emitted = false;
898 YYLTYPE loc;
899
Ian Romanick18238de2010-03-01 13:49:10 -0800900 loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -0800901
Ian Romanick18238de2010-03-01 13:49:10 -0800902 switch (this->oper) {
Ian Romanick6652af32010-03-09 16:38:02 -0800903 case ast_assign: {
Ian Romanick18238de2010-03-01 13:49:10 -0800904 op[0] = this->subexpressions[0]->hir(instructions, state);
905 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -0800906
Eric Anholt10a68522010-03-26 11:53:37 -0700907 result = do_assignment(instructions, state, op[0], op[1],
908 this->subexpressions[0]->get_location());
909 error_emitted = result->type->is_error();
910 type = result->type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800911 break;
Ian Romanick6652af32010-03-09 16:38:02 -0800912 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800913
914 case ast_plus:
Ian Romanick18238de2010-03-01 13:49:10 -0800915 op[0] = this->subexpressions[0]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -0800916
Carl Worthc24bcad2010-07-21 11:23:51 -0700917 type = unary_arithmetic_result_type(op[0]->type, state, & loc);
918
919 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -0800920
921 result = op[0];
922 break;
923
924 case ast_neg:
Ian Romanick18238de2010-03-01 13:49:10 -0800925 op[0] = this->subexpressions[0]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -0800926
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000927 type = unary_arithmetic_result_type(op[0]->type, state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -0800928
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000929 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -0800930
Carl Worth1660a292010-06-23 18:11:51 -0700931 result = new(ctx) ir_expression(operations[this->oper], type,
932 op[0], NULL);
Ian Romanicka87ac252010-02-22 13:19:34 -0800933 break;
934
935 case ast_add:
936 case ast_sub:
937 case ast_mul:
938 case ast_div:
Ian Romanick18238de2010-03-01 13:49:10 -0800939 op[0] = this->subexpressions[0]->hir(instructions, state);
940 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -0800941
Ian Romanickbfb09c22010-03-29 16:32:55 -0700942 type = arithmetic_result_type(op[0], op[1],
Ian Romanick18238de2010-03-01 13:49:10 -0800943 (this->oper == ast_mul),
Eric Anholta13bb142010-03-31 16:38:11 -1000944 state, & loc);
945 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -0800946
Carl Worth1660a292010-06-23 18:11:51 -0700947 result = new(ctx) ir_expression(operations[this->oper], type,
948 op[0], op[1]);
Ian Romanicka87ac252010-02-22 13:19:34 -0800949 break;
950
951 case ast_mod:
Ian Romanick18238de2010-03-01 13:49:10 -0800952 op[0] = this->subexpressions[0]->hir(instructions, state);
953 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -0800954
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000955 type = modulus_result_type(op[0]->type, op[1]->type, state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -0800956
Ian Romanick18238de2010-03-01 13:49:10 -0800957 assert(operations[this->oper] == ir_binop_mod);
Ian Romanicka87ac252010-02-22 13:19:34 -0800958
Carl Worth1660a292010-06-23 18:11:51 -0700959 result = new(ctx) ir_expression(operations[this->oper], type,
960 op[0], op[1]);
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000961 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -0800962 break;
963
964 case ast_lshift:
965 case ast_rshift:
Chad Versace5c4c36f2010-10-08 16:22:28 -0700966 if (state->language_version < 130) {
967 _mesa_glsl_error(&loc, state, "operator %s requires GLSL 1.30",
968 operator_string(this->oper));
969 error_emitted = true;
Chad Versace5c4c36f2010-10-08 16:22:28 -0700970 }
971
Chad Versace5c4c36f2010-10-08 16:22:28 -0700972 op[0] = this->subexpressions[0]->hir(instructions, state);
973 op[1] = this->subexpressions[1]->hir(instructions, state);
Chad Versacec0197ab2010-10-15 09:49:46 -0700974 type = shift_result_type(op[0]->type, op[1]->type, this->oper, state,
975 &loc);
Chad Versace5c4c36f2010-10-08 16:22:28 -0700976 result = new(ctx) ir_expression(operations[this->oper], type,
977 op[0], op[1]);
978 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
979 break;
Ian Romanicka87ac252010-02-22 13:19:34 -0800980
981 case ast_less:
982 case ast_greater:
983 case ast_lequal:
984 case ast_gequal:
Ian Romanick18238de2010-03-01 13:49:10 -0800985 op[0] = this->subexpressions[0]->hir(instructions, state);
986 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -0800987
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000988 type = relational_result_type(op[0], op[1], state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -0800989
990 /* The relational operators must either generate an error or result
991 * in a scalar boolean. See page 57 of the GLSL 1.50 spec.
992 */
Ian Romanicka43817a2010-03-26 14:27:23 -0700993 assert(type->is_error()
Ian Romanicka87ac252010-02-22 13:19:34 -0800994 || ((type->base_type == GLSL_TYPE_BOOL)
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800995 && type->is_scalar()));
Ian Romanicka87ac252010-02-22 13:19:34 -0800996
Carl Worth1660a292010-06-23 18:11:51 -0700997 result = new(ctx) ir_expression(operations[this->oper], type,
998 op[0], op[1]);
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000999 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001000 break;
1001
1002 case ast_nequal:
1003 case ast_equal:
Ian Romanick6e659ca2010-03-29 15:11:05 -07001004 op[0] = this->subexpressions[0]->hir(instructions, state);
1005 op[1] = this->subexpressions[1]->hir(instructions, state);
1006
1007 /* From page 58 (page 64 of the PDF) of the GLSL 1.50 spec:
1008 *
1009 * "The equality operators equal (==), and not equal (!=)
1010 * operate on all types. They result in a scalar Boolean. If
1011 * the operand types do not match, then there must be a
1012 * conversion from Section 4.1.10 "Implicit Conversions"
1013 * applied to one operand that can make them match, in which
1014 * case this conversion is done."
1015 */
Ian Romanickbfb09c22010-03-29 16:32:55 -07001016 if ((!apply_implicit_conversion(op[0]->type, op[1], state)
1017 && !apply_implicit_conversion(op[1]->type, op[0], state))
Ian Romanick212b0322010-03-29 16:22:38 -07001018 || (op[0]->type != op[1]->type)) {
Ian Romanick6e659ca2010-03-29 15:11:05 -07001019 _mesa_glsl_error(& loc, state, "operands of `%s' must have the same "
1020 "type", (this->oper == ast_equal) ? "==" : "!=");
1021 error_emitted = true;
Ian Romanicka80cbd62010-03-30 17:04:48 -07001022 } else if ((state->language_version <= 110)
1023 && (op[0]->type->is_array() || op[1]->type->is_array())) {
1024 _mesa_glsl_error(& loc, state, "array comparisons forbidden in "
1025 "GLSL 1.10");
1026 error_emitted = true;
Ian Romanick6e659ca2010-03-29 15:11:05 -07001027 }
1028
Eric Anholtff796332010-11-30 11:23:28 -08001029 result = do_comparison(ctx, operations[this->oper], op[0], op[1]);
Ian Romanick6e659ca2010-03-29 15:11:05 -07001030 type = glsl_type::bool_type;
1031
Ian Romanick6d36be52010-12-02 12:17:36 -08001032 assert(error_emitted || (result->type == glsl_type::bool_type));
Ian Romanicka87ac252010-02-22 13:19:34 -08001033 break;
1034
1035 case ast_bit_and:
1036 case ast_bit_xor:
1037 case ast_bit_or:
Kenneth Graunke1eea9632010-08-31 10:56:24 -07001038 op[0] = this->subexpressions[0]->hir(instructions, state);
1039 op[1] = this->subexpressions[1]->hir(instructions, state);
Chad Versacecfdbf8b2010-10-15 11:28:05 -07001040 type = bit_logic_result_type(op[0]->type, op[1]->type, this->oper,
1041 state, &loc);
Kenneth Graunke1eea9632010-08-31 10:56:24 -07001042 result = new(ctx) ir_expression(operations[this->oper], type,
1043 op[0], op[1]);
1044 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1045 break;
1046
Ian Romanicka87ac252010-02-22 13:19:34 -08001047 case ast_bit_not:
Kenneth Graunke1eea9632010-08-31 10:56:24 -07001048 op[0] = this->subexpressions[0]->hir(instructions, state);
1049
1050 if (state->language_version < 130) {
1051 _mesa_glsl_error(&loc, state, "bit-wise operations require GLSL 1.30");
1052 error_emitted = true;
1053 }
1054
1055 if (!op[0]->type->is_integer()) {
1056 _mesa_glsl_error(&loc, state, "operand of `~' must be an integer");
1057 error_emitted = true;
1058 }
1059
1060 type = op[0]->type;
1061 result = new(ctx) ir_expression(ir_unop_bit_not, type, op[0], NULL);
Ian Romanicka87ac252010-02-22 13:19:34 -08001062 break;
1063
Eric Anholt4950a682010-04-16 01:10:32 -07001064 case ast_logic_and: {
Eric Anholtb82c0c32010-03-31 09:11:39 -10001065 op[0] = this->subexpressions[0]->hir(instructions, state);
Eric Anholtb82c0c32010-03-31 09:11:39 -10001066
1067 if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) {
1068 YYLTYPE loc = this->subexpressions[0]->get_location();
1069
1070 _mesa_glsl_error(& loc, state, "LHS of `%s' must be scalar boolean",
1071 operator_string(this->oper));
Eric Anholtebbf14b2010-03-31 17:05:32 -10001072 error_emitted = true;
Eric Anholtb82c0c32010-03-31 09:11:39 -10001073 }
1074
Eric Anholt44b694e2010-04-16 13:49:04 -07001075 ir_constant *op0_const = op[0]->constant_expression_value();
1076 if (op0_const) {
1077 if (op0_const->value.b[0]) {
1078 op[1] = this->subexpressions[1]->hir(instructions, state);
Eric Anholt4950a682010-04-16 01:10:32 -07001079
Eric Anholt44b694e2010-04-16 13:49:04 -07001080 if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) {
1081 YYLTYPE loc = this->subexpressions[1]->get_location();
Eric Anholt4950a682010-04-16 01:10:32 -07001082
Eric Anholt44b694e2010-04-16 13:49:04 -07001083 _mesa_glsl_error(& loc, state,
1084 "RHS of `%s' must be scalar boolean",
1085 operator_string(this->oper));
1086 error_emitted = true;
1087 }
1088 result = op[1];
1089 } else {
1090 result = op0_const;
1091 }
1092 type = glsl_type::bool_type;
1093 } else {
Ian Romanick81d664f2010-07-12 15:18:55 -07001094 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
Ian Romanick7e2aa912010-07-19 17:12:42 -07001095 "and_tmp",
1096 ir_var_temporary);
Ian Romanick81d664f2010-07-12 15:18:55 -07001097 instructions->push_tail(tmp);
1098
Carl Worth1660a292010-06-23 18:11:51 -07001099 ir_if *const stmt = new(ctx) ir_if(op[0]);
Eric Anholt44b694e2010-04-16 13:49:04 -07001100 instructions->push_tail(stmt);
Eric Anholt4950a682010-04-16 01:10:32 -07001101
Eric Anholt44b694e2010-04-16 13:49:04 -07001102 op[1] = this->subexpressions[1]->hir(&stmt->then_instructions, state);
Eric Anholtb82c0c32010-03-31 09:11:39 -10001103
Eric Anholt44b694e2010-04-16 13:49:04 -07001104 if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) {
1105 YYLTYPE loc = this->subexpressions[1]->get_location();
1106
1107 _mesa_glsl_error(& loc, state,
1108 "RHS of `%s' must be scalar boolean",
1109 operator_string(this->oper));
1110 error_emitted = true;
1111 }
1112
Carl Worth1660a292010-06-23 18:11:51 -07001113 ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001114 ir_assignment *const then_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001115 new(ctx) ir_assignment(then_deref, op[1], NULL);
Eric Anholt44b694e2010-04-16 13:49:04 -07001116 stmt->then_instructions.push_tail(then_assign);
1117
Carl Worth1660a292010-06-23 18:11:51 -07001118 ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001119 ir_assignment *const else_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001120 new(ctx) ir_assignment(else_deref, new(ctx) ir_constant(false), NULL);
Eric Anholt44b694e2010-04-16 13:49:04 -07001121 stmt->else_instructions.push_tail(else_assign);
1122
Carl Worth1660a292010-06-23 18:11:51 -07001123 result = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001124 type = tmp->type;
Eric Anholtb82c0c32010-03-31 09:11:39 -10001125 }
Eric Anholt4950a682010-04-16 01:10:32 -07001126 break;
1127 }
1128
1129 case ast_logic_or: {
1130 op[0] = this->subexpressions[0]->hir(instructions, state);
1131
1132 if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) {
1133 YYLTYPE loc = this->subexpressions[0]->get_location();
1134
1135 _mesa_glsl_error(& loc, state, "LHS of `%s' must be scalar boolean",
1136 operator_string(this->oper));
1137 error_emitted = true;
1138 }
1139
Eric Anholt44b694e2010-04-16 13:49:04 -07001140 ir_constant *op0_const = op[0]->constant_expression_value();
1141 if (op0_const) {
1142 if (op0_const->value.b[0]) {
1143 result = op0_const;
1144 } else {
1145 op[1] = this->subexpressions[1]->hir(instructions, state);
Eric Anholt4950a682010-04-16 01:10:32 -07001146
Eric Anholt44b694e2010-04-16 13:49:04 -07001147 if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) {
1148 YYLTYPE loc = this->subexpressions[1]->get_location();
Eric Anholt4950a682010-04-16 01:10:32 -07001149
Eric Anholt44b694e2010-04-16 13:49:04 -07001150 _mesa_glsl_error(& loc, state,
1151 "RHS of `%s' must be scalar boolean",
1152 operator_string(this->oper));
1153 error_emitted = true;
1154 }
1155 result = op[1];
1156 }
1157 type = glsl_type::bool_type;
1158 } else {
Kenneth Graunkedfd30ca2010-07-08 12:40:52 -07001159 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
Ian Romanick7e2aa912010-07-19 17:12:42 -07001160 "or_tmp",
1161 ir_var_temporary);
Ian Romanick0b9ae3b2010-07-12 14:22:05 -07001162 instructions->push_tail(tmp);
Eric Anholt4950a682010-04-16 01:10:32 -07001163
Ian Romanick81d664f2010-07-12 15:18:55 -07001164 ir_if *const stmt = new(ctx) ir_if(op[0]);
1165 instructions->push_tail(stmt);
1166
Eric Anholta0879b92010-07-22 16:30:41 -07001167 op[1] = this->subexpressions[1]->hir(&stmt->else_instructions, state);
Eric Anholt44b694e2010-04-16 13:49:04 -07001168
1169 if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) {
1170 YYLTYPE loc = this->subexpressions[1]->get_location();
1171
1172 _mesa_glsl_error(& loc, state, "RHS of `%s' must be scalar boolean",
1173 operator_string(this->oper));
1174 error_emitted = true;
1175 }
1176
Carl Worth1660a292010-06-23 18:11:51 -07001177 ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001178 ir_assignment *const then_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001179 new(ctx) ir_assignment(then_deref, new(ctx) ir_constant(true), NULL);
Eric Anholt44b694e2010-04-16 13:49:04 -07001180 stmt->then_instructions.push_tail(then_assign);
1181
Carl Worth1660a292010-06-23 18:11:51 -07001182 ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001183 ir_assignment *const else_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001184 new(ctx) ir_assignment(else_deref, op[1], NULL);
Eric Anholt44b694e2010-04-16 13:49:04 -07001185 stmt->else_instructions.push_tail(else_assign);
1186
Carl Worth1660a292010-06-23 18:11:51 -07001187 result = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001188 type = tmp->type;
Eric Anholt4950a682010-04-16 01:10:32 -07001189 }
Eric Anholt4950a682010-04-16 01:10:32 -07001190 break;
1191 }
1192
1193 case ast_logic_xor:
1194 op[0] = this->subexpressions[0]->hir(instructions, state);
1195 op[1] = this->subexpressions[1]->hir(instructions, state);
1196
1197
Carl Worth1660a292010-06-23 18:11:51 -07001198 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
1199 op[0], op[1]);
Eric Anholtebbf14b2010-03-31 17:05:32 -10001200 type = glsl_type::bool_type;
Ian Romanicka87ac252010-02-22 13:19:34 -08001201 break;
1202
Eric Anholta5827fe2010-03-31 16:50:55 -10001203 case ast_logic_not:
1204 op[0] = this->subexpressions[0]->hir(instructions, state);
1205
1206 if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) {
1207 YYLTYPE loc = this->subexpressions[0]->get_location();
1208
1209 _mesa_glsl_error(& loc, state,
1210 "operand of `!' must be scalar boolean");
Eric Anholtebbf14b2010-03-31 17:05:32 -10001211 error_emitted = true;
Eric Anholta5827fe2010-03-31 16:50:55 -10001212 }
1213
Carl Worth1660a292010-06-23 18:11:51 -07001214 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
1215 op[0], NULL);
Eric Anholtebbf14b2010-03-31 17:05:32 -10001216 type = glsl_type::bool_type;
Eric Anholta5827fe2010-03-31 16:50:55 -10001217 break;
1218
Ian Romanicka87ac252010-02-22 13:19:34 -08001219 case ast_mul_assign:
1220 case ast_div_assign:
1221 case ast_add_assign:
1222 case ast_sub_assign: {
Ian Romanick18238de2010-03-01 13:49:10 -08001223 op[0] = this->subexpressions[0]->hir(instructions, state);
1224 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001225
Ian Romanickbfb09c22010-03-29 16:32:55 -07001226 type = arithmetic_result_type(op[0], op[1],
Ian Romanick18238de2010-03-01 13:49:10 -08001227 (this->oper == ast_mul_assign),
Eric Anholta13bb142010-03-31 16:38:11 -10001228 state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08001229
Carl Worth1660a292010-06-23 18:11:51 -07001230 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1231 op[0], op[1]);
Ian Romanicka87ac252010-02-22 13:19:34 -08001232
Eric Anholt3e24ef62010-06-23 12:40:17 -07001233 result = do_assignment(instructions, state,
Eric Anholt8273bd42010-08-04 12:34:56 -07001234 op[0]->clone(ctx, NULL), temp_rhs,
Eric Anholt10a68522010-03-26 11:53:37 -07001235 this->subexpressions[0]->get_location());
1236 type = result->type;
1237 error_emitted = (op[0]->type->is_error());
Ian Romanicka87ac252010-02-22 13:19:34 -08001238
1239 /* GLSL 1.10 does not allow array assignment. However, we don't have to
1240 * explicitly test for this because none of the binary expression
1241 * operators allow array operands either.
1242 */
1243
Ian Romanicka87ac252010-02-22 13:19:34 -08001244 break;
1245 }
1246
Eric Anholt48a0e642010-03-26 11:57:46 -07001247 case ast_mod_assign: {
1248 op[0] = this->subexpressions[0]->hir(instructions, state);
1249 op[1] = this->subexpressions[1]->hir(instructions, state);
1250
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001251 type = modulus_result_type(op[0]->type, op[1]->type, state, & loc);
Eric Anholt48a0e642010-03-26 11:57:46 -07001252
1253 assert(operations[this->oper] == ir_binop_mod);
1254
Ian Romanick768b55a2010-08-13 16:46:43 -07001255 ir_rvalue *temp_rhs;
Carl Worth1660a292010-06-23 18:11:51 -07001256 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1257 op[0], op[1]);
Eric Anholt48a0e642010-03-26 11:57:46 -07001258
Eric Anholt3e24ef62010-06-23 12:40:17 -07001259 result = do_assignment(instructions, state,
Eric Anholt8273bd42010-08-04 12:34:56 -07001260 op[0]->clone(ctx, NULL), temp_rhs,
Eric Anholt48a0e642010-03-26 11:57:46 -07001261 this->subexpressions[0]->get_location());
1262 type = result->type;
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001263 error_emitted = type->is_error();
Eric Anholt48a0e642010-03-26 11:57:46 -07001264 break;
1265 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001266
1267 case ast_ls_assign:
Chad Versace338ed6e2010-10-15 10:05:50 -07001268 case ast_rs_assign: {
1269 op[0] = this->subexpressions[0]->hir(instructions, state);
1270 op[1] = this->subexpressions[1]->hir(instructions, state);
1271 type = shift_result_type(op[0]->type, op[1]->type, this->oper, state,
1272 &loc);
1273 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper],
1274 type, op[0], op[1]);
1275 result = do_assignment(instructions, state, op[0]->clone(ctx, NULL),
1276 temp_rhs,
1277 this->subexpressions[0]->get_location());
1278 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
Ian Romanick251eb752010-03-29 14:15:05 -07001279 break;
Chad Versace338ed6e2010-10-15 10:05:50 -07001280 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001281
1282 case ast_and_assign:
1283 case ast_xor_assign:
Chad Versaced03ac0f2010-10-15 12:08:28 -07001284 case ast_or_assign: {
1285 op[0] = this->subexpressions[0]->hir(instructions, state);
1286 op[1] = this->subexpressions[1]->hir(instructions, state);
1287 type = bit_logic_result_type(op[0]->type, op[1]->type, this->oper,
1288 state, &loc);
1289 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper],
1290 type, op[0], op[1]);
1291 result = do_assignment(instructions, state, op[0]->clone(ctx, NULL),
1292 temp_rhs,
1293 this->subexpressions[0]->get_location());
1294 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
Ian Romanick251eb752010-03-29 14:15:05 -07001295 break;
Chad Versaced03ac0f2010-10-15 12:08:28 -07001296 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001297
Ian Romanick96f9cea2010-03-29 15:33:54 -07001298 case ast_conditional: {
1299 op[0] = this->subexpressions[0]->hir(instructions, state);
1300
1301 /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec:
1302 *
1303 * "The ternary selection operator (?:). It operates on three
1304 * expressions (exp1 ? exp2 : exp3). This operator evaluates the
1305 * first expression, which must result in a scalar Boolean."
1306 */
1307 if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) {
1308 YYLTYPE loc = this->subexpressions[0]->get_location();
1309
1310 _mesa_glsl_error(& loc, state, "?: condition must be scalar boolean");
1311 error_emitted = true;
1312 }
1313
1314 /* The :? operator is implemented by generating an anonymous temporary
1315 * followed by an if-statement. The last instruction in each branch of
1316 * the if-statement assigns a value to the anonymous temporary. This
1317 * temporary is the r-value of the expression.
1318 */
Ian Romanick0ad76c62010-06-11 12:56:26 -07001319 exec_list then_instructions;
1320 exec_list else_instructions;
Ian Romanick96f9cea2010-03-29 15:33:54 -07001321
Ian Romanick0ad76c62010-06-11 12:56:26 -07001322 op[1] = this->subexpressions[1]->hir(&then_instructions, state);
1323 op[2] = this->subexpressions[2]->hir(&else_instructions, state);
Ian Romanick96f9cea2010-03-29 15:33:54 -07001324
1325 /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec:
1326 *
1327 * "The second and third expressions can be any type, as
1328 * long their types match, or there is a conversion in
1329 * Section 4.1.10 "Implicit Conversions" that can be applied
1330 * to one of the expressions to make their types match. This
1331 * resulting matching type is the type of the entire
1332 * expression."
1333 */
Ian Romanickbfb09c22010-03-29 16:32:55 -07001334 if ((!apply_implicit_conversion(op[1]->type, op[2], state)
1335 && !apply_implicit_conversion(op[2]->type, op[1], state))
Ian Romanickdb9be2e2010-03-29 16:25:56 -07001336 || (op[1]->type != op[2]->type)) {
Ian Romanick96f9cea2010-03-29 15:33:54 -07001337 YYLTYPE loc = this->subexpressions[1]->get_location();
1338
1339 _mesa_glsl_error(& loc, state, "Second and third operands of ?: "
1340 "operator must have matching types.");
1341 error_emitted = true;
Ian Romanick0ad76c62010-06-11 12:56:26 -07001342 type = glsl_type::error_type;
Ian Romanickdb9be2e2010-03-29 16:25:56 -07001343 } else {
Ian Romanick0ad76c62010-06-11 12:56:26 -07001344 type = op[1]->type;
Ian Romanick96f9cea2010-03-29 15:33:54 -07001345 }
1346
Ian Romanickf09fabc2010-09-07 14:30:06 -07001347 /* From page 33 (page 39 of the PDF) of the GLSL 1.10 spec:
1348 *
1349 * "The second and third expressions must be the same type, but can
1350 * be of any type other than an array."
1351 */
1352 if ((state->language_version <= 110) && type->is_array()) {
1353 _mesa_glsl_error(& loc, state, "Second and third operands of ?: "
1354 "operator must not be arrays.");
1355 error_emitted = true;
1356 }
1357
Ian Romanick7825d3d2010-06-11 13:45:51 -07001358 ir_constant *cond_val = op[0]->constant_expression_value();
1359 ir_constant *then_val = op[1]->constant_expression_value();
1360 ir_constant *else_val = op[2]->constant_expression_value();
Ian Romanick0ad76c62010-06-11 12:56:26 -07001361
Ian Romanick7825d3d2010-06-11 13:45:51 -07001362 if (then_instructions.is_empty()
1363 && else_instructions.is_empty()
1364 && (cond_val != NULL) && (then_val != NULL) && (else_val != NULL)) {
1365 result = (cond_val->value.b[0]) ? then_val : else_val;
1366 } else {
Ian Romanick7e2aa912010-07-19 17:12:42 -07001367 ir_variable *const tmp =
1368 new(ctx) ir_variable(type, "conditional_tmp", ir_var_temporary);
Ian Romanick0b9ae3b2010-07-12 14:22:05 -07001369 instructions->push_tail(tmp);
Ian Romanick0ad76c62010-06-11 12:56:26 -07001370
Carl Worth1660a292010-06-23 18:11:51 -07001371 ir_if *const stmt = new(ctx) ir_if(op[0]);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001372 instructions->push_tail(stmt);
Ian Romanick0ad76c62010-06-11 12:56:26 -07001373
Ian Romanick7825d3d2010-06-11 13:45:51 -07001374 then_instructions.move_nodes_to(& stmt->then_instructions);
Carl Worth1660a292010-06-23 18:11:51 -07001375 ir_dereference *const then_deref =
1376 new(ctx) ir_dereference_variable(tmp);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001377 ir_assignment *const then_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001378 new(ctx) ir_assignment(then_deref, op[1], NULL);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001379 stmt->then_instructions.push_tail(then_assign);
Ian Romanick0ad76c62010-06-11 12:56:26 -07001380
Ian Romanick7825d3d2010-06-11 13:45:51 -07001381 else_instructions.move_nodes_to(& stmt->else_instructions);
Carl Worth1660a292010-06-23 18:11:51 -07001382 ir_dereference *const else_deref =
1383 new(ctx) ir_dereference_variable(tmp);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001384 ir_assignment *const else_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001385 new(ctx) ir_assignment(else_deref, op[2], NULL);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001386 stmt->else_instructions.push_tail(else_assign);
1387
Carl Worth1660a292010-06-23 18:11:51 -07001388 result = new(ctx) ir_dereference_variable(tmp);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001389 }
Ian Romanick251eb752010-03-29 14:15:05 -07001390 break;
Ian Romanick96f9cea2010-03-29 15:33:54 -07001391 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001392
1393 case ast_pre_inc:
Eric Anholt76ea56c2010-03-26 12:16:54 -07001394 case ast_pre_dec: {
1395 op[0] = this->subexpressions[0]->hir(instructions, state);
1396 if (op[0]->type->base_type == GLSL_TYPE_FLOAT)
Carl Worth1660a292010-06-23 18:11:51 -07001397 op[1] = new(ctx) ir_constant(1.0f);
Eric Anholt76ea56c2010-03-26 12:16:54 -07001398 else
Carl Worth1660a292010-06-23 18:11:51 -07001399 op[1] = new(ctx) ir_constant(1);
Eric Anholt76ea56c2010-03-26 12:16:54 -07001400
Eric Anholta13bb142010-03-31 16:38:11 -10001401 type = arithmetic_result_type(op[0], op[1], false, state, & loc);
Eric Anholt76ea56c2010-03-26 12:16:54 -07001402
Ian Romanick768b55a2010-08-13 16:46:43 -07001403 ir_rvalue *temp_rhs;
Carl Worth1660a292010-06-23 18:11:51 -07001404 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1405 op[0], op[1]);
Eric Anholt76ea56c2010-03-26 12:16:54 -07001406
Eric Anholt3e24ef62010-06-23 12:40:17 -07001407 result = do_assignment(instructions, state,
Eric Anholt8273bd42010-08-04 12:34:56 -07001408 op[0]->clone(ctx, NULL), temp_rhs,
Eric Anholt76ea56c2010-03-26 12:16:54 -07001409 this->subexpressions[0]->get_location());
1410 type = result->type;
1411 error_emitted = op[0]->type->is_error();
1412 break;
1413 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001414
1415 case ast_post_inc:
Eric Anholtde38f0e2010-03-26 12:14:54 -07001416 case ast_post_dec: {
1417 op[0] = this->subexpressions[0]->hir(instructions, state);
1418 if (op[0]->type->base_type == GLSL_TYPE_FLOAT)
Carl Worth1660a292010-06-23 18:11:51 -07001419 op[1] = new(ctx) ir_constant(1.0f);
Eric Anholtde38f0e2010-03-26 12:14:54 -07001420 else
Carl Worth1660a292010-06-23 18:11:51 -07001421 op[1] = new(ctx) ir_constant(1);
Eric Anholtde38f0e2010-03-26 12:14:54 -07001422
1423 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1424
Eric Anholta13bb142010-03-31 16:38:11 -10001425 type = arithmetic_result_type(op[0], op[1], false, state, & loc);
Eric Anholtde38f0e2010-03-26 12:14:54 -07001426
Ian Romanick768b55a2010-08-13 16:46:43 -07001427 ir_rvalue *temp_rhs;
Carl Worth1660a292010-06-23 18:11:51 -07001428 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1429 op[0], op[1]);
Eric Anholtde38f0e2010-03-26 12:14:54 -07001430
1431 /* Get a temporary of a copy of the lvalue before it's modified.
1432 * This may get thrown away later.
1433 */
Eric Anholt8273bd42010-08-04 12:34:56 -07001434 result = get_lvalue_copy(instructions, op[0]->clone(ctx, NULL));
Eric Anholtde38f0e2010-03-26 12:14:54 -07001435
Eric Anholt3e24ef62010-06-23 12:40:17 -07001436 (void)do_assignment(instructions, state,
Eric Anholt8273bd42010-08-04 12:34:56 -07001437 op[0]->clone(ctx, NULL), temp_rhs,
Eric Anholtde38f0e2010-03-26 12:14:54 -07001438 this->subexpressions[0]->get_location());
1439
1440 type = result->type;
1441 error_emitted = op[0]->type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001442 break;
Eric Anholtde38f0e2010-03-26 12:14:54 -07001443 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001444
1445 case ast_field_selection:
Ian Romanick18238de2010-03-01 13:49:10 -08001446 result = _mesa_ast_field_selection_to_hir(this, instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001447 type = result->type;
1448 break;
1449
Ian Romanick27e3cf82010-04-01 18:03:59 -07001450 case ast_array_index: {
1451 YYLTYPE index_loc = subexpressions[1]->get_location();
1452
1453 op[0] = subexpressions[0]->hir(instructions, state);
1454 op[1] = subexpressions[1]->hir(instructions, state);
1455
1456 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1457
Ian Romanicka9159f92010-05-26 15:08:11 -07001458 ir_rvalue *const array = op[0];
Ian Romanickb8a21cc2010-04-01 18:31:11 -07001459
Carl Worth1660a292010-06-23 18:11:51 -07001460 result = new(ctx) ir_dereference_array(op[0], op[1]);
Ian Romanickb8a21cc2010-04-01 18:31:11 -07001461
1462 /* Do not use op[0] after this point. Use array.
1463 */
1464 op[0] = NULL;
1465
Ian Romanick27e3cf82010-04-01 18:03:59 -07001466
1467 if (error_emitted)
1468 break;
1469
Ian Romanick63038e12010-04-05 13:16:00 -07001470 if (!array->type->is_array()
1471 && !array->type->is_matrix()
1472 && !array->type->is_vector()) {
Ian Romanick27e3cf82010-04-01 18:03:59 -07001473 _mesa_glsl_error(& index_loc, state,
Ian Romanick63038e12010-04-05 13:16:00 -07001474 "cannot dereference non-array / non-matrix / "
1475 "non-vector");
Ian Romanick27e3cf82010-04-01 18:03:59 -07001476 error_emitted = true;
1477 }
1478
1479 if (!op[1]->type->is_integer()) {
1480 _mesa_glsl_error(& index_loc, state,
1481 "array index must be integer type");
1482 error_emitted = true;
1483 } else if (!op[1]->type->is_scalar()) {
1484 _mesa_glsl_error(& index_loc, state,
1485 "array index must be scalar");
1486 error_emitted = true;
1487 }
1488
1489 /* If the array index is a constant expression and the array has a
1490 * declared size, ensure that the access is in-bounds. If the array
1491 * index is not a constant expression, ensure that the array has a
1492 * declared size.
1493 */
1494 ir_constant *const const_index = op[1]->constant_expression_value();
1495 if (const_index != NULL) {
1496 const int idx = const_index->value.i[0];
Ian Romanick63038e12010-04-05 13:16:00 -07001497 const char *type_name;
1498 unsigned bound = 0;
1499
1500 if (array->type->is_matrix()) {
1501 type_name = "matrix";
1502 } else if (array->type->is_vector()) {
1503 type_name = "vector";
1504 } else {
1505 type_name = "array";
1506 }
Ian Romanick27e3cf82010-04-01 18:03:59 -07001507
1508 /* From page 24 (page 30 of the PDF) of the GLSL 1.50 spec:
1509 *
1510 * "It is illegal to declare an array with a size, and then
1511 * later (in the same shader) index the same array with an
1512 * integral constant expression greater than or equal to the
1513 * declared size. It is also illegal to index an array with a
1514 * negative constant expression."
1515 */
Ian Romanick63038e12010-04-05 13:16:00 -07001516 if (array->type->is_matrix()) {
1517 if (array->type->row_type()->vector_elements <= idx) {
1518 bound = array->type->row_type()->vector_elements;
1519 }
1520 } else if (array->type->is_vector()) {
1521 if (array->type->vector_elements <= idx) {
1522 bound = array->type->vector_elements;
1523 }
1524 } else {
1525 if ((array->type->array_size() > 0)
1526 && (array->type->array_size() <= idx)) {
1527 bound = array->type->array_size();
1528 }
1529 }
1530
1531 if (bound > 0) {
1532 _mesa_glsl_error(& loc, state, "%s index must be < %u",
1533 type_name, bound);
1534 error_emitted = true;
1535 } else if (idx < 0) {
1536 _mesa_glsl_error(& loc, state, "%s index must be >= 0",
1537 type_name);
Ian Romanick27e3cf82010-04-01 18:03:59 -07001538 error_emitted = true;
1539 }
1540
Ian Romanick63038e12010-04-05 13:16:00 -07001541 if (array->type->is_array()) {
Ian Romanicka9159f92010-05-26 15:08:11 -07001542 /* If the array is a variable dereference, it dereferences the
1543 * whole array, by definition. Use this to get the variable.
1544 *
1545 * FINISHME: Should some methods for getting / setting / testing
1546 * FINISHME: array access limits be added to ir_dereference?
1547 */
1548 ir_variable *const v = array->whole_variable_referenced();
Ian Romanick63038e12010-04-05 13:16:00 -07001549 if ((v != NULL) && (unsigned(idx) > v->max_array_access))
1550 v->max_array_access = idx;
Ian Romanick27e3cf82010-04-01 18:03:59 -07001551 }
Kenneth Graunke2b7c42b2010-07-16 18:28:44 -07001552 } else if (array->type->array_size() == 0) {
1553 _mesa_glsl_error(&loc, state, "unsized array index must be constant");
Eric Anholta721abf2010-08-23 10:32:01 -07001554 } else {
1555 if (array->type->is_array()) {
Aras Pranckevicius5226f8c2010-08-25 22:42:13 +03001556 /* whole_variable_referenced can return NULL if the array is a
1557 * member of a structure. In this case it is safe to not update
1558 * the max_array_access field because it is never used for fields
1559 * of structures.
1560 */
Eric Anholta721abf2010-08-23 10:32:01 -07001561 ir_variable *v = array->whole_variable_referenced();
Aras Pranckevicius5226f8c2010-08-25 22:42:13 +03001562 if (v != NULL)
1563 v->max_array_access = array->type->array_size();
Eric Anholta721abf2010-08-23 10:32:01 -07001564 }
Ian Romanick27e3cf82010-04-01 18:03:59 -07001565 }
1566
Chad Versacef0f2ec42010-12-07 10:35:36 -08001567 /* From section 4.1.7 of the GLSL 1.30 spec:
1568 * "Samplers aggregated into arrays within a shader (using square
1569 * brackets [ ]) can only be indexed with integral constant
1570 * expressions [...]."
1571 */
1572 if (array->type->is_array() &&
1573 array->type->element_type()->is_sampler() &&
1574 const_index == NULL) {
1575
1576 _mesa_glsl_error(&loc, state, "sampler arrays can only be indexed "
1577 "with constant expressions");
1578 error_emitted = true;
1579 }
1580
Ian Romanick27e3cf82010-04-01 18:03:59 -07001581 if (error_emitted)
1582 result->type = glsl_type::error_type;
1583
1584 type = result->type;
Ian Romanicka87ac252010-02-22 13:19:34 -08001585 break;
Ian Romanick27e3cf82010-04-01 18:03:59 -07001586 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001587
1588 case ast_function_call:
Ian Romanick7cfddf12010-03-10 13:26:52 -08001589 /* Should *NEVER* get here. ast_function_call should always be handled
1590 * by ast_function_expression::hir.
Ian Romanicka87ac252010-02-22 13:19:34 -08001591 */
Ian Romanick7cfddf12010-03-10 13:26:52 -08001592 assert(0);
Ian Romanicka87ac252010-02-22 13:19:34 -08001593 break;
1594
1595 case ast_identifier: {
1596 /* ast_identifier can appear several places in a full abstract syntax
1597 * tree. This particular use must be at location specified in the grammar
1598 * as 'variable_identifier'.
1599 */
Ian Romanick8bde4ce2010-03-19 11:57:24 -07001600 ir_variable *var =
1601 state->symbols->get_variable(this->primary_expression.identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08001602
Carl Worth1660a292010-06-23 18:11:51 -07001603 result = new(ctx) ir_dereference_variable(var);
Ian Romanicka87ac252010-02-22 13:19:34 -08001604
1605 if (var != NULL) {
1606 type = result->type;
1607 } else {
Ian Romanick71d0bbf2010-03-23 13:21:19 -07001608 _mesa_glsl_error(& loc, state, "`%s' undeclared",
Ian Romanick18238de2010-03-01 13:49:10 -08001609 this->primary_expression.identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08001610
1611 error_emitted = true;
1612 }
1613 break;
1614 }
1615
1616 case ast_int_constant:
Ian Romanick0471e8b2010-03-26 14:33:41 -07001617 type = glsl_type::int_type;
Carl Worth1660a292010-06-23 18:11:51 -07001618 result = new(ctx) ir_constant(this->primary_expression.int_constant);
Ian Romanicka87ac252010-02-22 13:19:34 -08001619 break;
1620
1621 case ast_uint_constant:
Ian Romanick0471e8b2010-03-26 14:33:41 -07001622 type = glsl_type::uint_type;
Carl Worth1660a292010-06-23 18:11:51 -07001623 result = new(ctx) ir_constant(this->primary_expression.uint_constant);
Ian Romanicka87ac252010-02-22 13:19:34 -08001624 break;
1625
1626 case ast_float_constant:
Ian Romanick0471e8b2010-03-26 14:33:41 -07001627 type = glsl_type::float_type;
Carl Worth1660a292010-06-23 18:11:51 -07001628 result = new(ctx) ir_constant(this->primary_expression.float_constant);
Ian Romanicka87ac252010-02-22 13:19:34 -08001629 break;
1630
1631 case ast_bool_constant:
Ian Romanick0471e8b2010-03-26 14:33:41 -07001632 type = glsl_type::bool_type;
Carl Worth1660a292010-06-23 18:11:51 -07001633 result = new(ctx) ir_constant(bool(this->primary_expression.bool_constant));
Ian Romanicka87ac252010-02-22 13:19:34 -08001634 break;
1635
1636 case ast_sequence: {
Ian Romanicka87ac252010-02-22 13:19:34 -08001637 /* It should not be possible to generate a sequence in the AST without
1638 * any expressions in it.
1639 */
Ian Romanick304ea902010-05-10 11:17:53 -07001640 assert(!this->expressions.is_empty());
Ian Romanicka87ac252010-02-22 13:19:34 -08001641
1642 /* The r-value of a sequence is the last expression in the sequence. If
1643 * the other expressions in the sequence do not have side-effects (and
1644 * therefore add instructions to the instruction list), they get dropped
1645 * on the floor.
1646 */
Ian Romanick2b97dc62010-05-10 17:42:05 -07001647 foreach_list_typed (ast_node, ast, link, &this->expressions)
Ian Romanick304ea902010-05-10 11:17:53 -07001648 result = ast->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001649
1650 type = result->type;
1651
1652 /* Any errors should have already been emitted in the loop above.
1653 */
1654 error_emitted = true;
1655 break;
1656 }
1657 }
1658
Ian Romanickcef3bae2010-03-26 14:41:32 -07001659 if (type->is_error() && !error_emitted)
Ian Romanick71d0bbf2010-03-23 13:21:19 -07001660 _mesa_glsl_error(& loc, state, "type mismatch");
Ian Romanicka87ac252010-02-22 13:19:34 -08001661
1662 return result;
1663}
1664
1665
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07001666ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08001667ast_expression_statement::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08001668 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08001669{
Ian Romanicka87ac252010-02-22 13:19:34 -08001670 /* It is possible to have expression statements that don't have an
1671 * expression. This is the solitary semicolon:
1672 *
1673 * for (i = 0; i < 5; i++)
1674 * ;
1675 *
1676 * In this case the expression will be NULL. Test for NULL and don't do
1677 * anything in that case.
1678 */
Ian Romanick18238de2010-03-01 13:49:10 -08001679 if (expression != NULL)
1680 expression->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001681
1682 /* Statements do not have r-values.
1683 */
1684 return NULL;
1685}
1686
1687
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07001688ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08001689ast_compound_statement::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08001690 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08001691{
Ian Romanick18238de2010-03-01 13:49:10 -08001692 if (new_scope)
Ian Romanick8bde4ce2010-03-19 11:57:24 -07001693 state->symbols->push_scope();
Ian Romanicka87ac252010-02-22 13:19:34 -08001694
Ian Romanick2b97dc62010-05-10 17:42:05 -07001695 foreach_list_typed (ast_node, ast, link, &this->statements)
Ian Romanick304ea902010-05-10 11:17:53 -07001696 ast->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001697
Ian Romanick18238de2010-03-01 13:49:10 -08001698 if (new_scope)
Ian Romanick8bde4ce2010-03-19 11:57:24 -07001699 state->symbols->pop_scope();
Ian Romanicka87ac252010-02-22 13:19:34 -08001700
1701 /* Compound statements do not have r-values.
1702 */
1703 return NULL;
1704}
1705
1706
Ian Romanick28009cd2010-03-30 16:59:27 -07001707static const glsl_type *
Kenneth Graunked8e34e22010-08-07 02:56:01 -07001708process_array_type(YYLTYPE *loc, const glsl_type *base, ast_node *array_size,
Ian Romanick28009cd2010-03-30 16:59:27 -07001709 struct _mesa_glsl_parse_state *state)
1710{
1711 unsigned length = 0;
1712
1713 /* FINISHME: Reject delcarations of multidimensional arrays. */
1714
1715 if (array_size != NULL) {
1716 exec_list dummy_instructions;
1717 ir_rvalue *const ir = array_size->hir(& dummy_instructions, state);
1718 YYLTYPE loc = array_size->get_location();
1719
1720 /* FINISHME: Verify that the grammar forbids side-effects in array
1721 * FINISHME: sizes. i.e., 'vec4 [x = 12] data'
1722 */
1723 assert(dummy_instructions.is_empty());
1724
1725 if (ir != NULL) {
1726 if (!ir->type->is_integer()) {
1727 _mesa_glsl_error(& loc, state, "array size must be integer type");
1728 } else if (!ir->type->is_scalar()) {
1729 _mesa_glsl_error(& loc, state, "array size must be scalar type");
1730 } else {
1731 ir_constant *const size = ir->constant_expression_value();
1732
1733 if (size == NULL) {
1734 _mesa_glsl_error(& loc, state, "array size must be a "
1735 "constant valued expression");
1736 } else if (size->value.i[0] <= 0) {
1737 _mesa_glsl_error(& loc, state, "array size must be > 0");
1738 } else {
1739 assert(size->type == ir->type);
1740 length = size->value.u[0];
1741 }
1742 }
1743 }
Kenneth Graunked8e34e22010-08-07 02:56:01 -07001744 } else if (state->es_shader) {
1745 /* Section 10.17 of the GLSL ES 1.00 specification states that unsized
1746 * array declarations have been removed from the language.
1747 */
1748 _mesa_glsl_error(loc, state, "unsized array declarations are not "
1749 "allowed in GLSL ES 1.00.");
Ian Romanick28009cd2010-03-30 16:59:27 -07001750 }
1751
Ian Romanickf38d15b2010-07-20 15:33:40 -07001752 return glsl_type::get_array_instance(base, length);
Ian Romanick28009cd2010-03-30 16:59:27 -07001753}
1754
1755
Ian Romanickd612a122010-03-31 16:22:06 -07001756const glsl_type *
1757ast_type_specifier::glsl_type(const char **name,
1758 struct _mesa_glsl_parse_state *state) const
Ian Romanicka87ac252010-02-22 13:19:34 -08001759{
Ian Romanickd612a122010-03-31 16:22:06 -07001760 const struct glsl_type *type;
Ian Romanicka87ac252010-02-22 13:19:34 -08001761
Kenneth Graunkeca92ae22010-09-18 11:11:09 +02001762 type = state->symbols->get_type(this->type_name);
1763 *name = this->type_name;
Ian Romanicka87ac252010-02-22 13:19:34 -08001764
Kenneth Graunkeca92ae22010-09-18 11:11:09 +02001765 if (this->is_array) {
1766 YYLTYPE loc = this->get_location();
1767 type = process_array_type(&loc, type, this->array_size, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001768 }
1769
1770 return type;
1771}
1772
1773
1774static void
1775apply_type_qualifier_to_variable(const struct ast_type_qualifier *qual,
Ian Romanick768b55a2010-08-13 16:46:43 -07001776 ir_variable *var,
Eric Anholt2e063f12010-03-28 00:56:22 -07001777 struct _mesa_glsl_parse_state *state,
1778 YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -08001779{
Ian Romanicke24d35a2010-10-05 16:38:47 -07001780 if (qual->flags.q.invariant)
Ian Romanicka87ac252010-02-22 13:19:34 -08001781 var->invariant = 1;
1782
1783 /* FINISHME: Mark 'in' variables at global scope as read-only. */
Ian Romanicke24d35a2010-10-05 16:38:47 -07001784 if (qual->flags.q.constant || qual->flags.q.attribute
1785 || qual->flags.q.uniform
1786 || (qual->flags.q.varying && (state->target == fragment_shader)))
Ian Romanicka87ac252010-02-22 13:19:34 -08001787 var->read_only = 1;
1788
Ian Romanicke24d35a2010-10-05 16:38:47 -07001789 if (qual->flags.q.centroid)
Ian Romanicka87ac252010-02-22 13:19:34 -08001790 var->centroid = 1;
1791
Ian Romanicke24d35a2010-10-05 16:38:47 -07001792 if (qual->flags.q.attribute && state->target != vertex_shader) {
Eric Anholt2e063f12010-03-28 00:56:22 -07001793 var->type = glsl_type::error_type;
1794 _mesa_glsl_error(loc, state,
1795 "`attribute' variables may not be declared in the "
Ian Romanickae4c4c02010-04-07 16:41:40 -07001796 "%s shader",
1797 _mesa_glsl_shader_target_name(state->target));
Eric Anholt2e063f12010-03-28 00:56:22 -07001798 }
1799
Eric Anholt90b78252010-03-31 21:21:20 -10001800 /* From page 25 (page 31 of the PDF) of the GLSL 1.10 spec:
1801 *
1802 * "The varying qualifier can be used only with the data types
1803 * float, vec2, vec3, vec4, mat2, mat3, and mat4, or arrays of
1804 * these."
1805 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07001806 if (qual->flags.q.varying) {
Eric Anholt0ca17192010-05-19 13:38:15 -07001807 const glsl_type *non_array_type;
1808
1809 if (var->type && var->type->is_array())
1810 non_array_type = var->type->fields.array;
1811 else
1812 non_array_type = var->type;
1813
1814 if (non_array_type && non_array_type->base_type != GLSL_TYPE_FLOAT) {
1815 var->type = glsl_type::error_type;
1816 _mesa_glsl_error(loc, state,
1817 "varying variables must be of base type float");
1818 }
Eric Anholt90b78252010-03-31 21:21:20 -10001819 }
1820
Ian Romanick7e2aa912010-07-19 17:12:42 -07001821 /* If there is no qualifier that changes the mode of the variable, leave
1822 * the setting alone.
1823 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07001824 if (qual->flags.q.in && qual->flags.q.out)
Ian Romanicka87ac252010-02-22 13:19:34 -08001825 var->mode = ir_var_inout;
Ian Romanicke24d35a2010-10-05 16:38:47 -07001826 else if (qual->flags.q.attribute || qual->flags.q.in
1827 || (qual->flags.q.varying && (state->target == fragment_shader)))
Ian Romanicka87ac252010-02-22 13:19:34 -08001828 var->mode = ir_var_in;
Ian Romanicke24d35a2010-10-05 16:38:47 -07001829 else if (qual->flags.q.out
1830 || (qual->flags.q.varying && (state->target == vertex_shader)))
Ian Romanicka87ac252010-02-22 13:19:34 -08001831 var->mode = ir_var_out;
Ian Romanicke24d35a2010-10-05 16:38:47 -07001832 else if (qual->flags.q.uniform)
Ian Romanicka87ac252010-02-22 13:19:34 -08001833 var->mode = ir_var_uniform;
Ian Romanicka87ac252010-02-22 13:19:34 -08001834
Ian Romanicke24d35a2010-10-05 16:38:47 -07001835 if (qual->flags.q.flat)
Ian Romanicka87ac252010-02-22 13:19:34 -08001836 var->interpolation = ir_var_flat;
Ian Romanicke24d35a2010-10-05 16:38:47 -07001837 else if (qual->flags.q.noperspective)
Ian Romanicka87ac252010-02-22 13:19:34 -08001838 var->interpolation = ir_var_noperspective;
1839 else
1840 var->interpolation = ir_var_smooth;
Ian Romanick9d975372010-04-02 17:17:47 -07001841
Ian Romanicke24d35a2010-10-05 16:38:47 -07001842 var->pixel_center_integer = qual->flags.q.pixel_center_integer;
1843 var->origin_upper_left = qual->flags.q.origin_upper_left;
1844 if ((qual->flags.q.origin_upper_left || qual->flags.q.pixel_center_integer)
Ian Romanick8d8469e2010-06-30 17:48:09 -07001845 && (strcmp(var->name, "gl_FragCoord") != 0)) {
Ian Romanicke24d35a2010-10-05 16:38:47 -07001846 const char *const qual_string = (qual->flags.q.origin_upper_left)
Ian Romanick8d8469e2010-06-30 17:48:09 -07001847 ? "origin_upper_left" : "pixel_center_integer";
1848
1849 _mesa_glsl_error(loc, state,
1850 "layout qualifier `%s' can only be applied to "
1851 "fragment shader input `gl_FragCoord'",
1852 qual_string);
1853 }
1854
Ian Romanickeee68d32010-10-07 15:13:38 -07001855 if (qual->flags.q.explicit_location) {
1856 const bool global_scope = (state->current_function == NULL);
1857 bool fail = false;
1858 const char *string = "";
1859
1860 /* In the vertex shader only shader inputs can be given explicit
1861 * locations.
1862 *
1863 * In the fragment shader only shader outputs can be given explicit
1864 * locations.
1865 */
1866 switch (state->target) {
1867 case vertex_shader:
1868 if (!global_scope || (var->mode != ir_var_in)) {
1869 fail = true;
1870 string = "input";
1871 }
1872 break;
1873
1874 case geometry_shader:
1875 _mesa_glsl_error(loc, state,
1876 "geometry shader variables cannot be given "
1877 "explicit locations\n");
1878 break;
1879
1880 case fragment_shader:
1881 if (!global_scope || (var->mode != ir_var_in)) {
1882 fail = true;
1883 string = "output";
1884 }
1885 break;
Kenneth Graunkea75da2c2010-10-20 14:59:40 -07001886 };
Ian Romanickeee68d32010-10-07 15:13:38 -07001887
1888 if (fail) {
1889 _mesa_glsl_error(loc, state,
1890 "only %s shader %s variables can be given an "
1891 "explicit location\n",
1892 _mesa_glsl_shader_target_name(state->target),
1893 string);
1894 } else {
1895 var->explicit_location = true;
Ian Romanick68a4fc92010-10-07 17:21:22 -07001896
1897 /* This bit of silliness is needed because invalid explicit locations
1898 * are supposed to be flagged during linking. Small negative values
1899 * biased by VERT_ATTRIB_GENERIC0 or FRAG_RESULT_DATA0 could alias
1900 * built-in values (e.g., -16+VERT_ATTRIB_GENERIC0 = VERT_ATTRIB_POS).
1901 * The linker needs to be able to differentiate these cases. This
1902 * ensures that negative values stay negative.
1903 */
1904 if (qual->location >= 0) {
1905 var->location = (state->target == vertex_shader)
1906 ? (qual->location + VERT_ATTRIB_GENERIC0)
1907 : (qual->location + FRAG_RESULT_DATA0);
1908 } else {
1909 var->location = qual->location;
1910 }
Ian Romanickeee68d32010-10-07 15:13:38 -07001911 }
1912 }
1913
Kenneth Graunke10eaa8b2010-09-07 02:59:38 -07001914 if (var->type->is_array() && state->language_version != 110) {
Ian Romanick9d975372010-04-02 17:17:47 -07001915 var->array_lvalue = true;
1916 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001917}
1918
1919
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07001920ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08001921ast_declarator_list::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08001922 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08001923{
Kenneth Graunke953ff122010-06-25 13:14:37 -07001924 void *ctx = state;
Ian Romanicka87ac252010-02-22 13:19:34 -08001925 const struct glsl_type *decl_type;
1926 const char *type_name = NULL;
Eric Anholt85584592010-04-14 15:38:52 -07001927 ir_rvalue *result = NULL;
Ian Romanickc824e352010-04-23 15:55:19 -07001928 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08001929
Ian Romanick6f0823d2010-07-01 20:39:08 -07001930 /* From page 46 (page 52 of the PDF) of the GLSL 1.50 spec:
1931 *
1932 * "To ensure that a particular output variable is invariant, it is
1933 * necessary to use the invariant qualifier. It can either be used to
1934 * qualify a previously declared variable as being invariant
1935 *
1936 * invariant gl_Position; // make existing gl_Position be invariant"
1937 *
1938 * In these cases the parser will set the 'invariant' flag in the declarator
1939 * list, and the type will be NULL.
1940 */
1941 if (this->invariant) {
1942 assert(this->type == NULL);
1943
1944 if (state->current_function != NULL) {
1945 _mesa_glsl_error(& loc, state,
1946 "All uses of `invariant' keyword must be at global "
1947 "scope\n");
1948 }
1949
1950 foreach_list_typed (ast_declaration, decl, link, &this->declarations) {
1951 assert(!decl->is_array);
1952 assert(decl->array_size == NULL);
1953 assert(decl->initializer == NULL);
1954
1955 ir_variable *const earlier =
1956 state->symbols->get_variable(decl->identifier);
1957 if (earlier == NULL) {
1958 _mesa_glsl_error(& loc, state,
1959 "Undeclared variable `%s' cannot be marked "
1960 "invariant\n", decl->identifier);
1961 } else if ((state->target == vertex_shader)
1962 && (earlier->mode != ir_var_out)) {
1963 _mesa_glsl_error(& loc, state,
1964 "`%s' cannot be marked invariant, vertex shader "
1965 "outputs only\n", decl->identifier);
1966 } else if ((state->target == fragment_shader)
1967 && (earlier->mode != ir_var_in)) {
1968 _mesa_glsl_error(& loc, state,
1969 "`%s' cannot be marked invariant, fragment shader "
1970 "inputs only\n", decl->identifier);
1971 } else {
1972 earlier->invariant = true;
1973 }
1974 }
1975
1976 /* Invariant redeclarations do not have r-values.
1977 */
1978 return NULL;
1979 }
1980
1981 assert(this->type != NULL);
1982 assert(!this->invariant);
1983
Ian Romanick3455ce62010-04-19 15:13:15 -07001984 /* The type specifier may contain a structure definition. Process that
1985 * before any of the variable declarations.
1986 */
1987 (void) this->type->specifier->hir(instructions, state);
1988
Ian Romanickd612a122010-03-31 16:22:06 -07001989 decl_type = this->type->specifier->glsl_type(& type_name, state);
Ian Romanick304ea902010-05-10 11:17:53 -07001990 if (this->declarations.is_empty()) {
Ian Romanick6f0823d2010-07-01 20:39:08 -07001991 /* The only valid case where the declaration list can be empty is when
1992 * the declaration is setting the default precision of a built-in type
1993 * (e.g., 'precision highp vec4;').
Ian Romanickc824e352010-04-23 15:55:19 -07001994 */
1995
Ian Romanick6f0823d2010-07-01 20:39:08 -07001996 if (decl_type != NULL) {
Ian Romanickc824e352010-04-23 15:55:19 -07001997 } else {
1998 _mesa_glsl_error(& loc, state, "incomplete declaration");
1999 }
2000 }
Ian Romanicka87ac252010-02-22 13:19:34 -08002001
Ian Romanick2b97dc62010-05-10 17:42:05 -07002002 foreach_list_typed (ast_declaration, decl, link, &this->declarations) {
Ian Romanicka87ac252010-02-22 13:19:34 -08002003 const struct glsl_type *var_type;
Ian Romanick768b55a2010-08-13 16:46:43 -07002004 ir_variable *var;
Ian Romanicka87ac252010-02-22 13:19:34 -08002005
2006 /* FINISHME: Emit a warning if a variable declaration shadows a
2007 * FINISHME: declaration at a higher scope.
2008 */
2009
Ian Romanickcec65a62010-03-23 12:28:44 -07002010 if ((decl_type == NULL) || decl_type->is_void()) {
Ian Romanicka87ac252010-02-22 13:19:34 -08002011 if (type_name != NULL) {
2012 _mesa_glsl_error(& loc, state,
2013 "invalid type `%s' in declaration of `%s'",
2014 type_name, decl->identifier);
2015 } else {
2016 _mesa_glsl_error(& loc, state,
2017 "invalid type in declaration of `%s'",
2018 decl->identifier);
2019 }
2020 continue;
2021 }
2022
2023 if (decl->is_array) {
Kenneth Graunked8e34e22010-08-07 02:56:01 -07002024 var_type = process_array_type(&loc, decl_type, decl->array_size,
2025 state);
Ian Romanicka87ac252010-02-22 13:19:34 -08002026 } else {
2027 var_type = decl_type;
2028 }
2029
Ian Romanick7e2aa912010-07-19 17:12:42 -07002030 var = new(ctx) ir_variable(var_type, decl->identifier, ir_var_auto);
Ian Romanicka87ac252010-02-22 13:19:34 -08002031
Eric Anholt3f151502010-04-02 01:53:57 -10002032 /* From page 22 (page 28 of the PDF) of the GLSL 1.10 specification;
2033 *
2034 * "Global variables can only use the qualifiers const,
2035 * attribute, uni form, or varying. Only one may be
2036 * specified.
2037 *
2038 * Local variables can only use the qualifier const."
2039 *
2040 * This is relaxed in GLSL 1.30.
2041 */
2042 if (state->language_version < 120) {
Ian Romanicke24d35a2010-10-05 16:38:47 -07002043 if (this->type->qualifier.flags.q.out) {
Eric Anholt3f151502010-04-02 01:53:57 -10002044 _mesa_glsl_error(& loc, state,
2045 "`out' qualifier in declaration of `%s' "
2046 "only valid for function parameters in GLSL 1.10.",
2047 decl->identifier);
2048 }
Ian Romanicke24d35a2010-10-05 16:38:47 -07002049 if (this->type->qualifier.flags.q.in) {
Eric Anholt3f151502010-04-02 01:53:57 -10002050 _mesa_glsl_error(& loc, state,
2051 "`in' qualifier in declaration of `%s' "
2052 "only valid for function parameters in GLSL 1.10.",
2053 decl->identifier);
2054 }
2055 /* FINISHME: Test for other invalid qualifiers. */
2056 }
2057
Eric Anholt2e063f12010-03-28 00:56:22 -07002058 apply_type_qualifier_to_variable(& this->type->qualifier, var, state,
2059 & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08002060
Ian Romanicke24d35a2010-10-05 16:38:47 -07002061 if (this->type->qualifier.flags.q.invariant) {
Eric Anholt046bef22010-08-04 20:33:57 -07002062 if ((state->target == vertex_shader) && !(var->mode == ir_var_out ||
2063 var->mode == ir_var_inout)) {
2064 /* FINISHME: Note that this doesn't work for invariant on
2065 * a function signature outval
2066 */
Ian Romanick6f0823d2010-07-01 20:39:08 -07002067 _mesa_glsl_error(& loc, state,
2068 "`%s' cannot be marked invariant, vertex shader "
2069 "outputs only\n", var->name);
Eric Anholt046bef22010-08-04 20:33:57 -07002070 } else if ((state->target == fragment_shader) &&
2071 !(var->mode == ir_var_in || var->mode == ir_var_inout)) {
2072 /* FINISHME: Note that this doesn't work for invariant on
2073 * a function signature inval
2074 */
Ian Romanick6f0823d2010-07-01 20:39:08 -07002075 _mesa_glsl_error(& loc, state,
2076 "`%s' cannot be marked invariant, fragment shader "
2077 "inputs only\n", var->name);
2078 }
2079 }
2080
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002081 if (state->current_function != NULL) {
Ian Romanickb168e532010-03-31 12:31:18 -07002082 const char *mode = NULL;
Ian Romanicke0800062010-03-31 13:15:23 -07002083 const char *extra = "";
Ian Romanickb168e532010-03-31 12:31:18 -07002084
Ian Romanicke0800062010-03-31 13:15:23 -07002085 /* There is no need to check for 'inout' here because the parser will
2086 * only allow that in function parameter lists.
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002087 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07002088 if (this->type->qualifier.flags.q.attribute) {
Ian Romanickb168e532010-03-31 12:31:18 -07002089 mode = "attribute";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002090 } else if (this->type->qualifier.flags.q.uniform) {
Ian Romanickb168e532010-03-31 12:31:18 -07002091 mode = "uniform";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002092 } else if (this->type->qualifier.flags.q.varying) {
Ian Romanickb168e532010-03-31 12:31:18 -07002093 mode = "varying";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002094 } else if (this->type->qualifier.flags.q.in) {
Ian Romanicke0800062010-03-31 13:15:23 -07002095 mode = "in";
2096 extra = " or in function parameter list";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002097 } else if (this->type->qualifier.flags.q.out) {
Ian Romanicke0800062010-03-31 13:15:23 -07002098 mode = "out";
2099 extra = " or in function parameter list";
Ian Romanickb168e532010-03-31 12:31:18 -07002100 }
2101
2102 if (mode) {
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002103 _mesa_glsl_error(& loc, state,
Ian Romanickb168e532010-03-31 12:31:18 -07002104 "%s variable `%s' must be declared at "
Ian Romanicke0800062010-03-31 13:15:23 -07002105 "global scope%s",
2106 mode, var->name, extra);
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002107 }
2108 } else if (var->mode == ir_var_in) {
Ian Romanickfb9f5b02010-03-29 17:16:35 -07002109 if (state->target == vertex_shader) {
2110 bool error_emitted = false;
2111
2112 /* From page 31 (page 37 of the PDF) of the GLSL 1.50 spec:
2113 *
2114 * "Vertex shader inputs can only be float, floating-point
2115 * vectors, matrices, signed and unsigned integers and integer
2116 * vectors. Vertex shader inputs can also form arrays of these
2117 * types, but not structures."
2118 *
Ian Romanick2d816202010-03-29 17:40:11 -07002119 * From page 31 (page 27 of the PDF) of the GLSL 1.30 spec:
2120 *
2121 * "Vertex shader inputs can only be float, floating-point
2122 * vectors, matrices, signed and unsigned integers and integer
2123 * vectors. They cannot be arrays or structures."
2124 *
Ian Romanickfb9f5b02010-03-29 17:16:35 -07002125 * From page 23 (page 29 of the PDF) of the GLSL 1.20 spec:
2126 *
2127 * "The attribute qualifier can be used only with float,
2128 * floating-point vectors, and matrices. Attribute variables
2129 * cannot be declared as arrays or structures."
2130 */
2131 const glsl_type *check_type = var->type->is_array()
2132 ? var->type->fields.array : var->type;
2133
2134 switch (check_type->base_type) {
2135 case GLSL_TYPE_FLOAT:
2136 break;
2137 case GLSL_TYPE_UINT:
2138 case GLSL_TYPE_INT:
2139 if (state->language_version > 120)
2140 break;
2141 /* FALLTHROUGH */
2142 default:
2143 _mesa_glsl_error(& loc, state,
2144 "vertex shader input / attribute cannot have "
2145 "type %s`%s'",
2146 var->type->is_array() ? "array of " : "",
2147 check_type->name);
2148 error_emitted = true;
2149 }
2150
Ian Romanick2d816202010-03-29 17:40:11 -07002151 if (!error_emitted && (state->language_version <= 130)
Ian Romanickfb9f5b02010-03-29 17:16:35 -07002152 && var->type->is_array()) {
2153 _mesa_glsl_error(& loc, state,
2154 "vertex shader input / attribute cannot have "
2155 "array type");
2156 error_emitted = true;
2157 }
2158 }
2159 }
2160
Ian Romanicke78e0fa2010-07-07 12:13:34 -07002161 /* Process the initializer and add its instructions to a temporary
2162 * list. This list will be added to the instruction stream (below) after
2163 * the declaration is added. This is done because in some cases (such as
2164 * redeclarations) the declaration may not actually be added to the
2165 * instruction stream.
2166 */
Eric Anholtfa33d0b2010-07-29 13:50:17 -07002167 exec_list initializer_instructions;
Ian Romanick66faec42010-03-27 18:56:53 -07002168 if (decl->initializer != NULL) {
Ian Romanick43de1722010-03-28 17:03:16 -07002169 YYLTYPE initializer_loc = decl->initializer->get_location();
2170
Ian Romanick66faec42010-03-27 18:56:53 -07002171 /* From page 24 (page 30 of the PDF) of the GLSL 1.10 spec:
2172 *
2173 * "All uniform variables are read-only and are initialized either
2174 * directly by an application via API commands, or indirectly by
2175 * OpenGL."
2176 */
2177 if ((state->language_version <= 110)
2178 && (var->mode == ir_var_uniform)) {
Ian Romanick43de1722010-03-28 17:03:16 -07002179 _mesa_glsl_error(& initializer_loc, state,
2180 "cannot initialize uniforms in GLSL 1.10");
2181 }
Ian Romanick19360152010-03-26 18:05:27 -07002182
Ian Romanick43de1722010-03-28 17:03:16 -07002183 if (var->type->is_sampler()) {
2184 _mesa_glsl_error(& initializer_loc, state,
2185 "cannot initialize samplers");
2186 }
2187
2188 if ((var->mode == ir_var_in) && (state->current_function == NULL)) {
2189 _mesa_glsl_error(& initializer_loc, state,
2190 "cannot initialize %s shader input / %s",
Ian Romanickae4c4c02010-04-07 16:41:40 -07002191 _mesa_glsl_shader_target_name(state->target),
Ian Romanick43de1722010-03-28 17:03:16 -07002192 (state->target == vertex_shader)
2193 ? "attribute" : "varying");
Ian Romanick66faec42010-03-27 18:56:53 -07002194 }
2195
Carl Worth1660a292010-06-23 18:11:51 -07002196 ir_dereference *const lhs = new(ctx) ir_dereference_variable(var);
Eric Anholtfa33d0b2010-07-29 13:50:17 -07002197 ir_rvalue *rhs = decl->initializer->hir(&initializer_instructions,
Ian Romanicke78e0fa2010-07-07 12:13:34 -07002198 state);
Ian Romanick66faec42010-03-27 18:56:53 -07002199
Ian Romanickce030882010-06-17 20:09:34 -07002200 /* Calculate the constant value if this is a const or uniform
Eric Anholt307c71b2010-03-31 15:53:26 -10002201 * declaration.
Ian Romanick66faec42010-03-27 18:56:53 -07002202 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07002203 if (this->type->qualifier.flags.q.constant
2204 || this->type->qualifier.flags.q.uniform) {
Kenneth Graunkee1d71852010-07-20 03:53:47 -07002205 ir_rvalue *new_rhs = validate_assignment(state, var->type, rhs);
2206 if (new_rhs != NULL) {
2207 rhs = new_rhs;
Eric Anholte11757b2010-08-23 14:54:06 -07002208
2209 ir_constant *constant_value = rhs->constant_expression_value();
2210 if (!constant_value) {
2211 _mesa_glsl_error(& initializer_loc, state,
2212 "initializer of %s variable `%s' must be a "
2213 "constant expression",
Ian Romanicke24d35a2010-10-05 16:38:47 -07002214 (this->type->qualifier.flags.q.constant)
Eric Anholte11757b2010-08-23 14:54:06 -07002215 ? "const" : "uniform",
2216 decl->identifier);
2217 if (var->type->is_numeric()) {
2218 /* Reduce cascading errors. */
2219 var->constant_value = ir_constant::zero(ctx, var->type);
2220 }
2221 } else {
2222 rhs = constant_value;
2223 var->constant_value = constant_value;
2224 }
Kenneth Graunkee1d71852010-07-20 03:53:47 -07002225 } else {
2226 _mesa_glsl_error(&initializer_loc, state,
2227 "initializer of type %s cannot be assigned to "
2228 "variable of type %s",
2229 rhs->type->name, var->type->name);
Eric Anholte11757b2010-08-23 14:54:06 -07002230 if (var->type->is_numeric()) {
2231 /* Reduce cascading errors. */
2232 var->constant_value = ir_constant::zero(ctx, var->type);
2233 }
Eric Anholt307c71b2010-03-31 15:53:26 -10002234 }
2235 }
Ian Romanick66faec42010-03-27 18:56:53 -07002236
Eric Anholt307c71b2010-03-31 15:53:26 -10002237 if (rhs && !rhs->type->is_error()) {
Eric Anholtac3af372010-03-31 15:44:38 -10002238 bool temp = var->read_only;
Ian Romanicke24d35a2010-10-05 16:38:47 -07002239 if (this->type->qualifier.flags.q.constant)
Eric Anholtac3af372010-03-31 15:44:38 -10002240 var->read_only = false;
Ian Romanickce030882010-06-17 20:09:34 -07002241
Ian Romanickb0fc5102010-12-07 16:27:22 -08002242 /* If the declared variable is an unsized array, it must inherrit
2243 * its full type from the initializer. A declaration such as
2244 *
2245 * uniform float a[] = float[](1.0, 2.0, 3.0, 3.0);
2246 *
2247 * becomes
2248 *
2249 * uniform float a[4] = float[](1.0, 2.0, 3.0, 3.0);
2250 *
2251 * The assignment generated in the if-statement (below) will also
2252 * automatically handle this case for non-uniforms.
2253 *
2254 * If the declared variable is not an array, the types must
2255 * already match exactly. As a result, the type assignment
2256 * here can be done unconditionally.
2257 */
2258 var->type = rhs->type;
2259
Ian Romanickce030882010-06-17 20:09:34 -07002260 /* Never emit code to initialize a uniform.
2261 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07002262 if (!this->type->qualifier.flags.q.uniform)
Eric Anholtfa33d0b2010-07-29 13:50:17 -07002263 result = do_assignment(&initializer_instructions, state,
2264 lhs, rhs,
Ian Romanickce030882010-06-17 20:09:34 -07002265 this->get_location());
Eric Anholtac3af372010-03-31 15:44:38 -10002266 var->read_only = temp;
Ian Romanick66faec42010-03-27 18:56:53 -07002267 }
Ian Romanick19360152010-03-26 18:05:27 -07002268 }
Ian Romanick17d86f42010-03-29 12:59:02 -07002269
Eric Anholt0ed61252010-03-31 09:29:33 -10002270 /* From page 23 (page 29 of the PDF) of the GLSL 1.10 spec:
2271 *
2272 * "It is an error to write to a const variable outside of
2273 * its declaration, so they must be initialized when
2274 * declared."
2275 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07002276 if (this->type->qualifier.flags.q.constant && decl->initializer == NULL) {
Eric Anholt0ed61252010-03-31 09:29:33 -10002277 _mesa_glsl_error(& loc, state,
2278 "const declaration of `%s' must be initialized");
2279 }
2280
Kenneth Graunke5d257462010-08-24 01:45:49 -07002281 /* Check if this declaration is actually a re-declaration, either to
2282 * resize an array or add qualifiers to an existing variable.
Ian Romanick5466b632010-07-01 12:46:55 -07002283 *
Kenneth Graunkea0442852010-08-23 14:52:06 -07002284 * This is allowed for variables in the current scope, or when at
2285 * global scope (for built-ins in the implicit outer scope).
Ian Romanick5466b632010-07-01 12:46:55 -07002286 */
Kenneth Graunke5d257462010-08-24 01:45:49 -07002287 ir_variable *earlier = state->symbols->get_variable(decl->identifier);
Kenneth Graunkea0442852010-08-23 14:52:06 -07002288 if (earlier != NULL && (state->current_function == NULL ||
2289 state->symbols->name_declared_this_scope(decl->identifier))) {
Ian Romanick5466b632010-07-01 12:46:55 -07002290
Kenneth Graunke5d257462010-08-24 01:45:49 -07002291 /* From page 24 (page 30 of the PDF) of the GLSL 1.50 spec,
2292 *
2293 * "It is legal to declare an array without a size and then
2294 * later re-declare the same name as an array of the same
2295 * type and specify a size."
2296 */
2297 if ((earlier->type->array_size() == 0)
Ian Romanick5466b632010-07-01 12:46:55 -07002298 && var->type->is_array()
2299 && (var->type->element_type() == earlier->type->element_type())) {
2300 /* FINISHME: This doesn't match the qualifiers on the two
2301 * FINISHME: declarations. It's not 100% clear whether this is
2302 * FINISHME: required or not.
2303 */
2304
Ian Romanickcd00d5b2010-07-01 13:17:54 -07002305 /* From page 54 (page 60 of the PDF) of the GLSL 1.20 spec:
2306 *
2307 * "The size [of gl_TexCoord] can be at most
2308 * gl_MaxTextureCoords."
Ian Romanickcd00d5b2010-07-01 13:17:54 -07002309 */
Ian Romanick127308b2010-07-01 13:30:50 -07002310 const unsigned size = unsigned(var->type->array_size());
Ian Romanickcd00d5b2010-07-01 13:17:54 -07002311 if ((strcmp("gl_TexCoord", var->name) == 0)
Ian Romanick127308b2010-07-01 13:30:50 -07002312 && (size > state->Const.MaxTextureCoords)) {
Ian Romanickcd00d5b2010-07-01 13:17:54 -07002313 YYLTYPE loc = this->get_location();
2314
2315 _mesa_glsl_error(& loc, state, "`gl_TexCoord' array size cannot "
2316 "be larger than gl_MaxTextureCoords (%u)\n",
Ian Romanick127308b2010-07-01 13:30:50 -07002317 state->Const.MaxTextureCoords);
Ian Romanick12873fa2010-07-01 14:10:19 -07002318 } else if ((size > 0) && (size <= earlier->max_array_access)) {
Ian Romanick5466b632010-07-01 12:46:55 -07002319 YYLTYPE loc = this->get_location();
2320
2321 _mesa_glsl_error(& loc, state, "array size must be > %u due to "
2322 "previous access",
2323 earlier->max_array_access);
2324 }
2325
2326 earlier->type = var->type;
2327 delete var;
2328 var = NULL;
Chad Versace6e006272010-10-23 10:40:40 -07002329 } else if (state->ARB_fragment_coord_conventions_enable
Kenneth Graunke5d257462010-08-24 01:45:49 -07002330 && strcmp(var->name, "gl_FragCoord") == 0
2331 && earlier->type == var->type
2332 && earlier->mode == var->mode) {
Eric Anholt4a962172010-07-28 14:41:51 -07002333 /* Allow redeclaration of gl_FragCoord for ARB_fcc layout
2334 * qualifiers.
2335 */
2336 earlier->origin_upper_left = var->origin_upper_left;
2337 earlier->pixel_center_integer = var->pixel_center_integer;
Ian Romanick5466b632010-07-01 12:46:55 -07002338 } else {
2339 YYLTYPE loc = this->get_location();
Kenneth Graunke5d257462010-08-24 01:45:49 -07002340 _mesa_glsl_error(&loc, state, "`%s' redeclared", decl->identifier);
Ian Romanick5466b632010-07-01 12:46:55 -07002341 }
2342
2343 continue;
2344 }
2345
Kenneth Graunke5d257462010-08-24 01:45:49 -07002346 /* By now, we know it's a new variable declaration (we didn't hit the
2347 * above "continue").
2348 *
2349 * From page 15 (page 21 of the PDF) of the GLSL 1.10 spec,
Ian Romanick5466b632010-07-01 12:46:55 -07002350 *
2351 * "Identifiers starting with "gl_" are reserved for use by
2352 * OpenGL, and may not be declared in a shader as either a
2353 * variable or a function."
2354 */
Ian Romanickde3b40d2010-08-26 09:24:58 -07002355 if (strncmp(decl->identifier, "gl_", 3) == 0)
Ian Romanick5466b632010-07-01 12:46:55 -07002356 _mesa_glsl_error(& loc, state,
2357 "identifier `%s' uses reserved `gl_' prefix",
2358 decl->identifier);
Ian Romanick5466b632010-07-01 12:46:55 -07002359
Kenneth Graunke5d257462010-08-24 01:45:49 -07002360 /* Add the variable to the symbol table. Note that the initializer's
2361 * IR was already processed earlier (though it hasn't been emitted yet),
2362 * without the variable in scope.
2363 *
2364 * This differs from most C-like languages, but it follows the GLSL
2365 * specification. From page 28 (page 34 of the PDF) of the GLSL 1.50
2366 * spec:
2367 *
2368 * "Within a declaration, the scope of a name starts immediately
2369 * after the initializer if present or immediately after the name
2370 * being declared if not."
2371 */
Eric Anholt001eee52010-11-05 06:11:24 -07002372 if (!state->symbols->add_variable(var)) {
Kenneth Graunke5d257462010-08-24 01:45:49 -07002373 YYLTYPE loc = this->get_location();
2374 _mesa_glsl_error(&loc, state, "name `%s' already taken in the "
2375 "current scope", decl->identifier);
2376 continue;
2377 }
2378
Eric Anholt80482262010-08-05 14:41:09 -07002379 /* Push the variable declaration to the top. It means that all
2380 * the variable declarations will appear in a funny
2381 * last-to-first order, but otherwise we run into trouble if a
2382 * function is prototyped, a global var is decled, then the
2383 * function is defined with usage of the global var. See
2384 * glslparsertest's CorrectModule.frag.
2385 */
2386 instructions->push_head(var);
Eric Anholtfa33d0b2010-07-29 13:50:17 -07002387 instructions->append_list(&initializer_instructions);
Ian Romanicka87ac252010-02-22 13:19:34 -08002388 }
2389
Eric Anholt85584592010-04-14 15:38:52 -07002390
2391 /* Generally, variable declarations do not have r-values. However,
2392 * one is used for the declaration in
2393 *
2394 * while (bool b = some_condition()) {
2395 * ...
2396 * }
2397 *
2398 * so we return the rvalue from the last seen declaration here.
Ian Romanicka87ac252010-02-22 13:19:34 -08002399 */
Eric Anholt85584592010-04-14 15:38:52 -07002400 return result;
Ian Romanicka87ac252010-02-22 13:19:34 -08002401}
2402
2403
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07002404ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08002405ast_parameter_declarator::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08002406 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08002407{
Kenneth Graunke953ff122010-06-25 13:14:37 -07002408 void *ctx = state;
Ian Romanicka87ac252010-02-22 13:19:34 -08002409 const struct glsl_type *type;
2410 const char *name = NULL;
Eric Anholt2e063f12010-03-28 00:56:22 -07002411 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08002412
Ian Romanickd612a122010-03-31 16:22:06 -07002413 type = this->type->specifier->glsl_type(& name, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08002414
2415 if (type == NULL) {
Ian Romanicka87ac252010-02-22 13:19:34 -08002416 if (name != NULL) {
2417 _mesa_glsl_error(& loc, state,
2418 "invalid type `%s' in declaration of `%s'",
Ian Romanick18238de2010-03-01 13:49:10 -08002419 name, this->identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08002420 } else {
2421 _mesa_glsl_error(& loc, state,
2422 "invalid type in declaration of `%s'",
Ian Romanick18238de2010-03-01 13:49:10 -08002423 this->identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08002424 }
2425
Ian Romanick0471e8b2010-03-26 14:33:41 -07002426 type = glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -08002427 }
2428
Eric Anholt068c80c2010-03-31 09:56:36 -10002429 /* From page 62 (page 68 of the PDF) of the GLSL 1.50 spec:
2430 *
2431 * "Functions that accept no input arguments need not use void in the
2432 * argument list because prototypes (or definitions) are required and
2433 * therefore there is no ambiguity when an empty argument list "( )" is
2434 * declared. The idiom "(void)" as a parameter list is provided for
2435 * convenience."
2436 *
2437 * Placing this check here prevents a void parameter being set up
2438 * for a function, which avoids tripping up checks for main taking
2439 * parameters and lookups of an unnamed symbol.
2440 */
Ian Romanickcf37c9e2010-04-02 15:30:45 -07002441 if (type->is_void()) {
2442 if (this->identifier != NULL)
2443 _mesa_glsl_error(& loc, state,
2444 "named parameter cannot have type `void'");
2445
2446 is_void = true;
Eric Anholt068c80c2010-03-31 09:56:36 -10002447 return NULL;
Ian Romanickcf37c9e2010-04-02 15:30:45 -07002448 }
Eric Anholt068c80c2010-03-31 09:56:36 -10002449
Ian Romanick45d8a702010-04-02 15:09:33 -07002450 if (formal_parameter && (this->identifier == NULL)) {
2451 _mesa_glsl_error(& loc, state, "formal parameter lacks a name");
2452 return NULL;
2453 }
2454
Kenneth Graunkee511a352010-08-21 15:30:34 -07002455 /* This only handles "vec4 foo[..]". The earlier specifier->glsl_type(...)
2456 * call already handled the "vec4[..] foo" case.
2457 */
2458 if (this->is_array) {
Kenneth Graunked8e34e22010-08-07 02:56:01 -07002459 type = process_array_type(&loc, type, this->array_size, state);
Kenneth Graunkee511a352010-08-21 15:30:34 -07002460 }
2461
2462 if (type->array_size() == 0) {
2463 _mesa_glsl_error(&loc, state, "arrays passed as parameters must have "
2464 "a declared size.");
2465 type = glsl_type::error_type;
2466 }
2467
Ian Romanickcf37c9e2010-04-02 15:30:45 -07002468 is_void = false;
Ian Romanick7e2aa912010-07-19 17:12:42 -07002469 ir_variable *var = new(ctx) ir_variable(type, this->identifier, ir_var_in);
Ian Romanicka87ac252010-02-22 13:19:34 -08002470
Ian Romanickcdb8d542010-03-11 14:48:51 -08002471 /* Apply any specified qualifiers to the parameter declaration. Note that
2472 * for function parameters the default mode is 'in'.
2473 */
Eric Anholt2e063f12010-03-28 00:56:22 -07002474 apply_type_qualifier_to_variable(& this->type->qualifier, var, state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08002475
Ian Romanick0044e7e2010-03-08 23:44:00 -08002476 instructions->push_tail(var);
Ian Romanicka87ac252010-02-22 13:19:34 -08002477
2478 /* Parameter declarations do not have r-values.
2479 */
2480 return NULL;
2481}
2482
2483
Ian Romanick45d8a702010-04-02 15:09:33 -07002484void
Ian Romanick304ea902010-05-10 11:17:53 -07002485ast_parameter_declarator::parameters_to_hir(exec_list *ast_parameters,
Ian Romanick45d8a702010-04-02 15:09:33 -07002486 bool formal,
2487 exec_list *ir_parameters,
2488 _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08002489{
Ian Romanickcf37c9e2010-04-02 15:30:45 -07002490 ast_parameter_declarator *void_param = NULL;
2491 unsigned count = 0;
Ian Romanicka87ac252010-02-22 13:19:34 -08002492
Ian Romanick2b97dc62010-05-10 17:42:05 -07002493 foreach_list_typed (ast_parameter_declarator, param, link, ast_parameters) {
Ian Romanick45d8a702010-04-02 15:09:33 -07002494 param->formal_parameter = formal;
Eric Anholt068c80c2010-03-31 09:56:36 -10002495 param->hir(ir_parameters, state);
Ian Romanickcf37c9e2010-04-02 15:30:45 -07002496
2497 if (param->is_void)
2498 void_param = param;
2499
2500 count++;
2501 }
2502
2503 if ((void_param != NULL) && (count > 1)) {
2504 YYLTYPE loc = void_param->get_location();
2505
2506 _mesa_glsl_error(& loc, state,
2507 "`void' parameter must be only parameter");
Ian Romanicka87ac252010-02-22 13:19:34 -08002508 }
2509}
2510
2511
Kenneth Graunke6fae1e42010-12-06 10:54:05 -08002512void
2513emit_function(_mesa_glsl_parse_state *state, exec_list *instructions,
2514 ir_function *f)
2515{
2516 /* Emit the new function header */
2517 if (state->current_function == NULL) {
2518 instructions->push_tail(f);
2519 } else {
2520 /* IR invariants disallow function declarations or definitions nested
2521 * within other function definitions. Insert the new ir_function
2522 * block in the instruction sequence before the ir_function block
2523 * containing the current ir_function_signature.
2524 */
2525 ir_function *const curr =
2526 const_cast<ir_function *>(state->current_function->function());
2527
2528 curr->insert_before(f);
2529 }
2530}
2531
2532
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07002533ir_rvalue *
Ian Romanick92318a92010-03-31 18:23:21 -07002534ast_function::hir(exec_list *instructions,
2535 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08002536{
Kenneth Graunke953ff122010-06-25 13:14:37 -07002537 void *ctx = state;
Ian Romanick18238de2010-03-01 13:49:10 -08002538 ir_function *f = NULL;
Ian Romanick92318a92010-03-31 18:23:21 -07002539 ir_function_signature *sig = NULL;
2540 exec_list hir_parameters;
Ian Romanicka87ac252010-02-22 13:19:34 -08002541
Kenneth Graunkeac04c252010-06-29 00:48:10 -07002542 const char *const name = identifier;
Ian Romanicka87ac252010-02-22 13:19:34 -08002543
Ian Romanick63b80f82010-09-01 06:34:58 -07002544 /* From page 21 (page 27 of the PDF) of the GLSL 1.20 spec,
2545 *
2546 * "Function declarations (prototypes) cannot occur inside of functions;
2547 * they must be at global scope, or for the built-in functions, outside
2548 * the global scope."
2549 *
2550 * From page 27 (page 33 of the PDF) of the GLSL ES 1.00.16 spec,
2551 *
2552 * "User defined functions may only be defined within the global scope."
2553 *
2554 * Note that this language does not appear in GLSL 1.10.
2555 */
2556 if ((state->current_function != NULL) && (state->language_version != 110)) {
2557 YYLTYPE loc = this->get_location();
2558 _mesa_glsl_error(&loc, state,
2559 "declaration of function `%s' not allowed within "
2560 "function body", name);
2561 }
2562
Kenneth Graunkeedd180f2010-08-20 02:14:35 -07002563 /* From page 15 (page 21 of the PDF) of the GLSL 1.10 spec,
2564 *
2565 * "Identifiers starting with "gl_" are reserved for use by
2566 * OpenGL, and may not be declared in a shader as either a
2567 * variable or a function."
2568 */
2569 if (strncmp(name, "gl_", 3) == 0) {
2570 YYLTYPE loc = this->get_location();
2571 _mesa_glsl_error(&loc, state,
2572 "identifier `%s' uses reserved `gl_' prefix", name);
2573 }
2574
Ian Romanicka87ac252010-02-22 13:19:34 -08002575 /* Convert the list of function parameters to HIR now so that they can be
2576 * used below to compare this function's signature with previously seen
2577 * signatures for functions with the same name.
2578 */
Ian Romanick45d8a702010-04-02 15:09:33 -07002579 ast_parameter_declarator::parameters_to_hir(& this->parameters,
2580 is_definition,
2581 & hir_parameters, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08002582
Ian Romanicke39cc692010-03-23 12:19:13 -07002583 const char *return_type_name;
2584 const glsl_type *return_type =
Ian Romanick92318a92010-03-31 18:23:21 -07002585 this->return_type->specifier->glsl_type(& return_type_name, state);
Ian Romanicke39cc692010-03-23 12:19:13 -07002586
Eric Anholt76e96d72010-08-23 13:26:52 -07002587 if (!return_type) {
2588 YYLTYPE loc = this->get_location();
2589 _mesa_glsl_error(&loc, state,
2590 "function `%s' has undeclared return type `%s'",
2591 name, return_type_name);
2592 return_type = glsl_type::error_type;
2593 }
Ian Romanicke39cc692010-03-23 12:19:13 -07002594
Kenneth Graunkeac04c252010-06-29 00:48:10 -07002595 /* From page 56 (page 62 of the PDF) of the GLSL 1.30 spec:
2596 * "No qualifier is allowed on the return type of a function."
2597 */
2598 if (this->return_type->has_qualifiers()) {
2599 YYLTYPE loc = this->get_location();
2600 _mesa_glsl_error(& loc, state,
2601 "function `%s' return type has qualifiers", name);
2602 }
2603
Ian Romanicka87ac252010-02-22 13:19:34 -08002604 /* Verify that this function's signature either doesn't match a previously
2605 * seen signature for a function with the same name, or, if a match is found,
2606 * that the previously seen signature does not have an associated definition.
2607 */
Ian Romanicke466b182010-09-01 14:16:53 -07002608 f = state->symbols->get_function(name);
Kenneth Graunke81f03392010-09-16 02:52:25 -07002609 if (f != NULL && (state->es_shader || f->has_user_signature())) {
Ian Romanick202604e2010-08-11 16:58:25 -07002610 sig = f->exact_matching_signature(&hir_parameters);
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07002611 if (sig != NULL) {
2612 const char *badvar = sig->qualifiers_match(&hir_parameters);
2613 if (badvar != NULL) {
2614 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08002615
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07002616 _mesa_glsl_error(&loc, state, "function `%s' parameter `%s' "
2617 "qualifiers don't match prototype", name, badvar);
Ian Romanicka87ac252010-02-22 13:19:34 -08002618 }
2619
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07002620 if (sig->return_type != return_type) {
2621 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08002622
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07002623 _mesa_glsl_error(&loc, state, "function `%s' return type doesn't "
2624 "match prototype", name);
2625 }
2626
2627 if (is_definition && sig->is_defined) {
2628 YYLTYPE loc = this->get_location();
2629
2630 _mesa_glsl_error(& loc, state, "function `%s' redefined", name);
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07002631 }
2632 }
Ian Romanicka87ac252010-02-22 13:19:34 -08002633 } else {
Carl Worth1660a292010-06-23 18:11:51 -07002634 f = new(ctx) ir_function(name);
Eric Anholte8f5ebf2010-11-05 06:08:45 -07002635 if (!state->symbols->add_function(f)) {
Kenneth Graunkee0959132010-08-25 16:37:46 -07002636 /* This function name shadows a non-function use of the same name. */
2637 YYLTYPE loc = this->get_location();
2638
2639 _mesa_glsl_error(&loc, state, "function name `%s' conflicts with "
2640 "non-function", name);
2641 return NULL;
2642 }
Kenneth Graunke9fa99f32010-04-21 12:30:22 -07002643
Kenneth Graunke6fae1e42010-12-06 10:54:05 -08002644 emit_function(state, instructions, f);
Ian Romanicka87ac252010-02-22 13:19:34 -08002645 }
2646
Eric Anholtab372da2010-03-28 01:24:55 -07002647 /* Verify the return type of main() */
2648 if (strcmp(name, "main") == 0) {
Ian Romanick25711a82010-03-31 17:39:10 -07002649 if (! return_type->is_void()) {
Eric Anholtab372da2010-03-28 01:24:55 -07002650 YYLTYPE loc = this->get_location();
2651
2652 _mesa_glsl_error(& loc, state, "main() must return void");
2653 }
Eric Anholt174cc032010-03-30 23:37:51 -10002654
Ian Romanick92318a92010-03-31 18:23:21 -07002655 if (!hir_parameters.is_empty()) {
Eric Anholt174cc032010-03-30 23:37:51 -10002656 YYLTYPE loc = this->get_location();
2657
2658 _mesa_glsl_error(& loc, state, "main() must not take any parameters");
2659 }
Eric Anholtab372da2010-03-28 01:24:55 -07002660 }
Ian Romanicka87ac252010-02-22 13:19:34 -08002661
2662 /* Finish storing the information about this new function in its signature.
2663 */
Ian Romanick92318a92010-03-31 18:23:21 -07002664 if (sig == NULL) {
Carl Worth1660a292010-06-23 18:11:51 -07002665 sig = new(ctx) ir_function_signature(return_type);
Ian Romanick92318a92010-03-31 18:23:21 -07002666 f->add_signature(sig);
Ian Romanicka87ac252010-02-22 13:19:34 -08002667 }
2668
Kenneth Graunkebff60132010-04-28 12:44:24 -07002669 sig->replace_parameters(&hir_parameters);
Ian Romanick92318a92010-03-31 18:23:21 -07002670 signature = sig;
Ian Romanicke29a5852010-03-31 17:54:26 -07002671
Ian Romanick92318a92010-03-31 18:23:21 -07002672 /* Function declarations (prototypes) do not have r-values.
2673 */
2674 return NULL;
2675}
2676
2677
2678ir_rvalue *
2679ast_function_definition::hir(exec_list *instructions,
2680 struct _mesa_glsl_parse_state *state)
2681{
2682 prototype->is_definition = true;
2683 prototype->hir(instructions, state);
2684
2685 ir_function_signature *signature = prototype->signature;
Kenneth Graunke826a39c2010-08-20 02:04:52 -07002686 if (signature == NULL)
2687 return NULL;
Ian Romanicka87ac252010-02-22 13:19:34 -08002688
Ian Romanick41ec6a42010-03-19 17:08:05 -07002689 assert(state->current_function == NULL);
2690 state->current_function = signature;
Kenneth Graunke6de82562010-06-29 09:59:40 -07002691 state->found_return = false;
Ian Romanick41ec6a42010-03-19 17:08:05 -07002692
Ian Romanicke29a5852010-03-31 17:54:26 -07002693 /* Duplicate parameters declared in the prototype as concrete variables.
2694 * Add these to the symbol table.
Ian Romanicka87ac252010-02-22 13:19:34 -08002695 */
Ian Romanick8bde4ce2010-03-19 11:57:24 -07002696 state->symbols->push_scope();
Ian Romanicke29a5852010-03-31 17:54:26 -07002697 foreach_iter(exec_list_iterator, iter, signature->parameters) {
Eric Anholtfbc7c0b2010-04-07 14:32:53 -07002698 ir_variable *const var = ((ir_instruction *) iter.get())->as_variable();
Ian Romanicka87ac252010-02-22 13:19:34 -08002699
Eric Anholtfbc7c0b2010-04-07 14:32:53 -07002700 assert(var != NULL);
Ian Romanicka87ac252010-02-22 13:19:34 -08002701
Ian Romanick3359e582010-03-19 15:38:52 -07002702 /* The only way a parameter would "exist" is if two parameters have
2703 * the same name.
2704 */
2705 if (state->symbols->name_declared_this_scope(var->name)) {
2706 YYLTYPE loc = this->get_location();
2707
2708 _mesa_glsl_error(& loc, state, "parameter `%s' redeclared", var->name);
2709 } else {
Eric Anholt001eee52010-11-05 06:11:24 -07002710 state->symbols->add_variable(var);
Ian Romanick3359e582010-03-19 15:38:52 -07002711 }
Ian Romanicka87ac252010-02-22 13:19:34 -08002712 }
2713
Kenneth Graunke9fa99f32010-04-21 12:30:22 -07002714 /* Convert the body of the function to HIR. */
Eric Anholt894ea972010-04-07 13:19:11 -07002715 this->body->hir(&signature->body, state);
Kenneth Graunke9fa99f32010-04-21 12:30:22 -07002716 signature->is_defined = true;
Ian Romanicka87ac252010-02-22 13:19:34 -08002717
Ian Romanick8bde4ce2010-03-19 11:57:24 -07002718 state->symbols->pop_scope();
Ian Romanicka87ac252010-02-22 13:19:34 -08002719
Ian Romanick41ec6a42010-03-19 17:08:05 -07002720 assert(state->current_function == signature);
2721 state->current_function = NULL;
Ian Romanicka87ac252010-02-22 13:19:34 -08002722
Kenneth Graunke6de82562010-06-29 09:59:40 -07002723 if (!signature->return_type->is_void() && !state->found_return) {
2724 YYLTYPE loc = this->get_location();
2725 _mesa_glsl_error(& loc, state, "function `%s' has non-void return type "
2726 "%s, but no return statement",
2727 signature->function_name(),
2728 signature->return_type->name);
2729 }
2730
Ian Romanicka87ac252010-02-22 13:19:34 -08002731 /* Function definitions do not have r-values.
2732 */
2733 return NULL;
2734}
Ian Romanick16a246c2010-03-19 16:45:19 -07002735
2736
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07002737ir_rvalue *
Ian Romanick16a246c2010-03-19 16:45:19 -07002738ast_jump_statement::hir(exec_list *instructions,
2739 struct _mesa_glsl_parse_state *state)
2740{
Kenneth Graunke953ff122010-06-25 13:14:37 -07002741 void *ctx = state;
Ian Romanick16a246c2010-03-19 16:45:19 -07002742
Ian Romanickc0e76d82010-04-05 16:53:19 -07002743 switch (mode) {
2744 case ast_return: {
Ian Romanick16a246c2010-03-19 16:45:19 -07002745 ir_return *inst;
Eric Anholtaad7c772010-03-30 23:28:20 -10002746 assert(state->current_function);
Ian Romanick16a246c2010-03-19 16:45:19 -07002747
2748 if (opt_return_value) {
Eric Anholtab79d4e2010-03-30 23:23:16 -10002749 if (state->current_function->return_type->base_type ==
2750 GLSL_TYPE_VOID) {
2751 YYLTYPE loc = this->get_location();
2752
2753 _mesa_glsl_error(& loc, state,
2754 "`return` with a value, in function `%s' "
2755 "returning void",
Kenneth Graunkef96c52b2010-04-21 15:17:26 -07002756 state->current_function->function_name());
Eric Anholtab79d4e2010-03-30 23:23:16 -10002757 }
Ian Romanick16a246c2010-03-19 16:45:19 -07002758
Chad Versaceb4cdba62010-11-17 10:28:01 -08002759 ir_rvalue *const ret = opt_return_value->hir(instructions, state);
Ian Romanick16a246c2010-03-19 16:45:19 -07002760 assert(ret != NULL);
2761
Kenneth Graunke18707eb2010-06-28 23:38:04 -07002762 /* Implicit conversions are not allowed for return values. */
2763 if (state->current_function->return_type != ret->type) {
2764 YYLTYPE loc = this->get_location();
2765
2766 _mesa_glsl_error(& loc, state,
2767 "`return' with wrong type %s, in function `%s' "
2768 "returning %s",
2769 ret->type->name,
2770 state->current_function->function_name(),
2771 state->current_function->return_type->name);
2772 }
Ian Romanick16a246c2010-03-19 16:45:19 -07002773
Carl Worth1660a292010-06-23 18:11:51 -07002774 inst = new(ctx) ir_return(ret);
Ian Romanick16a246c2010-03-19 16:45:19 -07002775 } else {
Eric Anholtaad7c772010-03-30 23:28:20 -10002776 if (state->current_function->return_type->base_type !=
2777 GLSL_TYPE_VOID) {
2778 YYLTYPE loc = this->get_location();
2779
2780 _mesa_glsl_error(& loc, state,
2781 "`return' with no value, in function %s returning "
2782 "non-void",
Kenneth Graunkef96c52b2010-04-21 15:17:26 -07002783 state->current_function->function_name());
Eric Anholtaad7c772010-03-30 23:28:20 -10002784 }
Carl Worth1660a292010-06-23 18:11:51 -07002785 inst = new(ctx) ir_return;
Ian Romanick16a246c2010-03-19 16:45:19 -07002786 }
2787
Kenneth Graunke6de82562010-06-29 09:59:40 -07002788 state->found_return = true;
Ian Romanick16a246c2010-03-19 16:45:19 -07002789 instructions->push_tail(inst);
Ian Romanickc0e76d82010-04-05 16:53:19 -07002790 break;
Ian Romanick16a246c2010-03-19 16:45:19 -07002791 }
2792
Ian Romanickc0e76d82010-04-05 16:53:19 -07002793 case ast_discard:
Eric Anholtb9802072010-03-30 23:40:14 -10002794 if (state->target != fragment_shader) {
2795 YYLTYPE loc = this->get_location();
2796
2797 _mesa_glsl_error(& loc, state,
2798 "`discard' may only appear in a fragment shader");
2799 }
Kenneth Graunke77049a72010-06-30 14:11:00 -07002800 instructions->push_tail(new(ctx) ir_discard);
Ian Romanickc0e76d82010-04-05 16:53:19 -07002801 break;
2802
2803 case ast_break:
2804 case ast_continue:
Ian Romanick4cf20cd2010-04-05 17:13:47 -07002805 /* FINISHME: Handle switch-statements. They cannot contain 'continue',
2806 * FINISHME: and they use a different IR instruction for 'break'.
2807 */
2808 /* FINISHME: Correctly handle the nesting. If a switch-statement is
2809 * FINISHME: inside a loop, a 'continue' is valid and will bind to the
2810 * FINISHME: loop.
2811 */
2812 if (state->loop_or_switch_nesting == NULL) {
2813 YYLTYPE loc = this->get_location();
2814
2815 _mesa_glsl_error(& loc, state,
2816 "`%s' may only appear in a loop",
2817 (mode == ast_break) ? "break" : "continue");
2818 } else {
2819 ir_loop *const loop = state->loop_or_switch_nesting->as_loop();
2820
Eric Anholt2d1ed7b2010-07-22 12:55:16 -07002821 /* Inline the for loop expression again, since we don't know
2822 * where near the end of the loop body the normal copy of it
2823 * is going to be placed.
2824 */
2825 if (mode == ast_continue &&
2826 state->loop_or_switch_nesting_ast->rest_expression) {
2827 state->loop_or_switch_nesting_ast->rest_expression->hir(instructions,
2828 state);
2829 }
2830
Ian Romanick4cf20cd2010-04-05 17:13:47 -07002831 if (loop != NULL) {
2832 ir_loop_jump *const jump =
Carl Worth1660a292010-06-23 18:11:51 -07002833 new(ctx) ir_loop_jump((mode == ast_break)
2834 ? ir_loop_jump::jump_break
2835 : ir_loop_jump::jump_continue);
Ian Romanick4cf20cd2010-04-05 17:13:47 -07002836 instructions->push_tail(jump);
2837 }
2838 }
2839
Ian Romanickc0e76d82010-04-05 16:53:19 -07002840 break;
Eric Anholtb9802072010-03-30 23:40:14 -10002841 }
2842
Ian Romanick16a246c2010-03-19 16:45:19 -07002843 /* Jump instructions do not have r-values.
2844 */
2845 return NULL;
2846}
Ian Romanick3c6fea32010-03-29 14:11:25 -07002847
2848
2849ir_rvalue *
2850ast_selection_statement::hir(exec_list *instructions,
2851 struct _mesa_glsl_parse_state *state)
2852{
Kenneth Graunke953ff122010-06-25 13:14:37 -07002853 void *ctx = state;
Carl Worth1660a292010-06-23 18:11:51 -07002854
Ian Romanick3c6fea32010-03-29 14:11:25 -07002855 ir_rvalue *const condition = this->condition->hir(instructions, state);
Ian Romanick3c6fea32010-03-29 14:11:25 -07002856
2857 /* From page 66 (page 72 of the PDF) of the GLSL 1.50 spec:
2858 *
2859 * "Any expression whose type evaluates to a Boolean can be used as the
2860 * conditional expression bool-expression. Vector types are not accepted
2861 * as the expression to if."
2862 *
2863 * The checks are separated so that higher quality diagnostics can be
2864 * generated for cases where both rules are violated.
2865 */
2866 if (!condition->type->is_boolean() || !condition->type->is_scalar()) {
2867 YYLTYPE loc = this->condition->get_location();
2868
2869 _mesa_glsl_error(& loc, state, "if-statement condition must be scalar "
2870 "boolean");
2871 }
2872
Carl Worth1660a292010-06-23 18:11:51 -07002873 ir_if *const stmt = new(ctx) ir_if(condition);
Ian Romanick3c6fea32010-03-29 14:11:25 -07002874
Kenneth Graunke665d75c2010-08-18 13:54:50 -07002875 if (then_statement != NULL) {
2876 state->symbols->push_scope();
Ian Romanick4f9d72f2010-05-10 11:10:26 -07002877 then_statement->hir(& stmt->then_instructions, state);
Kenneth Graunke665d75c2010-08-18 13:54:50 -07002878 state->symbols->pop_scope();
2879 }
Ian Romanick3c6fea32010-03-29 14:11:25 -07002880
Kenneth Graunke665d75c2010-08-18 13:54:50 -07002881 if (else_statement != NULL) {
2882 state->symbols->push_scope();
Ian Romanick4f9d72f2010-05-10 11:10:26 -07002883 else_statement->hir(& stmt->else_instructions, state);
Kenneth Graunke665d75c2010-08-18 13:54:50 -07002884 state->symbols->pop_scope();
2885 }
Ian Romanick3c6fea32010-03-29 14:11:25 -07002886
2887 instructions->push_tail(stmt);
2888
2889 /* if-statements do not have r-values.
2890 */
2891 return NULL;
2892}
Ian Romanick9e7d0102010-04-05 16:37:49 -07002893
2894
Ian Romanick8c46ed22010-04-05 18:07:27 -07002895void
2896ast_iteration_statement::condition_to_hir(ir_loop *stmt,
2897 struct _mesa_glsl_parse_state *state)
Ian Romanick9e7d0102010-04-05 16:37:49 -07002898{
Kenneth Graunke953ff122010-06-25 13:14:37 -07002899 void *ctx = state;
Carl Worth1660a292010-06-23 18:11:51 -07002900
Ian Romanick9e7d0102010-04-05 16:37:49 -07002901 if (condition != NULL) {
2902 ir_rvalue *const cond =
2903 condition->hir(& stmt->body_instructions, state);
2904
2905 if ((cond == NULL)
2906 || !cond->type->is_boolean() || !cond->type->is_scalar()) {
2907 YYLTYPE loc = condition->get_location();
2908
2909 _mesa_glsl_error(& loc, state,
2910 "loop condition must be scalar boolean");
2911 } else {
2912 /* As the first code in the loop body, generate a block that looks
2913 * like 'if (!condition) break;' as the loop termination condition.
2914 */
2915 ir_rvalue *const not_cond =
Carl Worth1660a292010-06-23 18:11:51 -07002916 new(ctx) ir_expression(ir_unop_logic_not, glsl_type::bool_type, cond,
2917 NULL);
Ian Romanick9e7d0102010-04-05 16:37:49 -07002918
Carl Worth1660a292010-06-23 18:11:51 -07002919 ir_if *const if_stmt = new(ctx) ir_if(not_cond);
Ian Romanick9e7d0102010-04-05 16:37:49 -07002920
2921 ir_jump *const break_stmt =
Carl Worth1660a292010-06-23 18:11:51 -07002922 new(ctx) ir_loop_jump(ir_loop_jump::jump_break);
Ian Romanick9e7d0102010-04-05 16:37:49 -07002923
2924 if_stmt->then_instructions.push_tail(break_stmt);
2925 stmt->body_instructions.push_tail(if_stmt);
2926 }
2927 }
Ian Romanick8c46ed22010-04-05 18:07:27 -07002928}
2929
2930
2931ir_rvalue *
2932ast_iteration_statement::hir(exec_list *instructions,
2933 struct _mesa_glsl_parse_state *state)
2934{
Kenneth Graunke953ff122010-06-25 13:14:37 -07002935 void *ctx = state;
Carl Worth1660a292010-06-23 18:11:51 -07002936
Ian Romanick48460662010-04-16 16:42:43 -07002937 /* For-loops and while-loops start a new scope, but do-while loops do not.
Ian Romanick8c46ed22010-04-05 18:07:27 -07002938 */
Ian Romanick48460662010-04-16 16:42:43 -07002939 if (mode != ast_do_while)
Ian Romanick8c46ed22010-04-05 18:07:27 -07002940 state->symbols->push_scope();
2941
2942 if (init_statement != NULL)
2943 init_statement->hir(instructions, state);
2944
Carl Worth1660a292010-06-23 18:11:51 -07002945 ir_loop *const stmt = new(ctx) ir_loop();
Ian Romanick8c46ed22010-04-05 18:07:27 -07002946 instructions->push_tail(stmt);
2947
2948 /* Track the current loop and / or switch-statement nesting.
2949 */
2950 ir_instruction *const nesting = state->loop_or_switch_nesting;
Eric Anholt2d1ed7b2010-07-22 12:55:16 -07002951 ast_iteration_statement *nesting_ast = state->loop_or_switch_nesting_ast;
2952
Ian Romanick8c46ed22010-04-05 18:07:27 -07002953 state->loop_or_switch_nesting = stmt;
Eric Anholt2d1ed7b2010-07-22 12:55:16 -07002954 state->loop_or_switch_nesting_ast = this;
Ian Romanick8c46ed22010-04-05 18:07:27 -07002955
2956 if (mode != ast_do_while)
2957 condition_to_hir(stmt, state);
Ian Romanick9e7d0102010-04-05 16:37:49 -07002958
Ian Romanick4f9d72f2010-05-10 11:10:26 -07002959 if (body != NULL)
2960 body->hir(& stmt->body_instructions, state);
Ian Romanick9e7d0102010-04-05 16:37:49 -07002961
2962 if (rest_expression != NULL)
2963 rest_expression->hir(& stmt->body_instructions, state);
2964
Ian Romanick8c46ed22010-04-05 18:07:27 -07002965 if (mode == ast_do_while)
2966 condition_to_hir(stmt, state);
2967
Ian Romanick48460662010-04-16 16:42:43 -07002968 if (mode != ast_do_while)
Ian Romanick9e7d0102010-04-05 16:37:49 -07002969 state->symbols->pop_scope();
2970
Ian Romanicke9d0f262010-04-05 17:01:53 -07002971 /* Restore previous nesting before returning.
2972 */
2973 state->loop_or_switch_nesting = nesting;
Eric Anholt2d1ed7b2010-07-22 12:55:16 -07002974 state->loop_or_switch_nesting_ast = nesting_ast;
Ian Romanicke9d0f262010-04-05 17:01:53 -07002975
Ian Romanick9e7d0102010-04-05 16:37:49 -07002976 /* Loops do not have r-values.
2977 */
2978 return NULL;
2979}
Ian Romanick3455ce62010-04-19 15:13:15 -07002980
2981
2982ir_rvalue *
2983ast_type_specifier::hir(exec_list *instructions,
2984 struct _mesa_glsl_parse_state *state)
2985{
2986 if (this->structure != NULL)
2987 return this->structure->hir(instructions, state);
Ian Romanick85ba37b2010-04-21 14:33:34 -07002988
2989 return NULL;
Ian Romanick3455ce62010-04-19 15:13:15 -07002990}
2991
2992
2993ir_rvalue *
2994ast_struct_specifier::hir(exec_list *instructions,
2995 struct _mesa_glsl_parse_state *state)
2996{
Ian Romanick3455ce62010-04-19 15:13:15 -07002997 unsigned decl_count = 0;
2998
2999 /* Make an initial pass over the list of structure fields to determine how
3000 * many there are. Each element in this list is an ast_declarator_list.
3001 * This means that we actually need to count the number of elements in the
3002 * 'declarations' list in each of the elements.
3003 */
Ian Romanick2b97dc62010-05-10 17:42:05 -07003004 foreach_list_typed (ast_declarator_list, decl_list, link,
3005 &this->declarations) {
Ian Romanick304ea902010-05-10 11:17:53 -07003006 foreach_list_const (decl_ptr, & decl_list->declarations) {
Ian Romanick3455ce62010-04-19 15:13:15 -07003007 decl_count++;
3008 }
3009 }
3010
Ian Romanick3455ce62010-04-19 15:13:15 -07003011 /* Allocate storage for the structure fields and process the field
3012 * declarations. As the declarations are processed, try to also convert
3013 * the types to HIR. This ensures that structure definitions embedded in
3014 * other structure definitions are processed.
3015 */
Eric Anholt21b0dbd2010-07-20 16:47:25 -07003016 glsl_struct_field *const fields = talloc_array(state, glsl_struct_field,
3017 decl_count);
Ian Romanick3455ce62010-04-19 15:13:15 -07003018
3019 unsigned i = 0;
Ian Romanick2b97dc62010-05-10 17:42:05 -07003020 foreach_list_typed (ast_declarator_list, decl_list, link,
3021 &this->declarations) {
Ian Romanick3455ce62010-04-19 15:13:15 -07003022 const char *type_name;
3023
3024 decl_list->type->specifier->hir(instructions, state);
3025
Kenneth Graunkec98deb12010-08-16 14:02:25 -07003026 /* Section 10.9 of the GLSL ES 1.00 specification states that
3027 * embedded structure definitions have been removed from the language.
3028 */
3029 if (state->es_shader && decl_list->type->specifier->structure != NULL) {
3030 YYLTYPE loc = this->get_location();
3031 _mesa_glsl_error(&loc, state, "Embedded structure definitions are "
3032 "not allowed in GLSL ES 1.00.");
3033 }
3034
Ian Romanick3455ce62010-04-19 15:13:15 -07003035 const glsl_type *decl_type =
3036 decl_list->type->specifier->glsl_type(& type_name, state);
3037
Ian Romanick2b97dc62010-05-10 17:42:05 -07003038 foreach_list_typed (ast_declaration, decl, link,
3039 &decl_list->declarations) {
Kenneth Graunked8e34e22010-08-07 02:56:01 -07003040 const struct glsl_type *field_type = decl_type;
3041 if (decl->is_array) {
3042 YYLTYPE loc = decl->get_location();
3043 field_type = process_array_type(&loc, decl_type, decl->array_size,
3044 state);
3045 }
Ian Romanick73986a72010-04-20 16:49:03 -07003046 fields[i].type = (field_type != NULL)
3047 ? field_type : glsl_type::error_type;
Ian Romanick3455ce62010-04-19 15:13:15 -07003048 fields[i].name = decl->identifier;
3049 i++;
3050 }
3051 }
3052
3053 assert(i == decl_count);
3054
Ian Romanick49e35772010-06-28 11:54:57 -07003055 const glsl_type *t =
Kenneth Graunkeca92ae22010-09-18 11:11:09 +02003056 glsl_type::get_record_instance(fields, decl_count, this->name);
Ian Romanick1d28b612010-04-20 16:48:24 -07003057
Ian Romanickab899272010-04-23 13:24:08 -07003058 YYLTYPE loc = this->get_location();
Ian Romanicka789ca62010-09-01 14:08:08 -07003059 if (!state->symbols->add_type(name, t)) {
Ian Romanickab899272010-04-23 13:24:08 -07003060 _mesa_glsl_error(& loc, state, "struct `%s' previously defined", name);
3061 } else {
Ian Romanicka2c6df52010-04-28 13:14:53 -07003062
3063 const glsl_type **s = (const glsl_type **)
3064 realloc(state->user_structures,
3065 sizeof(state->user_structures[0]) *
3066 (state->num_user_structures + 1));
3067 if (s != NULL) {
3068 s[state->num_user_structures] = t;
3069 state->user_structures = s;
3070 state->num_user_structures++;
3071 }
Ian Romanickab899272010-04-23 13:24:08 -07003072 }
Ian Romanick3455ce62010-04-19 15:13:15 -07003073
3074 /* Structure type definitions do not have r-values.
3075 */
3076 return NULL;
3077}