blob: c0524bf0bccda826ea1620abf437ef552927d356 [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);
Kenneth Graunke81168352011-01-01 12:01:09 -080063 _mesa_glsl_initialize_functions(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 Romanick02c5ae12011-07-11 10:46:01 -070086
87 detect_recursion_unlinked(state, instructions);
Ian Romanickd949a9a2010-03-10 09:55:22 -080088}
89
90
Ian Romanick01045362010-03-29 16:17:56 -070091/**
92 * If a conversion is available, convert one operand to a different type
93 *
94 * The \c from \c ir_rvalue is converted "in place".
95 *
96 * \param to Type that the operand it to be converted to
97 * \param from Operand that is being converted
98 * \param state GLSL compiler state
99 *
100 * \return
101 * If a conversion is possible (or unnecessary), \c true is returned.
102 * Otherwise \c false is returned.
103 */
Kenneth Graunkef32d3df2010-09-01 20:03:17 -0700104bool
Ian Romanickbfb09c22010-03-29 16:32:55 -0700105apply_implicit_conversion(const glsl_type *to, ir_rvalue * &from,
Ian Romanick01045362010-03-29 16:17:56 -0700106 struct _mesa_glsl_parse_state *state)
107{
Kenneth Graunke953ff122010-06-25 13:14:37 -0700108 void *ctx = state;
Ian Romanickbfb09c22010-03-29 16:32:55 -0700109 if (to->base_type == from->type->base_type)
Ian Romanick01045362010-03-29 16:17:56 -0700110 return true;
111
112 /* This conversion was added in GLSL 1.20. If the compilation mode is
113 * GLSL 1.10, the conversion is skipped.
114 */
115 if (state->language_version < 120)
116 return false;
117
118 /* From page 27 (page 33 of the PDF) of the GLSL 1.50 spec:
119 *
120 * "There are no implicit array or structure conversions. For
121 * example, an array of int cannot be implicitly converted to an
122 * array of float. There are no implicit conversions between
123 * signed and unsigned integers."
124 */
125 /* FINISHME: The above comment is partially a lie. There is int/uint
126 * FINISHME: conversion for immediate constants.
127 */
Ian Romanickbfb09c22010-03-29 16:32:55 -0700128 if (!to->is_float() || !from->type->is_numeric())
Ian Romanick01045362010-03-29 16:17:56 -0700129 return false;
130
Kenneth Graunke506199b2010-06-29 15:59:27 -0700131 /* Convert to a floating point type with the same number of components
132 * as the original type - i.e. int to float, not int to vec4.
133 */
134 to = glsl_type::get_instance(GLSL_TYPE_FLOAT, from->type->vector_elements,
135 from->type->matrix_columns);
136
Ian Romanickbfb09c22010-03-29 16:32:55 -0700137 switch (from->type->base_type) {
Ian Romanick01045362010-03-29 16:17:56 -0700138 case GLSL_TYPE_INT:
Carl Worth1660a292010-06-23 18:11:51 -0700139 from = new(ctx) ir_expression(ir_unop_i2f, to, from, NULL);
Ian Romanick01045362010-03-29 16:17:56 -0700140 break;
141 case GLSL_TYPE_UINT:
Carl Worth1660a292010-06-23 18:11:51 -0700142 from = new(ctx) ir_expression(ir_unop_u2f, to, from, NULL);
Ian Romanick01045362010-03-29 16:17:56 -0700143 break;
144 case GLSL_TYPE_BOOL:
Carl Worth1660a292010-06-23 18:11:51 -0700145 from = new(ctx) ir_expression(ir_unop_b2f, to, from, NULL);
Eric Anholtdc58b3f2010-04-02 02:13:43 -1000146 break;
Ian Romanick01045362010-03-29 16:17:56 -0700147 default:
148 assert(0);
149 }
150
151 return true;
152}
153
154
Ian Romanicka87ac252010-02-22 13:19:34 -0800155static const struct glsl_type *
Ian Romanickbfb09c22010-03-29 16:32:55 -0700156arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b,
Ian Romanicka87ac252010-02-22 13:19:34 -0800157 bool multiply,
Eric Anholta13bb142010-03-31 16:38:11 -1000158 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800159{
Eric Anholt336b4ad2010-05-19 10:38:37 -0700160 const glsl_type *type_a = value_a->type;
161 const glsl_type *type_b = value_b->type;
Ian Romanick01045362010-03-29 16:17:56 -0700162
Ian Romanicka87ac252010-02-22 13:19:34 -0800163 /* From GLSL 1.50 spec, page 56:
164 *
165 * "The arithmetic binary operators add (+), subtract (-),
166 * multiply (*), and divide (/) operate on integer and
167 * floating-point scalars, vectors, and matrices."
168 */
Ian Romanick60b54d92010-03-24 17:08:13 -0700169 if (!type_a->is_numeric() || !type_b->is_numeric()) {
Eric Anholta13bb142010-03-31 16:38:11 -1000170 _mesa_glsl_error(loc, state,
171 "Operands to arithmetic operators must be numeric");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700172 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800173 }
174
175
176 /* "If one operand is floating-point based and the other is
177 * not, then the conversions from Section 4.1.10 "Implicit
178 * Conversions" are applied to the non-floating-point-based operand."
Ian Romanicka87ac252010-02-22 13:19:34 -0800179 */
Ian Romanick01045362010-03-29 16:17:56 -0700180 if (!apply_implicit_conversion(type_a, value_b, state)
181 && !apply_implicit_conversion(type_b, value_a, state)) {
Eric Anholta13bb142010-03-31 16:38:11 -1000182 _mesa_glsl_error(loc, state,
183 "Could not implicitly convert operands to "
184 "arithmetic operator");
Ian Romanick01045362010-03-29 16:17:56 -0700185 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800186 }
Eric Anholt336b4ad2010-05-19 10:38:37 -0700187 type_a = value_a->type;
188 type_b = value_b->type;
189
Ian Romanicka87ac252010-02-22 13:19:34 -0800190 /* "If the operands are integer types, they must both be signed or
191 * both be unsigned."
192 *
193 * From this rule and the preceeding conversion it can be inferred that
194 * both types must be GLSL_TYPE_FLOAT, or GLSL_TYPE_UINT, or GLSL_TYPE_INT.
Ian Romanick60b54d92010-03-24 17:08:13 -0700195 * The is_numeric check above already filtered out the case where either
196 * type is not one of these, so now the base types need only be tested for
197 * equality.
Ian Romanicka87ac252010-02-22 13:19:34 -0800198 */
199 if (type_a->base_type != type_b->base_type) {
Eric Anholta13bb142010-03-31 16:38:11 -1000200 _mesa_glsl_error(loc, state,
201 "base type mismatch for arithmetic operator");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700202 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800203 }
204
205 /* "All arithmetic binary operators result in the same fundamental type
206 * (signed integer, unsigned integer, or floating-point) as the
207 * operands they operate on, after operand type conversion. After
208 * conversion, the following cases are valid
209 *
210 * * The two operands are scalars. In this case the operation is
211 * applied, resulting in a scalar."
212 */
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800213 if (type_a->is_scalar() && type_b->is_scalar())
Ian Romanicka87ac252010-02-22 13:19:34 -0800214 return type_a;
215
216 /* "* One operand is a scalar, and the other is a vector or matrix.
217 * In this case, the scalar operation is applied independently to each
218 * component of the vector or matrix, resulting in the same size
219 * vector or matrix."
220 */
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800221 if (type_a->is_scalar()) {
222 if (!type_b->is_scalar())
Ian Romanicka87ac252010-02-22 13:19:34 -0800223 return type_b;
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800224 } else if (type_b->is_scalar()) {
Ian Romanicka87ac252010-02-22 13:19:34 -0800225 return type_a;
226 }
227
228 /* All of the combinations of <scalar, scalar>, <vector, scalar>,
229 * <scalar, vector>, <scalar, matrix>, and <matrix, scalar> have been
230 * handled.
231 */
Ian Romanick60b54d92010-03-24 17:08:13 -0700232 assert(!type_a->is_scalar());
233 assert(!type_b->is_scalar());
Ian Romanicka87ac252010-02-22 13:19:34 -0800234
235 /* "* The two operands are vectors of the same size. In this case, the
236 * operation is done component-wise resulting in the same size
237 * vector."
238 */
Ian Romanicka2dd22f2010-03-09 15:55:16 -0800239 if (type_a->is_vector() && type_b->is_vector()) {
Eric Anholta13bb142010-03-31 16:38:11 -1000240 if (type_a == type_b) {
241 return type_a;
242 } else {
243 _mesa_glsl_error(loc, state,
244 "vector size mismatch for arithmetic operator");
245 return glsl_type::error_type;
246 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800247 }
248
249 /* All of the combinations of <scalar, scalar>, <vector, scalar>,
250 * <scalar, vector>, <scalar, matrix>, <matrix, scalar>, and
251 * <vector, vector> have been handled. At least one of the operands must
252 * be matrix. Further, since there are no integer matrix types, the base
253 * type of both operands must be float.
254 */
Ian Romanick60b54d92010-03-24 17:08:13 -0700255 assert(type_a->is_matrix() || type_b->is_matrix());
Ian Romanicka87ac252010-02-22 13:19:34 -0800256 assert(type_a->base_type == GLSL_TYPE_FLOAT);
257 assert(type_b->base_type == GLSL_TYPE_FLOAT);
258
259 /* "* The operator is add (+), subtract (-), or divide (/), and the
260 * operands are matrices with the same number of rows and the same
261 * number of columns. In this case, the operation is done component-
262 * wise resulting in the same size matrix."
263 * * The operator is multiply (*), where both operands are matrices or
264 * one operand is a vector and the other a matrix. A right vector
265 * operand is treated as a column vector and a left vector operand as a
266 * row vector. In all these cases, it is required that the number of
267 * columns of the left operand is equal to the number of rows of the
268 * right operand. Then, the multiply (*) operation does a linear
269 * algebraic multiply, yielding an object that has the same number of
270 * rows as the left operand and the same number of columns as the right
271 * operand. Section 5.10 "Vector and Matrix Operations" explains in
272 * more detail how vectors and matrices are operated on."
273 */
274 if (! multiply) {
Eric Anholta13bb142010-03-31 16:38:11 -1000275 if (type_a == type_b)
276 return type_a;
Ian Romanicka87ac252010-02-22 13:19:34 -0800277 } else {
Ian Romanickfce11502010-03-09 15:58:52 -0800278 if (type_a->is_matrix() && type_b->is_matrix()) {
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700279 /* Matrix multiply. The columns of A must match the rows of B. Given
280 * the other previously tested constraints, this means the vector type
281 * of a row from A must be the same as the vector type of a column from
282 * B.
283 */
284 if (type_a->row_type() == type_b->column_type()) {
285 /* The resulting matrix has the number of columns of matrix B and
286 * the number of rows of matrix A. We get the row count of A by
287 * looking at the size of a vector that makes up a column. The
288 * transpose (size of a row) is done for B.
289 */
Eric Anholta13bb142010-03-31 16:38:11 -1000290 const glsl_type *const type =
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700291 glsl_type::get_instance(type_a->base_type,
292 type_a->column_type()->vector_elements,
293 type_b->row_type()->vector_elements);
Eric Anholta13bb142010-03-31 16:38:11 -1000294 assert(type != glsl_type::error_type);
295
296 return type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800297 }
Ian Romanickfce11502010-03-09 15:58:52 -0800298 } else if (type_a->is_matrix()) {
Ian Romanicka87ac252010-02-22 13:19:34 -0800299 /* A is a matrix and B is a column vector. Columns of A must match
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700300 * rows of B. Given the other previously tested constraints, this
301 * means the vector type of a row from A must be the same as the
302 * vector the type of B.
Ian Romanicka87ac252010-02-22 13:19:34 -0800303 */
Carl Worth47c90b12010-07-22 14:56:14 -0700304 if (type_a->row_type() == type_b) {
305 /* The resulting vector has a number of elements equal to
306 * the number of rows of matrix A. */
307 const glsl_type *const type =
308 glsl_type::get_instance(type_a->base_type,
309 type_a->column_type()->vector_elements,
310 1);
311 assert(type != glsl_type::error_type);
312
313 return type;
314 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800315 } else {
Ian Romanickfce11502010-03-09 15:58:52 -0800316 assert(type_b->is_matrix());
Ian Romanicka87ac252010-02-22 13:19:34 -0800317
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700318 /* A is a row vector and B is a matrix. Columns of A must match rows
319 * of B. Given the other previously tested constraints, this means
320 * the type of A must be the same as the vector type of a column from
321 * B.
Ian Romanicka87ac252010-02-22 13:19:34 -0800322 */
Carl Worth47c90b12010-07-22 14:56:14 -0700323 if (type_a == type_b->column_type()) {
324 /* The resulting vector has a number of elements equal to
325 * the number of columns of matrix B. */
326 const glsl_type *const type =
327 glsl_type::get_instance(type_a->base_type,
328 type_b->row_type()->vector_elements,
329 1);
330 assert(type != glsl_type::error_type);
331
332 return type;
333 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800334 }
Eric Anholta13bb142010-03-31 16:38:11 -1000335
336 _mesa_glsl_error(loc, state, "size mismatch for matrix multiplication");
337 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800338 }
339
340
341 /* "All other cases are illegal."
342 */
Eric Anholta13bb142010-03-31 16:38:11 -1000343 _mesa_glsl_error(loc, state, "type mismatch");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700344 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800345}
346
347
348static const struct glsl_type *
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000349unary_arithmetic_result_type(const struct glsl_type *type,
350 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800351{
352 /* From GLSL 1.50 spec, page 57:
353 *
354 * "The arithmetic unary operators negate (-), post- and pre-increment
355 * and decrement (-- and ++) operate on integer or floating-point
356 * values (including vectors and matrices). All unary operators work
357 * component-wise on their operands. These result with the same type
358 * they operated on."
359 */
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000360 if (!type->is_numeric()) {
361 _mesa_glsl_error(loc, state,
362 "Operands to arithmetic operators must be numeric");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700363 return glsl_type::error_type;
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000364 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800365
366 return type;
367}
368
Chad Versacecfdbf8b2010-10-15 11:28:05 -0700369/**
370 * \brief Return the result type of a bit-logic operation.
371 *
372 * If the given types to the bit-logic operator are invalid, return
373 * glsl_type::error_type.
374 *
375 * \param type_a Type of LHS of bit-logic op
376 * \param type_b Type of RHS of bit-logic op
377 */
378static const struct glsl_type *
379bit_logic_result_type(const struct glsl_type *type_a,
380 const struct glsl_type *type_b,
381 ast_operators op,
382 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
383{
384 if (state->language_version < 130) {
385 _mesa_glsl_error(loc, state, "bit operations require GLSL 1.30");
386 return glsl_type::error_type;
387 }
388
389 /* From page 50 (page 56 of PDF) of GLSL 1.30 spec:
390 *
391 * "The bitwise operators and (&), exclusive-or (^), and inclusive-or
392 * (|). The operands must be of type signed or unsigned integers or
393 * integer vectors."
394 */
395 if (!type_a->is_integer()) {
396 _mesa_glsl_error(loc, state, "LHS of `%s' must be an integer",
397 ast_expression::operator_string(op));
398 return glsl_type::error_type;
399 }
400 if (!type_b->is_integer()) {
401 _mesa_glsl_error(loc, state, "RHS of `%s' must be an integer",
402 ast_expression::operator_string(op));
403 return glsl_type::error_type;
404 }
405
406 /* "The fundamental types of the operands (signed or unsigned) must
407 * match,"
408 */
409 if (type_a->base_type != type_b->base_type) {
410 _mesa_glsl_error(loc, state, "operands of `%s' must have the same "
411 "base type", ast_expression::operator_string(op));
412 return glsl_type::error_type;
413 }
414
415 /* "The operands cannot be vectors of differing size." */
416 if (type_a->is_vector() &&
417 type_b->is_vector() &&
418 type_a->vector_elements != type_b->vector_elements) {
419 _mesa_glsl_error(loc, state, "operands of `%s' cannot be vectors of "
420 "different sizes", ast_expression::operator_string(op));
421 return glsl_type::error_type;
422 }
423
424 /* "If one operand is a scalar and the other a vector, the scalar is
425 * applied component-wise to the vector, resulting in the same type as
426 * the vector. The fundamental types of the operands [...] will be the
427 * resulting fundamental type."
428 */
429 if (type_a->is_scalar())
430 return type_b;
431 else
432 return type_a;
433}
Ian Romanicka87ac252010-02-22 13:19:34 -0800434
435static const struct glsl_type *
436modulus_result_type(const struct glsl_type *type_a,
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000437 const struct glsl_type *type_b,
438 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800439{
Chad Versace82f994f2011-02-04 12:18:56 -0800440 if (state->language_version < 130) {
441 _mesa_glsl_error(loc, state,
442 "operator '%%' is reserved in %s",
443 state->version_string);
444 return glsl_type::error_type;
445 }
446
Ian Romanicka87ac252010-02-22 13:19:34 -0800447 /* From GLSL 1.50 spec, page 56:
448 * "The operator modulus (%) operates on signed or unsigned integers or
449 * integer vectors. The operand types must both be signed or both be
450 * unsigned."
451 */
Kenneth Graunke8eb97532011-06-14 22:21:41 -0700452 if (!type_a->is_integer()) {
453 _mesa_glsl_error(loc, state, "LHS of operator %% must be an integer.");
454 return glsl_type::error_type;
455 }
456 if (!type_b->is_integer()) {
457 _mesa_glsl_error(loc, state, "RHS of operator %% must be an integer.");
458 return glsl_type::error_type;
459 }
460 if (type_a->base_type != type_b->base_type) {
461 _mesa_glsl_error(loc, state,
462 "operands of %% must have the same base type");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700463 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800464 }
465
466 /* "The operands cannot be vectors of differing size. If one operand is
467 * a scalar and the other vector, then the scalar is applied component-
468 * wise to the vector, resulting in the same type as the vector. If both
469 * are vectors of the same size, the result is computed component-wise."
470 */
Ian Romanicka2dd22f2010-03-09 15:55:16 -0800471 if (type_a->is_vector()) {
472 if (!type_b->is_vector()
Ian Romanicka87ac252010-02-22 13:19:34 -0800473 || (type_a->vector_elements == type_b->vector_elements))
474 return type_a;
475 } else
476 return type_b;
477
478 /* "The operator modulus (%) is not defined for any other data types
479 * (non-integer types)."
480 */
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000481 _mesa_glsl_error(loc, state, "type mismatch");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700482 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800483}
484
485
486static const struct glsl_type *
Ian Romanickbfb09c22010-03-29 16:32:55 -0700487relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b,
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000488 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800489{
Eric Anholt336b4ad2010-05-19 10:38:37 -0700490 const glsl_type *type_a = value_a->type;
491 const glsl_type *type_b = value_b->type;
Ian Romanick0150f5f2010-03-29 16:20:07 -0700492
Ian Romanicka87ac252010-02-22 13:19:34 -0800493 /* From GLSL 1.50 spec, page 56:
494 * "The relational operators greater than (>), less than (<), greater
495 * than or equal (>=), and less than or equal (<=) operate only on
496 * scalar integer and scalar floating-point expressions."
497 */
Ian Romanicka6d653d2010-03-26 14:40:37 -0700498 if (!type_a->is_numeric()
499 || !type_b->is_numeric()
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800500 || !type_a->is_scalar()
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000501 || !type_b->is_scalar()) {
502 _mesa_glsl_error(loc, state,
503 "Operands to relational operators must be scalar and "
504 "numeric");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700505 return glsl_type::error_type;
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000506 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800507
508 /* "Either the operands' types must match, or the conversions from
509 * Section 4.1.10 "Implicit Conversions" will be applied to the integer
510 * operand, after which the types must match."
Ian Romanicka87ac252010-02-22 13:19:34 -0800511 */
Ian Romanick0150f5f2010-03-29 16:20:07 -0700512 if (!apply_implicit_conversion(type_a, value_b, state)
513 && !apply_implicit_conversion(type_b, value_a, state)) {
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000514 _mesa_glsl_error(loc, state,
515 "Could not implicitly convert operands to "
516 "relational operator");
Ian Romanick0150f5f2010-03-29 16:20:07 -0700517 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800518 }
Eric Anholt336b4ad2010-05-19 10:38:37 -0700519 type_a = value_a->type;
520 type_b = value_b->type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800521
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000522 if (type_a->base_type != type_b->base_type) {
523 _mesa_glsl_error(loc, state, "base type mismatch");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700524 return glsl_type::error_type;
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000525 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800526
527 /* "The result is scalar Boolean."
528 */
Ian Romanick0471e8b2010-03-26 14:33:41 -0700529 return glsl_type::bool_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800530}
531
Chad Versacec0197ab2010-10-15 09:49:46 -0700532/**
533 * \brief Return the result type of a bit-shift operation.
534 *
535 * If the given types to the bit-shift operator are invalid, return
536 * glsl_type::error_type.
537 *
538 * \param type_a Type of LHS of bit-shift op
539 * \param type_b Type of RHS of bit-shift op
540 */
541static const struct glsl_type *
542shift_result_type(const struct glsl_type *type_a,
543 const struct glsl_type *type_b,
544 ast_operators op,
545 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
546{
547 if (state->language_version < 130) {
548 _mesa_glsl_error(loc, state, "bit operations require GLSL 1.30");
549 return glsl_type::error_type;
550 }
551
552 /* From page 50 (page 56 of the PDF) of the GLSL 1.30 spec:
553 *
554 * "The shift operators (<<) and (>>). For both operators, the operands
555 * must be signed or unsigned integers or integer vectors. One operand
556 * can be signed while the other is unsigned."
557 */
558 if (!type_a->is_integer()) {
559 _mesa_glsl_error(loc, state, "LHS of operator %s must be an integer or "
560 "integer vector", ast_expression::operator_string(op));
561 return glsl_type::error_type;
562
563 }
564 if (!type_b->is_integer()) {
565 _mesa_glsl_error(loc, state, "RHS of operator %s must be an integer or "
566 "integer vector", ast_expression::operator_string(op));
567 return glsl_type::error_type;
568 }
569
570 /* "If the first operand is a scalar, the second operand has to be
571 * a scalar as well."
572 */
573 if (type_a->is_scalar() && !type_b->is_scalar()) {
574 _mesa_glsl_error(loc, state, "If the first operand of %s is scalar, the "
575 "second must be scalar as well",
576 ast_expression::operator_string(op));
577 return glsl_type::error_type;
578 }
579
580 /* If both operands are vectors, check that they have same number of
581 * elements.
582 */
583 if (type_a->is_vector() &&
584 type_b->is_vector() &&
585 type_a->vector_elements != type_b->vector_elements) {
586 _mesa_glsl_error(loc, state, "Vector operands to operator %s must "
587 "have same number of elements",
588 ast_expression::operator_string(op));
589 return glsl_type::error_type;
590 }
591
592 /* "In all cases, the resulting type will be the same type as the left
593 * operand."
594 */
595 return type_a;
596}
Ian Romanicka87ac252010-02-22 13:19:34 -0800597
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700598/**
599 * Validates that a value can be assigned to a location with a specified type
600 *
601 * Validates that \c rhs can be assigned to some location. If the types are
602 * not an exact match but an automatic conversion is possible, \c rhs will be
603 * converted.
604 *
605 * \return
606 * \c NULL if \c rhs cannot be assigned to a location with type \c lhs_type.
607 * Otherwise the actual RHS to be assigned will be returned. This may be
608 * \c rhs, or it may be \c rhs after some type conversion.
609 *
610 * \note
611 * In addition to being used for assignments, this function is used to
612 * type-check return values.
613 */
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700614ir_rvalue *
Eric Anholt336b4ad2010-05-19 10:38:37 -0700615validate_assignment(struct _mesa_glsl_parse_state *state,
Ian Romanick85caea22011-03-15 16:33:27 -0700616 const glsl_type *lhs_type, ir_rvalue *rhs,
617 bool is_initializer)
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700618{
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700619 /* If there is already some error in the RHS, just return it. Anything
620 * else will lead to an avalanche of error message back to the user.
621 */
Ian Romanickec530102010-12-10 15:47:11 -0800622 if (rhs->type->is_error())
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700623 return rhs;
624
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700625 /* If the types are identical, the assignment can trivially proceed.
626 */
Ian Romanickec530102010-12-10 15:47:11 -0800627 if (rhs->type == lhs_type)
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700628 return rhs;
629
Ian Romanick0157f412010-04-02 17:44:39 -0700630 /* If the array element types are the same and the size of the LHS is zero,
Ian Romanick85caea22011-03-15 16:33:27 -0700631 * the assignment is okay for initializers embedded in variable
632 * declarations.
Ian Romanick0157f412010-04-02 17:44:39 -0700633 *
634 * Note: Whole-array assignments are not permitted in GLSL 1.10, but this
635 * is handled by ir_dereference::is_lvalue.
636 */
Ian Romanick85caea22011-03-15 16:33:27 -0700637 if (is_initializer && lhs_type->is_array() && rhs->type->is_array()
Ian Romanick0157f412010-04-02 17:44:39 -0700638 && (lhs_type->element_type() == rhs->type->element_type())
639 && (lhs_type->array_size() == 0)) {
640 return rhs;
641 }
642
Eric Anholt336b4ad2010-05-19 10:38:37 -0700643 /* Check for implicit conversion in GLSL 1.20 */
644 if (apply_implicit_conversion(lhs_type, rhs, state)) {
Ian Romanickec530102010-12-10 15:47:11 -0800645 if (rhs->type == lhs_type)
Eric Anholt336b4ad2010-05-19 10:38:37 -0700646 return rhs;
647 }
648
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700649 return NULL;
650}
651
Eric Anholt10a68522010-03-26 11:53:37 -0700652ir_rvalue *
653do_assignment(exec_list *instructions, struct _mesa_glsl_parse_state *state,
Ian Romanick85caea22011-03-15 16:33:27 -0700654 ir_rvalue *lhs, ir_rvalue *rhs, bool is_initializer,
Eric Anholt10a68522010-03-26 11:53:37 -0700655 YYLTYPE lhs_loc)
656{
Kenneth Graunke953ff122010-06-25 13:14:37 -0700657 void *ctx = state;
Eric Anholt10a68522010-03-26 11:53:37 -0700658 bool error_emitted = (lhs->type->is_error() || rhs->type->is_error());
659
660 if (!error_emitted) {
Chad Versaceb66be752011-01-21 13:44:08 -0800661 if (lhs->variable_referenced() != NULL
662 && lhs->variable_referenced()->read_only) {
663 _mesa_glsl_error(&lhs_loc, state,
664 "assignment to read-only variable '%s'",
665 lhs->variable_referenced()->name);
666 error_emitted = true;
667
668 } else if (!lhs->is_lvalue()) {
Eric Anholt10a68522010-03-26 11:53:37 -0700669 _mesa_glsl_error(& lhs_loc, state, "non-lvalue in assignment");
670 error_emitted = true;
671 }
Kenneth Graunke10eaa8b2010-09-07 02:59:38 -0700672
673 if (state->es_shader && lhs->type->is_array()) {
674 _mesa_glsl_error(&lhs_loc, state, "whole array assignment is not "
675 "allowed in GLSL ES 1.00.");
676 error_emitted = true;
677 }
Eric Anholt10a68522010-03-26 11:53:37 -0700678 }
679
Ian Romanick85caea22011-03-15 16:33:27 -0700680 ir_rvalue *new_rhs =
681 validate_assignment(state, lhs->type, rhs, is_initializer);
Eric Anholt10a68522010-03-26 11:53:37 -0700682 if (new_rhs == NULL) {
683 _mesa_glsl_error(& lhs_loc, state, "type mismatch");
684 } else {
685 rhs = new_rhs;
Ian Romanick0157f412010-04-02 17:44:39 -0700686
687 /* If the LHS array was not declared with a size, it takes it size from
688 * the RHS. If the LHS is an l-value and a whole array, it must be a
689 * dereference of a variable. Any other case would require that the LHS
690 * is either not an l-value or not a whole array.
691 */
692 if (lhs->type->array_size() == 0) {
693 ir_dereference *const d = lhs->as_dereference();
694
695 assert(d != NULL);
696
Ian Romanick36ea2862010-05-19 13:52:29 +0200697 ir_variable *const var = d->variable_referenced();
Ian Romanick0157f412010-04-02 17:44:39 -0700698
699 assert(var != NULL);
700
Ian Romanick63f39422010-04-05 14:35:47 -0700701 if (var->max_array_access >= unsigned(rhs->type->array_size())) {
702 /* FINISHME: This should actually log the location of the RHS. */
703 _mesa_glsl_error(& lhs_loc, state, "array size must be > %u due to "
704 "previous access",
705 var->max_array_access);
706 }
707
Ian Romanickf38d15b2010-07-20 15:33:40 -0700708 var->type = glsl_type::get_array_instance(lhs->type->element_type(),
Ian Romanick0157f412010-04-02 17:44:39 -0700709 rhs->type->array_size());
Eric Anholt9703ed02010-07-22 15:50:37 -0700710 d->type = var->type;
Ian Romanick0157f412010-04-02 17:44:39 -0700711 }
Eric Anholt10a68522010-03-26 11:53:37 -0700712 }
713
Eric Anholt2731a732010-06-23 14:51:14 -0700714 /* Most callers of do_assignment (assign, add_assign, pre_inc/dec,
715 * but not post_inc) need the converted assigned value as an rvalue
716 * to handle things like:
717 *
718 * i = j += 1;
719 *
720 * So we always just store the computed value being assigned to a
721 * temporary and return a deref of that temporary. If the rvalue
722 * ends up not being used, the temp will get copy-propagated out.
723 */
Ian Romanick7e2aa912010-07-19 17:12:42 -0700724 ir_variable *var = new(ctx) ir_variable(rhs->type, "assignment_tmp",
725 ir_var_temporary);
Eric Anholte33c1032010-06-24 15:13:03 -0700726 ir_dereference_variable *deref_var = new(ctx) ir_dereference_variable(var);
Eric Anholtae805922010-06-24 09:06:12 -0700727 instructions->push_tail(var);
Eric Anholte33c1032010-06-24 15:13:03 -0700728 instructions->push_tail(new(ctx) ir_assignment(deref_var,
Carl Worth1660a292010-06-23 18:11:51 -0700729 rhs,
730 NULL));
Eric Anholte33c1032010-06-24 15:13:03 -0700731 deref_var = new(ctx) ir_dereference_variable(var);
Eric Anholt10a68522010-03-26 11:53:37 -0700732
Ian Romanick8e9ce2e2010-08-03 15:02:35 -0700733 if (!error_emitted)
734 instructions->push_tail(new(ctx) ir_assignment(lhs, deref_var, NULL));
Eric Anholt2731a732010-06-23 14:51:14 -0700735
Carl Worth1660a292010-06-23 18:11:51 -0700736 return new(ctx) ir_dereference_variable(var);
Eric Anholt10a68522010-03-26 11:53:37 -0700737}
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700738
Eric Anholtde38f0e2010-03-26 12:14:54 -0700739static ir_rvalue *
Eric Anholt959a9ec2010-06-23 14:43:50 -0700740get_lvalue_copy(exec_list *instructions, ir_rvalue *lvalue)
Eric Anholtde38f0e2010-03-26 12:14:54 -0700741{
Kenneth Graunked3073f52011-01-21 14:32:31 -0800742 void *ctx = ralloc_parent(lvalue);
Eric Anholtde38f0e2010-03-26 12:14:54 -0700743 ir_variable *var;
Eric Anholtde38f0e2010-03-26 12:14:54 -0700744
Ian Romanick7e2aa912010-07-19 17:12:42 -0700745 var = new(ctx) ir_variable(lvalue->type, "_post_incdec_tmp",
746 ir_var_temporary);
Eric Anholt43b5b032010-07-07 14:04:30 -0700747 instructions->push_tail(var);
Eric Anholtde38f0e2010-03-26 12:14:54 -0700748 var->mode = ir_var_auto;
749
Carl Worth1660a292010-06-23 18:11:51 -0700750 instructions->push_tail(new(ctx) ir_assignment(new(ctx) ir_dereference_variable(var),
751 lvalue, NULL));
Eric Anholtde38f0e2010-03-26 12:14:54 -0700752
753 /* Once we've created this temporary, mark it read only so it's no
754 * longer considered an lvalue.
755 */
756 var->read_only = true;
757
Carl Worth1660a292010-06-23 18:11:51 -0700758 return new(ctx) ir_dereference_variable(var);
Eric Anholtde38f0e2010-03-26 12:14:54 -0700759}
760
761
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700762ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -0800763ast_node::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -0800764 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -0800765{
Ian Romanick18238de2010-03-01 13:49:10 -0800766 (void) instructions;
767 (void) state;
768
769 return NULL;
770}
771
Eric Anholtb4f58562010-12-01 15:55:53 -0800772static void
773mark_whole_array_access(ir_rvalue *access)
774{
775 ir_dereference_variable *deref = access->as_dereference_variable();
776
777 if (deref) {
778 deref->var->max_array_access = deref->type->length - 1;
779 }
780}
781
Eric Anholtff796332010-11-30 11:23:28 -0800782static ir_rvalue *
783do_comparison(void *mem_ctx, int operation, ir_rvalue *op0, ir_rvalue *op1)
784{
785 int join_op;
Ian Romanick6d36be52010-12-02 12:17:36 -0800786 ir_rvalue *cmp = NULL;
Eric Anholtff796332010-11-30 11:23:28 -0800787
788 if (operation == ir_binop_all_equal)
789 join_op = ir_binop_logic_and;
790 else
791 join_op = ir_binop_logic_or;
792
793 switch (op0->type->base_type) {
794 case GLSL_TYPE_FLOAT:
795 case GLSL_TYPE_UINT:
796 case GLSL_TYPE_INT:
797 case GLSL_TYPE_BOOL:
798 return new(mem_ctx) ir_expression(operation, op0, op1);
799
800 case GLSL_TYPE_ARRAY: {
Eric Anholtff796332010-11-30 11:23:28 -0800801 for (unsigned int i = 0; i < op0->type->length; i++) {
802 ir_rvalue *e0, *e1, *result;
803
804 e0 = new(mem_ctx) ir_dereference_array(op0->clone(mem_ctx, NULL),
805 new(mem_ctx) ir_constant(i));
806 e1 = new(mem_ctx) ir_dereference_array(op1->clone(mem_ctx, NULL),
807 new(mem_ctx) ir_constant(i));
808 result = do_comparison(mem_ctx, operation, e0, e1);
809
Ian Romanick6d36be52010-12-02 12:17:36 -0800810 if (cmp) {
811 cmp = new(mem_ctx) ir_expression(join_op, cmp, result);
Eric Anholtff796332010-11-30 11:23:28 -0800812 } else {
Ian Romanick6d36be52010-12-02 12:17:36 -0800813 cmp = result;
Eric Anholtff796332010-11-30 11:23:28 -0800814 }
815 }
Eric Anholtb4f58562010-12-01 15:55:53 -0800816
817 mark_whole_array_access(op0);
818 mark_whole_array_access(op1);
Ian Romanick6d36be52010-12-02 12:17:36 -0800819 break;
Eric Anholtff796332010-11-30 11:23:28 -0800820 }
821
822 case GLSL_TYPE_STRUCT: {
Eric Anholtff796332010-11-30 11:23:28 -0800823 for (unsigned int i = 0; i < op0->type->length; i++) {
824 ir_rvalue *e0, *e1, *result;
825 const char *field_name = op0->type->fields.structure[i].name;
826
827 e0 = new(mem_ctx) ir_dereference_record(op0->clone(mem_ctx, NULL),
828 field_name);
829 e1 = new(mem_ctx) ir_dereference_record(op1->clone(mem_ctx, NULL),
830 field_name);
831 result = do_comparison(mem_ctx, operation, e0, e1);
832
Ian Romanick6d36be52010-12-02 12:17:36 -0800833 if (cmp) {
834 cmp = new(mem_ctx) ir_expression(join_op, cmp, result);
Eric Anholtff796332010-11-30 11:23:28 -0800835 } else {
Ian Romanick6d36be52010-12-02 12:17:36 -0800836 cmp = result;
Eric Anholtff796332010-11-30 11:23:28 -0800837 }
838 }
Ian Romanick6d36be52010-12-02 12:17:36 -0800839 break;
Eric Anholtff796332010-11-30 11:23:28 -0800840 }
841
842 case GLSL_TYPE_ERROR:
843 case GLSL_TYPE_VOID:
844 case GLSL_TYPE_SAMPLER:
845 /* I assume a comparison of a struct containing a sampler just
846 * ignores the sampler present in the type.
847 */
Ian Romanick6d36be52010-12-02 12:17:36 -0800848 break;
849
850 default:
851 assert(!"Should not get here.");
852 break;
Eric Anholtff796332010-11-30 11:23:28 -0800853 }
Eric Anholtd56c9742010-11-30 13:28:47 -0800854
Ian Romanick6d36be52010-12-02 12:17:36 -0800855 if (cmp == NULL)
856 cmp = new(mem_ctx) ir_constant(true);
857
858 return cmp;
Eric Anholtff796332010-11-30 11:23:28 -0800859}
Ian Romanick18238de2010-03-01 13:49:10 -0800860
Eric Anholt01822702011-04-09 15:59:20 -1000861/* For logical operations, we want to ensure that the operands are
862 * scalar booleans. If it isn't, emit an error and return a constant
863 * boolean to avoid triggering cascading error messages.
864 */
865ir_rvalue *
866get_scalar_boolean_operand(exec_list *instructions,
867 struct _mesa_glsl_parse_state *state,
868 ast_expression *parent_expr,
869 int operand,
870 const char *operand_name,
871 bool *error_emitted)
872{
873 ast_expression *expr = parent_expr->subexpressions[operand];
874 void *ctx = state;
875 ir_rvalue *val = expr->hir(instructions, state);
876
877 if (val->type->is_boolean() && val->type->is_scalar())
878 return val;
879
880 if (!*error_emitted) {
881 YYLTYPE loc = expr->get_location();
882 _mesa_glsl_error(&loc, state, "%s of `%s' must be scalar boolean",
883 operand_name,
884 parent_expr->operator_string(parent_expr->oper));
885 *error_emitted = true;
886 }
887
888 return new(ctx) ir_constant(true);
889}
890
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700891ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -0800892ast_expression::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -0800893 struct _mesa_glsl_parse_state *state)
894{
Kenneth Graunke953ff122010-06-25 13:14:37 -0700895 void *ctx = state;
Ian Romanicka87ac252010-02-22 13:19:34 -0800896 static const int operations[AST_NUM_OPERATORS] = {
897 -1, /* ast_assign doesn't convert to ir_expression. */
898 -1, /* ast_plus doesn't convert to ir_expression. */
899 ir_unop_neg,
900 ir_binop_add,
901 ir_binop_sub,
902 ir_binop_mul,
903 ir_binop_div,
904 ir_binop_mod,
905 ir_binop_lshift,
906 ir_binop_rshift,
907 ir_binop_less,
908 ir_binop_greater,
909 ir_binop_lequal,
910 ir_binop_gequal,
Luca Barbieri4dfb8992010-09-08 01:31:39 +0200911 ir_binop_all_equal,
912 ir_binop_any_nequal,
Ian Romanicka87ac252010-02-22 13:19:34 -0800913 ir_binop_bit_and,
914 ir_binop_bit_xor,
915 ir_binop_bit_or,
916 ir_unop_bit_not,
917 ir_binop_logic_and,
918 ir_binop_logic_xor,
919 ir_binop_logic_or,
920 ir_unop_logic_not,
921
922 /* Note: The following block of expression types actually convert
923 * to multiple IR instructions.
924 */
925 ir_binop_mul, /* ast_mul_assign */
926 ir_binop_div, /* ast_div_assign */
927 ir_binop_mod, /* ast_mod_assign */
928 ir_binop_add, /* ast_add_assign */
929 ir_binop_sub, /* ast_sub_assign */
930 ir_binop_lshift, /* ast_ls_assign */
931 ir_binop_rshift, /* ast_rs_assign */
932 ir_binop_bit_and, /* ast_and_assign */
933 ir_binop_bit_xor, /* ast_xor_assign */
934 ir_binop_bit_or, /* ast_or_assign */
935
936 -1, /* ast_conditional doesn't convert to ir_expression. */
Eric Anholtde38f0e2010-03-26 12:14:54 -0700937 ir_binop_add, /* ast_pre_inc. */
938 ir_binop_sub, /* ast_pre_dec. */
939 ir_binop_add, /* ast_post_inc. */
940 ir_binop_sub, /* ast_post_dec. */
Ian Romanicka87ac252010-02-22 13:19:34 -0800941 -1, /* ast_field_selection doesn't conv to ir_expression. */
942 -1, /* ast_array_index doesn't convert to ir_expression. */
943 -1, /* ast_function_call doesn't conv to ir_expression. */
944 -1, /* ast_identifier doesn't convert to ir_expression. */
945 -1, /* ast_int_constant doesn't convert to ir_expression. */
946 -1, /* ast_uint_constant doesn't conv to ir_expression. */
947 -1, /* ast_float_constant doesn't conv to ir_expression. */
948 -1, /* ast_bool_constant doesn't conv to ir_expression. */
949 -1, /* ast_sequence doesn't convert to ir_expression. */
950 };
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700951 ir_rvalue *result = NULL;
Aras Pranckevicius1c325af2010-07-29 15:35:22 +0300952 ir_rvalue *op[3];
Kenneth Graunke08ba9772011-04-14 17:21:59 -0700953 const struct glsl_type *type; /* a temporary variable for switch cases */
Ian Romanicka87ac252010-02-22 13:19:34 -0800954 bool error_emitted = false;
955 YYLTYPE loc;
956
Ian Romanick18238de2010-03-01 13:49:10 -0800957 loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -0800958
Ian Romanick18238de2010-03-01 13:49:10 -0800959 switch (this->oper) {
Ian Romanick6652af32010-03-09 16:38:02 -0800960 case ast_assign: {
Ian Romanick18238de2010-03-01 13:49:10 -0800961 op[0] = this->subexpressions[0]->hir(instructions, state);
962 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -0800963
Ian Romanick85caea22011-03-15 16:33:27 -0700964 result = do_assignment(instructions, state, op[0], op[1], false,
Eric Anholt10a68522010-03-26 11:53:37 -0700965 this->subexpressions[0]->get_location());
966 error_emitted = result->type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -0800967 break;
Ian Romanick6652af32010-03-09 16:38:02 -0800968 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800969
970 case ast_plus:
Ian Romanick18238de2010-03-01 13:49:10 -0800971 op[0] = this->subexpressions[0]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -0800972
Carl Worthc24bcad2010-07-21 11:23:51 -0700973 type = unary_arithmetic_result_type(op[0]->type, state, & loc);
974
975 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -0800976
977 result = op[0];
978 break;
979
980 case ast_neg:
Ian Romanick18238de2010-03-01 13:49:10 -0800981 op[0] = this->subexpressions[0]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -0800982
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000983 type = unary_arithmetic_result_type(op[0]->type, state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -0800984
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000985 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -0800986
Carl Worth1660a292010-06-23 18:11:51 -0700987 result = new(ctx) ir_expression(operations[this->oper], type,
988 op[0], NULL);
Ian Romanicka87ac252010-02-22 13:19:34 -0800989 break;
990
991 case ast_add:
992 case ast_sub:
993 case ast_mul:
994 case ast_div:
Ian Romanick18238de2010-03-01 13:49:10 -0800995 op[0] = this->subexpressions[0]->hir(instructions, state);
996 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -0800997
Ian Romanickbfb09c22010-03-29 16:32:55 -0700998 type = arithmetic_result_type(op[0], op[1],
Ian Romanick18238de2010-03-01 13:49:10 -0800999 (this->oper == ast_mul),
Eric Anholta13bb142010-03-31 16:38:11 -10001000 state, & loc);
1001 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001002
Carl Worth1660a292010-06-23 18:11:51 -07001003 result = new(ctx) ir_expression(operations[this->oper], type,
1004 op[0], op[1]);
Ian Romanicka87ac252010-02-22 13:19:34 -08001005 break;
1006
1007 case ast_mod:
Ian Romanick18238de2010-03-01 13:49:10 -08001008 op[0] = this->subexpressions[0]->hir(instructions, state);
1009 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001010
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001011 type = modulus_result_type(op[0]->type, op[1]->type, state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08001012
Ian Romanick18238de2010-03-01 13:49:10 -08001013 assert(operations[this->oper] == ir_binop_mod);
Ian Romanicka87ac252010-02-22 13:19:34 -08001014
Carl Worth1660a292010-06-23 18:11:51 -07001015 result = new(ctx) ir_expression(operations[this->oper], type,
1016 op[0], op[1]);
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001017 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001018 break;
1019
1020 case ast_lshift:
1021 case ast_rshift:
Chad Versace5c4c36f2010-10-08 16:22:28 -07001022 if (state->language_version < 130) {
1023 _mesa_glsl_error(&loc, state, "operator %s requires GLSL 1.30",
1024 operator_string(this->oper));
1025 error_emitted = true;
Chad Versace5c4c36f2010-10-08 16:22:28 -07001026 }
1027
Chad Versace5c4c36f2010-10-08 16:22:28 -07001028 op[0] = this->subexpressions[0]->hir(instructions, state);
1029 op[1] = this->subexpressions[1]->hir(instructions, state);
Chad Versacec0197ab2010-10-15 09:49:46 -07001030 type = shift_result_type(op[0]->type, op[1]->type, this->oper, state,
1031 &loc);
Chad Versace5c4c36f2010-10-08 16:22:28 -07001032 result = new(ctx) ir_expression(operations[this->oper], type,
1033 op[0], op[1]);
1034 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1035 break;
Ian Romanicka87ac252010-02-22 13:19:34 -08001036
1037 case ast_less:
1038 case ast_greater:
1039 case ast_lequal:
1040 case ast_gequal:
Ian Romanick18238de2010-03-01 13:49:10 -08001041 op[0] = this->subexpressions[0]->hir(instructions, state);
1042 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001043
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001044 type = relational_result_type(op[0], op[1], state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08001045
1046 /* The relational operators must either generate an error or result
1047 * in a scalar boolean. See page 57 of the GLSL 1.50 spec.
1048 */
Ian Romanicka43817a2010-03-26 14:27:23 -07001049 assert(type->is_error()
Ian Romanicka87ac252010-02-22 13:19:34 -08001050 || ((type->base_type == GLSL_TYPE_BOOL)
Ian Romanickcb36f8a2010-03-09 15:51:22 -08001051 && type->is_scalar()));
Ian Romanicka87ac252010-02-22 13:19:34 -08001052
Carl Worth1660a292010-06-23 18:11:51 -07001053 result = new(ctx) ir_expression(operations[this->oper], type,
1054 op[0], op[1]);
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001055 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001056 break;
1057
1058 case ast_nequal:
1059 case ast_equal:
Ian Romanick6e659ca2010-03-29 15:11:05 -07001060 op[0] = this->subexpressions[0]->hir(instructions, state);
1061 op[1] = this->subexpressions[1]->hir(instructions, state);
1062
1063 /* From page 58 (page 64 of the PDF) of the GLSL 1.50 spec:
1064 *
1065 * "The equality operators equal (==), and not equal (!=)
1066 * operate on all types. They result in a scalar Boolean. If
1067 * the operand types do not match, then there must be a
1068 * conversion from Section 4.1.10 "Implicit Conversions"
1069 * applied to one operand that can make them match, in which
1070 * case this conversion is done."
1071 */
Ian Romanickbfb09c22010-03-29 16:32:55 -07001072 if ((!apply_implicit_conversion(op[0]->type, op[1], state)
1073 && !apply_implicit_conversion(op[1]->type, op[0], state))
Ian Romanick212b0322010-03-29 16:22:38 -07001074 || (op[0]->type != op[1]->type)) {
Ian Romanick6e659ca2010-03-29 15:11:05 -07001075 _mesa_glsl_error(& loc, state, "operands of `%s' must have the same "
1076 "type", (this->oper == ast_equal) ? "==" : "!=");
1077 error_emitted = true;
Ian Romanicka80cbd62010-03-30 17:04:48 -07001078 } else if ((state->language_version <= 110)
1079 && (op[0]->type->is_array() || op[1]->type->is_array())) {
1080 _mesa_glsl_error(& loc, state, "array comparisons forbidden in "
1081 "GLSL 1.10");
1082 error_emitted = true;
Ian Romanick6e659ca2010-03-29 15:11:05 -07001083 }
1084
Eric Anholt175829f2011-04-09 12:54:34 -10001085 if (error_emitted) {
1086 result = new(ctx) ir_constant(false);
1087 } else {
1088 result = do_comparison(ctx, operations[this->oper], op[0], op[1]);
1089 assert(result->type == glsl_type::bool_type);
Eric Anholt175829f2011-04-09 12:54:34 -10001090 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001091 break;
1092
1093 case ast_bit_and:
1094 case ast_bit_xor:
1095 case ast_bit_or:
Kenneth Graunke1eea9632010-08-31 10:56:24 -07001096 op[0] = this->subexpressions[0]->hir(instructions, state);
1097 op[1] = this->subexpressions[1]->hir(instructions, state);
Chad Versacecfdbf8b2010-10-15 11:28:05 -07001098 type = bit_logic_result_type(op[0]->type, op[1]->type, this->oper,
1099 state, &loc);
Kenneth Graunke1eea9632010-08-31 10:56:24 -07001100 result = new(ctx) ir_expression(operations[this->oper], type,
1101 op[0], op[1]);
1102 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1103 break;
1104
Ian Romanicka87ac252010-02-22 13:19:34 -08001105 case ast_bit_not:
Kenneth Graunke1eea9632010-08-31 10:56:24 -07001106 op[0] = this->subexpressions[0]->hir(instructions, state);
1107
1108 if (state->language_version < 130) {
1109 _mesa_glsl_error(&loc, state, "bit-wise operations require GLSL 1.30");
1110 error_emitted = true;
1111 }
1112
1113 if (!op[0]->type->is_integer()) {
1114 _mesa_glsl_error(&loc, state, "operand of `~' must be an integer");
1115 error_emitted = true;
1116 }
1117
1118 type = op[0]->type;
1119 result = new(ctx) ir_expression(ir_unop_bit_not, type, op[0], NULL);
Ian Romanicka87ac252010-02-22 13:19:34 -08001120 break;
1121
Eric Anholt4950a682010-04-16 01:10:32 -07001122 case ast_logic_and: {
Eric Anholt7ec0c972011-04-09 10:27:02 -10001123 exec_list rhs_instructions;
Eric Anholt01822702011-04-09 15:59:20 -10001124 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1125 "LHS", &error_emitted);
Eric Anholt7ec0c972011-04-09 10:27:02 -10001126 op[1] = get_scalar_boolean_operand(&rhs_instructions, state, this, 1,
1127 "RHS", &error_emitted);
Eric Anholtb82c0c32010-03-31 09:11:39 -10001128
Eric Anholt44b694e2010-04-16 13:49:04 -07001129 ir_constant *op0_const = op[0]->constant_expression_value();
1130 if (op0_const) {
1131 if (op0_const->value.b[0]) {
Eric Anholt7ec0c972011-04-09 10:27:02 -10001132 instructions->append_list(&rhs_instructions);
1133 result = op[1];
Eric Anholt44b694e2010-04-16 13:49:04 -07001134 } else {
1135 result = op0_const;
1136 }
1137 type = glsl_type::bool_type;
1138 } else {
Ian Romanick81d664f2010-07-12 15:18:55 -07001139 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
Ian Romanick7e2aa912010-07-19 17:12:42 -07001140 "and_tmp",
1141 ir_var_temporary);
Ian Romanick81d664f2010-07-12 15:18:55 -07001142 instructions->push_tail(tmp);
1143
Carl Worth1660a292010-06-23 18:11:51 -07001144 ir_if *const stmt = new(ctx) ir_if(op[0]);
Eric Anholt44b694e2010-04-16 13:49:04 -07001145 instructions->push_tail(stmt);
Eric Anholt4950a682010-04-16 01:10:32 -07001146
Eric Anholt7ec0c972011-04-09 10:27:02 -10001147 stmt->then_instructions.append_list(&rhs_instructions);
Carl Worth1660a292010-06-23 18:11:51 -07001148 ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001149 ir_assignment *const then_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001150 new(ctx) ir_assignment(then_deref, op[1], NULL);
Eric Anholt44b694e2010-04-16 13:49:04 -07001151 stmt->then_instructions.push_tail(then_assign);
1152
Carl Worth1660a292010-06-23 18:11:51 -07001153 ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001154 ir_assignment *const else_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001155 new(ctx) ir_assignment(else_deref, new(ctx) ir_constant(false), NULL);
Eric Anholt44b694e2010-04-16 13:49:04 -07001156 stmt->else_instructions.push_tail(else_assign);
1157
Carl Worth1660a292010-06-23 18:11:51 -07001158 result = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001159 type = tmp->type;
Eric Anholtb82c0c32010-03-31 09:11:39 -10001160 }
Eric Anholt4950a682010-04-16 01:10:32 -07001161 break;
1162 }
1163
1164 case ast_logic_or: {
Eric Anholt9e04b192011-04-09 10:27:02 -10001165 exec_list rhs_instructions;
Eric Anholt01822702011-04-09 15:59:20 -10001166 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1167 "LHS", &error_emitted);
Eric Anholt9e04b192011-04-09 10:27:02 -10001168 op[1] = get_scalar_boolean_operand(&rhs_instructions, state, this, 1,
1169 "RHS", &error_emitted);
Eric Anholt4950a682010-04-16 01:10:32 -07001170
Eric Anholt44b694e2010-04-16 13:49:04 -07001171 ir_constant *op0_const = op[0]->constant_expression_value();
1172 if (op0_const) {
1173 if (op0_const->value.b[0]) {
1174 result = op0_const;
1175 } else {
Eric Anholt9e04b192011-04-09 10:27:02 -10001176 result = op[1];
Eric Anholt44b694e2010-04-16 13:49:04 -07001177 }
1178 type = glsl_type::bool_type;
1179 } else {
Kenneth Graunkedfd30ca2010-07-08 12:40:52 -07001180 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
Ian Romanick7e2aa912010-07-19 17:12:42 -07001181 "or_tmp",
1182 ir_var_temporary);
Ian Romanick0b9ae3b2010-07-12 14:22:05 -07001183 instructions->push_tail(tmp);
Eric Anholt4950a682010-04-16 01:10:32 -07001184
Ian Romanick81d664f2010-07-12 15:18:55 -07001185 ir_if *const stmt = new(ctx) ir_if(op[0]);
1186 instructions->push_tail(stmt);
1187
Carl Worth1660a292010-06-23 18:11:51 -07001188 ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001189 ir_assignment *const then_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001190 new(ctx) ir_assignment(then_deref, new(ctx) ir_constant(true), NULL);
Eric Anholt44b694e2010-04-16 13:49:04 -07001191 stmt->then_instructions.push_tail(then_assign);
1192
Eric Anholt9e04b192011-04-09 10:27:02 -10001193 stmt->else_instructions.append_list(&rhs_instructions);
Carl Worth1660a292010-06-23 18:11:51 -07001194 ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001195 ir_assignment *const else_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001196 new(ctx) ir_assignment(else_deref, op[1], NULL);
Eric Anholt44b694e2010-04-16 13:49:04 -07001197 stmt->else_instructions.push_tail(else_assign);
1198
Carl Worth1660a292010-06-23 18:11:51 -07001199 result = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001200 type = tmp->type;
Eric Anholt4950a682010-04-16 01:10:32 -07001201 }
Eric Anholt4950a682010-04-16 01:10:32 -07001202 break;
1203 }
1204
1205 case ast_logic_xor:
Eric Anholt756c2622011-04-09 14:57:17 -10001206 /* From page 33 (page 39 of the PDF) of the GLSL 1.10 spec:
1207 *
1208 * "The logical binary operators and (&&), or ( | | ), and
1209 * exclusive or (^^). They operate only on two Boolean
1210 * expressions and result in a Boolean expression."
1211 */
1212 op[0] = get_scalar_boolean_operand(instructions, state, this, 0, "LHS",
1213 &error_emitted);
1214 op[1] = get_scalar_boolean_operand(instructions, state, this, 1, "RHS",
1215 &error_emitted);
Eric Anholt4950a682010-04-16 01:10:32 -07001216
Carl Worth1660a292010-06-23 18:11:51 -07001217 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
1218 op[0], op[1]);
Ian Romanicka87ac252010-02-22 13:19:34 -08001219 break;
1220
Eric Anholta5827fe2010-03-31 16:50:55 -10001221 case ast_logic_not:
Eric Anholt01822702011-04-09 15:59:20 -10001222 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1223 "operand", &error_emitted);
Eric Anholta5827fe2010-03-31 16:50:55 -10001224
Carl Worth1660a292010-06-23 18:11:51 -07001225 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
1226 op[0], NULL);
Eric Anholta5827fe2010-03-31 16:50:55 -10001227 break;
1228
Ian Romanicka87ac252010-02-22 13:19:34 -08001229 case ast_mul_assign:
1230 case ast_div_assign:
1231 case ast_add_assign:
1232 case ast_sub_assign: {
Ian Romanick18238de2010-03-01 13:49:10 -08001233 op[0] = this->subexpressions[0]->hir(instructions, state);
1234 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001235
Ian Romanickbfb09c22010-03-29 16:32:55 -07001236 type = arithmetic_result_type(op[0], op[1],
Ian Romanick18238de2010-03-01 13:49:10 -08001237 (this->oper == ast_mul_assign),
Eric Anholta13bb142010-03-31 16:38:11 -10001238 state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08001239
Carl Worth1660a292010-06-23 18:11:51 -07001240 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1241 op[0], op[1]);
Ian Romanicka87ac252010-02-22 13:19:34 -08001242
Eric Anholt3e24ef62010-06-23 12:40:17 -07001243 result = do_assignment(instructions, state,
Ian Romanick85caea22011-03-15 16:33:27 -07001244 op[0]->clone(ctx, NULL), temp_rhs, false,
Eric Anholt10a68522010-03-26 11:53:37 -07001245 this->subexpressions[0]->get_location());
Eric Anholt10a68522010-03-26 11:53:37 -07001246 error_emitted = (op[0]->type->is_error());
Ian Romanicka87ac252010-02-22 13:19:34 -08001247
1248 /* GLSL 1.10 does not allow array assignment. However, we don't have to
1249 * explicitly test for this because none of the binary expression
1250 * operators allow array operands either.
1251 */
1252
Ian Romanicka87ac252010-02-22 13:19:34 -08001253 break;
1254 }
1255
Eric Anholt48a0e642010-03-26 11:57:46 -07001256 case ast_mod_assign: {
1257 op[0] = this->subexpressions[0]->hir(instructions, state);
1258 op[1] = this->subexpressions[1]->hir(instructions, state);
1259
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001260 type = modulus_result_type(op[0]->type, op[1]->type, state, & loc);
Eric Anholt48a0e642010-03-26 11:57:46 -07001261
1262 assert(operations[this->oper] == ir_binop_mod);
1263
Ian Romanick768b55a2010-08-13 16:46:43 -07001264 ir_rvalue *temp_rhs;
Carl Worth1660a292010-06-23 18:11:51 -07001265 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1266 op[0], op[1]);
Eric Anholt48a0e642010-03-26 11:57:46 -07001267
Eric Anholt3e24ef62010-06-23 12:40:17 -07001268 result = do_assignment(instructions, state,
Ian Romanick85caea22011-03-15 16:33:27 -07001269 op[0]->clone(ctx, NULL), temp_rhs, false,
Eric Anholt48a0e642010-03-26 11:57:46 -07001270 this->subexpressions[0]->get_location());
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001271 error_emitted = type->is_error();
Eric Anholt48a0e642010-03-26 11:57:46 -07001272 break;
1273 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001274
1275 case ast_ls_assign:
Chad Versace338ed6e2010-10-15 10:05:50 -07001276 case ast_rs_assign: {
1277 op[0] = this->subexpressions[0]->hir(instructions, state);
1278 op[1] = this->subexpressions[1]->hir(instructions, state);
1279 type = shift_result_type(op[0]->type, op[1]->type, this->oper, state,
1280 &loc);
1281 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper],
1282 type, op[0], op[1]);
1283 result = do_assignment(instructions, state, op[0]->clone(ctx, NULL),
Ian Romanick85caea22011-03-15 16:33:27 -07001284 temp_rhs, false,
Chad Versace338ed6e2010-10-15 10:05:50 -07001285 this->subexpressions[0]->get_location());
1286 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
Ian Romanick251eb752010-03-29 14:15:05 -07001287 break;
Chad Versace338ed6e2010-10-15 10:05:50 -07001288 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001289
1290 case ast_and_assign:
1291 case ast_xor_assign:
Chad Versaced03ac0f2010-10-15 12:08:28 -07001292 case ast_or_assign: {
1293 op[0] = this->subexpressions[0]->hir(instructions, state);
1294 op[1] = this->subexpressions[1]->hir(instructions, state);
1295 type = bit_logic_result_type(op[0]->type, op[1]->type, this->oper,
1296 state, &loc);
1297 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper],
1298 type, op[0], op[1]);
1299 result = do_assignment(instructions, state, op[0]->clone(ctx, NULL),
Ian Romanick85caea22011-03-15 16:33:27 -07001300 temp_rhs, false,
Chad Versaced03ac0f2010-10-15 12:08:28 -07001301 this->subexpressions[0]->get_location());
1302 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
Ian Romanick251eb752010-03-29 14:15:05 -07001303 break;
Chad Versaced03ac0f2010-10-15 12:08:28 -07001304 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001305
Ian Romanick96f9cea2010-03-29 15:33:54 -07001306 case ast_conditional: {
Ian Romanick96f9cea2010-03-29 15:33:54 -07001307 /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec:
1308 *
1309 * "The ternary selection operator (?:). It operates on three
1310 * expressions (exp1 ? exp2 : exp3). This operator evaluates the
1311 * first expression, which must result in a scalar Boolean."
1312 */
Eric Anholt01822702011-04-09 15:59:20 -10001313 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1314 "condition", &error_emitted);
Ian Romanick96f9cea2010-03-29 15:33:54 -07001315
1316 /* The :? operator is implemented by generating an anonymous temporary
1317 * followed by an if-statement. The last instruction in each branch of
1318 * the if-statement assigns a value to the anonymous temporary. This
1319 * temporary is the r-value of the expression.
1320 */
Ian Romanick0ad76c62010-06-11 12:56:26 -07001321 exec_list then_instructions;
1322 exec_list else_instructions;
Ian Romanick96f9cea2010-03-29 15:33:54 -07001323
Ian Romanick0ad76c62010-06-11 12:56:26 -07001324 op[1] = this->subexpressions[1]->hir(&then_instructions, state);
1325 op[2] = this->subexpressions[2]->hir(&else_instructions, state);
Ian Romanick96f9cea2010-03-29 15:33:54 -07001326
1327 /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec:
1328 *
1329 * "The second and third expressions can be any type, as
1330 * long their types match, or there is a conversion in
1331 * Section 4.1.10 "Implicit Conversions" that can be applied
1332 * to one of the expressions to make their types match. This
1333 * resulting matching type is the type of the entire
1334 * expression."
1335 */
Ian Romanickbfb09c22010-03-29 16:32:55 -07001336 if ((!apply_implicit_conversion(op[1]->type, op[2], state)
1337 && !apply_implicit_conversion(op[2]->type, op[1], state))
Ian Romanickdb9be2e2010-03-29 16:25:56 -07001338 || (op[1]->type != op[2]->type)) {
Ian Romanick96f9cea2010-03-29 15:33:54 -07001339 YYLTYPE loc = this->subexpressions[1]->get_location();
1340
1341 _mesa_glsl_error(& loc, state, "Second and third operands of ?: "
1342 "operator must have matching types.");
1343 error_emitted = true;
Ian Romanick0ad76c62010-06-11 12:56:26 -07001344 type = glsl_type::error_type;
Ian Romanickdb9be2e2010-03-29 16:25:56 -07001345 } else {
Ian Romanick0ad76c62010-06-11 12:56:26 -07001346 type = op[1]->type;
Ian Romanick96f9cea2010-03-29 15:33:54 -07001347 }
1348
Ian Romanickf09fabc2010-09-07 14:30:06 -07001349 /* From page 33 (page 39 of the PDF) of the GLSL 1.10 spec:
1350 *
1351 * "The second and third expressions must be the same type, but can
1352 * be of any type other than an array."
1353 */
1354 if ((state->language_version <= 110) && type->is_array()) {
1355 _mesa_glsl_error(& loc, state, "Second and third operands of ?: "
1356 "operator must not be arrays.");
1357 error_emitted = true;
1358 }
1359
Ian Romanick7825d3d2010-06-11 13:45:51 -07001360 ir_constant *cond_val = op[0]->constant_expression_value();
1361 ir_constant *then_val = op[1]->constant_expression_value();
1362 ir_constant *else_val = op[2]->constant_expression_value();
Ian Romanick0ad76c62010-06-11 12:56:26 -07001363
Ian Romanick7825d3d2010-06-11 13:45:51 -07001364 if (then_instructions.is_empty()
1365 && else_instructions.is_empty()
1366 && (cond_val != NULL) && (then_val != NULL) && (else_val != NULL)) {
1367 result = (cond_val->value.b[0]) ? then_val : else_val;
1368 } else {
Ian Romanick7e2aa912010-07-19 17:12:42 -07001369 ir_variable *const tmp =
1370 new(ctx) ir_variable(type, "conditional_tmp", ir_var_temporary);
Ian Romanick0b9ae3b2010-07-12 14:22:05 -07001371 instructions->push_tail(tmp);
Ian Romanick0ad76c62010-06-11 12:56:26 -07001372
Carl Worth1660a292010-06-23 18:11:51 -07001373 ir_if *const stmt = new(ctx) ir_if(op[0]);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001374 instructions->push_tail(stmt);
Ian Romanick0ad76c62010-06-11 12:56:26 -07001375
Ian Romanick7825d3d2010-06-11 13:45:51 -07001376 then_instructions.move_nodes_to(& stmt->then_instructions);
Carl Worth1660a292010-06-23 18:11:51 -07001377 ir_dereference *const then_deref =
1378 new(ctx) ir_dereference_variable(tmp);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001379 ir_assignment *const then_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001380 new(ctx) ir_assignment(then_deref, op[1], NULL);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001381 stmt->then_instructions.push_tail(then_assign);
Ian Romanick0ad76c62010-06-11 12:56:26 -07001382
Ian Romanick7825d3d2010-06-11 13:45:51 -07001383 else_instructions.move_nodes_to(& stmt->else_instructions);
Carl Worth1660a292010-06-23 18:11:51 -07001384 ir_dereference *const else_deref =
1385 new(ctx) ir_dereference_variable(tmp);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001386 ir_assignment *const else_assign =
Carl Worth1660a292010-06-23 18:11:51 -07001387 new(ctx) ir_assignment(else_deref, op[2], NULL);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001388 stmt->else_instructions.push_tail(else_assign);
1389
Carl Worth1660a292010-06-23 18:11:51 -07001390 result = new(ctx) ir_dereference_variable(tmp);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001391 }
Ian Romanick251eb752010-03-29 14:15:05 -07001392 break;
Ian Romanick96f9cea2010-03-29 15:33:54 -07001393 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001394
1395 case ast_pre_inc:
Eric Anholt76ea56c2010-03-26 12:16:54 -07001396 case ast_pre_dec: {
1397 op[0] = this->subexpressions[0]->hir(instructions, state);
1398 if (op[0]->type->base_type == GLSL_TYPE_FLOAT)
Carl Worth1660a292010-06-23 18:11:51 -07001399 op[1] = new(ctx) ir_constant(1.0f);
Eric Anholt76ea56c2010-03-26 12:16:54 -07001400 else
Carl Worth1660a292010-06-23 18:11:51 -07001401 op[1] = new(ctx) ir_constant(1);
Eric Anholt76ea56c2010-03-26 12:16:54 -07001402
Eric Anholta13bb142010-03-31 16:38:11 -10001403 type = arithmetic_result_type(op[0], op[1], false, state, & loc);
Eric Anholt76ea56c2010-03-26 12:16:54 -07001404
Ian Romanick768b55a2010-08-13 16:46:43 -07001405 ir_rvalue *temp_rhs;
Carl Worth1660a292010-06-23 18:11:51 -07001406 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1407 op[0], op[1]);
Eric Anholt76ea56c2010-03-26 12:16:54 -07001408
Eric Anholt3e24ef62010-06-23 12:40:17 -07001409 result = do_assignment(instructions, state,
Ian Romanick85caea22011-03-15 16:33:27 -07001410 op[0]->clone(ctx, NULL), temp_rhs, false,
Eric Anholt76ea56c2010-03-26 12:16:54 -07001411 this->subexpressions[0]->get_location());
Eric Anholt76ea56c2010-03-26 12:16:54 -07001412 error_emitted = op[0]->type->is_error();
1413 break;
1414 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001415
1416 case ast_post_inc:
Eric Anholtde38f0e2010-03-26 12:14:54 -07001417 case ast_post_dec: {
1418 op[0] = this->subexpressions[0]->hir(instructions, state);
1419 if (op[0]->type->base_type == GLSL_TYPE_FLOAT)
Carl Worth1660a292010-06-23 18:11:51 -07001420 op[1] = new(ctx) ir_constant(1.0f);
Eric Anholtde38f0e2010-03-26 12:14:54 -07001421 else
Carl Worth1660a292010-06-23 18:11:51 -07001422 op[1] = new(ctx) ir_constant(1);
Eric Anholtde38f0e2010-03-26 12:14:54 -07001423
1424 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1425
Eric Anholta13bb142010-03-31 16:38:11 -10001426 type = arithmetic_result_type(op[0], op[1], false, state, & loc);
Eric Anholtde38f0e2010-03-26 12:14:54 -07001427
Ian Romanick768b55a2010-08-13 16:46:43 -07001428 ir_rvalue *temp_rhs;
Carl Worth1660a292010-06-23 18:11:51 -07001429 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1430 op[0], op[1]);
Eric Anholtde38f0e2010-03-26 12:14:54 -07001431
1432 /* Get a temporary of a copy of the lvalue before it's modified.
1433 * This may get thrown away later.
1434 */
Eric Anholt8273bd42010-08-04 12:34:56 -07001435 result = get_lvalue_copy(instructions, op[0]->clone(ctx, NULL));
Eric Anholtde38f0e2010-03-26 12:14:54 -07001436
Eric Anholt3e24ef62010-06-23 12:40:17 -07001437 (void)do_assignment(instructions, state,
Ian Romanick85caea22011-03-15 16:33:27 -07001438 op[0]->clone(ctx, NULL), temp_rhs, false,
Eric Anholtde38f0e2010-03-26 12:14:54 -07001439 this->subexpressions[0]->get_location());
1440
Eric Anholtde38f0e2010-03-26 12:14:54 -07001441 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 break;
1448
Ian Romanick27e3cf82010-04-01 18:03:59 -07001449 case ast_array_index: {
1450 YYLTYPE index_loc = subexpressions[1]->get_location();
1451
1452 op[0] = subexpressions[0]->hir(instructions, state);
1453 op[1] = subexpressions[1]->hir(instructions, state);
1454
1455 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1456
Ian Romanicka9159f92010-05-26 15:08:11 -07001457 ir_rvalue *const array = op[0];
Ian Romanickb8a21cc2010-04-01 18:31:11 -07001458
Carl Worth1660a292010-06-23 18:11:51 -07001459 result = new(ctx) ir_dereference_array(op[0], op[1]);
Ian Romanickb8a21cc2010-04-01 18:31:11 -07001460
1461 /* Do not use op[0] after this point. Use array.
1462 */
1463 op[0] = NULL;
1464
Ian Romanick27e3cf82010-04-01 18:03:59 -07001465
1466 if (error_emitted)
1467 break;
1468
Ian Romanick63038e12010-04-05 13:16:00 -07001469 if (!array->type->is_array()
1470 && !array->type->is_matrix()
1471 && !array->type->is_vector()) {
Ian Romanick27e3cf82010-04-01 18:03:59 -07001472 _mesa_glsl_error(& index_loc, state,
Ian Romanick63038e12010-04-05 13:16:00 -07001473 "cannot dereference non-array / non-matrix / "
1474 "non-vector");
Ian Romanick27e3cf82010-04-01 18:03:59 -07001475 error_emitted = true;
1476 }
1477
1478 if (!op[1]->type->is_integer()) {
1479 _mesa_glsl_error(& index_loc, state,
1480 "array index must be integer type");
1481 error_emitted = true;
1482 } else if (!op[1]->type->is_scalar()) {
1483 _mesa_glsl_error(& index_loc, state,
1484 "array index must be scalar");
1485 error_emitted = true;
1486 }
1487
1488 /* If the array index is a constant expression and the array has a
1489 * declared size, ensure that the access is in-bounds. If the array
1490 * index is not a constant expression, ensure that the array has a
1491 * declared size.
1492 */
1493 ir_constant *const const_index = op[1]->constant_expression_value();
1494 if (const_index != NULL) {
1495 const int idx = const_index->value.i[0];
Ian Romanick63038e12010-04-05 13:16:00 -07001496 const char *type_name;
1497 unsigned bound = 0;
1498
1499 if (array->type->is_matrix()) {
1500 type_name = "matrix";
1501 } else if (array->type->is_vector()) {
1502 type_name = "vector";
1503 } else {
1504 type_name = "array";
1505 }
Ian Romanick27e3cf82010-04-01 18:03:59 -07001506
1507 /* From page 24 (page 30 of the PDF) of the GLSL 1.50 spec:
1508 *
1509 * "It is illegal to declare an array with a size, and then
1510 * later (in the same shader) index the same array with an
1511 * integral constant expression greater than or equal to the
1512 * declared size. It is also illegal to index an array with a
1513 * negative constant expression."
1514 */
Ian Romanick63038e12010-04-05 13:16:00 -07001515 if (array->type->is_matrix()) {
1516 if (array->type->row_type()->vector_elements <= idx) {
1517 bound = array->type->row_type()->vector_elements;
1518 }
1519 } else if (array->type->is_vector()) {
1520 if (array->type->vector_elements <= idx) {
1521 bound = array->type->vector_elements;
1522 }
1523 } else {
1524 if ((array->type->array_size() > 0)
1525 && (array->type->array_size() <= idx)) {
1526 bound = array->type->array_size();
1527 }
1528 }
1529
1530 if (bound > 0) {
1531 _mesa_glsl_error(& loc, state, "%s index must be < %u",
1532 type_name, bound);
1533 error_emitted = true;
1534 } else if (idx < 0) {
1535 _mesa_glsl_error(& loc, state, "%s index must be >= 0",
1536 type_name);
Ian Romanick27e3cf82010-04-01 18:03:59 -07001537 error_emitted = true;
1538 }
1539
Ian Romanick63038e12010-04-05 13:16:00 -07001540 if (array->type->is_array()) {
Ian Romanicka9159f92010-05-26 15:08:11 -07001541 /* If the array is a variable dereference, it dereferences the
1542 * whole array, by definition. Use this to get the variable.
1543 *
1544 * FINISHME: Should some methods for getting / setting / testing
1545 * FINISHME: array access limits be added to ir_dereference?
1546 */
1547 ir_variable *const v = array->whole_variable_referenced();
Ian Romanick63038e12010-04-05 13:16:00 -07001548 if ((v != NULL) && (unsigned(idx) > v->max_array_access))
1549 v->max_array_access = idx;
Ian Romanick27e3cf82010-04-01 18:03:59 -07001550 }
Kenneth Graunke2b7c42b2010-07-16 18:28:44 -07001551 } else if (array->type->array_size() == 0) {
1552 _mesa_glsl_error(&loc, state, "unsized array index must be constant");
Eric Anholta721abf2010-08-23 10:32:01 -07001553 } else {
1554 if (array->type->is_array()) {
Aras Pranckevicius5226f8c2010-08-25 22:42:13 +03001555 /* whole_variable_referenced can return NULL if the array is a
1556 * member of a structure. In this case it is safe to not update
1557 * the max_array_access field because it is never used for fields
1558 * of structures.
1559 */
Eric Anholta721abf2010-08-23 10:32:01 -07001560 ir_variable *v = array->whole_variable_referenced();
Aras Pranckevicius5226f8c2010-08-25 22:42:13 +03001561 if (v != NULL)
Ian Romanick0d9d0362011-03-24 16:50:23 -07001562 v->max_array_access = array->type->array_size() - 1;
Eric Anholta721abf2010-08-23 10:32:01 -07001563 }
Ian Romanick27e3cf82010-04-01 18:03:59 -07001564 }
1565
Ian Romanicke942f322011-01-04 16:09:00 -08001566 /* From page 23 (29 of the PDF) of the GLSL 1.30 spec:
1567 *
Chad Versacef0f2ec42010-12-07 10:35:36 -08001568 * "Samplers aggregated into arrays within a shader (using square
1569 * brackets [ ]) can only be indexed with integral constant
1570 * expressions [...]."
Ian Romanicke942f322011-01-04 16:09:00 -08001571 *
1572 * This restriction was added in GLSL 1.30. Shaders using earlier version
1573 * of the language should not be rejected by the compiler front-end for
1574 * using this construct. This allows useful things such as using a loop
1575 * counter as the index to an array of samplers. If the loop in unrolled,
1576 * the code should compile correctly. Instead, emit a warning.
Chad Versacef0f2ec42010-12-07 10:35:36 -08001577 */
1578 if (array->type->is_array() &&
1579 array->type->element_type()->is_sampler() &&
1580 const_index == NULL) {
1581
Ian Romanicke942f322011-01-04 16:09:00 -08001582 if (state->language_version == 100) {
1583 _mesa_glsl_warning(&loc, state,
1584 "sampler arrays indexed with non-constant "
1585 "expressions is optional in GLSL ES 1.00");
1586 } else if (state->language_version < 130) {
1587 _mesa_glsl_warning(&loc, state,
1588 "sampler arrays indexed with non-constant "
1589 "expressions is forbidden in GLSL 1.30 and "
1590 "later");
1591 } else {
1592 _mesa_glsl_error(&loc, state,
1593 "sampler arrays indexed with non-constant "
1594 "expressions is forbidden in GLSL 1.30 and "
1595 "later");
1596 error_emitted = true;
1597 }
Chad Versacef0f2ec42010-12-07 10:35:36 -08001598 }
1599
Ian Romanick27e3cf82010-04-01 18:03:59 -07001600 if (error_emitted)
1601 result->type = glsl_type::error_type;
1602
Ian Romanicka87ac252010-02-22 13:19:34 -08001603 break;
Ian Romanick27e3cf82010-04-01 18:03:59 -07001604 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001605
1606 case ast_function_call:
Ian Romanick7cfddf12010-03-10 13:26:52 -08001607 /* Should *NEVER* get here. ast_function_call should always be handled
1608 * by ast_function_expression::hir.
Ian Romanicka87ac252010-02-22 13:19:34 -08001609 */
Ian Romanick7cfddf12010-03-10 13:26:52 -08001610 assert(0);
Ian Romanicka87ac252010-02-22 13:19:34 -08001611 break;
1612
1613 case ast_identifier: {
1614 /* ast_identifier can appear several places in a full abstract syntax
1615 * tree. This particular use must be at location specified in the grammar
1616 * as 'variable_identifier'.
1617 */
Ian Romanick8bde4ce2010-03-19 11:57:24 -07001618 ir_variable *var =
1619 state->symbols->get_variable(this->primary_expression.identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08001620
Carl Worth1660a292010-06-23 18:11:51 -07001621 result = new(ctx) ir_dereference_variable(var);
Ian Romanicka87ac252010-02-22 13:19:34 -08001622
1623 if (var != NULL) {
Ian Romanickbd330552011-01-07 18:34:58 -08001624 var->used = true;
Ian Romanicka87ac252010-02-22 13:19:34 -08001625 } else {
Ian Romanick71d0bbf2010-03-23 13:21:19 -07001626 _mesa_glsl_error(& loc, state, "`%s' undeclared",
Ian Romanick18238de2010-03-01 13:49:10 -08001627 this->primary_expression.identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08001628
1629 error_emitted = true;
1630 }
1631 break;
1632 }
1633
1634 case ast_int_constant:
Carl Worth1660a292010-06-23 18:11:51 -07001635 result = new(ctx) ir_constant(this->primary_expression.int_constant);
Ian Romanicka87ac252010-02-22 13:19:34 -08001636 break;
1637
1638 case ast_uint_constant:
Carl Worth1660a292010-06-23 18:11:51 -07001639 result = new(ctx) ir_constant(this->primary_expression.uint_constant);
Ian Romanicka87ac252010-02-22 13:19:34 -08001640 break;
1641
1642 case ast_float_constant:
Carl Worth1660a292010-06-23 18:11:51 -07001643 result = new(ctx) ir_constant(this->primary_expression.float_constant);
Ian Romanicka87ac252010-02-22 13:19:34 -08001644 break;
1645
1646 case ast_bool_constant:
Carl Worth1660a292010-06-23 18:11:51 -07001647 result = new(ctx) ir_constant(bool(this->primary_expression.bool_constant));
Ian Romanicka87ac252010-02-22 13:19:34 -08001648 break;
1649
1650 case ast_sequence: {
Ian Romanicka87ac252010-02-22 13:19:34 -08001651 /* It should not be possible to generate a sequence in the AST without
1652 * any expressions in it.
1653 */
Ian Romanick304ea902010-05-10 11:17:53 -07001654 assert(!this->expressions.is_empty());
Ian Romanicka87ac252010-02-22 13:19:34 -08001655
1656 /* The r-value of a sequence is the last expression in the sequence. If
1657 * the other expressions in the sequence do not have side-effects (and
1658 * therefore add instructions to the instruction list), they get dropped
1659 * on the floor.
1660 */
Ian Romanick3d5cfcf2011-04-11 10:10:30 -07001661 exec_node *previous_tail_pred = NULL;
1662 YYLTYPE previous_operand_loc = loc;
1663
1664 foreach_list_typed (ast_node, ast, link, &this->expressions) {
1665 /* If one of the operands of comma operator does not generate any
1666 * code, we want to emit a warning. At each pass through the loop
1667 * previous_tail_pred will point to the last instruction in the
1668 * stream *before* processing the previous operand. Naturally,
1669 * instructions->tail_pred will point to the last instruction in the
1670 * stream *after* processing the previous operand. If the two
1671 * pointers match, then the previous operand had no effect.
1672 *
1673 * The warning behavior here differs slightly from GCC. GCC will
1674 * only emit a warning if none of the left-hand operands have an
1675 * effect. However, it will emit a warning for each. I believe that
1676 * there are some cases in C (especially with GCC extensions) where
1677 * it is useful to have an intermediate step in a sequence have no
1678 * effect, but I don't think these cases exist in GLSL. Either way,
1679 * it would be a giant hassle to replicate that behavior.
1680 */
1681 if (previous_tail_pred == instructions->tail_pred) {
1682 _mesa_glsl_warning(&previous_operand_loc, state,
1683 "left-hand operand of comma expression has "
1684 "no effect");
1685 }
1686
1687 /* tail_pred is directly accessed instead of using the get_tail()
1688 * method for performance reasons. get_tail() has extra code to
1689 * return NULL when the list is empty. We don't care about that
1690 * here, so using tail_pred directly is fine.
1691 */
1692 previous_tail_pred = instructions->tail_pred;
1693 previous_operand_loc = ast->get_location();
1694
Ian Romanick304ea902010-05-10 11:17:53 -07001695 result = ast->hir(instructions, state);
Ian Romanick3d5cfcf2011-04-11 10:10:30 -07001696 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001697
Ian Romanicka87ac252010-02-22 13:19:34 -08001698 /* Any errors should have already been emitted in the loop above.
1699 */
1700 error_emitted = true;
1701 break;
1702 }
1703 }
Kenneth Graunke08ba9772011-04-14 17:21:59 -07001704 type = NULL; /* use result->type, not type. */
1705 assert(result != NULL);
Ian Romanicka87ac252010-02-22 13:19:34 -08001706
Kenneth Graunke08ba9772011-04-14 17:21:59 -07001707 if (result->type->is_error() && !error_emitted)
Ian Romanick71d0bbf2010-03-23 13:21:19 -07001708 _mesa_glsl_error(& loc, state, "type mismatch");
Ian Romanicka87ac252010-02-22 13:19:34 -08001709
1710 return result;
1711}
1712
1713
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07001714ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08001715ast_expression_statement::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08001716 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08001717{
Ian Romanicka87ac252010-02-22 13:19:34 -08001718 /* It is possible to have expression statements that don't have an
1719 * expression. This is the solitary semicolon:
1720 *
1721 * for (i = 0; i < 5; i++)
1722 * ;
1723 *
1724 * In this case the expression will be NULL. Test for NULL and don't do
1725 * anything in that case.
1726 */
Ian Romanick18238de2010-03-01 13:49:10 -08001727 if (expression != NULL)
1728 expression->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001729
1730 /* Statements do not have r-values.
1731 */
1732 return NULL;
1733}
1734
1735
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07001736ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08001737ast_compound_statement::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08001738 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08001739{
Ian Romanick18238de2010-03-01 13:49:10 -08001740 if (new_scope)
Ian Romanick8bde4ce2010-03-19 11:57:24 -07001741 state->symbols->push_scope();
Ian Romanicka87ac252010-02-22 13:19:34 -08001742
Ian Romanick2b97dc62010-05-10 17:42:05 -07001743 foreach_list_typed (ast_node, ast, link, &this->statements)
Ian Romanick304ea902010-05-10 11:17:53 -07001744 ast->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001745
Ian Romanick18238de2010-03-01 13:49:10 -08001746 if (new_scope)
Ian Romanick8bde4ce2010-03-19 11:57:24 -07001747 state->symbols->pop_scope();
Ian Romanicka87ac252010-02-22 13:19:34 -08001748
1749 /* Compound statements do not have r-values.
1750 */
1751 return NULL;
1752}
1753
1754
Ian Romanick28009cd2010-03-30 16:59:27 -07001755static const glsl_type *
Kenneth Graunked8e34e22010-08-07 02:56:01 -07001756process_array_type(YYLTYPE *loc, const glsl_type *base, ast_node *array_size,
Ian Romanick28009cd2010-03-30 16:59:27 -07001757 struct _mesa_glsl_parse_state *state)
1758{
1759 unsigned length = 0;
1760
1761 /* FINISHME: Reject delcarations of multidimensional arrays. */
1762
1763 if (array_size != NULL) {
1764 exec_list dummy_instructions;
1765 ir_rvalue *const ir = array_size->hir(& dummy_instructions, state);
1766 YYLTYPE loc = array_size->get_location();
1767
1768 /* FINISHME: Verify that the grammar forbids side-effects in array
1769 * FINISHME: sizes. i.e., 'vec4 [x = 12] data'
1770 */
1771 assert(dummy_instructions.is_empty());
1772
1773 if (ir != NULL) {
1774 if (!ir->type->is_integer()) {
1775 _mesa_glsl_error(& loc, state, "array size must be integer type");
1776 } else if (!ir->type->is_scalar()) {
1777 _mesa_glsl_error(& loc, state, "array size must be scalar type");
1778 } else {
1779 ir_constant *const size = ir->constant_expression_value();
1780
1781 if (size == NULL) {
1782 _mesa_glsl_error(& loc, state, "array size must be a "
1783 "constant valued expression");
1784 } else if (size->value.i[0] <= 0) {
1785 _mesa_glsl_error(& loc, state, "array size must be > 0");
1786 } else {
1787 assert(size->type == ir->type);
1788 length = size->value.u[0];
1789 }
1790 }
1791 }
Kenneth Graunked8e34e22010-08-07 02:56:01 -07001792 } else if (state->es_shader) {
1793 /* Section 10.17 of the GLSL ES 1.00 specification states that unsized
1794 * array declarations have been removed from the language.
1795 */
1796 _mesa_glsl_error(loc, state, "unsized array declarations are not "
1797 "allowed in GLSL ES 1.00.");
Ian Romanick28009cd2010-03-30 16:59:27 -07001798 }
1799
Ian Romanickf38d15b2010-07-20 15:33:40 -07001800 return glsl_type::get_array_instance(base, length);
Ian Romanick28009cd2010-03-30 16:59:27 -07001801}
1802
1803
Ian Romanickd612a122010-03-31 16:22:06 -07001804const glsl_type *
1805ast_type_specifier::glsl_type(const char **name,
1806 struct _mesa_glsl_parse_state *state) const
Ian Romanicka87ac252010-02-22 13:19:34 -08001807{
Ian Romanickd612a122010-03-31 16:22:06 -07001808 const struct glsl_type *type;
Ian Romanicka87ac252010-02-22 13:19:34 -08001809
Kenneth Graunkeca92ae22010-09-18 11:11:09 +02001810 type = state->symbols->get_type(this->type_name);
1811 *name = this->type_name;
Ian Romanicka87ac252010-02-22 13:19:34 -08001812
Kenneth Graunkeca92ae22010-09-18 11:11:09 +02001813 if (this->is_array) {
1814 YYLTYPE loc = this->get_location();
1815 type = process_array_type(&loc, type, this->array_size, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001816 }
1817
1818 return type;
1819}
1820
1821
1822static void
1823apply_type_qualifier_to_variable(const struct ast_type_qualifier *qual,
Ian Romanick768b55a2010-08-13 16:46:43 -07001824 ir_variable *var,
Eric Anholt2e063f12010-03-28 00:56:22 -07001825 struct _mesa_glsl_parse_state *state,
1826 YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -08001827{
Ian Romanickbd330552011-01-07 18:34:58 -08001828 if (qual->flags.q.invariant) {
1829 if (var->used) {
1830 _mesa_glsl_error(loc, state,
1831 "variable `%s' may not be redeclared "
1832 "`invariant' after being used",
1833 var->name);
1834 } else {
1835 var->invariant = 1;
1836 }
1837 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001838
Ian Romanicke24d35a2010-10-05 16:38:47 -07001839 if (qual->flags.q.constant || qual->flags.q.attribute
1840 || qual->flags.q.uniform
1841 || (qual->flags.q.varying && (state->target == fragment_shader)))
Ian Romanicka87ac252010-02-22 13:19:34 -08001842 var->read_only = 1;
1843
Ian Romanicke24d35a2010-10-05 16:38:47 -07001844 if (qual->flags.q.centroid)
Ian Romanicka87ac252010-02-22 13:19:34 -08001845 var->centroid = 1;
1846
Ian Romanicke24d35a2010-10-05 16:38:47 -07001847 if (qual->flags.q.attribute && state->target != vertex_shader) {
Eric Anholt2e063f12010-03-28 00:56:22 -07001848 var->type = glsl_type::error_type;
1849 _mesa_glsl_error(loc, state,
1850 "`attribute' variables may not be declared in the "
Ian Romanickae4c4c02010-04-07 16:41:40 -07001851 "%s shader",
1852 _mesa_glsl_shader_target_name(state->target));
Eric Anholt2e063f12010-03-28 00:56:22 -07001853 }
1854
Eric Anholt90b78252010-03-31 21:21:20 -10001855 /* From page 25 (page 31 of the PDF) of the GLSL 1.10 spec:
1856 *
1857 * "The varying qualifier can be used only with the data types
1858 * float, vec2, vec3, vec4, mat2, mat3, and mat4, or arrays of
1859 * these."
1860 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07001861 if (qual->flags.q.varying) {
Eric Anholt0ca17192010-05-19 13:38:15 -07001862 const glsl_type *non_array_type;
1863
1864 if (var->type && var->type->is_array())
1865 non_array_type = var->type->fields.array;
1866 else
1867 non_array_type = var->type;
1868
1869 if (non_array_type && non_array_type->base_type != GLSL_TYPE_FLOAT) {
1870 var->type = glsl_type::error_type;
1871 _mesa_glsl_error(loc, state,
1872 "varying variables must be of base type float");
1873 }
Eric Anholt90b78252010-03-31 21:21:20 -10001874 }
1875
Ian Romanick7e2aa912010-07-19 17:12:42 -07001876 /* If there is no qualifier that changes the mode of the variable, leave
1877 * the setting alone.
1878 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07001879 if (qual->flags.q.in && qual->flags.q.out)
Ian Romanicka87ac252010-02-22 13:19:34 -08001880 var->mode = ir_var_inout;
Ian Romanicke24d35a2010-10-05 16:38:47 -07001881 else if (qual->flags.q.attribute || qual->flags.q.in
1882 || (qual->flags.q.varying && (state->target == fragment_shader)))
Ian Romanicka87ac252010-02-22 13:19:34 -08001883 var->mode = ir_var_in;
Ian Romanicke24d35a2010-10-05 16:38:47 -07001884 else if (qual->flags.q.out
1885 || (qual->flags.q.varying && (state->target == vertex_shader)))
Ian Romanicka87ac252010-02-22 13:19:34 -08001886 var->mode = ir_var_out;
Ian Romanicke24d35a2010-10-05 16:38:47 -07001887 else if (qual->flags.q.uniform)
Ian Romanicka87ac252010-02-22 13:19:34 -08001888 var->mode = ir_var_uniform;
Ian Romanicka87ac252010-02-22 13:19:34 -08001889
Ian Romanick86b43982011-01-06 10:49:56 -08001890 if (state->all_invariant && (state->current_function == NULL)) {
1891 switch (state->target) {
1892 case vertex_shader:
1893 if (var->mode == ir_var_out)
1894 var->invariant = true;
1895 break;
1896 case geometry_shader:
1897 if ((var->mode == ir_var_in) || (var->mode == ir_var_out))
1898 var->invariant = true;
1899 break;
1900 case fragment_shader:
1901 if (var->mode == ir_var_in)
1902 var->invariant = true;
1903 break;
1904 }
1905 }
1906
Ian Romanicke24d35a2010-10-05 16:38:47 -07001907 if (qual->flags.q.flat)
Ian Romanicka87ac252010-02-22 13:19:34 -08001908 var->interpolation = ir_var_flat;
Ian Romanicke24d35a2010-10-05 16:38:47 -07001909 else if (qual->flags.q.noperspective)
Ian Romanicka87ac252010-02-22 13:19:34 -08001910 var->interpolation = ir_var_noperspective;
1911 else
1912 var->interpolation = ir_var_smooth;
Ian Romanick9d975372010-04-02 17:17:47 -07001913
Ian Romanicke24d35a2010-10-05 16:38:47 -07001914 var->pixel_center_integer = qual->flags.q.pixel_center_integer;
1915 var->origin_upper_left = qual->flags.q.origin_upper_left;
1916 if ((qual->flags.q.origin_upper_left || qual->flags.q.pixel_center_integer)
Ian Romanick8d8469e2010-06-30 17:48:09 -07001917 && (strcmp(var->name, "gl_FragCoord") != 0)) {
Ian Romanicke24d35a2010-10-05 16:38:47 -07001918 const char *const qual_string = (qual->flags.q.origin_upper_left)
Ian Romanick8d8469e2010-06-30 17:48:09 -07001919 ? "origin_upper_left" : "pixel_center_integer";
1920
1921 _mesa_glsl_error(loc, state,
1922 "layout qualifier `%s' can only be applied to "
1923 "fragment shader input `gl_FragCoord'",
1924 qual_string);
1925 }
1926
Ian Romanickeee68d32010-10-07 15:13:38 -07001927 if (qual->flags.q.explicit_location) {
1928 const bool global_scope = (state->current_function == NULL);
1929 bool fail = false;
1930 const char *string = "";
1931
1932 /* In the vertex shader only shader inputs can be given explicit
1933 * locations.
1934 *
1935 * In the fragment shader only shader outputs can be given explicit
1936 * locations.
1937 */
1938 switch (state->target) {
1939 case vertex_shader:
1940 if (!global_scope || (var->mode != ir_var_in)) {
1941 fail = true;
1942 string = "input";
1943 }
1944 break;
1945
1946 case geometry_shader:
1947 _mesa_glsl_error(loc, state,
1948 "geometry shader variables cannot be given "
1949 "explicit locations\n");
1950 break;
1951
1952 case fragment_shader:
Paul Berryb078aad2011-06-28 09:42:24 -07001953 if (!global_scope || (var->mode != ir_var_out)) {
Ian Romanickeee68d32010-10-07 15:13:38 -07001954 fail = true;
1955 string = "output";
1956 }
1957 break;
Kenneth Graunkea75da2c2010-10-20 14:59:40 -07001958 };
Ian Romanickeee68d32010-10-07 15:13:38 -07001959
1960 if (fail) {
1961 _mesa_glsl_error(loc, state,
1962 "only %s shader %s variables can be given an "
1963 "explicit location\n",
1964 _mesa_glsl_shader_target_name(state->target),
1965 string);
1966 } else {
1967 var->explicit_location = true;
Ian Romanick68a4fc92010-10-07 17:21:22 -07001968
1969 /* This bit of silliness is needed because invalid explicit locations
1970 * are supposed to be flagged during linking. Small negative values
1971 * biased by VERT_ATTRIB_GENERIC0 or FRAG_RESULT_DATA0 could alias
1972 * built-in values (e.g., -16+VERT_ATTRIB_GENERIC0 = VERT_ATTRIB_POS).
1973 * The linker needs to be able to differentiate these cases. This
1974 * ensures that negative values stay negative.
1975 */
1976 if (qual->location >= 0) {
1977 var->location = (state->target == vertex_shader)
1978 ? (qual->location + VERT_ATTRIB_GENERIC0)
1979 : (qual->location + FRAG_RESULT_DATA0);
1980 } else {
1981 var->location = qual->location;
1982 }
Ian Romanickeee68d32010-10-07 15:13:38 -07001983 }
1984 }
1985
Ian Romanick4bcff0c2011-01-07 16:53:59 -08001986 /* Does the declaration use the 'layout' keyword?
1987 */
1988 const bool uses_layout = qual->flags.q.pixel_center_integer
1989 || qual->flags.q.origin_upper_left
1990 || qual->flags.q.explicit_location;
1991
1992 /* Does the declaration use the deprecated 'attribute' or 'varying'
1993 * keywords?
1994 */
1995 const bool uses_deprecated_qualifier = qual->flags.q.attribute
1996 || qual->flags.q.varying;
1997
1998 /* Is the 'layout' keyword used with parameters that allow relaxed checking.
1999 * Many implementations of GL_ARB_fragment_coord_conventions_enable and some
2000 * implementations (only Mesa?) GL_ARB_explicit_attrib_location_enable
2001 * allowed the layout qualifier to be used with 'varying' and 'attribute'.
2002 * These extensions and all following extensions that add the 'layout'
2003 * keyword have been modified to require the use of 'in' or 'out'.
2004 *
2005 * The following extension do not allow the deprecated keywords:
2006 *
2007 * GL_AMD_conservative_depth
2008 * GL_ARB_gpu_shader5
2009 * GL_ARB_separate_shader_objects
2010 * GL_ARB_tesselation_shader
2011 * GL_ARB_transform_feedback3
2012 * GL_ARB_uniform_buffer_object
2013 *
2014 * It is unknown whether GL_EXT_shader_image_load_store or GL_NV_gpu_shader5
2015 * allow layout with the deprecated keywords.
2016 */
2017 const bool relaxed_layout_qualifier_checking =
2018 state->ARB_fragment_coord_conventions_enable;
2019
2020 if (uses_layout && uses_deprecated_qualifier) {
2021 if (relaxed_layout_qualifier_checking) {
2022 _mesa_glsl_warning(loc, state,
2023 "`layout' qualifier may not be used with "
2024 "`attribute' or `varying'");
2025 } else {
2026 _mesa_glsl_error(loc, state,
2027 "`layout' qualifier may not be used with "
2028 "`attribute' or `varying'");
2029 }
2030 }
2031
Chad Versacebc04d242011-01-27 01:40:26 -08002032 /* Layout qualifiers for gl_FragDepth, which are enabled by extension
2033 * AMD_conservative_depth.
2034 */
2035 int depth_layout_count = qual->flags.q.depth_any
2036 + qual->flags.q.depth_greater
2037 + qual->flags.q.depth_less
2038 + qual->flags.q.depth_unchanged;
2039 if (depth_layout_count > 0
2040 && !state->AMD_conservative_depth_enable) {
2041 _mesa_glsl_error(loc, state,
2042 "extension GL_AMD_conservative_depth must be enabled "
2043 "to use depth layout qualifiers");
2044 } else if (depth_layout_count > 0
2045 && strcmp(var->name, "gl_FragDepth") != 0) {
2046 _mesa_glsl_error(loc, state,
2047 "depth layout qualifiers can be applied only to "
2048 "gl_FragDepth");
2049 } else if (depth_layout_count > 1
2050 && strcmp(var->name, "gl_FragDepth") == 0) {
2051 _mesa_glsl_error(loc, state,
2052 "at most one depth layout qualifier can be applied to "
2053 "gl_FragDepth");
2054 }
2055 if (qual->flags.q.depth_any)
2056 var->depth_layout = ir_depth_layout_any;
2057 else if (qual->flags.q.depth_greater)
2058 var->depth_layout = ir_depth_layout_greater;
2059 else if (qual->flags.q.depth_less)
2060 var->depth_layout = ir_depth_layout_less;
2061 else if (qual->flags.q.depth_unchanged)
2062 var->depth_layout = ir_depth_layout_unchanged;
2063 else
2064 var->depth_layout = ir_depth_layout_none;
2065
Kenneth Graunke10eaa8b2010-09-07 02:59:38 -07002066 if (var->type->is_array() && state->language_version != 110) {
Ian Romanick9d975372010-04-02 17:17:47 -07002067 var->array_lvalue = true;
2068 }
Ian Romanicka87ac252010-02-22 13:19:34 -08002069}
2070
Ian Romanick8e6cb9f2011-03-04 15:28:40 -08002071/**
2072 * Get the variable that is being redeclared by this declaration
2073 *
2074 * Semantic checks to verify the validity of the redeclaration are also
2075 * performed. If semantic checks fail, compilation error will be emitted via
2076 * \c _mesa_glsl_error, but a non-\c NULL pointer will still be returned.
2077 *
2078 * \returns
2079 * A pointer to an existing variable in the current scope if the declaration
2080 * is a redeclaration, \c NULL otherwise.
2081 */
2082ir_variable *
2083get_variable_being_redeclared(ir_variable *var, ast_declaration *decl,
2084 struct _mesa_glsl_parse_state *state)
2085{
2086 /* Check if this declaration is actually a re-declaration, either to
2087 * resize an array or add qualifiers to an existing variable.
2088 *
2089 * This is allowed for variables in the current scope, or when at
2090 * global scope (for built-ins in the implicit outer scope).
2091 */
2092 ir_variable *earlier = state->symbols->get_variable(decl->identifier);
2093 if (earlier == NULL ||
2094 (state->current_function != NULL &&
2095 !state->symbols->name_declared_this_scope(decl->identifier))) {
2096 return NULL;
2097 }
2098
2099
2100 YYLTYPE loc = decl->get_location();
2101
2102 /* From page 24 (page 30 of the PDF) of the GLSL 1.50 spec,
2103 *
2104 * "It is legal to declare an array without a size and then
2105 * later re-declare the same name as an array of the same
2106 * type and specify a size."
2107 */
2108 if ((earlier->type->array_size() == 0)
2109 && var->type->is_array()
2110 && (var->type->element_type() == earlier->type->element_type())) {
2111 /* FINISHME: This doesn't match the qualifiers on the two
2112 * FINISHME: declarations. It's not 100% clear whether this is
2113 * FINISHME: required or not.
2114 */
2115
2116 /* From page 54 (page 60 of the PDF) of the GLSL 1.20 spec:
2117 *
2118 * "The size [of gl_TexCoord] can be at most
2119 * gl_MaxTextureCoords."
2120 */
2121 const unsigned size = unsigned(var->type->array_size());
2122 if ((strcmp("gl_TexCoord", var->name) == 0)
2123 && (size > state->Const.MaxTextureCoords)) {
2124 _mesa_glsl_error(& loc, state, "`gl_TexCoord' array size cannot "
2125 "be larger than gl_MaxTextureCoords (%u)\n",
2126 state->Const.MaxTextureCoords);
2127 } else if ((size > 0) && (size <= earlier->max_array_access)) {
2128 _mesa_glsl_error(& loc, state, "array size must be > %u due to "
2129 "previous access",
2130 earlier->max_array_access);
2131 }
2132
2133 earlier->type = var->type;
2134 delete var;
2135 var = NULL;
2136 } else if (state->ARB_fragment_coord_conventions_enable
2137 && strcmp(var->name, "gl_FragCoord") == 0
2138 && earlier->type == var->type
2139 && earlier->mode == var->mode) {
2140 /* Allow redeclaration of gl_FragCoord for ARB_fcc layout
2141 * qualifiers.
2142 */
2143 earlier->origin_upper_left = var->origin_upper_left;
2144 earlier->pixel_center_integer = var->pixel_center_integer;
2145
2146 /* According to section 4.3.7 of the GLSL 1.30 spec,
2147 * the following built-in varaibles can be redeclared with an
2148 * interpolation qualifier:
2149 * * gl_FrontColor
2150 * * gl_BackColor
2151 * * gl_FrontSecondaryColor
2152 * * gl_BackSecondaryColor
2153 * * gl_Color
2154 * * gl_SecondaryColor
2155 */
2156 } else if (state->language_version >= 130
2157 && (strcmp(var->name, "gl_FrontColor") == 0
2158 || strcmp(var->name, "gl_BackColor") == 0
2159 || strcmp(var->name, "gl_FrontSecondaryColor") == 0
2160 || strcmp(var->name, "gl_BackSecondaryColor") == 0
2161 || strcmp(var->name, "gl_Color") == 0
2162 || strcmp(var->name, "gl_SecondaryColor") == 0)
2163 && earlier->type == var->type
2164 && earlier->mode == var->mode) {
2165 earlier->interpolation = var->interpolation;
2166
2167 /* Layout qualifiers for gl_FragDepth. */
2168 } else if (state->AMD_conservative_depth_enable
2169 && strcmp(var->name, "gl_FragDepth") == 0
2170 && earlier->type == var->type
2171 && earlier->mode == var->mode) {
2172
2173 /** From the AMD_conservative_depth spec:
2174 * Within any shader, the first redeclarations of gl_FragDepth
2175 * must appear before any use of gl_FragDepth.
2176 */
2177 if (earlier->used) {
2178 _mesa_glsl_error(&loc, state,
2179 "the first redeclaration of gl_FragDepth "
2180 "must appear before any use of gl_FragDepth");
2181 }
2182
2183 /* Prevent inconsistent redeclaration of depth layout qualifier. */
2184 if (earlier->depth_layout != ir_depth_layout_none
2185 && earlier->depth_layout != var->depth_layout) {
2186 _mesa_glsl_error(&loc, state,
2187 "gl_FragDepth: depth layout is declared here "
2188 "as '%s, but it was previously declared as "
2189 "'%s'",
2190 depth_layout_string(var->depth_layout),
2191 depth_layout_string(earlier->depth_layout));
2192 }
2193
2194 earlier->depth_layout = var->depth_layout;
2195
2196 } else {
2197 _mesa_glsl_error(&loc, state, "`%s' redeclared", decl->identifier);
2198 }
2199
2200 return earlier;
2201}
Ian Romanicka87ac252010-02-22 13:19:34 -08002202
Ian Romanick0292ffb2011-03-04 15:29:33 -08002203/**
2204 * Generate the IR for an initializer in a variable declaration
2205 */
2206ir_rvalue *
2207process_initializer(ir_variable *var, ast_declaration *decl,
2208 ast_fully_specified_type *type,
2209 exec_list *initializer_instructions,
2210 struct _mesa_glsl_parse_state *state)
2211{
2212 ir_rvalue *result = NULL;
2213
2214 YYLTYPE initializer_loc = decl->initializer->get_location();
2215
2216 /* From page 24 (page 30 of the PDF) of the GLSL 1.10 spec:
2217 *
2218 * "All uniform variables are read-only and are initialized either
2219 * directly by an application via API commands, or indirectly by
2220 * OpenGL."
2221 */
2222 if ((state->language_version <= 110)
2223 && (var->mode == ir_var_uniform)) {
2224 _mesa_glsl_error(& initializer_loc, state,
2225 "cannot initialize uniforms in GLSL 1.10");
2226 }
2227
2228 if (var->type->is_sampler()) {
2229 _mesa_glsl_error(& initializer_loc, state,
2230 "cannot initialize samplers");
2231 }
2232
2233 if ((var->mode == ir_var_in) && (state->current_function == NULL)) {
2234 _mesa_glsl_error(& initializer_loc, state,
2235 "cannot initialize %s shader input / %s",
2236 _mesa_glsl_shader_target_name(state->target),
2237 (state->target == vertex_shader)
2238 ? "attribute" : "varying");
2239 }
2240
2241 ir_dereference *const lhs = new(state) ir_dereference_variable(var);
2242 ir_rvalue *rhs = decl->initializer->hir(initializer_instructions,
2243 state);
2244
2245 /* Calculate the constant value if this is a const or uniform
2246 * declaration.
2247 */
2248 if (type->qualifier.flags.q.constant
2249 || type->qualifier.flags.q.uniform) {
Ian Romanick85caea22011-03-15 16:33:27 -07002250 ir_rvalue *new_rhs = validate_assignment(state, var->type, rhs, true);
Ian Romanick0292ffb2011-03-04 15:29:33 -08002251 if (new_rhs != NULL) {
2252 rhs = new_rhs;
2253
2254 ir_constant *constant_value = rhs->constant_expression_value();
2255 if (!constant_value) {
2256 _mesa_glsl_error(& initializer_loc, state,
2257 "initializer of %s variable `%s' must be a "
2258 "constant expression",
2259 (type->qualifier.flags.q.constant)
2260 ? "const" : "uniform",
2261 decl->identifier);
2262 if (var->type->is_numeric()) {
2263 /* Reduce cascading errors. */
2264 var->constant_value = ir_constant::zero(state, var->type);
2265 }
2266 } else {
2267 rhs = constant_value;
2268 var->constant_value = constant_value;
2269 }
2270 } else {
2271 _mesa_glsl_error(&initializer_loc, state,
2272 "initializer of type %s cannot be assigned to "
2273 "variable of type %s",
2274 rhs->type->name, var->type->name);
2275 if (var->type->is_numeric()) {
2276 /* Reduce cascading errors. */
2277 var->constant_value = ir_constant::zero(state, var->type);
2278 }
2279 }
2280 }
2281
2282 if (rhs && !rhs->type->is_error()) {
2283 bool temp = var->read_only;
2284 if (type->qualifier.flags.q.constant)
2285 var->read_only = false;
2286
2287 /* Never emit code to initialize a uniform.
2288 */
2289 const glsl_type *initializer_type;
2290 if (!type->qualifier.flags.q.uniform) {
2291 result = do_assignment(initializer_instructions, state,
Ian Romanick85caea22011-03-15 16:33:27 -07002292 lhs, rhs, true,
Ian Romanick0292ffb2011-03-04 15:29:33 -08002293 type->get_location());
2294 initializer_type = result->type;
2295 } else
2296 initializer_type = rhs->type;
2297
2298 /* If the declared variable is an unsized array, it must inherrit
2299 * its full type from the initializer. A declaration such as
2300 *
2301 * uniform float a[] = float[](1.0, 2.0, 3.0, 3.0);
2302 *
2303 * becomes
2304 *
2305 * uniform float a[4] = float[](1.0, 2.0, 3.0, 3.0);
2306 *
2307 * The assignment generated in the if-statement (below) will also
2308 * automatically handle this case for non-uniforms.
2309 *
2310 * If the declared variable is not an array, the types must
2311 * already match exactly. As a result, the type assignment
2312 * here can be done unconditionally. For non-uniforms the call
2313 * to do_assignment can change the type of the initializer (via
2314 * the implicit conversion rules). For uniforms the initializer
2315 * must be a constant expression, and the type of that expression
2316 * was validated above.
2317 */
2318 var->type = initializer_type;
2319
2320 var->read_only = temp;
2321 }
2322
2323 return result;
2324}
2325
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07002326ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08002327ast_declarator_list::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08002328 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08002329{
Kenneth Graunke953ff122010-06-25 13:14:37 -07002330 void *ctx = state;
Ian Romanicka87ac252010-02-22 13:19:34 -08002331 const struct glsl_type *decl_type;
2332 const char *type_name = NULL;
Eric Anholt85584592010-04-14 15:38:52 -07002333 ir_rvalue *result = NULL;
Ian Romanickc824e352010-04-23 15:55:19 -07002334 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08002335
Ian Romanick6f0823d2010-07-01 20:39:08 -07002336 /* From page 46 (page 52 of the PDF) of the GLSL 1.50 spec:
2337 *
2338 * "To ensure that a particular output variable is invariant, it is
2339 * necessary to use the invariant qualifier. It can either be used to
2340 * qualify a previously declared variable as being invariant
2341 *
2342 * invariant gl_Position; // make existing gl_Position be invariant"
2343 *
2344 * In these cases the parser will set the 'invariant' flag in the declarator
2345 * list, and the type will be NULL.
2346 */
2347 if (this->invariant) {
2348 assert(this->type == NULL);
2349
2350 if (state->current_function != NULL) {
2351 _mesa_glsl_error(& loc, state,
2352 "All uses of `invariant' keyword must be at global "
2353 "scope\n");
2354 }
2355
2356 foreach_list_typed (ast_declaration, decl, link, &this->declarations) {
2357 assert(!decl->is_array);
2358 assert(decl->array_size == NULL);
2359 assert(decl->initializer == NULL);
2360
2361 ir_variable *const earlier =
2362 state->symbols->get_variable(decl->identifier);
2363 if (earlier == NULL) {
2364 _mesa_glsl_error(& loc, state,
2365 "Undeclared variable `%s' cannot be marked "
2366 "invariant\n", decl->identifier);
2367 } else if ((state->target == vertex_shader)
2368 && (earlier->mode != ir_var_out)) {
2369 _mesa_glsl_error(& loc, state,
2370 "`%s' cannot be marked invariant, vertex shader "
2371 "outputs only\n", decl->identifier);
2372 } else if ((state->target == fragment_shader)
2373 && (earlier->mode != ir_var_in)) {
2374 _mesa_glsl_error(& loc, state,
2375 "`%s' cannot be marked invariant, fragment shader "
2376 "inputs only\n", decl->identifier);
Ian Romanickbd330552011-01-07 18:34:58 -08002377 } else if (earlier->used) {
2378 _mesa_glsl_error(& loc, state,
2379 "variable `%s' may not be redeclared "
2380 "`invariant' after being used",
2381 earlier->name);
Ian Romanick6f0823d2010-07-01 20:39:08 -07002382 } else {
2383 earlier->invariant = true;
2384 }
2385 }
2386
2387 /* Invariant redeclarations do not have r-values.
2388 */
2389 return NULL;
2390 }
2391
2392 assert(this->type != NULL);
2393 assert(!this->invariant);
2394
Ian Romanick3455ce62010-04-19 15:13:15 -07002395 /* The type specifier may contain a structure definition. Process that
2396 * before any of the variable declarations.
2397 */
2398 (void) this->type->specifier->hir(instructions, state);
2399
Ian Romanickd612a122010-03-31 16:22:06 -07002400 decl_type = this->type->specifier->glsl_type(& type_name, state);
Ian Romanick304ea902010-05-10 11:17:53 -07002401 if (this->declarations.is_empty()) {
Ian Romanick6f0823d2010-07-01 20:39:08 -07002402 /* The only valid case where the declaration list can be empty is when
2403 * the declaration is setting the default precision of a built-in type
2404 * (e.g., 'precision highp vec4;').
Ian Romanickc824e352010-04-23 15:55:19 -07002405 */
2406
Ian Romanick6f0823d2010-07-01 20:39:08 -07002407 if (decl_type != NULL) {
Ian Romanickc824e352010-04-23 15:55:19 -07002408 } else {
2409 _mesa_glsl_error(& loc, state, "incomplete declaration");
2410 }
2411 }
Ian Romanicka87ac252010-02-22 13:19:34 -08002412
Ian Romanick2b97dc62010-05-10 17:42:05 -07002413 foreach_list_typed (ast_declaration, decl, link, &this->declarations) {
Ian Romanicka87ac252010-02-22 13:19:34 -08002414 const struct glsl_type *var_type;
Ian Romanick768b55a2010-08-13 16:46:43 -07002415 ir_variable *var;
Ian Romanicka87ac252010-02-22 13:19:34 -08002416
2417 /* FINISHME: Emit a warning if a variable declaration shadows a
2418 * FINISHME: declaration at a higher scope.
2419 */
2420
Ian Romanickcec65a62010-03-23 12:28:44 -07002421 if ((decl_type == NULL) || decl_type->is_void()) {
Ian Romanicka87ac252010-02-22 13:19:34 -08002422 if (type_name != NULL) {
2423 _mesa_glsl_error(& loc, state,
2424 "invalid type `%s' in declaration of `%s'",
2425 type_name, decl->identifier);
2426 } else {
2427 _mesa_glsl_error(& loc, state,
2428 "invalid type in declaration of `%s'",
2429 decl->identifier);
2430 }
2431 continue;
2432 }
2433
2434 if (decl->is_array) {
Kenneth Graunked8e34e22010-08-07 02:56:01 -07002435 var_type = process_array_type(&loc, decl_type, decl->array_size,
2436 state);
Ian Romanicka87ac252010-02-22 13:19:34 -08002437 } else {
2438 var_type = decl_type;
2439 }
2440
Ian Romanick7e2aa912010-07-19 17:12:42 -07002441 var = new(ctx) ir_variable(var_type, decl->identifier, ir_var_auto);
Ian Romanicka87ac252010-02-22 13:19:34 -08002442
Eric Anholt3f151502010-04-02 01:53:57 -10002443 /* From page 22 (page 28 of the PDF) of the GLSL 1.10 specification;
2444 *
2445 * "Global variables can only use the qualifiers const,
2446 * attribute, uni form, or varying. Only one may be
2447 * specified.
2448 *
2449 * Local variables can only use the qualifier const."
2450 *
Ian Romanick82c4b4f2011-01-07 16:53:07 -08002451 * This is relaxed in GLSL 1.30. It is also relaxed by any extension
2452 * that adds the 'layout' keyword.
Eric Anholt3f151502010-04-02 01:53:57 -10002453 */
Ian Romanick82c4b4f2011-01-07 16:53:07 -08002454 if ((state->language_version < 130)
2455 && !state->ARB_explicit_attrib_location_enable
2456 && !state->ARB_fragment_coord_conventions_enable) {
Ian Romanicke24d35a2010-10-05 16:38:47 -07002457 if (this->type->qualifier.flags.q.out) {
Eric Anholt3f151502010-04-02 01:53:57 -10002458 _mesa_glsl_error(& loc, state,
2459 "`out' qualifier in declaration of `%s' "
Ian Romanick469ea692011-01-07 16:05:59 -08002460 "only valid for function parameters in %s.",
2461 decl->identifier, state->version_string);
Eric Anholt3f151502010-04-02 01:53:57 -10002462 }
Ian Romanicke24d35a2010-10-05 16:38:47 -07002463 if (this->type->qualifier.flags.q.in) {
Eric Anholt3f151502010-04-02 01:53:57 -10002464 _mesa_glsl_error(& loc, state,
2465 "`in' qualifier in declaration of `%s' "
Ian Romanick469ea692011-01-07 16:05:59 -08002466 "only valid for function parameters in %s.",
2467 decl->identifier, state->version_string);
Eric Anholt3f151502010-04-02 01:53:57 -10002468 }
2469 /* FINISHME: Test for other invalid qualifiers. */
2470 }
2471
Eric Anholt2e063f12010-03-28 00:56:22 -07002472 apply_type_qualifier_to_variable(& this->type->qualifier, var, state,
2473 & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08002474
Ian Romanicke24d35a2010-10-05 16:38:47 -07002475 if (this->type->qualifier.flags.q.invariant) {
Eric Anholt046bef22010-08-04 20:33:57 -07002476 if ((state->target == vertex_shader) && !(var->mode == ir_var_out ||
2477 var->mode == ir_var_inout)) {
2478 /* FINISHME: Note that this doesn't work for invariant on
2479 * a function signature outval
2480 */
Ian Romanick6f0823d2010-07-01 20:39:08 -07002481 _mesa_glsl_error(& loc, state,
2482 "`%s' cannot be marked invariant, vertex shader "
2483 "outputs only\n", var->name);
Eric Anholt046bef22010-08-04 20:33:57 -07002484 } else if ((state->target == fragment_shader) &&
2485 !(var->mode == ir_var_in || var->mode == ir_var_inout)) {
2486 /* FINISHME: Note that this doesn't work for invariant on
2487 * a function signature inval
2488 */
Ian Romanick6f0823d2010-07-01 20:39:08 -07002489 _mesa_glsl_error(& loc, state,
2490 "`%s' cannot be marked invariant, fragment shader "
2491 "inputs only\n", var->name);
2492 }
2493 }
2494
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002495 if (state->current_function != NULL) {
Ian Romanickb168e532010-03-31 12:31:18 -07002496 const char *mode = NULL;
Ian Romanicke0800062010-03-31 13:15:23 -07002497 const char *extra = "";
Ian Romanickb168e532010-03-31 12:31:18 -07002498
Ian Romanicke0800062010-03-31 13:15:23 -07002499 /* There is no need to check for 'inout' here because the parser will
2500 * only allow that in function parameter lists.
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002501 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07002502 if (this->type->qualifier.flags.q.attribute) {
Ian Romanickb168e532010-03-31 12:31:18 -07002503 mode = "attribute";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002504 } else if (this->type->qualifier.flags.q.uniform) {
Ian Romanickb168e532010-03-31 12:31:18 -07002505 mode = "uniform";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002506 } else if (this->type->qualifier.flags.q.varying) {
Ian Romanickb168e532010-03-31 12:31:18 -07002507 mode = "varying";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002508 } else if (this->type->qualifier.flags.q.in) {
Ian Romanicke0800062010-03-31 13:15:23 -07002509 mode = "in";
2510 extra = " or in function parameter list";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002511 } else if (this->type->qualifier.flags.q.out) {
Ian Romanicke0800062010-03-31 13:15:23 -07002512 mode = "out";
2513 extra = " or in function parameter list";
Ian Romanickb168e532010-03-31 12:31:18 -07002514 }
2515
2516 if (mode) {
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002517 _mesa_glsl_error(& loc, state,
Ian Romanickb168e532010-03-31 12:31:18 -07002518 "%s variable `%s' must be declared at "
Ian Romanicke0800062010-03-31 13:15:23 -07002519 "global scope%s",
2520 mode, var->name, extra);
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002521 }
2522 } else if (var->mode == ir_var_in) {
Chad Versace01a584d2011-01-20 14:12:16 -08002523 var->read_only = true;
2524
Ian Romanickfb9f5b02010-03-29 17:16:35 -07002525 if (state->target == vertex_shader) {
2526 bool error_emitted = false;
2527
2528 /* From page 31 (page 37 of the PDF) of the GLSL 1.50 spec:
2529 *
2530 * "Vertex shader inputs can only be float, floating-point
2531 * vectors, matrices, signed and unsigned integers and integer
2532 * vectors. Vertex shader inputs can also form arrays of these
2533 * types, but not structures."
2534 *
Ian Romanick2d816202010-03-29 17:40:11 -07002535 * From page 31 (page 27 of the PDF) of the GLSL 1.30 spec:
2536 *
2537 * "Vertex shader inputs can only be float, floating-point
2538 * vectors, matrices, signed and unsigned integers and integer
2539 * vectors. They cannot be arrays or structures."
2540 *
Ian Romanickfb9f5b02010-03-29 17:16:35 -07002541 * From page 23 (page 29 of the PDF) of the GLSL 1.20 spec:
2542 *
2543 * "The attribute qualifier can be used only with float,
2544 * floating-point vectors, and matrices. Attribute variables
2545 * cannot be declared as arrays or structures."
2546 */
2547 const glsl_type *check_type = var->type->is_array()
2548 ? var->type->fields.array : var->type;
2549
2550 switch (check_type->base_type) {
2551 case GLSL_TYPE_FLOAT:
2552 break;
2553 case GLSL_TYPE_UINT:
2554 case GLSL_TYPE_INT:
2555 if (state->language_version > 120)
2556 break;
2557 /* FALLTHROUGH */
2558 default:
2559 _mesa_glsl_error(& loc, state,
2560 "vertex shader input / attribute cannot have "
2561 "type %s`%s'",
2562 var->type->is_array() ? "array of " : "",
2563 check_type->name);
2564 error_emitted = true;
2565 }
2566
Ian Romanick2d816202010-03-29 17:40:11 -07002567 if (!error_emitted && (state->language_version <= 130)
Ian Romanickfb9f5b02010-03-29 17:16:35 -07002568 && var->type->is_array()) {
2569 _mesa_glsl_error(& loc, state,
2570 "vertex shader input / attribute cannot have "
2571 "array type");
2572 error_emitted = true;
2573 }
2574 }
2575 }
2576
Chad Versace68d06b12010-12-16 11:06:19 -08002577 /* Integer vertex outputs must be qualified with 'flat'.
2578 *
2579 * From section 4.3.6 of the GLSL 1.30 spec:
2580 * "If a vertex output is a signed or unsigned integer or integer
2581 * vector, then it must be qualified with the interpolation qualifier
2582 * flat."
2583 */
2584 if (state->language_version >= 130
2585 && state->target == vertex_shader
2586 && state->current_function == NULL
2587 && var->type->is_integer()
2588 && var->mode == ir_var_out
2589 && var->interpolation != ir_var_flat) {
2590
2591 _mesa_glsl_error(&loc, state, "If a vertex output is an integer, "
2592 "then it must be qualified with 'flat'");
2593 }
2594
2595
Chad Versace605aacc2011-01-11 17:21:18 -08002596 /* Interpolation qualifiers cannot be applied to 'centroid' and
2597 * 'centroid varying'.
2598 *
2599 * From page 29 (page 35 of the PDF) of the GLSL 1.30 spec:
2600 * "interpolation qualifiers may only precede the qualifiers in,
2601 * centroid in, out, or centroid out in a declaration. They do not apply
2602 * to the deprecated storage qualifiers varying or centroid varying."
2603 */
2604 if (state->language_version >= 130
2605 && this->type->qualifier.has_interpolation()
2606 && this->type->qualifier.flags.q.varying) {
2607
2608 const char *i = this->type->qualifier.interpolation_string();
2609 assert(i != NULL);
2610 const char *s;
2611 if (this->type->qualifier.flags.q.centroid)
2612 s = "centroid varying";
2613 else
2614 s = "varying";
2615
2616 _mesa_glsl_error(&loc, state,
2617 "qualifier '%s' cannot be applied to the "
2618 "deprecated storage qualifier '%s'", i, s);
2619 }
2620
2621
Chad Versace8faaa4a2011-01-11 18:13:26 -08002622 /* Interpolation qualifiers can only apply to vertex shader outputs and
2623 * fragment shader inputs.
2624 *
2625 * From page 29 (page 35 of the PDF) of the GLSL 1.30 spec:
2626 * "Outputs from a vertex shader (out) and inputs to a fragment
2627 * shader (in) can be further qualified with one or more of these
2628 * interpolation qualifiers"
2629 */
2630 if (state->language_version >= 130
2631 && this->type->qualifier.has_interpolation()) {
2632
2633 const char *i = this->type->qualifier.interpolation_string();
2634 assert(i != NULL);
2635
2636 switch (state->target) {
2637 case vertex_shader:
2638 if (this->type->qualifier.flags.q.in) {
2639 _mesa_glsl_error(&loc, state,
2640 "qualifier '%s' cannot be applied to vertex "
2641 "shader inputs", i);
2642 }
2643 break;
2644 case fragment_shader:
2645 if (this->type->qualifier.flags.q.out) {
2646 _mesa_glsl_error(&loc, state,
2647 "qualifier '%s' cannot be applied to fragment "
2648 "shader outputs", i);
2649 }
2650 break;
2651 default:
2652 assert(0);
2653 }
2654 }
2655
2656
Chad Versace1eb0f172011-01-11 18:24:17 -08002657 /* From section 4.3.4 of the GLSL 1.30 spec:
2658 * "It is an error to use centroid in in a vertex shader."
2659 */
2660 if (state->language_version >= 130
2661 && this->type->qualifier.flags.q.centroid
2662 && this->type->qualifier.flags.q.in
2663 && state->target == vertex_shader) {
2664
2665 _mesa_glsl_error(&loc, state,
2666 "'centroid in' cannot be used in a vertex shader");
2667 }
2668
2669
Chad Versace889e1a52011-01-16 22:38:45 -08002670 /* Precision qualifiers exists only in GLSL versions 1.00 and >= 1.30.
2671 */
2672 if (this->type->specifier->precision != ast_precision_none
2673 && state->language_version != 100
2674 && state->language_version < 130) {
2675
2676 _mesa_glsl_error(&loc, state,
2677 "precision qualifiers are supported only in GLSL ES "
2678 "1.00, and GLSL 1.30 and later");
2679 }
2680
2681
Chad Versace45e8e6c2011-01-17 15:28:39 -08002682 /* Precision qualifiers only apply to floating point and integer types.
Chad Versace889e1a52011-01-16 22:38:45 -08002683 *
2684 * From section 4.5.2 of the GLSL 1.30 spec:
2685 * "Any floating point or any integer declaration can have the type
2686 * preceded by one of these precision qualifiers [...] Literal
2687 * constants do not have precision qualifiers. Neither do Boolean
2688 * variables.
Kenneth Graunke87528242011-03-26 23:37:09 -07002689 *
2690 * In GLSL ES, sampler types are also allowed.
2691 *
2692 * From page 87 of the GLSL ES spec:
2693 * "RESOLUTION: Allow sampler types to take a precision qualifier."
Chad Versace889e1a52011-01-16 22:38:45 -08002694 */
2695 if (this->type->specifier->precision != ast_precision_none
Chad Versace45e8e6c2011-01-17 15:28:39 -08002696 && !var->type->is_float()
2697 && !var->type->is_integer()
Kenneth Graunke87528242011-03-26 23:37:09 -07002698 && !(var->type->is_sampler() && state->es_shader)
Chad Versace45e8e6c2011-01-17 15:28:39 -08002699 && !(var->type->is_array()
2700 && (var->type->fields.array->is_float()
2701 || var->type->fields.array->is_integer()))) {
Chad Versace889e1a52011-01-16 22:38:45 -08002702
2703 _mesa_glsl_error(&loc, state,
Kenneth Graunke87528242011-03-26 23:37:09 -07002704 "precision qualifiers apply only to floating point"
2705 "%s types", state->es_shader ? ", integer, and sampler"
2706 : "and integer");
Chad Versace889e1a52011-01-16 22:38:45 -08002707 }
2708
Paul Berryf0722102011-07-12 12:03:02 -07002709 /* From page 17 (page 23 of the PDF) of the GLSL 1.20 spec:
2710 *
2711 * "[Sampler types] can only be declared as function
2712 * parameters or uniform variables (see Section 4.3.5
2713 * "Uniform")".
2714 */
2715 if (var_type->contains_sampler() &&
2716 !this->type->qualifier.flags.q.uniform) {
2717 _mesa_glsl_error(&loc, state, "samplers must be declared uniform");
2718 }
2719
Ian Romanicke78e0fa2010-07-07 12:13:34 -07002720 /* Process the initializer and add its instructions to a temporary
2721 * list. This list will be added to the instruction stream (below) after
2722 * the declaration is added. This is done because in some cases (such as
2723 * redeclarations) the declaration may not actually be added to the
2724 * instruction stream.
2725 */
Eric Anholtfa33d0b2010-07-29 13:50:17 -07002726 exec_list initializer_instructions;
Ian Romanick09a4ba02011-03-04 16:15:20 -08002727 ir_variable *earlier = get_variable_being_redeclared(var, decl, state);
2728
Ian Romanick66faec42010-03-27 18:56:53 -07002729 if (decl->initializer != NULL) {
Ian Romanick09a4ba02011-03-04 16:15:20 -08002730 result = process_initializer((earlier == NULL) ? var : earlier,
2731 decl, this->type,
Ian Romanick0292ffb2011-03-04 15:29:33 -08002732 &initializer_instructions, state);
Ian Romanick19360152010-03-26 18:05:27 -07002733 }
Ian Romanick17d86f42010-03-29 12:59:02 -07002734
Eric Anholt0ed61252010-03-31 09:29:33 -10002735 /* From page 23 (page 29 of the PDF) of the GLSL 1.10 spec:
2736 *
2737 * "It is an error to write to a const variable outside of
2738 * its declaration, so they must be initialized when
2739 * declared."
2740 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07002741 if (this->type->qualifier.flags.q.constant && decl->initializer == NULL) {
Eric Anholt0ed61252010-03-31 09:29:33 -10002742 _mesa_glsl_error(& loc, state,
Chad Versace46f71052011-01-18 15:15:19 -08002743 "const declaration of `%s' must be initialized",
2744 decl->identifier);
Eric Anholt0ed61252010-03-31 09:29:33 -10002745 }
2746
Ian Romanick09a4ba02011-03-04 16:15:20 -08002747 /* If the declaration is not a redeclaration, there are a few additional
2748 * semantic checks that must be applied. In addition, variable that was
2749 * created for the declaration should be added to the IR stream.
2750 */
2751 if (earlier == NULL) {
2752 /* From page 15 (page 21 of the PDF) of the GLSL 1.10 spec,
2753 *
2754 * "Identifiers starting with "gl_" are reserved for use by
2755 * OpenGL, and may not be declared in a shader as either a
2756 * variable or a function."
2757 */
2758 if (strncmp(decl->identifier, "gl_", 3) == 0)
2759 _mesa_glsl_error(& loc, state,
2760 "identifier `%s' uses reserved `gl_' prefix",
2761 decl->identifier);
2762
2763 /* Add the variable to the symbol table. Note that the initializer's
2764 * IR was already processed earlier (though it hasn't been emitted
2765 * yet), without the variable in scope.
2766 *
2767 * This differs from most C-like languages, but it follows the GLSL
2768 * specification. From page 28 (page 34 of the PDF) of the GLSL 1.50
2769 * spec:
2770 *
2771 * "Within a declaration, the scope of a name starts immediately
2772 * after the initializer if present or immediately after the name
2773 * being declared if not."
2774 */
2775 if (!state->symbols->add_variable(var)) {
2776 YYLTYPE loc = this->get_location();
2777 _mesa_glsl_error(&loc, state, "name `%s' already taken in the "
2778 "current scope", decl->identifier);
2779 continue;
2780 }
2781
2782 /* Push the variable declaration to the top. It means that all the
2783 * variable declarations will appear in a funny last-to-first order,
2784 * but otherwise we run into trouble if a function is prototyped, a
2785 * global var is decled, then the function is defined with usage of
2786 * the global var. See glslparsertest's CorrectModule.frag.
2787 */
2788 instructions->push_head(var);
Ian Romanick5466b632010-07-01 12:46:55 -07002789 }
2790
Eric Anholtfa33d0b2010-07-29 13:50:17 -07002791 instructions->append_list(&initializer_instructions);
Ian Romanicka87ac252010-02-22 13:19:34 -08002792 }
2793
Eric Anholt85584592010-04-14 15:38:52 -07002794
2795 /* Generally, variable declarations do not have r-values. However,
2796 * one is used for the declaration in
2797 *
2798 * while (bool b = some_condition()) {
2799 * ...
2800 * }
2801 *
2802 * so we return the rvalue from the last seen declaration here.
Ian Romanicka87ac252010-02-22 13:19:34 -08002803 */
Eric Anholt85584592010-04-14 15:38:52 -07002804 return result;
Ian Romanicka87ac252010-02-22 13:19:34 -08002805}
2806
2807
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07002808ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08002809ast_parameter_declarator::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08002810 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08002811{
Kenneth Graunke953ff122010-06-25 13:14:37 -07002812 void *ctx = state;
Ian Romanicka87ac252010-02-22 13:19:34 -08002813 const struct glsl_type *type;
2814 const char *name = NULL;
Eric Anholt2e063f12010-03-28 00:56:22 -07002815 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08002816
Ian Romanickd612a122010-03-31 16:22:06 -07002817 type = this->type->specifier->glsl_type(& name, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08002818
2819 if (type == NULL) {
Ian Romanicka87ac252010-02-22 13:19:34 -08002820 if (name != NULL) {
2821 _mesa_glsl_error(& loc, state,
2822 "invalid type `%s' in declaration of `%s'",
Ian Romanick18238de2010-03-01 13:49:10 -08002823 name, this->identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08002824 } else {
2825 _mesa_glsl_error(& loc, state,
2826 "invalid type in declaration of `%s'",
Ian Romanick18238de2010-03-01 13:49:10 -08002827 this->identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08002828 }
2829
Ian Romanick0471e8b2010-03-26 14:33:41 -07002830 type = glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -08002831 }
2832
Eric Anholt068c80c2010-03-31 09:56:36 -10002833 /* From page 62 (page 68 of the PDF) of the GLSL 1.50 spec:
2834 *
2835 * "Functions that accept no input arguments need not use void in the
2836 * argument list because prototypes (or definitions) are required and
2837 * therefore there is no ambiguity when an empty argument list "( )" is
2838 * declared. The idiom "(void)" as a parameter list is provided for
2839 * convenience."
2840 *
2841 * Placing this check here prevents a void parameter being set up
2842 * for a function, which avoids tripping up checks for main taking
2843 * parameters and lookups of an unnamed symbol.
2844 */
Ian Romanickcf37c9e2010-04-02 15:30:45 -07002845 if (type->is_void()) {
2846 if (this->identifier != NULL)
2847 _mesa_glsl_error(& loc, state,
2848 "named parameter cannot have type `void'");
2849
2850 is_void = true;
Eric Anholt068c80c2010-03-31 09:56:36 -10002851 return NULL;
Ian Romanickcf37c9e2010-04-02 15:30:45 -07002852 }
Eric Anholt068c80c2010-03-31 09:56:36 -10002853
Ian Romanick45d8a702010-04-02 15:09:33 -07002854 if (formal_parameter && (this->identifier == NULL)) {
2855 _mesa_glsl_error(& loc, state, "formal parameter lacks a name");
2856 return NULL;
2857 }
2858
Kenneth Graunkee511a352010-08-21 15:30:34 -07002859 /* This only handles "vec4 foo[..]". The earlier specifier->glsl_type(...)
2860 * call already handled the "vec4[..] foo" case.
2861 */
2862 if (this->is_array) {
Kenneth Graunked8e34e22010-08-07 02:56:01 -07002863 type = process_array_type(&loc, type, this->array_size, state);
Kenneth Graunkee511a352010-08-21 15:30:34 -07002864 }
2865
2866 if (type->array_size() == 0) {
2867 _mesa_glsl_error(&loc, state, "arrays passed as parameters must have "
2868 "a declared size.");
2869 type = glsl_type::error_type;
2870 }
2871
Ian Romanickcf37c9e2010-04-02 15:30:45 -07002872 is_void = false;
Ian Romanick7e2aa912010-07-19 17:12:42 -07002873 ir_variable *var = new(ctx) ir_variable(type, this->identifier, ir_var_in);
Ian Romanicka87ac252010-02-22 13:19:34 -08002874
Ian Romanickcdb8d542010-03-11 14:48:51 -08002875 /* Apply any specified qualifiers to the parameter declaration. Note that
2876 * for function parameters the default mode is 'in'.
2877 */
Eric Anholt2e063f12010-03-28 00:56:22 -07002878 apply_type_qualifier_to_variable(& this->type->qualifier, var, state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08002879
Paul Berryf0722102011-07-12 12:03:02 -07002880 /* From page 17 (page 23 of the PDF) of the GLSL 1.20 spec:
2881 *
2882 * "Samplers cannot be treated as l-values; hence cannot be used
2883 * as out or inout function parameters, nor can they be assigned
2884 * into."
2885 */
2886 if ((var->mode == ir_var_inout || var->mode == ir_var_out)
2887 && type->contains_sampler()) {
2888 _mesa_glsl_error(&loc, state, "out and inout parameters cannot contain samplers");
2889 type = glsl_type::error_type;
2890 }
2891
Ian Romanick0044e7e2010-03-08 23:44:00 -08002892 instructions->push_tail(var);
Ian Romanicka87ac252010-02-22 13:19:34 -08002893
2894 /* Parameter declarations do not have r-values.
2895 */
2896 return NULL;
2897}
2898
2899
Ian Romanick45d8a702010-04-02 15:09:33 -07002900void
Ian Romanick304ea902010-05-10 11:17:53 -07002901ast_parameter_declarator::parameters_to_hir(exec_list *ast_parameters,
Ian Romanick45d8a702010-04-02 15:09:33 -07002902 bool formal,
2903 exec_list *ir_parameters,
2904 _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08002905{
Ian Romanickcf37c9e2010-04-02 15:30:45 -07002906 ast_parameter_declarator *void_param = NULL;
2907 unsigned count = 0;
Ian Romanicka87ac252010-02-22 13:19:34 -08002908
Ian Romanick2b97dc62010-05-10 17:42:05 -07002909 foreach_list_typed (ast_parameter_declarator, param, link, ast_parameters) {
Ian Romanick45d8a702010-04-02 15:09:33 -07002910 param->formal_parameter = formal;
Eric Anholt068c80c2010-03-31 09:56:36 -10002911 param->hir(ir_parameters, state);
Ian Romanickcf37c9e2010-04-02 15:30:45 -07002912
2913 if (param->is_void)
2914 void_param = param;
2915
2916 count++;
2917 }
2918
2919 if ((void_param != NULL) && (count > 1)) {
2920 YYLTYPE loc = void_param->get_location();
2921
2922 _mesa_glsl_error(& loc, state,
2923 "`void' parameter must be only parameter");
Ian Romanicka87ac252010-02-22 13:19:34 -08002924 }
2925}
2926
2927
Kenneth Graunke6fae1e42010-12-06 10:54:05 -08002928void
2929emit_function(_mesa_glsl_parse_state *state, exec_list *instructions,
2930 ir_function *f)
2931{
2932 /* Emit the new function header */
2933 if (state->current_function == NULL) {
2934 instructions->push_tail(f);
2935 } else {
2936 /* IR invariants disallow function declarations or definitions nested
2937 * within other function definitions. Insert the new ir_function
2938 * block in the instruction sequence before the ir_function block
2939 * containing the current ir_function_signature.
2940 */
2941 ir_function *const curr =
2942 const_cast<ir_function *>(state->current_function->function());
2943
2944 curr->insert_before(f);
2945 }
2946}
2947
2948
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07002949ir_rvalue *
Ian Romanick92318a92010-03-31 18:23:21 -07002950ast_function::hir(exec_list *instructions,
2951 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08002952{
Kenneth Graunke953ff122010-06-25 13:14:37 -07002953 void *ctx = state;
Ian Romanick18238de2010-03-01 13:49:10 -08002954 ir_function *f = NULL;
Ian Romanick92318a92010-03-31 18:23:21 -07002955 ir_function_signature *sig = NULL;
2956 exec_list hir_parameters;
Ian Romanicka87ac252010-02-22 13:19:34 -08002957
Kenneth Graunkeac04c252010-06-29 00:48:10 -07002958 const char *const name = identifier;
Ian Romanicka87ac252010-02-22 13:19:34 -08002959
Ian Romanick63b80f82010-09-01 06:34:58 -07002960 /* From page 21 (page 27 of the PDF) of the GLSL 1.20 spec,
2961 *
2962 * "Function declarations (prototypes) cannot occur inside of functions;
2963 * they must be at global scope, or for the built-in functions, outside
2964 * the global scope."
2965 *
2966 * From page 27 (page 33 of the PDF) of the GLSL ES 1.00.16 spec,
2967 *
2968 * "User defined functions may only be defined within the global scope."
2969 *
2970 * Note that this language does not appear in GLSL 1.10.
2971 */
2972 if ((state->current_function != NULL) && (state->language_version != 110)) {
2973 YYLTYPE loc = this->get_location();
2974 _mesa_glsl_error(&loc, state,
2975 "declaration of function `%s' not allowed within "
2976 "function body", name);
2977 }
2978
Kenneth Graunkeedd180f2010-08-20 02:14:35 -07002979 /* From page 15 (page 21 of the PDF) of the GLSL 1.10 spec,
2980 *
2981 * "Identifiers starting with "gl_" are reserved for use by
2982 * OpenGL, and may not be declared in a shader as either a
2983 * variable or a function."
2984 */
2985 if (strncmp(name, "gl_", 3) == 0) {
2986 YYLTYPE loc = this->get_location();
2987 _mesa_glsl_error(&loc, state,
2988 "identifier `%s' uses reserved `gl_' prefix", name);
2989 }
2990
Ian Romanicka87ac252010-02-22 13:19:34 -08002991 /* Convert the list of function parameters to HIR now so that they can be
2992 * used below to compare this function's signature with previously seen
2993 * signatures for functions with the same name.
2994 */
Ian Romanick45d8a702010-04-02 15:09:33 -07002995 ast_parameter_declarator::parameters_to_hir(& this->parameters,
2996 is_definition,
2997 & hir_parameters, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08002998
Ian Romanicke39cc692010-03-23 12:19:13 -07002999 const char *return_type_name;
3000 const glsl_type *return_type =
Ian Romanick92318a92010-03-31 18:23:21 -07003001 this->return_type->specifier->glsl_type(& return_type_name, state);
Ian Romanicke39cc692010-03-23 12:19:13 -07003002
Eric Anholt76e96d72010-08-23 13:26:52 -07003003 if (!return_type) {
3004 YYLTYPE loc = this->get_location();
3005 _mesa_glsl_error(&loc, state,
3006 "function `%s' has undeclared return type `%s'",
3007 name, return_type_name);
3008 return_type = glsl_type::error_type;
3009 }
Ian Romanicke39cc692010-03-23 12:19:13 -07003010
Kenneth Graunkeac04c252010-06-29 00:48:10 -07003011 /* From page 56 (page 62 of the PDF) of the GLSL 1.30 spec:
3012 * "No qualifier is allowed on the return type of a function."
3013 */
3014 if (this->return_type->has_qualifiers()) {
3015 YYLTYPE loc = this->get_location();
3016 _mesa_glsl_error(& loc, state,
3017 "function `%s' return type has qualifiers", name);
3018 }
3019
Paul Berryf0722102011-07-12 12:03:02 -07003020 /* From page 17 (page 23 of the PDF) of the GLSL 1.20 spec:
3021 *
3022 * "[Sampler types] can only be declared as function parameters
3023 * or uniform variables (see Section 4.3.5 "Uniform")".
3024 */
3025 if (return_type->contains_sampler()) {
3026 YYLTYPE loc = this->get_location();
3027 _mesa_glsl_error(&loc, state,
3028 "function `%s' return type can't contain a sampler",
3029 name);
3030 }
3031
Ian Romanicka87ac252010-02-22 13:19:34 -08003032 /* Verify that this function's signature either doesn't match a previously
3033 * seen signature for a function with the same name, or, if a match is found,
3034 * that the previously seen signature does not have an associated definition.
3035 */
Ian Romanicke466b182010-09-01 14:16:53 -07003036 f = state->symbols->get_function(name);
Kenneth Graunke81f03392010-09-16 02:52:25 -07003037 if (f != NULL && (state->es_shader || f->has_user_signature())) {
Ian Romanick202604e2010-08-11 16:58:25 -07003038 sig = f->exact_matching_signature(&hir_parameters);
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07003039 if (sig != NULL) {
3040 const char *badvar = sig->qualifiers_match(&hir_parameters);
3041 if (badvar != NULL) {
3042 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08003043
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07003044 _mesa_glsl_error(&loc, state, "function `%s' parameter `%s' "
3045 "qualifiers don't match prototype", name, badvar);
Ian Romanicka87ac252010-02-22 13:19:34 -08003046 }
3047
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07003048 if (sig->return_type != return_type) {
3049 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08003050
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07003051 _mesa_glsl_error(&loc, state, "function `%s' return type doesn't "
3052 "match prototype", name);
3053 }
3054
3055 if (is_definition && sig->is_defined) {
3056 YYLTYPE loc = this->get_location();
3057
3058 _mesa_glsl_error(& loc, state, "function `%s' redefined", name);
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07003059 }
3060 }
Ian Romanicka87ac252010-02-22 13:19:34 -08003061 } else {
Carl Worth1660a292010-06-23 18:11:51 -07003062 f = new(ctx) ir_function(name);
Eric Anholte8f5ebf2010-11-05 06:08:45 -07003063 if (!state->symbols->add_function(f)) {
Kenneth Graunkee0959132010-08-25 16:37:46 -07003064 /* This function name shadows a non-function use of the same name. */
3065 YYLTYPE loc = this->get_location();
3066
3067 _mesa_glsl_error(&loc, state, "function name `%s' conflicts with "
3068 "non-function", name);
3069 return NULL;
3070 }
Kenneth Graunke9fa99f32010-04-21 12:30:22 -07003071
Kenneth Graunke6fae1e42010-12-06 10:54:05 -08003072 emit_function(state, instructions, f);
Ian Romanicka87ac252010-02-22 13:19:34 -08003073 }
3074
Eric Anholtab372da2010-03-28 01:24:55 -07003075 /* Verify the return type of main() */
3076 if (strcmp(name, "main") == 0) {
Ian Romanick25711a82010-03-31 17:39:10 -07003077 if (! return_type->is_void()) {
Eric Anholtab372da2010-03-28 01:24:55 -07003078 YYLTYPE loc = this->get_location();
3079
3080 _mesa_glsl_error(& loc, state, "main() must return void");
3081 }
Eric Anholt174cc032010-03-30 23:37:51 -10003082
Ian Romanick92318a92010-03-31 18:23:21 -07003083 if (!hir_parameters.is_empty()) {
Eric Anholt174cc032010-03-30 23:37:51 -10003084 YYLTYPE loc = this->get_location();
3085
3086 _mesa_glsl_error(& loc, state, "main() must not take any parameters");
3087 }
Eric Anholtab372da2010-03-28 01:24:55 -07003088 }
Ian Romanicka87ac252010-02-22 13:19:34 -08003089
3090 /* Finish storing the information about this new function in its signature.
3091 */
Ian Romanick92318a92010-03-31 18:23:21 -07003092 if (sig == NULL) {
Carl Worth1660a292010-06-23 18:11:51 -07003093 sig = new(ctx) ir_function_signature(return_type);
Ian Romanick92318a92010-03-31 18:23:21 -07003094 f->add_signature(sig);
Ian Romanicka87ac252010-02-22 13:19:34 -08003095 }
3096
Kenneth Graunkebff60132010-04-28 12:44:24 -07003097 sig->replace_parameters(&hir_parameters);
Ian Romanick92318a92010-03-31 18:23:21 -07003098 signature = sig;
Ian Romanicke29a5852010-03-31 17:54:26 -07003099
Ian Romanick92318a92010-03-31 18:23:21 -07003100 /* Function declarations (prototypes) do not have r-values.
3101 */
3102 return NULL;
3103}
3104
3105
3106ir_rvalue *
3107ast_function_definition::hir(exec_list *instructions,
3108 struct _mesa_glsl_parse_state *state)
3109{
3110 prototype->is_definition = true;
3111 prototype->hir(instructions, state);
3112
3113 ir_function_signature *signature = prototype->signature;
Kenneth Graunke826a39c2010-08-20 02:04:52 -07003114 if (signature == NULL)
3115 return NULL;
Ian Romanicka87ac252010-02-22 13:19:34 -08003116
Ian Romanick41ec6a42010-03-19 17:08:05 -07003117 assert(state->current_function == NULL);
3118 state->current_function = signature;
Kenneth Graunke6de82562010-06-29 09:59:40 -07003119 state->found_return = false;
Ian Romanick41ec6a42010-03-19 17:08:05 -07003120
Ian Romanicke29a5852010-03-31 17:54:26 -07003121 /* Duplicate parameters declared in the prototype as concrete variables.
3122 * Add these to the symbol table.
Ian Romanicka87ac252010-02-22 13:19:34 -08003123 */
Ian Romanick8bde4ce2010-03-19 11:57:24 -07003124 state->symbols->push_scope();
Ian Romanicke29a5852010-03-31 17:54:26 -07003125 foreach_iter(exec_list_iterator, iter, signature->parameters) {
Eric Anholtfbc7c0b2010-04-07 14:32:53 -07003126 ir_variable *const var = ((ir_instruction *) iter.get())->as_variable();
Ian Romanicka87ac252010-02-22 13:19:34 -08003127
Eric Anholtfbc7c0b2010-04-07 14:32:53 -07003128 assert(var != NULL);
Ian Romanicka87ac252010-02-22 13:19:34 -08003129
Ian Romanick3359e582010-03-19 15:38:52 -07003130 /* The only way a parameter would "exist" is if two parameters have
3131 * the same name.
3132 */
3133 if (state->symbols->name_declared_this_scope(var->name)) {
3134 YYLTYPE loc = this->get_location();
3135
3136 _mesa_glsl_error(& loc, state, "parameter `%s' redeclared", var->name);
3137 } else {
Eric Anholt001eee52010-11-05 06:11:24 -07003138 state->symbols->add_variable(var);
Ian Romanick3359e582010-03-19 15:38:52 -07003139 }
Ian Romanicka87ac252010-02-22 13:19:34 -08003140 }
3141
Kenneth Graunke9fa99f32010-04-21 12:30:22 -07003142 /* Convert the body of the function to HIR. */
Eric Anholt894ea972010-04-07 13:19:11 -07003143 this->body->hir(&signature->body, state);
Kenneth Graunke9fa99f32010-04-21 12:30:22 -07003144 signature->is_defined = true;
Ian Romanicka87ac252010-02-22 13:19:34 -08003145
Ian Romanick8bde4ce2010-03-19 11:57:24 -07003146 state->symbols->pop_scope();
Ian Romanicka87ac252010-02-22 13:19:34 -08003147
Ian Romanick41ec6a42010-03-19 17:08:05 -07003148 assert(state->current_function == signature);
3149 state->current_function = NULL;
Ian Romanicka87ac252010-02-22 13:19:34 -08003150
Kenneth Graunke6de82562010-06-29 09:59:40 -07003151 if (!signature->return_type->is_void() && !state->found_return) {
3152 YYLTYPE loc = this->get_location();
3153 _mesa_glsl_error(& loc, state, "function `%s' has non-void return type "
3154 "%s, but no return statement",
3155 signature->function_name(),
3156 signature->return_type->name);
3157 }
3158
Ian Romanicka87ac252010-02-22 13:19:34 -08003159 /* Function definitions do not have r-values.
3160 */
3161 return NULL;
3162}
Ian Romanick16a246c2010-03-19 16:45:19 -07003163
3164
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07003165ir_rvalue *
Ian Romanick16a246c2010-03-19 16:45:19 -07003166ast_jump_statement::hir(exec_list *instructions,
3167 struct _mesa_glsl_parse_state *state)
3168{
Kenneth Graunke953ff122010-06-25 13:14:37 -07003169 void *ctx = state;
Ian Romanick16a246c2010-03-19 16:45:19 -07003170
Ian Romanickc0e76d82010-04-05 16:53:19 -07003171 switch (mode) {
3172 case ast_return: {
Ian Romanick16a246c2010-03-19 16:45:19 -07003173 ir_return *inst;
Eric Anholtaad7c772010-03-30 23:28:20 -10003174 assert(state->current_function);
Ian Romanick16a246c2010-03-19 16:45:19 -07003175
3176 if (opt_return_value) {
Chad Versaceb4cdba62010-11-17 10:28:01 -08003177 ir_rvalue *const ret = opt_return_value->hir(instructions, state);
Ian Romanick2db46fe2011-01-22 17:47:05 -08003178
3179 /* The value of the return type can be NULL if the shader says
3180 * 'return foo();' and foo() is a function that returns void.
3181 *
3182 * NOTE: The GLSL spec doesn't say that this is an error. The type
3183 * of the return value is void. If the return type of the function is
3184 * also void, then this should compile without error. Seriously.
3185 */
3186 const glsl_type *const ret_type =
3187 (ret == NULL) ? glsl_type::void_type : ret->type;
Ian Romanick16a246c2010-03-19 16:45:19 -07003188
Kenneth Graunke18707eb2010-06-28 23:38:04 -07003189 /* Implicit conversions are not allowed for return values. */
Ian Romanick2db46fe2011-01-22 17:47:05 -08003190 if (state->current_function->return_type != ret_type) {
Kenneth Graunke18707eb2010-06-28 23:38:04 -07003191 YYLTYPE loc = this->get_location();
3192
3193 _mesa_glsl_error(& loc, state,
3194 "`return' with wrong type %s, in function `%s' "
3195 "returning %s",
Ian Romanick2db46fe2011-01-22 17:47:05 -08003196 ret_type->name,
Kenneth Graunke18707eb2010-06-28 23:38:04 -07003197 state->current_function->function_name(),
3198 state->current_function->return_type->name);
3199 }
Ian Romanick16a246c2010-03-19 16:45:19 -07003200
Carl Worth1660a292010-06-23 18:11:51 -07003201 inst = new(ctx) ir_return(ret);
Ian Romanick16a246c2010-03-19 16:45:19 -07003202 } else {
Eric Anholtaad7c772010-03-30 23:28:20 -10003203 if (state->current_function->return_type->base_type !=
3204 GLSL_TYPE_VOID) {
3205 YYLTYPE loc = this->get_location();
3206
3207 _mesa_glsl_error(& loc, state,
3208 "`return' with no value, in function %s returning "
3209 "non-void",
Kenneth Graunkef96c52b2010-04-21 15:17:26 -07003210 state->current_function->function_name());
Eric Anholtaad7c772010-03-30 23:28:20 -10003211 }
Carl Worth1660a292010-06-23 18:11:51 -07003212 inst = new(ctx) ir_return;
Ian Romanick16a246c2010-03-19 16:45:19 -07003213 }
3214
Kenneth Graunke6de82562010-06-29 09:59:40 -07003215 state->found_return = true;
Ian Romanick16a246c2010-03-19 16:45:19 -07003216 instructions->push_tail(inst);
Ian Romanickc0e76d82010-04-05 16:53:19 -07003217 break;
Ian Romanick16a246c2010-03-19 16:45:19 -07003218 }
3219
Ian Romanickc0e76d82010-04-05 16:53:19 -07003220 case ast_discard:
Eric Anholtb9802072010-03-30 23:40:14 -10003221 if (state->target != fragment_shader) {
3222 YYLTYPE loc = this->get_location();
3223
3224 _mesa_glsl_error(& loc, state,
3225 "`discard' may only appear in a fragment shader");
3226 }
Kenneth Graunke77049a72010-06-30 14:11:00 -07003227 instructions->push_tail(new(ctx) ir_discard);
Ian Romanickc0e76d82010-04-05 16:53:19 -07003228 break;
3229
3230 case ast_break:
3231 case ast_continue:
Ian Romanick4cf20cd2010-04-05 17:13:47 -07003232 /* FINISHME: Handle switch-statements. They cannot contain 'continue',
3233 * FINISHME: and they use a different IR instruction for 'break'.
3234 */
3235 /* FINISHME: Correctly handle the nesting. If a switch-statement is
3236 * FINISHME: inside a loop, a 'continue' is valid and will bind to the
3237 * FINISHME: loop.
3238 */
3239 if (state->loop_or_switch_nesting == NULL) {
3240 YYLTYPE loc = this->get_location();
3241
3242 _mesa_glsl_error(& loc, state,
3243 "`%s' may only appear in a loop",
3244 (mode == ast_break) ? "break" : "continue");
3245 } else {
3246 ir_loop *const loop = state->loop_or_switch_nesting->as_loop();
3247
Eric Anholt2d1ed7b2010-07-22 12:55:16 -07003248 /* Inline the for loop expression again, since we don't know
3249 * where near the end of the loop body the normal copy of it
3250 * is going to be placed.
3251 */
3252 if (mode == ast_continue &&
3253 state->loop_or_switch_nesting_ast->rest_expression) {
3254 state->loop_or_switch_nesting_ast->rest_expression->hir(instructions,
3255 state);
3256 }
3257
Ian Romanick4cf20cd2010-04-05 17:13:47 -07003258 if (loop != NULL) {
3259 ir_loop_jump *const jump =
Carl Worth1660a292010-06-23 18:11:51 -07003260 new(ctx) ir_loop_jump((mode == ast_break)
3261 ? ir_loop_jump::jump_break
3262 : ir_loop_jump::jump_continue);
Ian Romanick4cf20cd2010-04-05 17:13:47 -07003263 instructions->push_tail(jump);
3264 }
3265 }
3266
Ian Romanickc0e76d82010-04-05 16:53:19 -07003267 break;
Eric Anholtb9802072010-03-30 23:40:14 -10003268 }
3269
Ian Romanick16a246c2010-03-19 16:45:19 -07003270 /* Jump instructions do not have r-values.
3271 */
3272 return NULL;
3273}
Ian Romanick3c6fea32010-03-29 14:11:25 -07003274
3275
3276ir_rvalue *
3277ast_selection_statement::hir(exec_list *instructions,
3278 struct _mesa_glsl_parse_state *state)
3279{
Kenneth Graunke953ff122010-06-25 13:14:37 -07003280 void *ctx = state;
Carl Worth1660a292010-06-23 18:11:51 -07003281
Ian Romanick3c6fea32010-03-29 14:11:25 -07003282 ir_rvalue *const condition = this->condition->hir(instructions, state);
Ian Romanick3c6fea32010-03-29 14:11:25 -07003283
3284 /* From page 66 (page 72 of the PDF) of the GLSL 1.50 spec:
3285 *
3286 * "Any expression whose type evaluates to a Boolean can be used as the
3287 * conditional expression bool-expression. Vector types are not accepted
3288 * as the expression to if."
3289 *
3290 * The checks are separated so that higher quality diagnostics can be
3291 * generated for cases where both rules are violated.
3292 */
3293 if (!condition->type->is_boolean() || !condition->type->is_scalar()) {
3294 YYLTYPE loc = this->condition->get_location();
3295
3296 _mesa_glsl_error(& loc, state, "if-statement condition must be scalar "
3297 "boolean");
3298 }
3299
Carl Worth1660a292010-06-23 18:11:51 -07003300 ir_if *const stmt = new(ctx) ir_if(condition);
Ian Romanick3c6fea32010-03-29 14:11:25 -07003301
Kenneth Graunke665d75c2010-08-18 13:54:50 -07003302 if (then_statement != NULL) {
3303 state->symbols->push_scope();
Ian Romanick4f9d72f2010-05-10 11:10:26 -07003304 then_statement->hir(& stmt->then_instructions, state);
Kenneth Graunke665d75c2010-08-18 13:54:50 -07003305 state->symbols->pop_scope();
3306 }
Ian Romanick3c6fea32010-03-29 14:11:25 -07003307
Kenneth Graunke665d75c2010-08-18 13:54:50 -07003308 if (else_statement != NULL) {
3309 state->symbols->push_scope();
Ian Romanick4f9d72f2010-05-10 11:10:26 -07003310 else_statement->hir(& stmt->else_instructions, state);
Kenneth Graunke665d75c2010-08-18 13:54:50 -07003311 state->symbols->pop_scope();
3312 }
Ian Romanick3c6fea32010-03-29 14:11:25 -07003313
3314 instructions->push_tail(stmt);
3315
3316 /* if-statements do not have r-values.
3317 */
3318 return NULL;
3319}
Ian Romanick9e7d0102010-04-05 16:37:49 -07003320
3321
Ian Romanick8c46ed22010-04-05 18:07:27 -07003322void
3323ast_iteration_statement::condition_to_hir(ir_loop *stmt,
3324 struct _mesa_glsl_parse_state *state)
Ian Romanick9e7d0102010-04-05 16:37:49 -07003325{
Kenneth Graunke953ff122010-06-25 13:14:37 -07003326 void *ctx = state;
Carl Worth1660a292010-06-23 18:11:51 -07003327
Ian Romanick9e7d0102010-04-05 16:37:49 -07003328 if (condition != NULL) {
3329 ir_rvalue *const cond =
3330 condition->hir(& stmt->body_instructions, state);
3331
3332 if ((cond == NULL)
3333 || !cond->type->is_boolean() || !cond->type->is_scalar()) {
3334 YYLTYPE loc = condition->get_location();
3335
3336 _mesa_glsl_error(& loc, state,
3337 "loop condition must be scalar boolean");
3338 } else {
3339 /* As the first code in the loop body, generate a block that looks
3340 * like 'if (!condition) break;' as the loop termination condition.
3341 */
3342 ir_rvalue *const not_cond =
Carl Worth1660a292010-06-23 18:11:51 -07003343 new(ctx) ir_expression(ir_unop_logic_not, glsl_type::bool_type, cond,
3344 NULL);
Ian Romanick9e7d0102010-04-05 16:37:49 -07003345
Carl Worth1660a292010-06-23 18:11:51 -07003346 ir_if *const if_stmt = new(ctx) ir_if(not_cond);
Ian Romanick9e7d0102010-04-05 16:37:49 -07003347
3348 ir_jump *const break_stmt =
Carl Worth1660a292010-06-23 18:11:51 -07003349 new(ctx) ir_loop_jump(ir_loop_jump::jump_break);
Ian Romanick9e7d0102010-04-05 16:37:49 -07003350
3351 if_stmt->then_instructions.push_tail(break_stmt);
3352 stmt->body_instructions.push_tail(if_stmt);
3353 }
3354 }
Ian Romanick8c46ed22010-04-05 18:07:27 -07003355}
3356
3357
3358ir_rvalue *
3359ast_iteration_statement::hir(exec_list *instructions,
3360 struct _mesa_glsl_parse_state *state)
3361{
Kenneth Graunke953ff122010-06-25 13:14:37 -07003362 void *ctx = state;
Carl Worth1660a292010-06-23 18:11:51 -07003363
Ian Romanick48460662010-04-16 16:42:43 -07003364 /* For-loops and while-loops start a new scope, but do-while loops do not.
Ian Romanick8c46ed22010-04-05 18:07:27 -07003365 */
Ian Romanick48460662010-04-16 16:42:43 -07003366 if (mode != ast_do_while)
Ian Romanick8c46ed22010-04-05 18:07:27 -07003367 state->symbols->push_scope();
3368
3369 if (init_statement != NULL)
3370 init_statement->hir(instructions, state);
3371
Carl Worth1660a292010-06-23 18:11:51 -07003372 ir_loop *const stmt = new(ctx) ir_loop();
Ian Romanick8c46ed22010-04-05 18:07:27 -07003373 instructions->push_tail(stmt);
3374
3375 /* Track the current loop and / or switch-statement nesting.
3376 */
3377 ir_instruction *const nesting = state->loop_or_switch_nesting;
Eric Anholt2d1ed7b2010-07-22 12:55:16 -07003378 ast_iteration_statement *nesting_ast = state->loop_or_switch_nesting_ast;
3379
Ian Romanick8c46ed22010-04-05 18:07:27 -07003380 state->loop_or_switch_nesting = stmt;
Eric Anholt2d1ed7b2010-07-22 12:55:16 -07003381 state->loop_or_switch_nesting_ast = this;
Ian Romanick8c46ed22010-04-05 18:07:27 -07003382
3383 if (mode != ast_do_while)
3384 condition_to_hir(stmt, state);
Ian Romanick9e7d0102010-04-05 16:37:49 -07003385
Ian Romanick4f9d72f2010-05-10 11:10:26 -07003386 if (body != NULL)
3387 body->hir(& stmt->body_instructions, state);
Ian Romanick9e7d0102010-04-05 16:37:49 -07003388
3389 if (rest_expression != NULL)
3390 rest_expression->hir(& stmt->body_instructions, state);
3391
Ian Romanick8c46ed22010-04-05 18:07:27 -07003392 if (mode == ast_do_while)
3393 condition_to_hir(stmt, state);
3394
Ian Romanick48460662010-04-16 16:42:43 -07003395 if (mode != ast_do_while)
Ian Romanick9e7d0102010-04-05 16:37:49 -07003396 state->symbols->pop_scope();
3397
Ian Romanicke9d0f262010-04-05 17:01:53 -07003398 /* Restore previous nesting before returning.
3399 */
3400 state->loop_or_switch_nesting = nesting;
Eric Anholt2d1ed7b2010-07-22 12:55:16 -07003401 state->loop_or_switch_nesting_ast = nesting_ast;
Ian Romanicke9d0f262010-04-05 17:01:53 -07003402
Ian Romanick9e7d0102010-04-05 16:37:49 -07003403 /* Loops do not have r-values.
3404 */
3405 return NULL;
3406}
Ian Romanick3455ce62010-04-19 15:13:15 -07003407
3408
3409ir_rvalue *
3410ast_type_specifier::hir(exec_list *instructions,
3411 struct _mesa_glsl_parse_state *state)
3412{
Chad Versace08a286c2011-01-16 21:44:57 -08003413 if (!this->is_precision_statement && this->structure == NULL)
3414 return NULL;
3415
3416 YYLTYPE loc = this->get_location();
3417
3418 if (this->precision != ast_precision_none
3419 && state->language_version != 100
3420 && state->language_version < 130) {
3421 _mesa_glsl_error(&loc, state,
3422 "precision qualifiers exist only in "
3423 "GLSL ES 1.00, and GLSL 1.30 and later");
3424 return NULL;
3425 }
3426 if (this->precision != ast_precision_none
3427 && this->structure != NULL) {
3428 _mesa_glsl_error(&loc, state,
3429 "precision qualifiers do not apply to structures");
3430 return NULL;
3431 }
3432
3433 /* If this is a precision statement, check that the type to which it is
3434 * applied is either float or int.
3435 *
3436 * From section 4.5.3 of the GLSL 1.30 spec:
3437 * "The precision statement
3438 * precision precision-qualifier type;
3439 * can be used to establish a default precision qualifier. The type
3440 * field can be either int or float [...]. Any other types or
3441 * qualifiers will result in an error.
3442 */
3443 if (this->is_precision_statement) {
3444 assert(this->precision != ast_precision_none);
3445 assert(this->structure == NULL); /* The check for structures was
3446 * performed above. */
3447 if (this->is_array) {
3448 _mesa_glsl_error(&loc, state,
3449 "default precision statements do not apply to "
3450 "arrays");
3451 return NULL;
3452 }
3453 if (this->type_specifier != ast_float
3454 && this->type_specifier != ast_int) {
3455 _mesa_glsl_error(&loc, state,
3456 "default precision statements apply only to types "
3457 "float and int");
3458 return NULL;
3459 }
3460
3461 /* FINISHME: Translate precision statements into IR. */
3462 return NULL;
3463 }
3464
Ian Romanick3455ce62010-04-19 15:13:15 -07003465 if (this->structure != NULL)
3466 return this->structure->hir(instructions, state);
Ian Romanick85ba37b2010-04-21 14:33:34 -07003467
3468 return NULL;
Ian Romanick3455ce62010-04-19 15:13:15 -07003469}
3470
3471
3472ir_rvalue *
3473ast_struct_specifier::hir(exec_list *instructions,
3474 struct _mesa_glsl_parse_state *state)
3475{
Ian Romanick3455ce62010-04-19 15:13:15 -07003476 unsigned decl_count = 0;
3477
3478 /* Make an initial pass over the list of structure fields to determine how
3479 * many there are. Each element in this list is an ast_declarator_list.
3480 * This means that we actually need to count the number of elements in the
3481 * 'declarations' list in each of the elements.
3482 */
Ian Romanick2b97dc62010-05-10 17:42:05 -07003483 foreach_list_typed (ast_declarator_list, decl_list, link,
3484 &this->declarations) {
Ian Romanick304ea902010-05-10 11:17:53 -07003485 foreach_list_const (decl_ptr, & decl_list->declarations) {
Ian Romanick3455ce62010-04-19 15:13:15 -07003486 decl_count++;
3487 }
3488 }
3489
Ian Romanick3455ce62010-04-19 15:13:15 -07003490 /* Allocate storage for the structure fields and process the field
3491 * declarations. As the declarations are processed, try to also convert
3492 * the types to HIR. This ensures that structure definitions embedded in
3493 * other structure definitions are processed.
3494 */
Kenneth Graunked3073f52011-01-21 14:32:31 -08003495 glsl_struct_field *const fields = ralloc_array(state, glsl_struct_field,
Eric Anholt21b0dbd2010-07-20 16:47:25 -07003496 decl_count);
Ian Romanick3455ce62010-04-19 15:13:15 -07003497
3498 unsigned i = 0;
Ian Romanick2b97dc62010-05-10 17:42:05 -07003499 foreach_list_typed (ast_declarator_list, decl_list, link,
3500 &this->declarations) {
Ian Romanick3455ce62010-04-19 15:13:15 -07003501 const char *type_name;
3502
3503 decl_list->type->specifier->hir(instructions, state);
3504
Kenneth Graunkec98deb12010-08-16 14:02:25 -07003505 /* Section 10.9 of the GLSL ES 1.00 specification states that
3506 * embedded structure definitions have been removed from the language.
3507 */
3508 if (state->es_shader && decl_list->type->specifier->structure != NULL) {
3509 YYLTYPE loc = this->get_location();
3510 _mesa_glsl_error(&loc, state, "Embedded structure definitions are "
3511 "not allowed in GLSL ES 1.00.");
3512 }
3513
Ian Romanick3455ce62010-04-19 15:13:15 -07003514 const glsl_type *decl_type =
3515 decl_list->type->specifier->glsl_type(& type_name, state);
3516
Ian Romanick2b97dc62010-05-10 17:42:05 -07003517 foreach_list_typed (ast_declaration, decl, link,
3518 &decl_list->declarations) {
Kenneth Graunked8e34e22010-08-07 02:56:01 -07003519 const struct glsl_type *field_type = decl_type;
3520 if (decl->is_array) {
3521 YYLTYPE loc = decl->get_location();
3522 field_type = process_array_type(&loc, decl_type, decl->array_size,
3523 state);
3524 }
Ian Romanick73986a72010-04-20 16:49:03 -07003525 fields[i].type = (field_type != NULL)
3526 ? field_type : glsl_type::error_type;
Ian Romanick3455ce62010-04-19 15:13:15 -07003527 fields[i].name = decl->identifier;
3528 i++;
3529 }
3530 }
3531
3532 assert(i == decl_count);
3533
Ian Romanick49e35772010-06-28 11:54:57 -07003534 const glsl_type *t =
Kenneth Graunkeca92ae22010-09-18 11:11:09 +02003535 glsl_type::get_record_instance(fields, decl_count, this->name);
Ian Romanick1d28b612010-04-20 16:48:24 -07003536
Ian Romanickab899272010-04-23 13:24:08 -07003537 YYLTYPE loc = this->get_location();
Ian Romanicka789ca62010-09-01 14:08:08 -07003538 if (!state->symbols->add_type(name, t)) {
Ian Romanickab899272010-04-23 13:24:08 -07003539 _mesa_glsl_error(& loc, state, "struct `%s' previously defined", name);
3540 } else {
Kenneth Graunkeeb639342011-02-27 01:17:29 -08003541 const glsl_type **s = reralloc(state, state->user_structures,
3542 const glsl_type *,
3543 state->num_user_structures + 1);
Ian Romanicka2c6df52010-04-28 13:14:53 -07003544 if (s != NULL) {
3545 s[state->num_user_structures] = t;
3546 state->user_structures = s;
3547 state->num_user_structures++;
3548 }
Ian Romanickab899272010-04-23 13:24:08 -07003549 }
Ian Romanick3455ce62010-04-19 15:13:15 -07003550
3551 /* Structure type definitions do not have r-values.
3552 */
3553 return NULL;
3554}