blob: 3c2ce15389a1f44bd13a7173dde0e1561ab93e0c [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"
Eric Anholt14063212012-01-30 08:50:14 -080057#include "program/hash_table.h"
Ian Romanicka87ac252010-02-22 13:19:34 -080058#include "ir.h"
59
Eric Anholt4b2a4cb2012-03-29 17:29:20 -070060static void
61detect_conflicting_assignments(struct _mesa_glsl_parse_state *state,
62 exec_list *instructions);
63
Ian Romanickd949a9a2010-03-10 09:55:22 -080064void
65_mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state)
66{
Ian Romanickadfb0cd2010-03-10 10:43:16 -080067 _mesa_glsl_initialize_variables(instructions, state);
68
Paul Berry53e572f2012-08-01 17:44:02 -070069 state->symbols->separate_function_namespace = state->language_version == 110;
Kenneth Graunke814c89a2010-09-05 00:31:28 -070070
Ian Romanick41ec6a42010-03-19 17:08:05 -070071 state->current_function = NULL;
72
Paul Berry0d81b0e2011-07-29 15:28:52 -070073 state->toplevel_ir = instructions;
74
Kenneth Graunkea0442852010-08-23 14:52:06 -070075 /* Section 4.2 of the GLSL 1.20 specification states:
76 * "The built-in functions are scoped in a scope outside the global scope
77 * users declare global variables in. That is, a shader's global scope,
78 * available for user-defined functions and global variables, is nested
79 * inside the scope containing the built-in functions."
80 *
81 * Since built-in functions like ftransform() access built-in variables,
82 * it follows that those must be in the outer scope as well.
83 *
84 * We push scope here to create this nesting effect...but don't pop.
85 * This way, a shader's globals are still in the symbol table for use
86 * by the linker.
87 */
88 state->symbols->push_scope();
89
Ian Romanick2b97dc62010-05-10 17:42:05 -070090 foreach_list_typed (ast_node, ast, link, & state->translation_unit)
Ian Romanick304ea902010-05-10 11:17:53 -070091 ast->hir(instructions, state);
Ian Romanick02c5ae12011-07-11 10:46:01 -070092
93 detect_recursion_unlinked(state, instructions);
Eric Anholt4b2a4cb2012-03-29 17:29:20 -070094 detect_conflicting_assignments(state, instructions);
Paul Berry0d81b0e2011-07-29 15:28:52 -070095
96 state->toplevel_ir = NULL;
Ian Romanickd949a9a2010-03-10 09:55:22 -080097}
98
99
Ian Romanick01045362010-03-29 16:17:56 -0700100/**
101 * If a conversion is available, convert one operand to a different type
102 *
103 * The \c from \c ir_rvalue is converted "in place".
104 *
105 * \param to Type that the operand it to be converted to
106 * \param from Operand that is being converted
107 * \param state GLSL compiler state
108 *
109 * \return
110 * If a conversion is possible (or unnecessary), \c true is returned.
111 * Otherwise \c false is returned.
112 */
Kenneth Graunkef32d3df2010-09-01 20:03:17 -0700113bool
Ian Romanickbfb09c22010-03-29 16:32:55 -0700114apply_implicit_conversion(const glsl_type *to, ir_rvalue * &from,
Ian Romanick01045362010-03-29 16:17:56 -0700115 struct _mesa_glsl_parse_state *state)
116{
Kenneth Graunke953ff122010-06-25 13:14:37 -0700117 void *ctx = state;
Ian Romanickbfb09c22010-03-29 16:32:55 -0700118 if (to->base_type == from->type->base_type)
Ian Romanick01045362010-03-29 16:17:56 -0700119 return true;
120
121 /* This conversion was added in GLSL 1.20. If the compilation mode is
122 * GLSL 1.10, the conversion is skipped.
123 */
Paul Berrye3ded7f2012-08-01 14:50:05 -0700124 if (!state->is_version(120, 0))
Ian Romanick01045362010-03-29 16:17:56 -0700125 return false;
126
127 /* From page 27 (page 33 of the PDF) of the GLSL 1.50 spec:
128 *
129 * "There are no implicit array or structure conversions. For
130 * example, an array of int cannot be implicitly converted to an
131 * array of float. There are no implicit conversions between
132 * signed and unsigned integers."
133 */
134 /* FINISHME: The above comment is partially a lie. There is int/uint
135 * FINISHME: conversion for immediate constants.
136 */
Ian Romanickbfb09c22010-03-29 16:32:55 -0700137 if (!to->is_float() || !from->type->is_numeric())
Ian Romanick01045362010-03-29 16:17:56 -0700138 return false;
139
Kenneth Graunke506199b2010-06-29 15:59:27 -0700140 /* Convert to a floating point type with the same number of components
141 * as the original type - i.e. int to float, not int to vec4.
142 */
143 to = glsl_type::get_instance(GLSL_TYPE_FLOAT, from->type->vector_elements,
144 from->type->matrix_columns);
145
Ian Romanickbfb09c22010-03-29 16:32:55 -0700146 switch (from->type->base_type) {
Ian Romanick01045362010-03-29 16:17:56 -0700147 case GLSL_TYPE_INT:
Carl Worth1660a292010-06-23 18:11:51 -0700148 from = new(ctx) ir_expression(ir_unop_i2f, to, from, NULL);
Ian Romanick01045362010-03-29 16:17:56 -0700149 break;
150 case GLSL_TYPE_UINT:
Carl Worth1660a292010-06-23 18:11:51 -0700151 from = new(ctx) ir_expression(ir_unop_u2f, to, from, NULL);
Ian Romanick01045362010-03-29 16:17:56 -0700152 break;
153 case GLSL_TYPE_BOOL:
Carl Worth1660a292010-06-23 18:11:51 -0700154 from = new(ctx) ir_expression(ir_unop_b2f, to, from, NULL);
Eric Anholtdc58b3f2010-04-02 02:13:43 -1000155 break;
Ian Romanick01045362010-03-29 16:17:56 -0700156 default:
157 assert(0);
158 }
159
160 return true;
161}
162
163
Ian Romanicka87ac252010-02-22 13:19:34 -0800164static const struct glsl_type *
Ian Romanickbfb09c22010-03-29 16:32:55 -0700165arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b,
Ian Romanicka87ac252010-02-22 13:19:34 -0800166 bool multiply,
Eric Anholta13bb142010-03-31 16:38:11 -1000167 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800168{
Eric Anholt336b4ad2010-05-19 10:38:37 -0700169 const glsl_type *type_a = value_a->type;
170 const glsl_type *type_b = value_b->type;
Ian Romanick01045362010-03-29 16:17:56 -0700171
Ian Romanicka87ac252010-02-22 13:19:34 -0800172 /* From GLSL 1.50 spec, page 56:
173 *
174 * "The arithmetic binary operators add (+), subtract (-),
175 * multiply (*), and divide (/) operate on integer and
176 * floating-point scalars, vectors, and matrices."
177 */
Ian Romanick60b54d92010-03-24 17:08:13 -0700178 if (!type_a->is_numeric() || !type_b->is_numeric()) {
Eric Anholta13bb142010-03-31 16:38:11 -1000179 _mesa_glsl_error(loc, state,
180 "Operands to arithmetic operators must be numeric");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700181 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800182 }
183
184
185 /* "If one operand is floating-point based and the other is
186 * not, then the conversions from Section 4.1.10 "Implicit
187 * Conversions" are applied to the non-floating-point-based operand."
Ian Romanicka87ac252010-02-22 13:19:34 -0800188 */
Ian Romanick01045362010-03-29 16:17:56 -0700189 if (!apply_implicit_conversion(type_a, value_b, state)
190 && !apply_implicit_conversion(type_b, value_a, state)) {
Eric Anholta13bb142010-03-31 16:38:11 -1000191 _mesa_glsl_error(loc, state,
192 "Could not implicitly convert operands to "
193 "arithmetic operator");
Ian Romanick01045362010-03-29 16:17:56 -0700194 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800195 }
Eric Anholt336b4ad2010-05-19 10:38:37 -0700196 type_a = value_a->type;
197 type_b = value_b->type;
198
Ian Romanicka87ac252010-02-22 13:19:34 -0800199 /* "If the operands are integer types, they must both be signed or
200 * both be unsigned."
201 *
202 * From this rule and the preceeding conversion it can be inferred that
203 * both types must be GLSL_TYPE_FLOAT, or GLSL_TYPE_UINT, or GLSL_TYPE_INT.
Ian Romanick60b54d92010-03-24 17:08:13 -0700204 * The is_numeric check above already filtered out the case where either
205 * type is not one of these, so now the base types need only be tested for
206 * equality.
Ian Romanicka87ac252010-02-22 13:19:34 -0800207 */
208 if (type_a->base_type != type_b->base_type) {
Eric Anholta13bb142010-03-31 16:38:11 -1000209 _mesa_glsl_error(loc, state,
210 "base type mismatch for arithmetic operator");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700211 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800212 }
213
214 /* "All arithmetic binary operators result in the same fundamental type
215 * (signed integer, unsigned integer, or floating-point) as the
216 * operands they operate on, after operand type conversion. After
217 * conversion, the following cases are valid
218 *
219 * * The two operands are scalars. In this case the operation is
220 * applied, resulting in a scalar."
221 */
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800222 if (type_a->is_scalar() && type_b->is_scalar())
Ian Romanicka87ac252010-02-22 13:19:34 -0800223 return type_a;
224
225 /* "* One operand is a scalar, and the other is a vector or matrix.
226 * In this case, the scalar operation is applied independently to each
227 * component of the vector or matrix, resulting in the same size
228 * vector or matrix."
229 */
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800230 if (type_a->is_scalar()) {
231 if (!type_b->is_scalar())
Ian Romanicka87ac252010-02-22 13:19:34 -0800232 return type_b;
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800233 } else if (type_b->is_scalar()) {
Ian Romanicka87ac252010-02-22 13:19:34 -0800234 return type_a;
235 }
236
237 /* All of the combinations of <scalar, scalar>, <vector, scalar>,
238 * <scalar, vector>, <scalar, matrix>, and <matrix, scalar> have been
239 * handled.
240 */
Ian Romanick60b54d92010-03-24 17:08:13 -0700241 assert(!type_a->is_scalar());
242 assert(!type_b->is_scalar());
Ian Romanicka87ac252010-02-22 13:19:34 -0800243
244 /* "* The two operands are vectors of the same size. In this case, the
245 * operation is done component-wise resulting in the same size
246 * vector."
247 */
Ian Romanicka2dd22f2010-03-09 15:55:16 -0800248 if (type_a->is_vector() && type_b->is_vector()) {
Eric Anholta13bb142010-03-31 16:38:11 -1000249 if (type_a == type_b) {
250 return type_a;
251 } else {
252 _mesa_glsl_error(loc, state,
253 "vector size mismatch for arithmetic operator");
254 return glsl_type::error_type;
255 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800256 }
257
258 /* All of the combinations of <scalar, scalar>, <vector, scalar>,
259 * <scalar, vector>, <scalar, matrix>, <matrix, scalar>, and
260 * <vector, vector> have been handled. At least one of the operands must
261 * be matrix. Further, since there are no integer matrix types, the base
262 * type of both operands must be float.
263 */
Ian Romanick60b54d92010-03-24 17:08:13 -0700264 assert(type_a->is_matrix() || type_b->is_matrix());
Ian Romanicka87ac252010-02-22 13:19:34 -0800265 assert(type_a->base_type == GLSL_TYPE_FLOAT);
266 assert(type_b->base_type == GLSL_TYPE_FLOAT);
267
268 /* "* The operator is add (+), subtract (-), or divide (/), and the
269 * operands are matrices with the same number of rows and the same
270 * number of columns. In this case, the operation is done component-
271 * wise resulting in the same size matrix."
272 * * The operator is multiply (*), where both operands are matrices or
273 * one operand is a vector and the other a matrix. A right vector
274 * operand is treated as a column vector and a left vector operand as a
275 * row vector. In all these cases, it is required that the number of
276 * columns of the left operand is equal to the number of rows of the
277 * right operand. Then, the multiply (*) operation does a linear
278 * algebraic multiply, yielding an object that has the same number of
279 * rows as the left operand and the same number of columns as the right
280 * operand. Section 5.10 "Vector and Matrix Operations" explains in
281 * more detail how vectors and matrices are operated on."
282 */
283 if (! multiply) {
Eric Anholta13bb142010-03-31 16:38:11 -1000284 if (type_a == type_b)
285 return type_a;
Ian Romanicka87ac252010-02-22 13:19:34 -0800286 } else {
Ian Romanickfce11502010-03-09 15:58:52 -0800287 if (type_a->is_matrix() && type_b->is_matrix()) {
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700288 /* Matrix multiply. The columns of A must match the rows of B. Given
289 * the other previously tested constraints, this means the vector type
290 * of a row from A must be the same as the vector type of a column from
291 * B.
292 */
293 if (type_a->row_type() == type_b->column_type()) {
294 /* The resulting matrix has the number of columns of matrix B and
295 * the number of rows of matrix A. We get the row count of A by
296 * looking at the size of a vector that makes up a column. The
297 * transpose (size of a row) is done for B.
298 */
Eric Anholta13bb142010-03-31 16:38:11 -1000299 const glsl_type *const type =
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700300 glsl_type::get_instance(type_a->base_type,
301 type_a->column_type()->vector_elements,
302 type_b->row_type()->vector_elements);
Eric Anholta13bb142010-03-31 16:38:11 -1000303 assert(type != glsl_type::error_type);
304
305 return type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800306 }
Ian Romanickfce11502010-03-09 15:58:52 -0800307 } else if (type_a->is_matrix()) {
Ian Romanicka87ac252010-02-22 13:19:34 -0800308 /* A is a matrix and B is a column vector. Columns of A must match
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700309 * rows of B. Given the other previously tested constraints, this
310 * means the vector type of a row from A must be the same as the
311 * vector the type of B.
Ian Romanicka87ac252010-02-22 13:19:34 -0800312 */
Carl Worth47c90b12010-07-22 14:56:14 -0700313 if (type_a->row_type() == type_b) {
314 /* The resulting vector has a number of elements equal to
315 * the number of rows of matrix A. */
316 const glsl_type *const type =
317 glsl_type::get_instance(type_a->base_type,
318 type_a->column_type()->vector_elements,
319 1);
320 assert(type != glsl_type::error_type);
321
322 return type;
323 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800324 } else {
Ian Romanickfce11502010-03-09 15:58:52 -0800325 assert(type_b->is_matrix());
Ian Romanicka87ac252010-02-22 13:19:34 -0800326
Ian Romanickc1bd3a12010-03-25 13:06:58 -0700327 /* A is a row vector and B is a matrix. Columns of A must match rows
328 * of B. Given the other previously tested constraints, this means
329 * the type of A must be the same as the vector type of a column from
330 * B.
Ian Romanicka87ac252010-02-22 13:19:34 -0800331 */
Carl Worth47c90b12010-07-22 14:56:14 -0700332 if (type_a == type_b->column_type()) {
333 /* The resulting vector has a number of elements equal to
334 * the number of columns of matrix B. */
335 const glsl_type *const type =
336 glsl_type::get_instance(type_a->base_type,
337 type_b->row_type()->vector_elements,
338 1);
339 assert(type != glsl_type::error_type);
340
341 return type;
342 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800343 }
Eric Anholta13bb142010-03-31 16:38:11 -1000344
345 _mesa_glsl_error(loc, state, "size mismatch for matrix multiplication");
346 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800347 }
348
349
350 /* "All other cases are illegal."
351 */
Eric Anholta13bb142010-03-31 16:38:11 -1000352 _mesa_glsl_error(loc, state, "type mismatch");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700353 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800354}
355
356
357static const struct glsl_type *
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000358unary_arithmetic_result_type(const struct glsl_type *type,
359 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800360{
361 /* From GLSL 1.50 spec, page 57:
362 *
363 * "The arithmetic unary operators negate (-), post- and pre-increment
364 * and decrement (-- and ++) operate on integer or floating-point
365 * values (including vectors and matrices). All unary operators work
366 * component-wise on their operands. These result with the same type
367 * they operated on."
368 */
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000369 if (!type->is_numeric()) {
370 _mesa_glsl_error(loc, state,
371 "Operands to arithmetic operators must be numeric");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700372 return glsl_type::error_type;
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000373 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800374
375 return type;
376}
377
Chad Versacecfdbf8b2010-10-15 11:28:05 -0700378/**
379 * \brief Return the result type of a bit-logic operation.
380 *
381 * If the given types to the bit-logic operator are invalid, return
382 * glsl_type::error_type.
383 *
384 * \param type_a Type of LHS of bit-logic op
385 * \param type_b Type of RHS of bit-logic op
386 */
387static const struct glsl_type *
388bit_logic_result_type(const struct glsl_type *type_a,
389 const struct glsl_type *type_b,
390 ast_operators op,
391 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
392{
Paul Berry0d9bba62012-08-05 09:57:01 -0700393 if (!state->check_bitwise_operations_allowed(loc)) {
Chad Versacecfdbf8b2010-10-15 11:28:05 -0700394 return glsl_type::error_type;
395 }
396
397 /* From page 50 (page 56 of PDF) of GLSL 1.30 spec:
398 *
399 * "The bitwise operators and (&), exclusive-or (^), and inclusive-or
400 * (|). The operands must be of type signed or unsigned integers or
401 * integer vectors."
402 */
403 if (!type_a->is_integer()) {
404 _mesa_glsl_error(loc, state, "LHS of `%s' must be an integer",
405 ast_expression::operator_string(op));
406 return glsl_type::error_type;
407 }
408 if (!type_b->is_integer()) {
409 _mesa_glsl_error(loc, state, "RHS of `%s' must be an integer",
410 ast_expression::operator_string(op));
411 return glsl_type::error_type;
412 }
413
414 /* "The fundamental types of the operands (signed or unsigned) must
415 * match,"
416 */
417 if (type_a->base_type != type_b->base_type) {
418 _mesa_glsl_error(loc, state, "operands of `%s' must have the same "
419 "base type", ast_expression::operator_string(op));
420 return glsl_type::error_type;
421 }
422
423 /* "The operands cannot be vectors of differing size." */
424 if (type_a->is_vector() &&
425 type_b->is_vector() &&
426 type_a->vector_elements != type_b->vector_elements) {
427 _mesa_glsl_error(loc, state, "operands of `%s' cannot be vectors of "
428 "different sizes", ast_expression::operator_string(op));
429 return glsl_type::error_type;
430 }
431
432 /* "If one operand is a scalar and the other a vector, the scalar is
433 * applied component-wise to the vector, resulting in the same type as
434 * the vector. The fundamental types of the operands [...] will be the
435 * resulting fundamental type."
436 */
437 if (type_a->is_scalar())
438 return type_b;
439 else
440 return type_a;
441}
Ian Romanicka87ac252010-02-22 13:19:34 -0800442
443static const struct glsl_type *
444modulus_result_type(const struct glsl_type *type_a,
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000445 const struct glsl_type *type_b,
446 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800447{
Paul Berryd4a24742012-08-02 08:18:12 -0700448 if (!state->check_version(130, 300, loc, "operator '%%' is reserved")) {
Chad Versace82f994f2011-02-04 12:18:56 -0800449 return glsl_type::error_type;
450 }
451
Ian Romanicka87ac252010-02-22 13:19:34 -0800452 /* From GLSL 1.50 spec, page 56:
453 * "The operator modulus (%) operates on signed or unsigned integers or
454 * integer vectors. The operand types must both be signed or both be
455 * unsigned."
456 */
Kenneth Graunke8eb97532011-06-14 22:21:41 -0700457 if (!type_a->is_integer()) {
458 _mesa_glsl_error(loc, state, "LHS of operator %% must be an integer.");
459 return glsl_type::error_type;
460 }
461 if (!type_b->is_integer()) {
462 _mesa_glsl_error(loc, state, "RHS of operator %% must be an integer.");
463 return glsl_type::error_type;
464 }
465 if (type_a->base_type != type_b->base_type) {
466 _mesa_glsl_error(loc, state,
467 "operands of %% must have the same base type");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700468 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800469 }
470
471 /* "The operands cannot be vectors of differing size. If one operand is
472 * a scalar and the other vector, then the scalar is applied component-
473 * wise to the vector, resulting in the same type as the vector. If both
474 * are vectors of the same size, the result is computed component-wise."
475 */
Ian Romanicka2dd22f2010-03-09 15:55:16 -0800476 if (type_a->is_vector()) {
477 if (!type_b->is_vector()
Ian Romanicka87ac252010-02-22 13:19:34 -0800478 || (type_a->vector_elements == type_b->vector_elements))
479 return type_a;
480 } else
481 return type_b;
482
483 /* "The operator modulus (%) is not defined for any other data types
484 * (non-integer types)."
485 */
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000486 _mesa_glsl_error(loc, state, "type mismatch");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700487 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800488}
489
490
491static const struct glsl_type *
Ian Romanickbfb09c22010-03-29 16:32:55 -0700492relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b,
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000493 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
Ian Romanicka87ac252010-02-22 13:19:34 -0800494{
Eric Anholt336b4ad2010-05-19 10:38:37 -0700495 const glsl_type *type_a = value_a->type;
496 const glsl_type *type_b = value_b->type;
Ian Romanick0150f5f2010-03-29 16:20:07 -0700497
Ian Romanicka87ac252010-02-22 13:19:34 -0800498 /* From GLSL 1.50 spec, page 56:
499 * "The relational operators greater than (>), less than (<), greater
500 * than or equal (>=), and less than or equal (<=) operate only on
501 * scalar integer and scalar floating-point expressions."
502 */
Ian Romanicka6d653d2010-03-26 14:40:37 -0700503 if (!type_a->is_numeric()
504 || !type_b->is_numeric()
Ian Romanickcb36f8a2010-03-09 15:51:22 -0800505 || !type_a->is_scalar()
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000506 || !type_b->is_scalar()) {
507 _mesa_glsl_error(loc, state,
508 "Operands to relational operators must be scalar and "
509 "numeric");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700510 return glsl_type::error_type;
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000511 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800512
513 /* "Either the operands' types must match, or the conversions from
514 * Section 4.1.10 "Implicit Conversions" will be applied to the integer
515 * operand, after which the types must match."
Ian Romanicka87ac252010-02-22 13:19:34 -0800516 */
Ian Romanick0150f5f2010-03-29 16:20:07 -0700517 if (!apply_implicit_conversion(type_a, value_b, state)
518 && !apply_implicit_conversion(type_b, value_a, state)) {
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000519 _mesa_glsl_error(loc, state,
520 "Could not implicitly convert operands to "
521 "relational operator");
Ian Romanick0150f5f2010-03-29 16:20:07 -0700522 return glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800523 }
Eric Anholt336b4ad2010-05-19 10:38:37 -0700524 type_a = value_a->type;
525 type_b = value_b->type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800526
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000527 if (type_a->base_type != type_b->base_type) {
528 _mesa_glsl_error(loc, state, "base type mismatch");
Ian Romanick0471e8b2010-03-26 14:33:41 -0700529 return glsl_type::error_type;
Eric Anholt65e1a7ac2010-03-31 16:45:20 -1000530 }
Ian Romanicka87ac252010-02-22 13:19:34 -0800531
532 /* "The result is scalar Boolean."
533 */
Ian Romanick0471e8b2010-03-26 14:33:41 -0700534 return glsl_type::bool_type;
Ian Romanicka87ac252010-02-22 13:19:34 -0800535}
536
Chad Versacec0197ab2010-10-15 09:49:46 -0700537/**
538 * \brief Return the result type of a bit-shift operation.
539 *
540 * If the given types to the bit-shift operator are invalid, return
541 * glsl_type::error_type.
542 *
543 * \param type_a Type of LHS of bit-shift op
544 * \param type_b Type of RHS of bit-shift op
545 */
546static const struct glsl_type *
547shift_result_type(const struct glsl_type *type_a,
548 const struct glsl_type *type_b,
549 ast_operators op,
550 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
551{
Paul Berry0d9bba62012-08-05 09:57:01 -0700552 if (!state->check_bitwise_operations_allowed(loc)) {
Chad Versacec0197ab2010-10-15 09:49:46 -0700553 return glsl_type::error_type;
554 }
555
556 /* From page 50 (page 56 of the PDF) of the GLSL 1.30 spec:
557 *
558 * "The shift operators (<<) and (>>). For both operators, the operands
559 * must be signed or unsigned integers or integer vectors. One operand
560 * can be signed while the other is unsigned."
561 */
562 if (!type_a->is_integer()) {
563 _mesa_glsl_error(loc, state, "LHS of operator %s must be an integer or "
564 "integer vector", ast_expression::operator_string(op));
565 return glsl_type::error_type;
566
567 }
568 if (!type_b->is_integer()) {
569 _mesa_glsl_error(loc, state, "RHS of operator %s must be an integer or "
570 "integer vector", ast_expression::operator_string(op));
571 return glsl_type::error_type;
572 }
573
574 /* "If the first operand is a scalar, the second operand has to be
575 * a scalar as well."
576 */
577 if (type_a->is_scalar() && !type_b->is_scalar()) {
578 _mesa_glsl_error(loc, state, "If the first operand of %s is scalar, the "
579 "second must be scalar as well",
580 ast_expression::operator_string(op));
581 return glsl_type::error_type;
582 }
583
584 /* If both operands are vectors, check that they have same number of
585 * elements.
586 */
587 if (type_a->is_vector() &&
588 type_b->is_vector() &&
589 type_a->vector_elements != type_b->vector_elements) {
590 _mesa_glsl_error(loc, state, "Vector operands to operator %s must "
591 "have same number of elements",
592 ast_expression::operator_string(op));
593 return glsl_type::error_type;
594 }
595
596 /* "In all cases, the resulting type will be the same type as the left
597 * operand."
598 */
599 return type_a;
600}
Ian Romanicka87ac252010-02-22 13:19:34 -0800601
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700602/**
603 * Validates that a value can be assigned to a location with a specified type
604 *
605 * Validates that \c rhs can be assigned to some location. If the types are
606 * not an exact match but an automatic conversion is possible, \c rhs will be
607 * converted.
608 *
609 * \return
610 * \c NULL if \c rhs cannot be assigned to a location with type \c lhs_type.
611 * Otherwise the actual RHS to be assigned will be returned. This may be
612 * \c rhs, or it may be \c rhs after some type conversion.
613 *
614 * \note
615 * In addition to being used for assignments, this function is used to
616 * type-check return values.
617 */
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700618ir_rvalue *
Eric Anholt336b4ad2010-05-19 10:38:37 -0700619validate_assignment(struct _mesa_glsl_parse_state *state,
Ian Romanick85caea22011-03-15 16:33:27 -0700620 const glsl_type *lhs_type, ir_rvalue *rhs,
621 bool is_initializer)
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700622{
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700623 /* If there is already some error in the RHS, just return it. Anything
624 * else will lead to an avalanche of error message back to the user.
625 */
Ian Romanickec530102010-12-10 15:47:11 -0800626 if (rhs->type->is_error())
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700627 return rhs;
628
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700629 /* If the types are identical, the assignment can trivially proceed.
630 */
Ian Romanickec530102010-12-10 15:47:11 -0800631 if (rhs->type == lhs_type)
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700632 return rhs;
633
Ian Romanick0157f412010-04-02 17:44:39 -0700634 /* If the array element types are the same and the size of the LHS is zero,
Ian Romanick85caea22011-03-15 16:33:27 -0700635 * the assignment is okay for initializers embedded in variable
636 * declarations.
Ian Romanick0157f412010-04-02 17:44:39 -0700637 *
638 * Note: Whole-array assignments are not permitted in GLSL 1.10, but this
639 * is handled by ir_dereference::is_lvalue.
640 */
Ian Romanick85caea22011-03-15 16:33:27 -0700641 if (is_initializer && lhs_type->is_array() && rhs->type->is_array()
Ian Romanick0157f412010-04-02 17:44:39 -0700642 && (lhs_type->element_type() == rhs->type->element_type())
643 && (lhs_type->array_size() == 0)) {
644 return rhs;
645 }
646
Eric Anholt336b4ad2010-05-19 10:38:37 -0700647 /* Check for implicit conversion in GLSL 1.20 */
648 if (apply_implicit_conversion(lhs_type, rhs, state)) {
Ian Romanickec530102010-12-10 15:47:11 -0800649 if (rhs->type == lhs_type)
Eric Anholt336b4ad2010-05-19 10:38:37 -0700650 return rhs;
651 }
652
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700653 return NULL;
654}
655
Eric Anholta313c292011-08-05 21:40:50 -0700656static void
657mark_whole_array_access(ir_rvalue *access)
658{
659 ir_dereference_variable *deref = access->as_dereference_variable();
660
661 if (deref && deref->var) {
662 deref->var->max_array_access = deref->type->length - 1;
663 }
664}
665
Eric Anholt10a68522010-03-26 11:53:37 -0700666ir_rvalue *
667do_assignment(exec_list *instructions, struct _mesa_glsl_parse_state *state,
Ian Romanicke9015e92011-12-23 09:56:29 -0800668 const char *non_lvalue_description,
Ian Romanick85caea22011-03-15 16:33:27 -0700669 ir_rvalue *lhs, ir_rvalue *rhs, bool is_initializer,
Eric Anholt10a68522010-03-26 11:53:37 -0700670 YYLTYPE lhs_loc)
671{
Kenneth Graunke953ff122010-06-25 13:14:37 -0700672 void *ctx = state;
Eric Anholt10a68522010-03-26 11:53:37 -0700673 bool error_emitted = (lhs->type->is_error() || rhs->type->is_error());
674
Eric Anholtf2475ca2012-03-29 17:02:15 -0700675 ir_variable *lhs_var = lhs->variable_referenced();
676 if (lhs_var)
677 lhs_var->assigned = true;
678
Eric Anholt10a68522010-03-26 11:53:37 -0700679 if (!error_emitted) {
Ian Romanicke9015e92011-12-23 09:56:29 -0800680 if (non_lvalue_description != NULL) {
681 _mesa_glsl_error(&lhs_loc, state,
682 "assignment to %s",
683 non_lvalue_description);
684 error_emitted = true;
685 } else if (lhs->variable_referenced() != NULL
686 && lhs->variable_referenced()->read_only) {
Chad Versaceb66be752011-01-21 13:44:08 -0800687 _mesa_glsl_error(&lhs_loc, state,
688 "assignment to read-only variable '%s'",
689 lhs->variable_referenced()->name);
690 error_emitted = true;
691
Paul Berry0d9bba62012-08-05 09:57:01 -0700692 } else if (lhs->type->is_array() &&
Paul Berryd4a24742012-08-02 08:18:12 -0700693 !state->check_version(120, 300, &lhs_loc,
Paul Berry0d9bba62012-08-05 09:57:01 -0700694 "whole array assignment forbidden")) {
Eric Anholt525cec92011-09-07 12:03:36 -0700695 /* From page 32 (page 38 of the PDF) of the GLSL 1.10 spec:
696 *
697 * "Other binary or unary expressions, non-dereferenced
698 * arrays, function names, swizzles with repeated fields,
699 * and constants cannot be l-values."
Paul Berryd4a24742012-08-02 08:18:12 -0700700 *
701 * The restriction on arrays is lifted in GLSL 1.20 and GLSL ES 3.00.
Eric Anholt525cec92011-09-07 12:03:36 -0700702 */
Eric Anholt525cec92011-09-07 12:03:36 -0700703 error_emitted = true;
Chad Versaceb66be752011-01-21 13:44:08 -0800704 } else if (!lhs->is_lvalue()) {
Eric Anholt10a68522010-03-26 11:53:37 -0700705 _mesa_glsl_error(& lhs_loc, state, "non-lvalue in assignment");
706 error_emitted = true;
707 }
708 }
709
Ian Romanick85caea22011-03-15 16:33:27 -0700710 ir_rvalue *new_rhs =
711 validate_assignment(state, lhs->type, rhs, is_initializer);
Eric Anholt10a68522010-03-26 11:53:37 -0700712 if (new_rhs == NULL) {
713 _mesa_glsl_error(& lhs_loc, state, "type mismatch");
714 } else {
715 rhs = new_rhs;
Ian Romanick0157f412010-04-02 17:44:39 -0700716
717 /* If the LHS array was not declared with a size, it takes it size from
718 * the RHS. If the LHS is an l-value and a whole array, it must be a
719 * dereference of a variable. Any other case would require that the LHS
720 * is either not an l-value or not a whole array.
721 */
722 if (lhs->type->array_size() == 0) {
723 ir_dereference *const d = lhs->as_dereference();
724
725 assert(d != NULL);
726
Ian Romanick36ea2862010-05-19 13:52:29 +0200727 ir_variable *const var = d->variable_referenced();
Ian Romanick0157f412010-04-02 17:44:39 -0700728
729 assert(var != NULL);
730
Ian Romanick63f39422010-04-05 14:35:47 -0700731 if (var->max_array_access >= unsigned(rhs->type->array_size())) {
732 /* FINISHME: This should actually log the location of the RHS. */
733 _mesa_glsl_error(& lhs_loc, state, "array size must be > %u due to "
734 "previous access",
735 var->max_array_access);
736 }
737
Ian Romanickf38d15b2010-07-20 15:33:40 -0700738 var->type = glsl_type::get_array_instance(lhs->type->element_type(),
Ian Romanick0157f412010-04-02 17:44:39 -0700739 rhs->type->array_size());
Eric Anholt9703ed02010-07-22 15:50:37 -0700740 d->type = var->type;
Ian Romanick0157f412010-04-02 17:44:39 -0700741 }
Eric Anholt407a1002011-09-07 11:53:20 -0700742 mark_whole_array_access(rhs);
Eric Anholta313c292011-08-05 21:40:50 -0700743 mark_whole_array_access(lhs);
Eric Anholt10a68522010-03-26 11:53:37 -0700744 }
745
Eric Anholt2731a732010-06-23 14:51:14 -0700746 /* Most callers of do_assignment (assign, add_assign, pre_inc/dec,
747 * but not post_inc) need the converted assigned value as an rvalue
748 * to handle things like:
749 *
750 * i = j += 1;
751 *
752 * So we always just store the computed value being assigned to a
753 * temporary and return a deref of that temporary. If the rvalue
754 * ends up not being used, the temp will get copy-propagated out.
755 */
Ian Romanick7e2aa912010-07-19 17:12:42 -0700756 ir_variable *var = new(ctx) ir_variable(rhs->type, "assignment_tmp",
757 ir_var_temporary);
Eric Anholte33c1032010-06-24 15:13:03 -0700758 ir_dereference_variable *deref_var = new(ctx) ir_dereference_variable(var);
Eric Anholtae805922010-06-24 09:06:12 -0700759 instructions->push_tail(var);
Eric Anholtaa5ec132012-05-14 09:14:54 -0700760 instructions->push_tail(new(ctx) ir_assignment(deref_var, rhs));
Eric Anholte33c1032010-06-24 15:13:03 -0700761 deref_var = new(ctx) ir_dereference_variable(var);
Eric Anholt10a68522010-03-26 11:53:37 -0700762
Ian Romanick8e9ce2e2010-08-03 15:02:35 -0700763 if (!error_emitted)
Eric Anholtaa5ec132012-05-14 09:14:54 -0700764 instructions->push_tail(new(ctx) ir_assignment(lhs, deref_var));
Eric Anholt2731a732010-06-23 14:51:14 -0700765
Carl Worth1660a292010-06-23 18:11:51 -0700766 return new(ctx) ir_dereference_variable(var);
Eric Anholt10a68522010-03-26 11:53:37 -0700767}
Ian Romanick0bb1c3c2010-03-23 13:23:31 -0700768
Eric Anholtde38f0e2010-03-26 12:14:54 -0700769static ir_rvalue *
Eric Anholt959a9ec2010-06-23 14:43:50 -0700770get_lvalue_copy(exec_list *instructions, ir_rvalue *lvalue)
Eric Anholtde38f0e2010-03-26 12:14:54 -0700771{
Kenneth Graunked3073f52011-01-21 14:32:31 -0800772 void *ctx = ralloc_parent(lvalue);
Eric Anholtde38f0e2010-03-26 12:14:54 -0700773 ir_variable *var;
Eric Anholtde38f0e2010-03-26 12:14:54 -0700774
Ian Romanick7e2aa912010-07-19 17:12:42 -0700775 var = new(ctx) ir_variable(lvalue->type, "_post_incdec_tmp",
776 ir_var_temporary);
Eric Anholt43b5b032010-07-07 14:04:30 -0700777 instructions->push_tail(var);
Eric Anholtde38f0e2010-03-26 12:14:54 -0700778 var->mode = ir_var_auto;
779
Carl Worth1660a292010-06-23 18:11:51 -0700780 instructions->push_tail(new(ctx) ir_assignment(new(ctx) ir_dereference_variable(var),
Eric Anholtaa5ec132012-05-14 09:14:54 -0700781 lvalue));
Eric Anholtde38f0e2010-03-26 12:14:54 -0700782
Carl Worth1660a292010-06-23 18:11:51 -0700783 return new(ctx) ir_dereference_variable(var);
Eric Anholtde38f0e2010-03-26 12:14:54 -0700784}
785
786
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700787ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -0800788ast_node::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -0800789 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -0800790{
Ian Romanick18238de2010-03-01 13:49:10 -0800791 (void) instructions;
792 (void) state;
793
794 return NULL;
795}
796
Eric Anholtff796332010-11-30 11:23:28 -0800797static ir_rvalue *
798do_comparison(void *mem_ctx, int operation, ir_rvalue *op0, ir_rvalue *op1)
799{
800 int join_op;
Ian Romanick6d36be52010-12-02 12:17:36 -0800801 ir_rvalue *cmp = NULL;
Eric Anholtff796332010-11-30 11:23:28 -0800802
803 if (operation == ir_binop_all_equal)
804 join_op = ir_binop_logic_and;
805 else
806 join_op = ir_binop_logic_or;
807
808 switch (op0->type->base_type) {
809 case GLSL_TYPE_FLOAT:
810 case GLSL_TYPE_UINT:
811 case GLSL_TYPE_INT:
812 case GLSL_TYPE_BOOL:
813 return new(mem_ctx) ir_expression(operation, op0, op1);
814
815 case GLSL_TYPE_ARRAY: {
Eric Anholtff796332010-11-30 11:23:28 -0800816 for (unsigned int i = 0; i < op0->type->length; i++) {
817 ir_rvalue *e0, *e1, *result;
818
819 e0 = new(mem_ctx) ir_dereference_array(op0->clone(mem_ctx, NULL),
820 new(mem_ctx) ir_constant(i));
821 e1 = new(mem_ctx) ir_dereference_array(op1->clone(mem_ctx, NULL),
822 new(mem_ctx) ir_constant(i));
823 result = do_comparison(mem_ctx, operation, e0, e1);
824
Ian Romanick6d36be52010-12-02 12:17:36 -0800825 if (cmp) {
826 cmp = new(mem_ctx) ir_expression(join_op, cmp, result);
Eric Anholtff796332010-11-30 11:23:28 -0800827 } else {
Ian Romanick6d36be52010-12-02 12:17:36 -0800828 cmp = result;
Eric Anholtff796332010-11-30 11:23:28 -0800829 }
830 }
Eric Anholtb4f58562010-12-01 15:55:53 -0800831
832 mark_whole_array_access(op0);
833 mark_whole_array_access(op1);
Ian Romanick6d36be52010-12-02 12:17:36 -0800834 break;
Eric Anholtff796332010-11-30 11:23:28 -0800835 }
836
837 case GLSL_TYPE_STRUCT: {
Eric Anholtff796332010-11-30 11:23:28 -0800838 for (unsigned int i = 0; i < op0->type->length; i++) {
839 ir_rvalue *e0, *e1, *result;
840 const char *field_name = op0->type->fields.structure[i].name;
841
842 e0 = new(mem_ctx) ir_dereference_record(op0->clone(mem_ctx, NULL),
843 field_name);
844 e1 = new(mem_ctx) ir_dereference_record(op1->clone(mem_ctx, NULL),
845 field_name);
846 result = do_comparison(mem_ctx, operation, e0, e1);
847
Ian Romanick6d36be52010-12-02 12:17:36 -0800848 if (cmp) {
849 cmp = new(mem_ctx) ir_expression(join_op, cmp, result);
Eric Anholtff796332010-11-30 11:23:28 -0800850 } else {
Ian Romanick6d36be52010-12-02 12:17:36 -0800851 cmp = result;
Eric Anholtff796332010-11-30 11:23:28 -0800852 }
853 }
Ian Romanick6d36be52010-12-02 12:17:36 -0800854 break;
Eric Anholtff796332010-11-30 11:23:28 -0800855 }
856
857 case GLSL_TYPE_ERROR:
858 case GLSL_TYPE_VOID:
859 case GLSL_TYPE_SAMPLER:
860 /* I assume a comparison of a struct containing a sampler just
861 * ignores the sampler present in the type.
862 */
Ian Romanick6d36be52010-12-02 12:17:36 -0800863 break;
864
865 default:
866 assert(!"Should not get here.");
867 break;
Eric Anholtff796332010-11-30 11:23:28 -0800868 }
Eric Anholtd56c9742010-11-30 13:28:47 -0800869
Ian Romanick6d36be52010-12-02 12:17:36 -0800870 if (cmp == NULL)
871 cmp = new(mem_ctx) ir_constant(true);
872
873 return cmp;
Eric Anholtff796332010-11-30 11:23:28 -0800874}
Ian Romanick18238de2010-03-01 13:49:10 -0800875
Eric Anholt01822702011-04-09 15:59:20 -1000876/* For logical operations, we want to ensure that the operands are
877 * scalar booleans. If it isn't, emit an error and return a constant
878 * boolean to avoid triggering cascading error messages.
879 */
880ir_rvalue *
881get_scalar_boolean_operand(exec_list *instructions,
882 struct _mesa_glsl_parse_state *state,
883 ast_expression *parent_expr,
884 int operand,
885 const char *operand_name,
886 bool *error_emitted)
887{
888 ast_expression *expr = parent_expr->subexpressions[operand];
889 void *ctx = state;
890 ir_rvalue *val = expr->hir(instructions, state);
891
892 if (val->type->is_boolean() && val->type->is_scalar())
893 return val;
894
895 if (!*error_emitted) {
896 YYLTYPE loc = expr->get_location();
897 _mesa_glsl_error(&loc, state, "%s of `%s' must be scalar boolean",
898 operand_name,
899 parent_expr->operator_string(parent_expr->oper));
900 *error_emitted = true;
901 }
902
903 return new(ctx) ir_constant(true);
904}
905
Paul Berry93b97582011-09-06 10:01:51 -0700906/**
907 * If name refers to a builtin array whose maximum allowed size is less than
908 * size, report an error and return true. Otherwise return false.
909 */
910static bool
911check_builtin_array_max_size(const char *name, unsigned size,
912 YYLTYPE loc, struct _mesa_glsl_parse_state *state)
913{
914 if ((strcmp("gl_TexCoord", name) == 0)
915 && (size > state->Const.MaxTextureCoords)) {
916 /* From page 54 (page 60 of the PDF) of the GLSL 1.20 spec:
917 *
918 * "The size [of gl_TexCoord] can be at most
919 * gl_MaxTextureCoords."
920 */
921 _mesa_glsl_error(&loc, state, "`gl_TexCoord' array size cannot "
922 "be larger than gl_MaxTextureCoords (%u)\n",
923 state->Const.MaxTextureCoords);
924 return true;
Paul Berry37bb1c42011-08-11 15:23:33 -0700925 } else if (strcmp("gl_ClipDistance", name) == 0
926 && size > state->Const.MaxClipPlanes) {
927 /* From section 7.1 (Vertex Shader Special Variables) of the
928 * GLSL 1.30 spec:
929 *
930 * "The gl_ClipDistance array is predeclared as unsized and
931 * must be sized by the shader either redeclaring it with a
932 * size or indexing it only with integral constant
933 * expressions. ... The size can be at most
934 * gl_MaxClipDistances."
935 */
936 _mesa_glsl_error(&loc, state, "`gl_ClipDistance' array size cannot "
937 "be larger than gl_MaxClipDistances (%u)\n",
938 state->Const.MaxClipPlanes);
939 return true;
Paul Berry93b97582011-09-06 10:01:51 -0700940 }
941 return false;
942}
943
Paul Berry9abda922011-10-31 18:22:48 -0700944/**
945 * Create the constant 1, of a which is appropriate for incrementing and
946 * decrementing values of the given GLSL type. For example, if type is vec4,
947 * this creates a constant value of 1.0 having type float.
948 *
949 * If the given type is invalid for increment and decrement operators, return
950 * a floating point 1--the error will be detected later.
951 */
952static ir_rvalue *
953constant_one_for_inc_dec(void *ctx, const glsl_type *type)
954{
955 switch (type->base_type) {
956 case GLSL_TYPE_UINT:
957 return new(ctx) ir_constant((unsigned) 1);
958 case GLSL_TYPE_INT:
959 return new(ctx) ir_constant(1);
960 default:
961 case GLSL_TYPE_FLOAT:
962 return new(ctx) ir_constant(1.0f);
963 }
964}
965
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700966ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -0800967ast_expression::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -0800968 struct _mesa_glsl_parse_state *state)
969{
Kenneth Graunke953ff122010-06-25 13:14:37 -0700970 void *ctx = state;
Ian Romanicka87ac252010-02-22 13:19:34 -0800971 static const int operations[AST_NUM_OPERATORS] = {
972 -1, /* ast_assign doesn't convert to ir_expression. */
973 -1, /* ast_plus doesn't convert to ir_expression. */
974 ir_unop_neg,
975 ir_binop_add,
976 ir_binop_sub,
977 ir_binop_mul,
978 ir_binop_div,
979 ir_binop_mod,
980 ir_binop_lshift,
981 ir_binop_rshift,
982 ir_binop_less,
983 ir_binop_greater,
984 ir_binop_lequal,
985 ir_binop_gequal,
Luca Barbieri4dfb8992010-09-08 01:31:39 +0200986 ir_binop_all_equal,
987 ir_binop_any_nequal,
Ian Romanicka87ac252010-02-22 13:19:34 -0800988 ir_binop_bit_and,
989 ir_binop_bit_xor,
990 ir_binop_bit_or,
991 ir_unop_bit_not,
992 ir_binop_logic_and,
993 ir_binop_logic_xor,
994 ir_binop_logic_or,
995 ir_unop_logic_not,
996
997 /* Note: The following block of expression types actually convert
998 * to multiple IR instructions.
999 */
1000 ir_binop_mul, /* ast_mul_assign */
1001 ir_binop_div, /* ast_div_assign */
1002 ir_binop_mod, /* ast_mod_assign */
1003 ir_binop_add, /* ast_add_assign */
1004 ir_binop_sub, /* ast_sub_assign */
1005 ir_binop_lshift, /* ast_ls_assign */
1006 ir_binop_rshift, /* ast_rs_assign */
1007 ir_binop_bit_and, /* ast_and_assign */
1008 ir_binop_bit_xor, /* ast_xor_assign */
1009 ir_binop_bit_or, /* ast_or_assign */
1010
1011 -1, /* ast_conditional doesn't convert to ir_expression. */
Eric Anholtde38f0e2010-03-26 12:14:54 -07001012 ir_binop_add, /* ast_pre_inc. */
1013 ir_binop_sub, /* ast_pre_dec. */
1014 ir_binop_add, /* ast_post_inc. */
1015 ir_binop_sub, /* ast_post_dec. */
Ian Romanicka87ac252010-02-22 13:19:34 -08001016 -1, /* ast_field_selection doesn't conv to ir_expression. */
1017 -1, /* ast_array_index doesn't convert to ir_expression. */
1018 -1, /* ast_function_call doesn't conv to ir_expression. */
1019 -1, /* ast_identifier doesn't convert to ir_expression. */
1020 -1, /* ast_int_constant doesn't convert to ir_expression. */
1021 -1, /* ast_uint_constant doesn't conv to ir_expression. */
1022 -1, /* ast_float_constant doesn't conv to ir_expression. */
1023 -1, /* ast_bool_constant doesn't conv to ir_expression. */
1024 -1, /* ast_sequence doesn't convert to ir_expression. */
1025 };
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07001026 ir_rvalue *result = NULL;
Aras Pranckevicius1c325af2010-07-29 15:35:22 +03001027 ir_rvalue *op[3];
Kenneth Graunke08ba9772011-04-14 17:21:59 -07001028 const struct glsl_type *type; /* a temporary variable for switch cases */
Ian Romanicka87ac252010-02-22 13:19:34 -08001029 bool error_emitted = false;
1030 YYLTYPE loc;
1031
Ian Romanick18238de2010-03-01 13:49:10 -08001032 loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08001033
Ian Romanick18238de2010-03-01 13:49:10 -08001034 switch (this->oper) {
Ian Romanick6652af32010-03-09 16:38:02 -08001035 case ast_assign: {
Ian Romanick18238de2010-03-01 13:49:10 -08001036 op[0] = this->subexpressions[0]->hir(instructions, state);
1037 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001038
Ian Romanicke9015e92011-12-23 09:56:29 -08001039 result = do_assignment(instructions, state,
1040 this->subexpressions[0]->non_lvalue_description,
1041 op[0], op[1], false,
Eric Anholt10a68522010-03-26 11:53:37 -07001042 this->subexpressions[0]->get_location());
1043 error_emitted = result->type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001044 break;
Ian Romanick6652af32010-03-09 16:38:02 -08001045 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001046
1047 case ast_plus:
Ian Romanick18238de2010-03-01 13:49:10 -08001048 op[0] = this->subexpressions[0]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001049
Carl Worthc24bcad2010-07-21 11:23:51 -07001050 type = unary_arithmetic_result_type(op[0]->type, state, & loc);
1051
1052 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001053
1054 result = op[0];
1055 break;
1056
1057 case ast_neg:
Ian Romanick18238de2010-03-01 13:49:10 -08001058 op[0] = this->subexpressions[0]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001059
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001060 type = unary_arithmetic_result_type(op[0]->type, state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08001061
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001062 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001063
Carl Worth1660a292010-06-23 18:11:51 -07001064 result = new(ctx) ir_expression(operations[this->oper], type,
1065 op[0], NULL);
Ian Romanicka87ac252010-02-22 13:19:34 -08001066 break;
1067
1068 case ast_add:
1069 case ast_sub:
1070 case ast_mul:
1071 case ast_div:
Ian Romanick18238de2010-03-01 13:49:10 -08001072 op[0] = this->subexpressions[0]->hir(instructions, state);
1073 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001074
Ian Romanickbfb09c22010-03-29 16:32:55 -07001075 type = arithmetic_result_type(op[0], op[1],
Ian Romanick18238de2010-03-01 13:49:10 -08001076 (this->oper == ast_mul),
Eric Anholta13bb142010-03-31 16:38:11 -10001077 state, & loc);
1078 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001079
Carl Worth1660a292010-06-23 18:11:51 -07001080 result = new(ctx) ir_expression(operations[this->oper], type,
1081 op[0], op[1]);
Ian Romanicka87ac252010-02-22 13:19:34 -08001082 break;
1083
1084 case ast_mod:
Ian Romanick18238de2010-03-01 13:49:10 -08001085 op[0] = this->subexpressions[0]->hir(instructions, state);
1086 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001087
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001088 type = modulus_result_type(op[0]->type, op[1]->type, state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08001089
Ian Romanick18238de2010-03-01 13:49:10 -08001090 assert(operations[this->oper] == ir_binop_mod);
Ian Romanicka87ac252010-02-22 13:19:34 -08001091
Carl Worth1660a292010-06-23 18:11:51 -07001092 result = new(ctx) ir_expression(operations[this->oper], type,
1093 op[0], op[1]);
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001094 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001095 break;
1096
1097 case ast_lshift:
1098 case ast_rshift:
Paul Berry0d9bba62012-08-05 09:57:01 -07001099 if (!state->check_bitwise_operations_allowed(&loc)) {
Chad Versace5c4c36f2010-10-08 16:22:28 -07001100 error_emitted = true;
Chad Versace5c4c36f2010-10-08 16:22:28 -07001101 }
1102
Chad Versace5c4c36f2010-10-08 16:22:28 -07001103 op[0] = this->subexpressions[0]->hir(instructions, state);
1104 op[1] = this->subexpressions[1]->hir(instructions, state);
Chad Versacec0197ab2010-10-15 09:49:46 -07001105 type = shift_result_type(op[0]->type, op[1]->type, this->oper, state,
1106 &loc);
Chad Versace5c4c36f2010-10-08 16:22:28 -07001107 result = new(ctx) ir_expression(operations[this->oper], type,
1108 op[0], op[1]);
1109 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1110 break;
Ian Romanicka87ac252010-02-22 13:19:34 -08001111
1112 case ast_less:
1113 case ast_greater:
1114 case ast_lequal:
1115 case ast_gequal:
Ian Romanick18238de2010-03-01 13:49:10 -08001116 op[0] = this->subexpressions[0]->hir(instructions, state);
1117 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001118
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001119 type = relational_result_type(op[0], op[1], state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08001120
1121 /* The relational operators must either generate an error or result
1122 * in a scalar boolean. See page 57 of the GLSL 1.50 spec.
1123 */
Ian Romanicka43817a2010-03-26 14:27:23 -07001124 assert(type->is_error()
Ian Romanicka87ac252010-02-22 13:19:34 -08001125 || ((type->base_type == GLSL_TYPE_BOOL)
Ian Romanickcb36f8a2010-03-09 15:51:22 -08001126 && type->is_scalar()));
Ian Romanicka87ac252010-02-22 13:19:34 -08001127
Carl Worth1660a292010-06-23 18:11:51 -07001128 result = new(ctx) ir_expression(operations[this->oper], type,
1129 op[0], op[1]);
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001130 error_emitted = type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001131 break;
1132
1133 case ast_nequal:
1134 case ast_equal:
Ian Romanick6e659ca2010-03-29 15:11:05 -07001135 op[0] = this->subexpressions[0]->hir(instructions, state);
1136 op[1] = this->subexpressions[1]->hir(instructions, state);
1137
1138 /* From page 58 (page 64 of the PDF) of the GLSL 1.50 spec:
1139 *
1140 * "The equality operators equal (==), and not equal (!=)
1141 * operate on all types. They result in a scalar Boolean. If
1142 * the operand types do not match, then there must be a
1143 * conversion from Section 4.1.10 "Implicit Conversions"
1144 * applied to one operand that can make them match, in which
1145 * case this conversion is done."
1146 */
Ian Romanickbfb09c22010-03-29 16:32:55 -07001147 if ((!apply_implicit_conversion(op[0]->type, op[1], state)
1148 && !apply_implicit_conversion(op[1]->type, op[0], state))
Ian Romanick212b0322010-03-29 16:22:38 -07001149 || (op[0]->type != op[1]->type)) {
Ian Romanick6e659ca2010-03-29 15:11:05 -07001150 _mesa_glsl_error(& loc, state, "operands of `%s' must have the same "
1151 "type", (this->oper == ast_equal) ? "==" : "!=");
1152 error_emitted = true;
Paul Berry0d9bba62012-08-05 09:57:01 -07001153 } else if ((op[0]->type->is_array() || op[1]->type->is_array()) &&
Paul Berryd4a24742012-08-02 08:18:12 -07001154 !state->check_version(120, 300, &loc,
Paul Berry0d9bba62012-08-05 09:57:01 -07001155 "array comparisons forbidden")) {
Ian Romanicka80cbd62010-03-30 17:04:48 -07001156 error_emitted = true;
Ian Romanick6e659ca2010-03-29 15:11:05 -07001157 }
1158
Eric Anholt175829f2011-04-09 12:54:34 -10001159 if (error_emitted) {
1160 result = new(ctx) ir_constant(false);
1161 } else {
1162 result = do_comparison(ctx, operations[this->oper], op[0], op[1]);
1163 assert(result->type == glsl_type::bool_type);
Eric Anholt175829f2011-04-09 12:54:34 -10001164 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001165 break;
1166
1167 case ast_bit_and:
1168 case ast_bit_xor:
1169 case ast_bit_or:
Kenneth Graunke1eea9632010-08-31 10:56:24 -07001170 op[0] = this->subexpressions[0]->hir(instructions, state);
1171 op[1] = this->subexpressions[1]->hir(instructions, state);
Chad Versacecfdbf8b2010-10-15 11:28:05 -07001172 type = bit_logic_result_type(op[0]->type, op[1]->type, this->oper,
1173 state, &loc);
Kenneth Graunke1eea9632010-08-31 10:56:24 -07001174 result = new(ctx) ir_expression(operations[this->oper], type,
1175 op[0], op[1]);
1176 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1177 break;
1178
Ian Romanicka87ac252010-02-22 13:19:34 -08001179 case ast_bit_not:
Kenneth Graunke1eea9632010-08-31 10:56:24 -07001180 op[0] = this->subexpressions[0]->hir(instructions, state);
1181
Paul Berry0d9bba62012-08-05 09:57:01 -07001182 if (!state->check_bitwise_operations_allowed(&loc)) {
Kenneth Graunke1eea9632010-08-31 10:56:24 -07001183 error_emitted = true;
1184 }
1185
1186 if (!op[0]->type->is_integer()) {
1187 _mesa_glsl_error(&loc, state, "operand of `~' must be an integer");
1188 error_emitted = true;
1189 }
1190
Ian Romanick39464482011-12-23 17:16:43 -08001191 type = error_emitted ? glsl_type::error_type : op[0]->type;
Kenneth Graunke1eea9632010-08-31 10:56:24 -07001192 result = new(ctx) ir_expression(ir_unop_bit_not, type, op[0], NULL);
Ian Romanicka87ac252010-02-22 13:19:34 -08001193 break;
1194
Eric Anholt4950a682010-04-16 01:10:32 -07001195 case ast_logic_and: {
Eric Anholt7ec0c972011-04-09 10:27:02 -10001196 exec_list rhs_instructions;
Eric Anholt01822702011-04-09 15:59:20 -10001197 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1198 "LHS", &error_emitted);
Eric Anholt7ec0c972011-04-09 10:27:02 -10001199 op[1] = get_scalar_boolean_operand(&rhs_instructions, state, this, 1,
1200 "RHS", &error_emitted);
Eric Anholtb82c0c32010-03-31 09:11:39 -10001201
Eric Anholtead35892012-02-07 22:59:24 -08001202 if (rhs_instructions.is_empty()) {
1203 result = new(ctx) ir_expression(ir_binop_logic_and, op[0], op[1]);
1204 type = result->type;
Eric Anholt44b694e2010-04-16 13:49:04 -07001205 } else {
Ian Romanick81d664f2010-07-12 15:18:55 -07001206 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
Ian Romanick7e2aa912010-07-19 17:12:42 -07001207 "and_tmp",
1208 ir_var_temporary);
Ian Romanick81d664f2010-07-12 15:18:55 -07001209 instructions->push_tail(tmp);
1210
Carl Worth1660a292010-06-23 18:11:51 -07001211 ir_if *const stmt = new(ctx) ir_if(op[0]);
Eric Anholt44b694e2010-04-16 13:49:04 -07001212 instructions->push_tail(stmt);
Eric Anholt4950a682010-04-16 01:10:32 -07001213
Eric Anholt7ec0c972011-04-09 10:27:02 -10001214 stmt->then_instructions.append_list(&rhs_instructions);
Carl Worth1660a292010-06-23 18:11:51 -07001215 ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001216 ir_assignment *const then_assign =
Eric Anholtaa5ec132012-05-14 09:14:54 -07001217 new(ctx) ir_assignment(then_deref, op[1]);
Eric Anholt44b694e2010-04-16 13:49:04 -07001218 stmt->then_instructions.push_tail(then_assign);
1219
Carl Worth1660a292010-06-23 18:11:51 -07001220 ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001221 ir_assignment *const else_assign =
Eric Anholtaa5ec132012-05-14 09:14:54 -07001222 new(ctx) ir_assignment(else_deref, new(ctx) ir_constant(false));
Eric Anholt44b694e2010-04-16 13:49:04 -07001223 stmt->else_instructions.push_tail(else_assign);
1224
Carl Worth1660a292010-06-23 18:11:51 -07001225 result = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001226 type = tmp->type;
Eric Anholtb82c0c32010-03-31 09:11:39 -10001227 }
Eric Anholt4950a682010-04-16 01:10:32 -07001228 break;
1229 }
1230
1231 case ast_logic_or: {
Eric Anholt9e04b192011-04-09 10:27:02 -10001232 exec_list rhs_instructions;
Eric Anholt01822702011-04-09 15:59:20 -10001233 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1234 "LHS", &error_emitted);
Eric Anholt9e04b192011-04-09 10:27:02 -10001235 op[1] = get_scalar_boolean_operand(&rhs_instructions, state, this, 1,
1236 "RHS", &error_emitted);
Eric Anholt4950a682010-04-16 01:10:32 -07001237
Eric Anholtead35892012-02-07 22:59:24 -08001238 if (rhs_instructions.is_empty()) {
1239 result = new(ctx) ir_expression(ir_binop_logic_or, op[0], op[1]);
1240 type = result->type;
Eric Anholt44b694e2010-04-16 13:49:04 -07001241 } else {
Kenneth Graunkedfd30ca2010-07-08 12:40:52 -07001242 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
Ian Romanick7e2aa912010-07-19 17:12:42 -07001243 "or_tmp",
1244 ir_var_temporary);
Ian Romanick0b9ae3b2010-07-12 14:22:05 -07001245 instructions->push_tail(tmp);
Eric Anholt4950a682010-04-16 01:10:32 -07001246
Ian Romanick81d664f2010-07-12 15:18:55 -07001247 ir_if *const stmt = new(ctx) ir_if(op[0]);
1248 instructions->push_tail(stmt);
1249
Carl Worth1660a292010-06-23 18:11:51 -07001250 ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001251 ir_assignment *const then_assign =
Eric Anholtaa5ec132012-05-14 09:14:54 -07001252 new(ctx) ir_assignment(then_deref, new(ctx) ir_constant(true));
Eric Anholt44b694e2010-04-16 13:49:04 -07001253 stmt->then_instructions.push_tail(then_assign);
1254
Eric Anholt9e04b192011-04-09 10:27:02 -10001255 stmt->else_instructions.append_list(&rhs_instructions);
Carl Worth1660a292010-06-23 18:11:51 -07001256 ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001257 ir_assignment *const else_assign =
Eric Anholtaa5ec132012-05-14 09:14:54 -07001258 new(ctx) ir_assignment(else_deref, op[1]);
Eric Anholt44b694e2010-04-16 13:49:04 -07001259 stmt->else_instructions.push_tail(else_assign);
1260
Carl Worth1660a292010-06-23 18:11:51 -07001261 result = new(ctx) ir_dereference_variable(tmp);
Eric Anholt44b694e2010-04-16 13:49:04 -07001262 type = tmp->type;
Eric Anholt4950a682010-04-16 01:10:32 -07001263 }
Eric Anholt4950a682010-04-16 01:10:32 -07001264 break;
1265 }
1266
1267 case ast_logic_xor:
Eric Anholt756c2622011-04-09 14:57:17 -10001268 /* From page 33 (page 39 of the PDF) of the GLSL 1.10 spec:
1269 *
1270 * "The logical binary operators and (&&), or ( | | ), and
1271 * exclusive or (^^). They operate only on two Boolean
1272 * expressions and result in a Boolean expression."
1273 */
1274 op[0] = get_scalar_boolean_operand(instructions, state, this, 0, "LHS",
1275 &error_emitted);
1276 op[1] = get_scalar_boolean_operand(instructions, state, this, 1, "RHS",
1277 &error_emitted);
Eric Anholt4950a682010-04-16 01:10:32 -07001278
Carl Worth1660a292010-06-23 18:11:51 -07001279 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
1280 op[0], op[1]);
Ian Romanicka87ac252010-02-22 13:19:34 -08001281 break;
1282
Eric Anholta5827fe2010-03-31 16:50:55 -10001283 case ast_logic_not:
Eric Anholt01822702011-04-09 15:59:20 -10001284 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1285 "operand", &error_emitted);
Eric Anholta5827fe2010-03-31 16:50:55 -10001286
Carl Worth1660a292010-06-23 18:11:51 -07001287 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
1288 op[0], NULL);
Eric Anholta5827fe2010-03-31 16:50:55 -10001289 break;
1290
Ian Romanicka87ac252010-02-22 13:19:34 -08001291 case ast_mul_assign:
1292 case ast_div_assign:
1293 case ast_add_assign:
1294 case ast_sub_assign: {
Ian Romanick18238de2010-03-01 13:49:10 -08001295 op[0] = this->subexpressions[0]->hir(instructions, state);
1296 op[1] = this->subexpressions[1]->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001297
Ian Romanickbfb09c22010-03-29 16:32:55 -07001298 type = arithmetic_result_type(op[0], op[1],
Ian Romanick18238de2010-03-01 13:49:10 -08001299 (this->oper == ast_mul_assign),
Eric Anholta13bb142010-03-31 16:38:11 -10001300 state, & loc);
Ian Romanicka87ac252010-02-22 13:19:34 -08001301
Carl Worth1660a292010-06-23 18:11:51 -07001302 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1303 op[0], op[1]);
Ian Romanicka87ac252010-02-22 13:19:34 -08001304
Eric Anholt3e24ef62010-06-23 12:40:17 -07001305 result = do_assignment(instructions, state,
Ian Romanicke9015e92011-12-23 09:56:29 -08001306 this->subexpressions[0]->non_lvalue_description,
Ian Romanick85caea22011-03-15 16:33:27 -07001307 op[0]->clone(ctx, NULL), temp_rhs, false,
Eric Anholt10a68522010-03-26 11:53:37 -07001308 this->subexpressions[0]->get_location());
Eric Anholt10a68522010-03-26 11:53:37 -07001309 error_emitted = (op[0]->type->is_error());
Ian Romanicka87ac252010-02-22 13:19:34 -08001310
1311 /* GLSL 1.10 does not allow array assignment. However, we don't have to
1312 * explicitly test for this because none of the binary expression
1313 * operators allow array operands either.
1314 */
1315
Ian Romanicka87ac252010-02-22 13:19:34 -08001316 break;
1317 }
1318
Eric Anholt48a0e642010-03-26 11:57:46 -07001319 case ast_mod_assign: {
1320 op[0] = this->subexpressions[0]->hir(instructions, state);
1321 op[1] = this->subexpressions[1]->hir(instructions, state);
1322
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001323 type = modulus_result_type(op[0]->type, op[1]->type, state, & loc);
Eric Anholt48a0e642010-03-26 11:57:46 -07001324
1325 assert(operations[this->oper] == ir_binop_mod);
1326
Ian Romanick768b55a2010-08-13 16:46:43 -07001327 ir_rvalue *temp_rhs;
Carl Worth1660a292010-06-23 18:11:51 -07001328 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1329 op[0], op[1]);
Eric Anholt48a0e642010-03-26 11:57:46 -07001330
Eric Anholt3e24ef62010-06-23 12:40:17 -07001331 result = do_assignment(instructions, state,
Ian Romanicke9015e92011-12-23 09:56:29 -08001332 this->subexpressions[0]->non_lvalue_description,
Ian Romanick85caea22011-03-15 16:33:27 -07001333 op[0]->clone(ctx, NULL), temp_rhs, false,
Eric Anholt48a0e642010-03-26 11:57:46 -07001334 this->subexpressions[0]->get_location());
Eric Anholt65e1a7ac2010-03-31 16:45:20 -10001335 error_emitted = type->is_error();
Eric Anholt48a0e642010-03-26 11:57:46 -07001336 break;
1337 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001338
1339 case ast_ls_assign:
Chad Versace338ed6e2010-10-15 10:05:50 -07001340 case ast_rs_assign: {
1341 op[0] = this->subexpressions[0]->hir(instructions, state);
1342 op[1] = this->subexpressions[1]->hir(instructions, state);
1343 type = shift_result_type(op[0]->type, op[1]->type, this->oper, state,
1344 &loc);
1345 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper],
1346 type, op[0], op[1]);
Ian Romanicke9015e92011-12-23 09:56:29 -08001347 result = do_assignment(instructions, state,
1348 this->subexpressions[0]->non_lvalue_description,
1349 op[0]->clone(ctx, NULL), temp_rhs, false,
Chad Versace338ed6e2010-10-15 10:05:50 -07001350 this->subexpressions[0]->get_location());
1351 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
Ian Romanick251eb752010-03-29 14:15:05 -07001352 break;
Chad Versace338ed6e2010-10-15 10:05:50 -07001353 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001354
1355 case ast_and_assign:
1356 case ast_xor_assign:
Chad Versaced03ac0f2010-10-15 12:08:28 -07001357 case ast_or_assign: {
1358 op[0] = this->subexpressions[0]->hir(instructions, state);
1359 op[1] = this->subexpressions[1]->hir(instructions, state);
1360 type = bit_logic_result_type(op[0]->type, op[1]->type, this->oper,
1361 state, &loc);
1362 ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper],
1363 type, op[0], op[1]);
Ian Romanicke9015e92011-12-23 09:56:29 -08001364 result = do_assignment(instructions, state,
1365 this->subexpressions[0]->non_lvalue_description,
1366 op[0]->clone(ctx, NULL), temp_rhs, false,
Chad Versaced03ac0f2010-10-15 12:08:28 -07001367 this->subexpressions[0]->get_location());
1368 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
Ian Romanick251eb752010-03-29 14:15:05 -07001369 break;
Chad Versaced03ac0f2010-10-15 12:08:28 -07001370 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001371
Ian Romanick96f9cea2010-03-29 15:33:54 -07001372 case ast_conditional: {
Ian Romanick96f9cea2010-03-29 15:33:54 -07001373 /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec:
1374 *
1375 * "The ternary selection operator (?:). It operates on three
1376 * expressions (exp1 ? exp2 : exp3). This operator evaluates the
1377 * first expression, which must result in a scalar Boolean."
1378 */
Eric Anholt01822702011-04-09 15:59:20 -10001379 op[0] = get_scalar_boolean_operand(instructions, state, this, 0,
1380 "condition", &error_emitted);
Ian Romanick96f9cea2010-03-29 15:33:54 -07001381
1382 /* The :? operator is implemented by generating an anonymous temporary
1383 * followed by an if-statement. The last instruction in each branch of
1384 * the if-statement assigns a value to the anonymous temporary. This
1385 * temporary is the r-value of the expression.
1386 */
Ian Romanick0ad76c62010-06-11 12:56:26 -07001387 exec_list then_instructions;
1388 exec_list else_instructions;
Ian Romanick96f9cea2010-03-29 15:33:54 -07001389
Ian Romanick0ad76c62010-06-11 12:56:26 -07001390 op[1] = this->subexpressions[1]->hir(&then_instructions, state);
1391 op[2] = this->subexpressions[2]->hir(&else_instructions, state);
Ian Romanick96f9cea2010-03-29 15:33:54 -07001392
1393 /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec:
1394 *
1395 * "The second and third expressions can be any type, as
1396 * long their types match, or there is a conversion in
1397 * Section 4.1.10 "Implicit Conversions" that can be applied
1398 * to one of the expressions to make their types match. This
1399 * resulting matching type is the type of the entire
1400 * expression."
1401 */
Ian Romanickbfb09c22010-03-29 16:32:55 -07001402 if ((!apply_implicit_conversion(op[1]->type, op[2], state)
1403 && !apply_implicit_conversion(op[2]->type, op[1], state))
Ian Romanickdb9be2e2010-03-29 16:25:56 -07001404 || (op[1]->type != op[2]->type)) {
Ian Romanick96f9cea2010-03-29 15:33:54 -07001405 YYLTYPE loc = this->subexpressions[1]->get_location();
1406
1407 _mesa_glsl_error(& loc, state, "Second and third operands of ?: "
1408 "operator must have matching types.");
1409 error_emitted = true;
Ian Romanick0ad76c62010-06-11 12:56:26 -07001410 type = glsl_type::error_type;
Ian Romanickdb9be2e2010-03-29 16:25:56 -07001411 } else {
Ian Romanick0ad76c62010-06-11 12:56:26 -07001412 type = op[1]->type;
Ian Romanick96f9cea2010-03-29 15:33:54 -07001413 }
1414
Ian Romanickf09fabc2010-09-07 14:30:06 -07001415 /* From page 33 (page 39 of the PDF) of the GLSL 1.10 spec:
1416 *
1417 * "The second and third expressions must be the same type, but can
1418 * be of any type other than an array."
1419 */
Paul Berry0d9bba62012-08-05 09:57:01 -07001420 if (type->is_array() &&
Paul Berryd4a24742012-08-02 08:18:12 -07001421 !state->check_version(120, 300, &loc,
Paul Berry0d9bba62012-08-05 09:57:01 -07001422 "Second and third operands of ?: operator "
1423 "cannot be arrays")) {
Ian Romanickf09fabc2010-09-07 14:30:06 -07001424 error_emitted = true;
1425 }
1426
Ian Romanick7825d3d2010-06-11 13:45:51 -07001427 ir_constant *cond_val = op[0]->constant_expression_value();
1428 ir_constant *then_val = op[1]->constant_expression_value();
1429 ir_constant *else_val = op[2]->constant_expression_value();
Ian Romanick0ad76c62010-06-11 12:56:26 -07001430
Ian Romanick7825d3d2010-06-11 13:45:51 -07001431 if (then_instructions.is_empty()
1432 && else_instructions.is_empty()
1433 && (cond_val != NULL) && (then_val != NULL) && (else_val != NULL)) {
1434 result = (cond_val->value.b[0]) ? then_val : else_val;
1435 } else {
Ian Romanick7e2aa912010-07-19 17:12:42 -07001436 ir_variable *const tmp =
1437 new(ctx) ir_variable(type, "conditional_tmp", ir_var_temporary);
Ian Romanick0b9ae3b2010-07-12 14:22:05 -07001438 instructions->push_tail(tmp);
Ian Romanick0ad76c62010-06-11 12:56:26 -07001439
Carl Worth1660a292010-06-23 18:11:51 -07001440 ir_if *const stmt = new(ctx) ir_if(op[0]);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001441 instructions->push_tail(stmt);
Ian Romanick0ad76c62010-06-11 12:56:26 -07001442
Ian Romanick7825d3d2010-06-11 13:45:51 -07001443 then_instructions.move_nodes_to(& stmt->then_instructions);
Carl Worth1660a292010-06-23 18:11:51 -07001444 ir_dereference *const then_deref =
1445 new(ctx) ir_dereference_variable(tmp);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001446 ir_assignment *const then_assign =
Eric Anholtaa5ec132012-05-14 09:14:54 -07001447 new(ctx) ir_assignment(then_deref, op[1]);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001448 stmt->then_instructions.push_tail(then_assign);
Ian Romanick0ad76c62010-06-11 12:56:26 -07001449
Ian Romanick7825d3d2010-06-11 13:45:51 -07001450 else_instructions.move_nodes_to(& stmt->else_instructions);
Carl Worth1660a292010-06-23 18:11:51 -07001451 ir_dereference *const else_deref =
1452 new(ctx) ir_dereference_variable(tmp);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001453 ir_assignment *const else_assign =
Eric Anholtaa5ec132012-05-14 09:14:54 -07001454 new(ctx) ir_assignment(else_deref, op[2]);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001455 stmt->else_instructions.push_tail(else_assign);
1456
Carl Worth1660a292010-06-23 18:11:51 -07001457 result = new(ctx) ir_dereference_variable(tmp);
Ian Romanick7825d3d2010-06-11 13:45:51 -07001458 }
Ian Romanick251eb752010-03-29 14:15:05 -07001459 break;
Ian Romanick96f9cea2010-03-29 15:33:54 -07001460 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001461
1462 case ast_pre_inc:
Eric Anholt76ea56c2010-03-26 12:16:54 -07001463 case ast_pre_dec: {
Ian Romanickfa0a9ac2011-12-23 09:56:03 -08001464 this->non_lvalue_description = (this->oper == ast_pre_inc)
1465 ? "pre-increment operation" : "pre-decrement operation";
1466
Eric Anholt76ea56c2010-03-26 12:16:54 -07001467 op[0] = this->subexpressions[0]->hir(instructions, state);
Paul Berry9abda922011-10-31 18:22:48 -07001468 op[1] = constant_one_for_inc_dec(ctx, op[0]->type);
Eric Anholt76ea56c2010-03-26 12:16:54 -07001469
Eric Anholta13bb142010-03-31 16:38:11 -10001470 type = arithmetic_result_type(op[0], op[1], false, state, & loc);
Eric Anholt76ea56c2010-03-26 12:16:54 -07001471
Ian Romanick768b55a2010-08-13 16:46:43 -07001472 ir_rvalue *temp_rhs;
Carl Worth1660a292010-06-23 18:11:51 -07001473 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1474 op[0], op[1]);
Eric Anholt76ea56c2010-03-26 12:16:54 -07001475
Eric Anholt3e24ef62010-06-23 12:40:17 -07001476 result = do_assignment(instructions, state,
Ian Romanicke9015e92011-12-23 09:56:29 -08001477 this->subexpressions[0]->non_lvalue_description,
Ian Romanick85caea22011-03-15 16:33:27 -07001478 op[0]->clone(ctx, NULL), temp_rhs, false,
Eric Anholt76ea56c2010-03-26 12:16:54 -07001479 this->subexpressions[0]->get_location());
Eric Anholt76ea56c2010-03-26 12:16:54 -07001480 error_emitted = op[0]->type->is_error();
1481 break;
1482 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001483
1484 case ast_post_inc:
Eric Anholtde38f0e2010-03-26 12:14:54 -07001485 case ast_post_dec: {
Ian Romanickfa0a9ac2011-12-23 09:56:03 -08001486 this->non_lvalue_description = (this->oper == ast_post_inc)
1487 ? "post-increment operation" : "post-decrement operation";
Eric Anholtde38f0e2010-03-26 12:14:54 -07001488 op[0] = this->subexpressions[0]->hir(instructions, state);
Paul Berry9abda922011-10-31 18:22:48 -07001489 op[1] = constant_one_for_inc_dec(ctx, op[0]->type);
Eric Anholtde38f0e2010-03-26 12:14:54 -07001490
1491 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1492
Eric Anholta13bb142010-03-31 16:38:11 -10001493 type = arithmetic_result_type(op[0], op[1], false, state, & loc);
Eric Anholtde38f0e2010-03-26 12:14:54 -07001494
Ian Romanick768b55a2010-08-13 16:46:43 -07001495 ir_rvalue *temp_rhs;
Carl Worth1660a292010-06-23 18:11:51 -07001496 temp_rhs = new(ctx) ir_expression(operations[this->oper], type,
1497 op[0], op[1]);
Eric Anholtde38f0e2010-03-26 12:14:54 -07001498
1499 /* Get a temporary of a copy of the lvalue before it's modified.
1500 * This may get thrown away later.
1501 */
Eric Anholt8273bd42010-08-04 12:34:56 -07001502 result = get_lvalue_copy(instructions, op[0]->clone(ctx, NULL));
Eric Anholtde38f0e2010-03-26 12:14:54 -07001503
Eric Anholt3e24ef62010-06-23 12:40:17 -07001504 (void)do_assignment(instructions, state,
Ian Romanicke9015e92011-12-23 09:56:29 -08001505 this->subexpressions[0]->non_lvalue_description,
Ian Romanick85caea22011-03-15 16:33:27 -07001506 op[0]->clone(ctx, NULL), temp_rhs, false,
Eric Anholtde38f0e2010-03-26 12:14:54 -07001507 this->subexpressions[0]->get_location());
1508
Eric Anholtde38f0e2010-03-26 12:14:54 -07001509 error_emitted = op[0]->type->is_error();
Ian Romanicka87ac252010-02-22 13:19:34 -08001510 break;
Eric Anholtde38f0e2010-03-26 12:14:54 -07001511 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001512
1513 case ast_field_selection:
Ian Romanick18238de2010-03-01 13:49:10 -08001514 result = _mesa_ast_field_selection_to_hir(this, instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001515 break;
1516
Ian Romanick27e3cf82010-04-01 18:03:59 -07001517 case ast_array_index: {
1518 YYLTYPE index_loc = subexpressions[1]->get_location();
1519
1520 op[0] = subexpressions[0]->hir(instructions, state);
1521 op[1] = subexpressions[1]->hir(instructions, state);
1522
1523 error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
1524
Ian Romanicka9159f92010-05-26 15:08:11 -07001525 ir_rvalue *const array = op[0];
Ian Romanickb8a21cc2010-04-01 18:31:11 -07001526
Carl Worth1660a292010-06-23 18:11:51 -07001527 result = new(ctx) ir_dereference_array(op[0], op[1]);
Ian Romanickb8a21cc2010-04-01 18:31:11 -07001528
1529 /* Do not use op[0] after this point. Use array.
1530 */
1531 op[0] = NULL;
1532
Ian Romanick27e3cf82010-04-01 18:03:59 -07001533
1534 if (error_emitted)
1535 break;
1536
Ian Romanick63038e12010-04-05 13:16:00 -07001537 if (!array->type->is_array()
1538 && !array->type->is_matrix()
1539 && !array->type->is_vector()) {
Ian Romanick27e3cf82010-04-01 18:03:59 -07001540 _mesa_glsl_error(& index_loc, state,
Ian Romanick63038e12010-04-05 13:16:00 -07001541 "cannot dereference non-array / non-matrix / "
1542 "non-vector");
Ian Romanick27e3cf82010-04-01 18:03:59 -07001543 error_emitted = true;
1544 }
1545
1546 if (!op[1]->type->is_integer()) {
1547 _mesa_glsl_error(& index_loc, state,
1548 "array index must be integer type");
1549 error_emitted = true;
1550 } else if (!op[1]->type->is_scalar()) {
1551 _mesa_glsl_error(& index_loc, state,
1552 "array index must be scalar");
1553 error_emitted = true;
1554 }
1555
1556 /* If the array index is a constant expression and the array has a
1557 * declared size, ensure that the access is in-bounds. If the array
1558 * index is not a constant expression, ensure that the array has a
1559 * declared size.
1560 */
1561 ir_constant *const const_index = op[1]->constant_expression_value();
1562 if (const_index != NULL) {
1563 const int idx = const_index->value.i[0];
Ian Romanick63038e12010-04-05 13:16:00 -07001564 const char *type_name;
1565 unsigned bound = 0;
1566
1567 if (array->type->is_matrix()) {
1568 type_name = "matrix";
1569 } else if (array->type->is_vector()) {
1570 type_name = "vector";
1571 } else {
1572 type_name = "array";
1573 }
Ian Romanick27e3cf82010-04-01 18:03:59 -07001574
1575 /* From page 24 (page 30 of the PDF) of the GLSL 1.50 spec:
1576 *
1577 * "It is illegal to declare an array with a size, and then
1578 * later (in the same shader) index the same array with an
1579 * integral constant expression greater than or equal to the
1580 * declared size. It is also illegal to index an array with a
1581 * negative constant expression."
1582 */
Ian Romanick63038e12010-04-05 13:16:00 -07001583 if (array->type->is_matrix()) {
1584 if (array->type->row_type()->vector_elements <= idx) {
1585 bound = array->type->row_type()->vector_elements;
1586 }
1587 } else if (array->type->is_vector()) {
1588 if (array->type->vector_elements <= idx) {
1589 bound = array->type->vector_elements;
1590 }
1591 } else {
1592 if ((array->type->array_size() > 0)
1593 && (array->type->array_size() <= idx)) {
1594 bound = array->type->array_size();
1595 }
1596 }
1597
1598 if (bound > 0) {
1599 _mesa_glsl_error(& loc, state, "%s index must be < %u",
1600 type_name, bound);
1601 error_emitted = true;
1602 } else if (idx < 0) {
1603 _mesa_glsl_error(& loc, state, "%s index must be >= 0",
1604 type_name);
Ian Romanick27e3cf82010-04-01 18:03:59 -07001605 error_emitted = true;
1606 }
1607
Ian Romanick63038e12010-04-05 13:16:00 -07001608 if (array->type->is_array()) {
Ian Romanicka9159f92010-05-26 15:08:11 -07001609 /* If the array is a variable dereference, it dereferences the
1610 * whole array, by definition. Use this to get the variable.
1611 *
1612 * FINISHME: Should some methods for getting / setting / testing
1613 * FINISHME: array access limits be added to ir_dereference?
1614 */
1615 ir_variable *const v = array->whole_variable_referenced();
Paul Berry93b97582011-09-06 10:01:51 -07001616 if ((v != NULL) && (unsigned(idx) > v->max_array_access)) {
Ian Romanick63038e12010-04-05 13:16:00 -07001617 v->max_array_access = idx;
Paul Berry93b97582011-09-06 10:01:51 -07001618
1619 /* Check whether this access will, as a side effect, implicitly
1620 * cause the size of a built-in array to be too large.
1621 */
1622 if (check_builtin_array_max_size(v->name, idx+1, loc, state))
1623 error_emitted = true;
1624 }
Ian Romanick27e3cf82010-04-01 18:03:59 -07001625 }
Kenneth Graunke2b7c42b2010-07-16 18:28:44 -07001626 } else if (array->type->array_size() == 0) {
1627 _mesa_glsl_error(&loc, state, "unsized array index must be constant");
Eric Anholta721abf2010-08-23 10:32:01 -07001628 } else {
1629 if (array->type->is_array()) {
Aras Pranckevicius5226f8c2010-08-25 22:42:13 +03001630 /* whole_variable_referenced can return NULL if the array is a
1631 * member of a structure. In this case it is safe to not update
1632 * the max_array_access field because it is never used for fields
1633 * of structures.
1634 */
Eric Anholta721abf2010-08-23 10:32:01 -07001635 ir_variable *v = array->whole_variable_referenced();
Aras Pranckevicius5226f8c2010-08-25 22:42:13 +03001636 if (v != NULL)
Ian Romanick0d9d0362011-03-24 16:50:23 -07001637 v->max_array_access = array->type->array_size() - 1;
Eric Anholta721abf2010-08-23 10:32:01 -07001638 }
Ian Romanick27e3cf82010-04-01 18:03:59 -07001639 }
1640
Ian Romanicke942f322011-01-04 16:09:00 -08001641 /* From page 23 (29 of the PDF) of the GLSL 1.30 spec:
1642 *
Chad Versacef0f2ec42010-12-07 10:35:36 -08001643 * "Samplers aggregated into arrays within a shader (using square
1644 * brackets [ ]) can only be indexed with integral constant
1645 * expressions [...]."
Ian Romanicke942f322011-01-04 16:09:00 -08001646 *
1647 * This restriction was added in GLSL 1.30. Shaders using earlier version
1648 * of the language should not be rejected by the compiler front-end for
1649 * using this construct. This allows useful things such as using a loop
1650 * counter as the index to an array of samplers. If the loop in unrolled,
1651 * the code should compile correctly. Instead, emit a warning.
Chad Versacef0f2ec42010-12-07 10:35:36 -08001652 */
1653 if (array->type->is_array() &&
1654 array->type->element_type()->is_sampler() &&
1655 const_index == NULL) {
1656
Paul Berrye3ded7f2012-08-01 14:50:05 -07001657 if (!state->is_version(130, 100)) {
1658 if (state->es_shader) {
1659 _mesa_glsl_warning(&loc, state,
1660 "sampler arrays indexed with non-constant "
1661 "expressions is optional in %s",
1662 state->get_version_string());
1663 } else {
1664 _mesa_glsl_warning(&loc, state,
1665 "sampler arrays indexed with non-constant "
1666 "expressions will be forbidden in GLSL 1.30 and "
1667 "later");
1668 }
Ian Romanicke942f322011-01-04 16:09:00 -08001669 } else {
1670 _mesa_glsl_error(&loc, state,
1671 "sampler arrays indexed with non-constant "
1672 "expressions is forbidden in GLSL 1.30 and "
1673 "later");
1674 error_emitted = true;
1675 }
Chad Versacef0f2ec42010-12-07 10:35:36 -08001676 }
1677
Ian Romanick27e3cf82010-04-01 18:03:59 -07001678 if (error_emitted)
1679 result->type = glsl_type::error_type;
1680
Ian Romanicka87ac252010-02-22 13:19:34 -08001681 break;
Ian Romanick27e3cf82010-04-01 18:03:59 -07001682 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001683
1684 case ast_function_call:
Ian Romanick7cfddf12010-03-10 13:26:52 -08001685 /* Should *NEVER* get here. ast_function_call should always be handled
1686 * by ast_function_expression::hir.
Ian Romanicka87ac252010-02-22 13:19:34 -08001687 */
Ian Romanick7cfddf12010-03-10 13:26:52 -08001688 assert(0);
Ian Romanicka87ac252010-02-22 13:19:34 -08001689 break;
1690
1691 case ast_identifier: {
1692 /* ast_identifier can appear several places in a full abstract syntax
1693 * tree. This particular use must be at location specified in the grammar
1694 * as 'variable_identifier'.
1695 */
Ian Romanick8bde4ce2010-03-19 11:57:24 -07001696 ir_variable *var =
1697 state->symbols->get_variable(this->primary_expression.identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08001698
Ian Romanicka87ac252010-02-22 13:19:34 -08001699 if (var != NULL) {
Ian Romanickbd330552011-01-07 18:34:58 -08001700 var->used = true;
Kenneth Graunkedca19a72012-03-13 14:59:42 -07001701 result = new(ctx) ir_dereference_variable(var);
Ian Romanicka87ac252010-02-22 13:19:34 -08001702 } else {
Ian Romanick71d0bbf2010-03-23 13:21:19 -07001703 _mesa_glsl_error(& loc, state, "`%s' undeclared",
Ian Romanick18238de2010-03-01 13:49:10 -08001704 this->primary_expression.identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08001705
Kenneth Graunke807e9672011-09-22 15:04:56 -07001706 result = ir_rvalue::error_value(ctx);
Ian Romanicka87ac252010-02-22 13:19:34 -08001707 error_emitted = true;
1708 }
1709 break;
1710 }
1711
1712 case ast_int_constant:
Carl Worth1660a292010-06-23 18:11:51 -07001713 result = new(ctx) ir_constant(this->primary_expression.int_constant);
Ian Romanicka87ac252010-02-22 13:19:34 -08001714 break;
1715
1716 case ast_uint_constant:
Carl Worth1660a292010-06-23 18:11:51 -07001717 result = new(ctx) ir_constant(this->primary_expression.uint_constant);
Ian Romanicka87ac252010-02-22 13:19:34 -08001718 break;
1719
1720 case ast_float_constant:
Carl Worth1660a292010-06-23 18:11:51 -07001721 result = new(ctx) ir_constant(this->primary_expression.float_constant);
Ian Romanicka87ac252010-02-22 13:19:34 -08001722 break;
1723
1724 case ast_bool_constant:
Carl Worth1660a292010-06-23 18:11:51 -07001725 result = new(ctx) ir_constant(bool(this->primary_expression.bool_constant));
Ian Romanicka87ac252010-02-22 13:19:34 -08001726 break;
1727
1728 case ast_sequence: {
Ian Romanicka87ac252010-02-22 13:19:34 -08001729 /* It should not be possible to generate a sequence in the AST without
1730 * any expressions in it.
1731 */
Ian Romanick304ea902010-05-10 11:17:53 -07001732 assert(!this->expressions.is_empty());
Ian Romanicka87ac252010-02-22 13:19:34 -08001733
1734 /* The r-value of a sequence is the last expression in the sequence. If
1735 * the other expressions in the sequence do not have side-effects (and
1736 * therefore add instructions to the instruction list), they get dropped
1737 * on the floor.
1738 */
Ian Romanick3d5cfcf2011-04-11 10:10:30 -07001739 exec_node *previous_tail_pred = NULL;
1740 YYLTYPE previous_operand_loc = loc;
1741
1742 foreach_list_typed (ast_node, ast, link, &this->expressions) {
1743 /* If one of the operands of comma operator does not generate any
1744 * code, we want to emit a warning. At each pass through the loop
1745 * previous_tail_pred will point to the last instruction in the
1746 * stream *before* processing the previous operand. Naturally,
1747 * instructions->tail_pred will point to the last instruction in the
1748 * stream *after* processing the previous operand. If the two
1749 * pointers match, then the previous operand had no effect.
1750 *
1751 * The warning behavior here differs slightly from GCC. GCC will
1752 * only emit a warning if none of the left-hand operands have an
1753 * effect. However, it will emit a warning for each. I believe that
1754 * there are some cases in C (especially with GCC extensions) where
1755 * it is useful to have an intermediate step in a sequence have no
1756 * effect, but I don't think these cases exist in GLSL. Either way,
1757 * it would be a giant hassle to replicate that behavior.
1758 */
1759 if (previous_tail_pred == instructions->tail_pred) {
1760 _mesa_glsl_warning(&previous_operand_loc, state,
1761 "left-hand operand of comma expression has "
1762 "no effect");
1763 }
1764
1765 /* tail_pred is directly accessed instead of using the get_tail()
1766 * method for performance reasons. get_tail() has extra code to
1767 * return NULL when the list is empty. We don't care about that
1768 * here, so using tail_pred directly is fine.
1769 */
1770 previous_tail_pred = instructions->tail_pred;
1771 previous_operand_loc = ast->get_location();
1772
Ian Romanick304ea902010-05-10 11:17:53 -07001773 result = ast->hir(instructions, state);
Ian Romanick3d5cfcf2011-04-11 10:10:30 -07001774 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001775
Ian Romanicka87ac252010-02-22 13:19:34 -08001776 /* Any errors should have already been emitted in the loop above.
1777 */
1778 error_emitted = true;
1779 break;
1780 }
1781 }
Kenneth Graunke08ba9772011-04-14 17:21:59 -07001782 type = NULL; /* use result->type, not type. */
1783 assert(result != NULL);
Ian Romanicka87ac252010-02-22 13:19:34 -08001784
Kenneth Graunke08ba9772011-04-14 17:21:59 -07001785 if (result->type->is_error() && !error_emitted)
Ian Romanick71d0bbf2010-03-23 13:21:19 -07001786 _mesa_glsl_error(& loc, state, "type mismatch");
Ian Romanicka87ac252010-02-22 13:19:34 -08001787
1788 return result;
1789}
1790
1791
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07001792ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08001793ast_expression_statement::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08001794 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08001795{
Ian Romanicka87ac252010-02-22 13:19:34 -08001796 /* It is possible to have expression statements that don't have an
1797 * expression. This is the solitary semicolon:
1798 *
1799 * for (i = 0; i < 5; i++)
1800 * ;
1801 *
1802 * In this case the expression will be NULL. Test for NULL and don't do
1803 * anything in that case.
1804 */
Ian Romanick18238de2010-03-01 13:49:10 -08001805 if (expression != NULL)
1806 expression->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001807
1808 /* Statements do not have r-values.
1809 */
1810 return NULL;
1811}
1812
1813
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07001814ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08001815ast_compound_statement::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08001816 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08001817{
Ian Romanick18238de2010-03-01 13:49:10 -08001818 if (new_scope)
Ian Romanick8bde4ce2010-03-19 11:57:24 -07001819 state->symbols->push_scope();
Ian Romanicka87ac252010-02-22 13:19:34 -08001820
Ian Romanick2b97dc62010-05-10 17:42:05 -07001821 foreach_list_typed (ast_node, ast, link, &this->statements)
Ian Romanick304ea902010-05-10 11:17:53 -07001822 ast->hir(instructions, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001823
Ian Romanick18238de2010-03-01 13:49:10 -08001824 if (new_scope)
Ian Romanick8bde4ce2010-03-19 11:57:24 -07001825 state->symbols->pop_scope();
Ian Romanicka87ac252010-02-22 13:19:34 -08001826
1827 /* Compound statements do not have r-values.
1828 */
1829 return NULL;
1830}
1831
1832
Ian Romanick28009cd2010-03-30 16:59:27 -07001833static const glsl_type *
Kenneth Graunked8e34e22010-08-07 02:56:01 -07001834process_array_type(YYLTYPE *loc, const glsl_type *base, ast_node *array_size,
Ian Romanick28009cd2010-03-30 16:59:27 -07001835 struct _mesa_glsl_parse_state *state)
1836{
1837 unsigned length = 0;
1838
Ian Romanicka04211e2011-10-24 11:45:50 -07001839 /* From page 19 (page 25) of the GLSL 1.20 spec:
1840 *
1841 * "Only one-dimensional arrays may be declared."
1842 */
1843 if (base->is_array()) {
1844 _mesa_glsl_error(loc, state,
1845 "invalid array of `%s' (only one-dimensional arrays "
1846 "may be declared)",
1847 base->name);
1848 return glsl_type::error_type;
1849 }
Ian Romanick28009cd2010-03-30 16:59:27 -07001850
1851 if (array_size != NULL) {
1852 exec_list dummy_instructions;
1853 ir_rvalue *const ir = array_size->hir(& dummy_instructions, state);
1854 YYLTYPE loc = array_size->get_location();
1855
Ian Romanick28009cd2010-03-30 16:59:27 -07001856 if (ir != NULL) {
1857 if (!ir->type->is_integer()) {
1858 _mesa_glsl_error(& loc, state, "array size must be integer type");
1859 } else if (!ir->type->is_scalar()) {
1860 _mesa_glsl_error(& loc, state, "array size must be scalar type");
1861 } else {
1862 ir_constant *const size = ir->constant_expression_value();
1863
1864 if (size == NULL) {
1865 _mesa_glsl_error(& loc, state, "array size must be a "
1866 "constant valued expression");
1867 } else if (size->value.i[0] <= 0) {
1868 _mesa_glsl_error(& loc, state, "array size must be > 0");
1869 } else {
1870 assert(size->type == ir->type);
1871 length = size->value.u[0];
Paul Berryd4144a12011-08-01 15:23:07 -07001872
1873 /* If the array size is const (and we've verified that
1874 * it is) then no instructions should have been emitted
1875 * when we converted it to HIR. If they were emitted,
1876 * then either the array size isn't const after all, or
1877 * we are emitting unnecessary instructions.
1878 */
1879 assert(dummy_instructions.is_empty());
Ian Romanick28009cd2010-03-30 16:59:27 -07001880 }
1881 }
1882 }
Kenneth Graunked8e34e22010-08-07 02:56:01 -07001883 } else if (state->es_shader) {
1884 /* Section 10.17 of the GLSL ES 1.00 specification states that unsized
1885 * array declarations have been removed from the language.
1886 */
1887 _mesa_glsl_error(loc, state, "unsized array declarations are not "
1888 "allowed in GLSL ES 1.00.");
Ian Romanick28009cd2010-03-30 16:59:27 -07001889 }
1890
Ian Romanickf38d15b2010-07-20 15:33:40 -07001891 return glsl_type::get_array_instance(base, length);
Ian Romanick28009cd2010-03-30 16:59:27 -07001892}
1893
1894
Ian Romanickd612a122010-03-31 16:22:06 -07001895const glsl_type *
1896ast_type_specifier::glsl_type(const char **name,
1897 struct _mesa_glsl_parse_state *state) const
Ian Romanicka87ac252010-02-22 13:19:34 -08001898{
Ian Romanickd612a122010-03-31 16:22:06 -07001899 const struct glsl_type *type;
Ian Romanicka87ac252010-02-22 13:19:34 -08001900
Kenneth Graunkeca92ae22010-09-18 11:11:09 +02001901 type = state->symbols->get_type(this->type_name);
1902 *name = this->type_name;
Ian Romanicka87ac252010-02-22 13:19:34 -08001903
Kenneth Graunkeca92ae22010-09-18 11:11:09 +02001904 if (this->is_array) {
1905 YYLTYPE loc = this->get_location();
1906 type = process_array_type(&loc, type, this->array_size, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08001907 }
1908
1909 return type;
1910}
1911
1912
Paul Berry18720552012-12-18 15:24:39 -08001913/**
1914 * Determine whether a toplevel variable declaration declares a varying. This
1915 * function operates by examining the variable's mode and the shader target,
1916 * so it correctly identifies linkage variables regardless of whether they are
1917 * declared using the deprecated "varying" syntax or the new "in/out" syntax.
1918 *
1919 * Passing a non-toplevel variable declaration (e.g. a function parameter) to
1920 * this function will produce undefined results.
1921 */
1922static bool
1923is_varying_var(ir_variable *var, _mesa_glsl_parser_targets target)
1924{
1925 switch (target) {
1926 case vertex_shader:
Paul Berry42a29d82013-01-11 14:39:32 -08001927 return var->mode == ir_var_shader_out;
Paul Berry18720552012-12-18 15:24:39 -08001928 case fragment_shader:
Paul Berry42a29d82013-01-11 14:39:32 -08001929 return var->mode == ir_var_shader_in;
Paul Berry18720552012-12-18 15:24:39 -08001930 default:
Paul Berry42a29d82013-01-11 14:39:32 -08001931 return var->mode == ir_var_shader_out || var->mode == ir_var_shader_in;
Paul Berry18720552012-12-18 15:24:39 -08001932 }
1933}
1934
1935
Ian Romanickbb47a4d2013-01-16 12:01:50 -08001936/**
1937 * Matrix layout qualifiers are only allowed on certain types
1938 */
1939static void
1940validate_matrix_layout_for_type(struct _mesa_glsl_parse_state *state,
1941 YYLTYPE *loc,
1942 const glsl_type *type)
1943{
1944 if (!type->is_matrix() && !type->is_record()) {
1945 _mesa_glsl_error(loc, state,
1946 "uniform block layout qualifiers row_major and "
1947 "column_major can only be applied to matrix and "
1948 "structure types");
1949 } else if (type->is_record()) {
1950 /* We allow 'layout(row_major)' on structure types because it's the only
1951 * way to get row-major layouts on matrices contained in structures.
1952 */
1953 _mesa_glsl_warning(loc, state,
1954 "uniform block layout qualifiers row_major and "
1955 "column_major applied to structure types is not "
1956 "strictly conformant and my be rejected by other "
1957 "compilers");
1958 }
1959}
1960
Ian Romanicka87ac252010-02-22 13:19:34 -08001961static void
1962apply_type_qualifier_to_variable(const struct ast_type_qualifier *qual,
Ian Romanick768b55a2010-08-13 16:46:43 -07001963 ir_variable *var,
Eric Anholt2e063f12010-03-28 00:56:22 -07001964 struct _mesa_glsl_parse_state *state,
Eric Anholtf7561e82012-04-26 18:19:39 -07001965 YYLTYPE *loc,
Paul Berryc33be482012-12-18 14:49:34 -08001966 bool ubo_qualifiers_valid,
1967 bool is_parameter)
Ian Romanicka87ac252010-02-22 13:19:34 -08001968{
Ian Romanickbd330552011-01-07 18:34:58 -08001969 if (qual->flags.q.invariant) {
1970 if (var->used) {
1971 _mesa_glsl_error(loc, state,
1972 "variable `%s' may not be redeclared "
1973 "`invariant' after being used",
1974 var->name);
1975 } else {
1976 var->invariant = 1;
1977 }
1978 }
Ian Romanicka87ac252010-02-22 13:19:34 -08001979
Ian Romanicke24d35a2010-10-05 16:38:47 -07001980 if (qual->flags.q.constant || qual->flags.q.attribute
1981 || qual->flags.q.uniform
1982 || (qual->flags.q.varying && (state->target == fragment_shader)))
Ian Romanicka87ac252010-02-22 13:19:34 -08001983 var->read_only = 1;
1984
Ian Romanicke24d35a2010-10-05 16:38:47 -07001985 if (qual->flags.q.centroid)
Ian Romanicka87ac252010-02-22 13:19:34 -08001986 var->centroid = 1;
1987
Ian Romanicke24d35a2010-10-05 16:38:47 -07001988 if (qual->flags.q.attribute && state->target != vertex_shader) {
Eric Anholt2e063f12010-03-28 00:56:22 -07001989 var->type = glsl_type::error_type;
1990 _mesa_glsl_error(loc, state,
1991 "`attribute' variables may not be declared in the "
Ian Romanickae4c4c02010-04-07 16:41:40 -07001992 "%s shader",
1993 _mesa_glsl_shader_target_name(state->target));
Eric Anholt2e063f12010-03-28 00:56:22 -07001994 }
1995
Ian Romanick7e2aa912010-07-19 17:12:42 -07001996 /* If there is no qualifier that changes the mode of the variable, leave
1997 * the setting alone.
1998 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07001999 if (qual->flags.q.in && qual->flags.q.out)
Paul Berry42a29d82013-01-11 14:39:32 -08002000 var->mode = ir_var_function_inout;
2001 else if (qual->flags.q.in)
2002 var->mode = is_parameter ? ir_var_function_in : ir_var_shader_in;
2003 else if (qual->flags.q.attribute
Ian Romanicke24d35a2010-10-05 16:38:47 -07002004 || (qual->flags.q.varying && (state->target == fragment_shader)))
Paul Berry42a29d82013-01-11 14:39:32 -08002005 var->mode = ir_var_shader_in;
2006 else if (qual->flags.q.out)
2007 var->mode = is_parameter ? ir_var_function_out : ir_var_shader_out;
2008 else if (qual->flags.q.varying && (state->target == vertex_shader))
2009 var->mode = ir_var_shader_out;
Ian Romanicke24d35a2010-10-05 16:38:47 -07002010 else if (qual->flags.q.uniform)
Ian Romanicka87ac252010-02-22 13:19:34 -08002011 var->mode = ir_var_uniform;
Ian Romanicka87ac252010-02-22 13:19:34 -08002012
Paul Berry18720552012-12-18 15:24:39 -08002013 if (!is_parameter && is_varying_var(var, state->target)) {
2014 /* This variable is being used to link data between shader stages (in
2015 * pre-glsl-1.30 parlance, it's a "varying"). Check that it has a type
2016 * that is allowed for such purposes.
2017 *
2018 * From page 25 (page 31 of the PDF) of the GLSL 1.10 spec:
2019 *
2020 * "The varying qualifier can be used only with the data types
2021 * float, vec2, vec3, vec4, mat2, mat3, and mat4, or arrays of
2022 * these."
2023 *
2024 * This was relaxed in GLSL version 1.30 and GLSL ES version 3.00. From
2025 * page 31 (page 37 of the PDF) of the GLSL 1.30 spec:
2026 *
2027 * "Fragment inputs can only be signed and unsigned integers and
2028 * integer vectors, float, floating-point vectors, matrices, or
2029 * arrays of these. Structures cannot be input.
2030 *
2031 * Similar text exists in the section on vertex shader outputs.
2032 *
2033 * Similar text exists in the GLSL ES 3.00 spec, except that the GLSL ES
2034 * 3.00 spec claims to allow structs as well. However, this is likely
2035 * an error, since section 11 of the spec ("Counting of Inputs and
2036 * Outputs") enumerates all possible types of interstage linkage
2037 * variables, and it does not mention structs.
2038 */
2039 switch (var->type->get_scalar_type()->base_type) {
2040 case GLSL_TYPE_FLOAT:
2041 /* Ok in all GLSL versions */
2042 break;
2043 case GLSL_TYPE_UINT:
2044 case GLSL_TYPE_INT:
2045 if (state->is_version(130, 300))
2046 break;
2047 _mesa_glsl_error(loc, state,
2048 "varying variables must be of base type float in %s",
2049 state->get_version_string());
2050 break;
2051 case GLSL_TYPE_STRUCT:
2052 _mesa_glsl_error(loc, state,
2053 "varying variables may not be of type struct");
2054 break;
2055 default:
2056 _mesa_glsl_error(loc, state, "illegal type for a varying variable");
2057 break;
2058 }
2059 }
2060
Ian Romanick86b43982011-01-06 10:49:56 -08002061 if (state->all_invariant && (state->current_function == NULL)) {
2062 switch (state->target) {
2063 case vertex_shader:
Paul Berry42a29d82013-01-11 14:39:32 -08002064 if (var->mode == ir_var_shader_out)
Ian Romanick86b43982011-01-06 10:49:56 -08002065 var->invariant = true;
2066 break;
2067 case geometry_shader:
Paul Berry42a29d82013-01-11 14:39:32 -08002068 if ((var->mode == ir_var_shader_in)
2069 || (var->mode == ir_var_shader_out))
Ian Romanick86b43982011-01-06 10:49:56 -08002070 var->invariant = true;
2071 break;
2072 case fragment_shader:
Paul Berry42a29d82013-01-11 14:39:32 -08002073 if (var->mode == ir_var_shader_in)
Ian Romanick86b43982011-01-06 10:49:56 -08002074 var->invariant = true;
2075 break;
2076 }
2077 }
2078
Ian Romanicke24d35a2010-10-05 16:38:47 -07002079 if (qual->flags.q.flat)
Paul Berrycf459492011-10-25 18:06:37 -07002080 var->interpolation = INTERP_QUALIFIER_FLAT;
Ian Romanicke24d35a2010-10-05 16:38:47 -07002081 else if (qual->flags.q.noperspective)
Paul Berrycf459492011-10-25 18:06:37 -07002082 var->interpolation = INTERP_QUALIFIER_NOPERSPECTIVE;
Paul Berryc4881502011-10-21 07:40:37 -07002083 else if (qual->flags.q.smooth)
Paul Berrycf459492011-10-25 18:06:37 -07002084 var->interpolation = INTERP_QUALIFIER_SMOOTH;
Paul Berryc4881502011-10-21 07:40:37 -07002085 else
2086 var->interpolation = INTERP_QUALIFIER_NONE;
Ian Romanick9d975372010-04-02 17:17:47 -07002087
Eric Anholt916e2062012-01-09 16:40:20 -08002088 if (var->interpolation != INTERP_QUALIFIER_NONE &&
Paul Berry42a29d82013-01-11 14:39:32 -08002089 !(state->target == vertex_shader && var->mode == ir_var_shader_out) &&
2090 !(state->target == fragment_shader && var->mode == ir_var_shader_in)) {
Eric Anholt916e2062012-01-09 16:40:20 -08002091 _mesa_glsl_error(loc, state,
2092 "interpolation qualifier `%s' can only be applied to "
2093 "vertex shader outputs and fragment shader inputs.",
Kenneth Graunked43f4182012-06-06 01:52:47 -07002094 var->interpolation_string());
Eric Anholt916e2062012-01-09 16:40:20 -08002095 }
2096
Ian Romanicke24d35a2010-10-05 16:38:47 -07002097 var->pixel_center_integer = qual->flags.q.pixel_center_integer;
2098 var->origin_upper_left = qual->flags.q.origin_upper_left;
2099 if ((qual->flags.q.origin_upper_left || qual->flags.q.pixel_center_integer)
Ian Romanick8d8469e2010-06-30 17:48:09 -07002100 && (strcmp(var->name, "gl_FragCoord") != 0)) {
Ian Romanicke24d35a2010-10-05 16:38:47 -07002101 const char *const qual_string = (qual->flags.q.origin_upper_left)
Ian Romanick8d8469e2010-06-30 17:48:09 -07002102 ? "origin_upper_left" : "pixel_center_integer";
2103
2104 _mesa_glsl_error(loc, state,
2105 "layout qualifier `%s' can only be applied to "
2106 "fragment shader input `gl_FragCoord'",
2107 qual_string);
2108 }
2109
Ian Romanickeee68d32010-10-07 15:13:38 -07002110 if (qual->flags.q.explicit_location) {
2111 const bool global_scope = (state->current_function == NULL);
2112 bool fail = false;
2113 const char *string = "";
2114
2115 /* In the vertex shader only shader inputs can be given explicit
2116 * locations.
2117 *
2118 * In the fragment shader only shader outputs can be given explicit
2119 * locations.
2120 */
2121 switch (state->target) {
2122 case vertex_shader:
Paul Berry42a29d82013-01-11 14:39:32 -08002123 if (!global_scope || (var->mode != ir_var_shader_in)) {
Ian Romanickeee68d32010-10-07 15:13:38 -07002124 fail = true;
2125 string = "input";
2126 }
2127 break;
2128
2129 case geometry_shader:
2130 _mesa_glsl_error(loc, state,
2131 "geometry shader variables cannot be given "
2132 "explicit locations\n");
2133 break;
2134
2135 case fragment_shader:
Paul Berry42a29d82013-01-11 14:39:32 -08002136 if (!global_scope || (var->mode != ir_var_shader_out)) {
Ian Romanickeee68d32010-10-07 15:13:38 -07002137 fail = true;
2138 string = "output";
2139 }
2140 break;
Kenneth Graunkea75da2c2010-10-20 14:59:40 -07002141 };
Ian Romanickeee68d32010-10-07 15:13:38 -07002142
2143 if (fail) {
2144 _mesa_glsl_error(loc, state,
2145 "only %s shader %s variables can be given an "
2146 "explicit location\n",
2147 _mesa_glsl_shader_target_name(state->target),
2148 string);
2149 } else {
2150 var->explicit_location = true;
Ian Romanick68a4fc92010-10-07 17:21:22 -07002151
2152 /* This bit of silliness is needed because invalid explicit locations
2153 * are supposed to be flagged during linking. Small negative values
2154 * biased by VERT_ATTRIB_GENERIC0 or FRAG_RESULT_DATA0 could alias
2155 * built-in values (e.g., -16+VERT_ATTRIB_GENERIC0 = VERT_ATTRIB_POS).
2156 * The linker needs to be able to differentiate these cases. This
2157 * ensures that negative values stay negative.
2158 */
2159 if (qual->location >= 0) {
2160 var->location = (state->target == vertex_shader)
2161 ? (qual->location + VERT_ATTRIB_GENERIC0)
2162 : (qual->location + FRAG_RESULT_DATA0);
2163 } else {
2164 var->location = qual->location;
2165 }
Kenneth Graunke354f2cb2012-08-31 16:04:19 -07002166
Dave Airlie1256a5d2012-03-24 13:33:41 +00002167 if (qual->flags.q.explicit_index) {
Kenneth Graunke354f2cb2012-08-31 16:04:19 -07002168 /* From the GLSL 4.30 specification, section 4.4.2 (Output
2169 * Layout Qualifiers):
2170 *
2171 * "It is also a compile-time error if a fragment shader
2172 * sets a layout index to less than 0 or greater than 1."
2173 *
2174 * Older specifications don't mandate a behavior; we take
2175 * this as a clarification and always generate the error.
2176 */
2177 if (qual->index < 0 || qual->index > 1) {
2178 _mesa_glsl_error(loc, state,
2179 "explicit index may only be 0 or 1\n");
2180 } else {
2181 var->explicit_index = true;
2182 var->index = qual->index;
2183 }
Dave Airlie1256a5d2012-03-24 13:33:41 +00002184 }
Ian Romanickeee68d32010-10-07 15:13:38 -07002185 }
Dave Airlie1256a5d2012-03-24 13:33:41 +00002186 } else if (qual->flags.q.explicit_index) {
2187 _mesa_glsl_error(loc, state,
2188 "explicit index requires explicit location\n");
Ian Romanickeee68d32010-10-07 15:13:38 -07002189 }
2190
Ian Romanick4bcff0c2011-01-07 16:53:59 -08002191 /* Does the declaration use the 'layout' keyword?
2192 */
2193 const bool uses_layout = qual->flags.q.pixel_center_integer
2194 || qual->flags.q.origin_upper_left
Dave Airlie1256a5d2012-03-24 13:33:41 +00002195 || qual->flags.q.explicit_location; /* no need for index since it relies on location */
Ian Romanick4bcff0c2011-01-07 16:53:59 -08002196
2197 /* Does the declaration use the deprecated 'attribute' or 'varying'
2198 * keywords?
2199 */
2200 const bool uses_deprecated_qualifier = qual->flags.q.attribute
2201 || qual->flags.q.varying;
2202
2203 /* Is the 'layout' keyword used with parameters that allow relaxed checking.
2204 * Many implementations of GL_ARB_fragment_coord_conventions_enable and some
2205 * implementations (only Mesa?) GL_ARB_explicit_attrib_location_enable
2206 * allowed the layout qualifier to be used with 'varying' and 'attribute'.
2207 * These extensions and all following extensions that add the 'layout'
2208 * keyword have been modified to require the use of 'in' or 'out'.
2209 *
2210 * The following extension do not allow the deprecated keywords:
2211 *
2212 * GL_AMD_conservative_depth
Marek Olšák6b43d6f2011-11-19 16:41:08 +01002213 * GL_ARB_conservative_depth
Ian Romanick4bcff0c2011-01-07 16:53:59 -08002214 * GL_ARB_gpu_shader5
2215 * GL_ARB_separate_shader_objects
2216 * GL_ARB_tesselation_shader
2217 * GL_ARB_transform_feedback3
2218 * GL_ARB_uniform_buffer_object
2219 *
2220 * It is unknown whether GL_EXT_shader_image_load_store or GL_NV_gpu_shader5
2221 * allow layout with the deprecated keywords.
2222 */
2223 const bool relaxed_layout_qualifier_checking =
2224 state->ARB_fragment_coord_conventions_enable;
2225
2226 if (uses_layout && uses_deprecated_qualifier) {
2227 if (relaxed_layout_qualifier_checking) {
2228 _mesa_glsl_warning(loc, state,
2229 "`layout' qualifier may not be used with "
2230 "`attribute' or `varying'");
2231 } else {
2232 _mesa_glsl_error(loc, state,
2233 "`layout' qualifier may not be used with "
2234 "`attribute' or `varying'");
2235 }
2236 }
2237
Chad Versacebc04d242011-01-27 01:40:26 -08002238 /* Layout qualifiers for gl_FragDepth, which are enabled by extension
2239 * AMD_conservative_depth.
2240 */
2241 int depth_layout_count = qual->flags.q.depth_any
2242 + qual->flags.q.depth_greater
2243 + qual->flags.q.depth_less
2244 + qual->flags.q.depth_unchanged;
2245 if (depth_layout_count > 0
Marek Olšák6b43d6f2011-11-19 16:41:08 +01002246 && !state->AMD_conservative_depth_enable
2247 && !state->ARB_conservative_depth_enable) {
Chad Versacebc04d242011-01-27 01:40:26 -08002248 _mesa_glsl_error(loc, state,
Marek Olšák6b43d6f2011-11-19 16:41:08 +01002249 "extension GL_AMD_conservative_depth or "
2250 "GL_ARB_conservative_depth must be enabled "
Chad Versacebc04d242011-01-27 01:40:26 -08002251 "to use depth layout qualifiers");
2252 } else if (depth_layout_count > 0
2253 && strcmp(var->name, "gl_FragDepth") != 0) {
2254 _mesa_glsl_error(loc, state,
2255 "depth layout qualifiers can be applied only to "
2256 "gl_FragDepth");
2257 } else if (depth_layout_count > 1
2258 && strcmp(var->name, "gl_FragDepth") == 0) {
2259 _mesa_glsl_error(loc, state,
2260 "at most one depth layout qualifier can be applied to "
2261 "gl_FragDepth");
2262 }
2263 if (qual->flags.q.depth_any)
2264 var->depth_layout = ir_depth_layout_any;
2265 else if (qual->flags.q.depth_greater)
2266 var->depth_layout = ir_depth_layout_greater;
2267 else if (qual->flags.q.depth_less)
2268 var->depth_layout = ir_depth_layout_less;
2269 else if (qual->flags.q.depth_unchanged)
2270 var->depth_layout = ir_depth_layout_unchanged;
2271 else
2272 var->depth_layout = ir_depth_layout_none;
Eric Anholtf7561e82012-04-26 18:19:39 -07002273
2274 if (qual->flags.q.std140 ||
2275 qual->flags.q.packed ||
2276 qual->flags.q.shared) {
2277 _mesa_glsl_error(loc, state,
2278 "uniform block layout qualifiers std140, packed, and "
2279 "shared can only be applied to uniform blocks, not "
2280 "members");
2281 }
2282
Ian Romanickbb47a4d2013-01-16 12:01:50 -08002283 if (qual->flags.q.row_major || qual->flags.q.column_major) {
2284 if (!ubo_qualifiers_valid) {
2285 _mesa_glsl_error(loc, state,
2286 "uniform block layout qualifiers row_major and "
2287 "column_major can only be applied to uniform block "
2288 "members");
2289 } else
2290 validate_matrix_layout_for_type(state, loc, var->type);
Eric Anholtf7561e82012-04-26 18:19:39 -07002291 }
Ian Romanicka87ac252010-02-22 13:19:34 -08002292}
2293
Ian Romanick8e6cb9f2011-03-04 15:28:40 -08002294/**
2295 * Get the variable that is being redeclared by this declaration
2296 *
2297 * Semantic checks to verify the validity of the redeclaration are also
2298 * performed. If semantic checks fail, compilation error will be emitted via
2299 * \c _mesa_glsl_error, but a non-\c NULL pointer will still be returned.
2300 *
2301 * \returns
2302 * A pointer to an existing variable in the current scope if the declaration
2303 * is a redeclaration, \c NULL otherwise.
2304 */
2305ir_variable *
2306get_variable_being_redeclared(ir_variable *var, ast_declaration *decl,
2307 struct _mesa_glsl_parse_state *state)
2308{
2309 /* Check if this declaration is actually a re-declaration, either to
2310 * resize an array or add qualifiers to an existing variable.
2311 *
2312 * This is allowed for variables in the current scope, or when at
2313 * global scope (for built-ins in the implicit outer scope).
2314 */
2315 ir_variable *earlier = state->symbols->get_variable(decl->identifier);
2316 if (earlier == NULL ||
2317 (state->current_function != NULL &&
2318 !state->symbols->name_declared_this_scope(decl->identifier))) {
2319 return NULL;
2320 }
2321
2322
2323 YYLTYPE loc = decl->get_location();
2324
2325 /* From page 24 (page 30 of the PDF) of the GLSL 1.50 spec,
2326 *
2327 * "It is legal to declare an array without a size and then
2328 * later re-declare the same name as an array of the same
2329 * type and specify a size."
2330 */
2331 if ((earlier->type->array_size() == 0)
2332 && var->type->is_array()
2333 && (var->type->element_type() == earlier->type->element_type())) {
2334 /* FINISHME: This doesn't match the qualifiers on the two
2335 * FINISHME: declarations. It's not 100% clear whether this is
2336 * FINISHME: required or not.
2337 */
2338
Ian Romanick8e6cb9f2011-03-04 15:28:40 -08002339 const unsigned size = unsigned(var->type->array_size());
Paul Berry93b97582011-09-06 10:01:51 -07002340 check_builtin_array_max_size(var->name, size, loc, state);
2341 if ((size > 0) && (size <= earlier->max_array_access)) {
Ian Romanick8e6cb9f2011-03-04 15:28:40 -08002342 _mesa_glsl_error(& loc, state, "array size must be > %u due to "
2343 "previous access",
2344 earlier->max_array_access);
2345 }
2346
2347 earlier->type = var->type;
2348 delete var;
2349 var = NULL;
2350 } else if (state->ARB_fragment_coord_conventions_enable
2351 && strcmp(var->name, "gl_FragCoord") == 0
2352 && earlier->type == var->type
2353 && earlier->mode == var->mode) {
2354 /* Allow redeclaration of gl_FragCoord for ARB_fcc layout
2355 * qualifiers.
2356 */
2357 earlier->origin_upper_left = var->origin_upper_left;
2358 earlier->pixel_center_integer = var->pixel_center_integer;
2359
2360 /* According to section 4.3.7 of the GLSL 1.30 spec,
2361 * the following built-in varaibles can be redeclared with an
2362 * interpolation qualifier:
2363 * * gl_FrontColor
2364 * * gl_BackColor
2365 * * gl_FrontSecondaryColor
2366 * * gl_BackSecondaryColor
2367 * * gl_Color
2368 * * gl_SecondaryColor
2369 */
Paul Berrye3ded7f2012-08-01 14:50:05 -07002370 } else if (state->is_version(130, 0)
Ian Romanick8e6cb9f2011-03-04 15:28:40 -08002371 && (strcmp(var->name, "gl_FrontColor") == 0
2372 || strcmp(var->name, "gl_BackColor") == 0
2373 || strcmp(var->name, "gl_FrontSecondaryColor") == 0
2374 || strcmp(var->name, "gl_BackSecondaryColor") == 0
2375 || strcmp(var->name, "gl_Color") == 0
2376 || strcmp(var->name, "gl_SecondaryColor") == 0)
2377 && earlier->type == var->type
2378 && earlier->mode == var->mode) {
2379 earlier->interpolation = var->interpolation;
2380
2381 /* Layout qualifiers for gl_FragDepth. */
Marek Olšák6b43d6f2011-11-19 16:41:08 +01002382 } else if ((state->AMD_conservative_depth_enable ||
2383 state->ARB_conservative_depth_enable)
Ian Romanick8e6cb9f2011-03-04 15:28:40 -08002384 && strcmp(var->name, "gl_FragDepth") == 0
2385 && earlier->type == var->type
2386 && earlier->mode == var->mode) {
2387
2388 /** From the AMD_conservative_depth spec:
2389 * Within any shader, the first redeclarations of gl_FragDepth
2390 * must appear before any use of gl_FragDepth.
2391 */
2392 if (earlier->used) {
2393 _mesa_glsl_error(&loc, state,
2394 "the first redeclaration of gl_FragDepth "
2395 "must appear before any use of gl_FragDepth");
2396 }
2397
2398 /* Prevent inconsistent redeclaration of depth layout qualifier. */
2399 if (earlier->depth_layout != ir_depth_layout_none
2400 && earlier->depth_layout != var->depth_layout) {
2401 _mesa_glsl_error(&loc, state,
2402 "gl_FragDepth: depth layout is declared here "
2403 "as '%s, but it was previously declared as "
2404 "'%s'",
2405 depth_layout_string(var->depth_layout),
2406 depth_layout_string(earlier->depth_layout));
2407 }
2408
2409 earlier->depth_layout = var->depth_layout;
2410
2411 } else {
2412 _mesa_glsl_error(&loc, state, "`%s' redeclared", decl->identifier);
2413 }
2414
2415 return earlier;
2416}
Ian Romanicka87ac252010-02-22 13:19:34 -08002417
Ian Romanick0292ffb2011-03-04 15:29:33 -08002418/**
2419 * Generate the IR for an initializer in a variable declaration
2420 */
2421ir_rvalue *
2422process_initializer(ir_variable *var, ast_declaration *decl,
2423 ast_fully_specified_type *type,
2424 exec_list *initializer_instructions,
2425 struct _mesa_glsl_parse_state *state)
2426{
2427 ir_rvalue *result = NULL;
2428
2429 YYLTYPE initializer_loc = decl->initializer->get_location();
2430
2431 /* From page 24 (page 30 of the PDF) of the GLSL 1.10 spec:
2432 *
2433 * "All uniform variables are read-only and are initialized either
2434 * directly by an application via API commands, or indirectly by
2435 * OpenGL."
2436 */
Paul Berry0d9bba62012-08-05 09:57:01 -07002437 if (var->mode == ir_var_uniform) {
2438 state->check_version(120, 0, &initializer_loc,
2439 "cannot initialize uniforms");
Ian Romanick0292ffb2011-03-04 15:29:33 -08002440 }
2441
2442 if (var->type->is_sampler()) {
2443 _mesa_glsl_error(& initializer_loc, state,
2444 "cannot initialize samplers");
2445 }
2446
Paul Berry42a29d82013-01-11 14:39:32 -08002447 if ((var->mode == ir_var_shader_in) && (state->current_function == NULL)) {
Ian Romanick0292ffb2011-03-04 15:29:33 -08002448 _mesa_glsl_error(& initializer_loc, state,
2449 "cannot initialize %s shader input / %s",
2450 _mesa_glsl_shader_target_name(state->target),
2451 (state->target == vertex_shader)
2452 ? "attribute" : "varying");
2453 }
2454
2455 ir_dereference *const lhs = new(state) ir_dereference_variable(var);
2456 ir_rvalue *rhs = decl->initializer->hir(initializer_instructions,
2457 state);
2458
2459 /* Calculate the constant value if this is a const or uniform
2460 * declaration.
2461 */
2462 if (type->qualifier.flags.q.constant
2463 || type->qualifier.flags.q.uniform) {
Ian Romanick85caea22011-03-15 16:33:27 -07002464 ir_rvalue *new_rhs = validate_assignment(state, var->type, rhs, true);
Ian Romanick0292ffb2011-03-04 15:29:33 -08002465 if (new_rhs != NULL) {
2466 rhs = new_rhs;
2467
2468 ir_constant *constant_value = rhs->constant_expression_value();
2469 if (!constant_value) {
2470 _mesa_glsl_error(& initializer_loc, state,
2471 "initializer of %s variable `%s' must be a "
2472 "constant expression",
2473 (type->qualifier.flags.q.constant)
2474 ? "const" : "uniform",
2475 decl->identifier);
2476 if (var->type->is_numeric()) {
2477 /* Reduce cascading errors. */
2478 var->constant_value = ir_constant::zero(state, var->type);
2479 }
2480 } else {
2481 rhs = constant_value;
2482 var->constant_value = constant_value;
2483 }
2484 } else {
2485 _mesa_glsl_error(&initializer_loc, state,
2486 "initializer of type %s cannot be assigned to "
2487 "variable of type %s",
2488 rhs->type->name, var->type->name);
2489 if (var->type->is_numeric()) {
2490 /* Reduce cascading errors. */
2491 var->constant_value = ir_constant::zero(state, var->type);
2492 }
2493 }
2494 }
2495
2496 if (rhs && !rhs->type->is_error()) {
2497 bool temp = var->read_only;
2498 if (type->qualifier.flags.q.constant)
2499 var->read_only = false;
2500
2501 /* Never emit code to initialize a uniform.
2502 */
2503 const glsl_type *initializer_type;
2504 if (!type->qualifier.flags.q.uniform) {
2505 result = do_assignment(initializer_instructions, state,
Ian Romanicke9015e92011-12-23 09:56:29 -08002506 NULL,
Ian Romanick85caea22011-03-15 16:33:27 -07002507 lhs, rhs, true,
Ian Romanick0292ffb2011-03-04 15:29:33 -08002508 type->get_location());
2509 initializer_type = result->type;
2510 } else
2511 initializer_type = rhs->type;
2512
Ian Romanickf37b1ad2011-10-31 14:31:07 -07002513 var->constant_initializer = rhs->constant_expression_value();
2514 var->has_initializer = true;
2515
Ian Romanick0292ffb2011-03-04 15:29:33 -08002516 /* If the declared variable is an unsized array, it must inherrit
2517 * its full type from the initializer. A declaration such as
2518 *
2519 * uniform float a[] = float[](1.0, 2.0, 3.0, 3.0);
2520 *
2521 * becomes
2522 *
2523 * uniform float a[4] = float[](1.0, 2.0, 3.0, 3.0);
2524 *
2525 * The assignment generated in the if-statement (below) will also
2526 * automatically handle this case for non-uniforms.
2527 *
2528 * If the declared variable is not an array, the types must
2529 * already match exactly. As a result, the type assignment
2530 * here can be done unconditionally. For non-uniforms the call
2531 * to do_assignment can change the type of the initializer (via
2532 * the implicit conversion rules). For uniforms the initializer
2533 * must be a constant expression, and the type of that expression
2534 * was validated above.
2535 */
2536 var->type = initializer_type;
2537
2538 var->read_only = temp;
2539 }
2540
2541 return result;
2542}
2543
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07002544ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08002545ast_declarator_list::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08002546 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08002547{
Kenneth Graunke953ff122010-06-25 13:14:37 -07002548 void *ctx = state;
Ian Romanicka87ac252010-02-22 13:19:34 -08002549 const struct glsl_type *decl_type;
2550 const char *type_name = NULL;
Eric Anholt85584592010-04-14 15:38:52 -07002551 ir_rvalue *result = NULL;
Ian Romanickc824e352010-04-23 15:55:19 -07002552 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08002553
Ian Romanick6f0823d2010-07-01 20:39:08 -07002554 /* From page 46 (page 52 of the PDF) of the GLSL 1.50 spec:
2555 *
2556 * "To ensure that a particular output variable is invariant, it is
2557 * necessary to use the invariant qualifier. It can either be used to
2558 * qualify a previously declared variable as being invariant
2559 *
2560 * invariant gl_Position; // make existing gl_Position be invariant"
2561 *
2562 * In these cases the parser will set the 'invariant' flag in the declarator
2563 * list, and the type will be NULL.
2564 */
2565 if (this->invariant) {
2566 assert(this->type == NULL);
2567
2568 if (state->current_function != NULL) {
2569 _mesa_glsl_error(& loc, state,
2570 "All uses of `invariant' keyword must be at global "
2571 "scope\n");
2572 }
2573
2574 foreach_list_typed (ast_declaration, decl, link, &this->declarations) {
2575 assert(!decl->is_array);
2576 assert(decl->array_size == NULL);
2577 assert(decl->initializer == NULL);
2578
2579 ir_variable *const earlier =
2580 state->symbols->get_variable(decl->identifier);
2581 if (earlier == NULL) {
2582 _mesa_glsl_error(& loc, state,
2583 "Undeclared variable `%s' cannot be marked "
2584 "invariant\n", decl->identifier);
2585 } else if ((state->target == vertex_shader)
Paul Berry42a29d82013-01-11 14:39:32 -08002586 && (earlier->mode != ir_var_shader_out)) {
Ian Romanick6f0823d2010-07-01 20:39:08 -07002587 _mesa_glsl_error(& loc, state,
2588 "`%s' cannot be marked invariant, vertex shader "
2589 "outputs only\n", decl->identifier);
2590 } else if ((state->target == fragment_shader)
Paul Berry42a29d82013-01-11 14:39:32 -08002591 && (earlier->mode != ir_var_shader_in)) {
Ian Romanick6f0823d2010-07-01 20:39:08 -07002592 _mesa_glsl_error(& loc, state,
2593 "`%s' cannot be marked invariant, fragment shader "
2594 "inputs only\n", decl->identifier);
Ian Romanickbd330552011-01-07 18:34:58 -08002595 } else if (earlier->used) {
2596 _mesa_glsl_error(& loc, state,
2597 "variable `%s' may not be redeclared "
2598 "`invariant' after being used",
2599 earlier->name);
Ian Romanick6f0823d2010-07-01 20:39:08 -07002600 } else {
2601 earlier->invariant = true;
2602 }
2603 }
2604
2605 /* Invariant redeclarations do not have r-values.
2606 */
2607 return NULL;
2608 }
2609
2610 assert(this->type != NULL);
2611 assert(!this->invariant);
2612
Ian Romanick3455ce62010-04-19 15:13:15 -07002613 /* The type specifier may contain a structure definition. Process that
2614 * before any of the variable declarations.
2615 */
2616 (void) this->type->specifier->hir(instructions, state);
2617
Ian Romanickd612a122010-03-31 16:22:06 -07002618 decl_type = this->type->specifier->glsl_type(& type_name, state);
Ian Romanick304ea902010-05-10 11:17:53 -07002619 if (this->declarations.is_empty()) {
Ian Romanickf5ba4d02011-10-25 17:49:07 -07002620 /* If there is no structure involved in the program text, there are two
2621 * possible scenarios:
2622 *
2623 * - The program text contained something like 'vec4;'. This is an
2624 * empty declaration. It is valid but weird. Emit a warning.
2625 *
2626 * - The program text contained something like 'S;' and 'S' is not the
2627 * name of a known structure type. This is both invalid and weird.
2628 * Emit an error.
2629 *
2630 * Note that if decl_type is NULL and there is a structure involved,
2631 * there must have been some sort of error with the structure. In this
2632 * case we assume that an error was already generated on this line of
2633 * code for the structure. There is no need to generate an additional,
2634 * confusing error.
2635 */
2636 assert(this->type->specifier->structure == NULL || decl_type != NULL
2637 || state->error);
2638 if (this->type->specifier->structure == NULL) {
2639 if (decl_type != NULL) {
Chia-I Wu547212d2011-08-04 00:39:07 +09002640 _mesa_glsl_warning(&loc, state, "empty declaration");
Ian Romanickf5ba4d02011-10-25 17:49:07 -07002641 } else {
2642 _mesa_glsl_error(&loc, state,
2643 "invalid type `%s' in empty declaration",
2644 type_name);
Chia-I Wu547212d2011-08-04 00:39:07 +09002645 }
Ian Romanickc824e352010-04-23 15:55:19 -07002646 }
2647 }
Ian Romanicka87ac252010-02-22 13:19:34 -08002648
Ian Romanick2b97dc62010-05-10 17:42:05 -07002649 foreach_list_typed (ast_declaration, decl, link, &this->declarations) {
Ian Romanicka87ac252010-02-22 13:19:34 -08002650 const struct glsl_type *var_type;
Ian Romanick768b55a2010-08-13 16:46:43 -07002651 ir_variable *var;
Ian Romanicka87ac252010-02-22 13:19:34 -08002652
2653 /* FINISHME: Emit a warning if a variable declaration shadows a
2654 * FINISHME: declaration at a higher scope.
2655 */
2656
Ian Romanickcec65a62010-03-23 12:28:44 -07002657 if ((decl_type == NULL) || decl_type->is_void()) {
Ian Romanicka87ac252010-02-22 13:19:34 -08002658 if (type_name != NULL) {
2659 _mesa_glsl_error(& loc, state,
2660 "invalid type `%s' in declaration of `%s'",
2661 type_name, decl->identifier);
2662 } else {
2663 _mesa_glsl_error(& loc, state,
2664 "invalid type in declaration of `%s'",
2665 decl->identifier);
2666 }
2667 continue;
2668 }
2669
2670 if (decl->is_array) {
Kenneth Graunked8e34e22010-08-07 02:56:01 -07002671 var_type = process_array_type(&loc, decl_type, decl->array_size,
2672 state);
Ian Romanicka04211e2011-10-24 11:45:50 -07002673 if (var_type->is_error())
2674 continue;
Ian Romanicka87ac252010-02-22 13:19:34 -08002675 } else {
2676 var_type = decl_type;
2677 }
2678
Ian Romanick7e2aa912010-07-19 17:12:42 -07002679 var = new(ctx) ir_variable(var_type, decl->identifier, ir_var_auto);
Ian Romanicka87ac252010-02-22 13:19:34 -08002680
Eric Anholt3f151502010-04-02 01:53:57 -10002681 /* From page 22 (page 28 of the PDF) of the GLSL 1.10 specification;
2682 *
2683 * "Global variables can only use the qualifiers const,
2684 * attribute, uni form, or varying. Only one may be
2685 * specified.
2686 *
2687 * Local variables can only use the qualifier const."
2688 *
Paul Berryd4a24742012-08-02 08:18:12 -07002689 * This is relaxed in GLSL 1.30 and GLSL ES 3.00. It is also relaxed by
2690 * any extension that adds the 'layout' keyword.
Eric Anholt3f151502010-04-02 01:53:57 -10002691 */
Paul Berryd4a24742012-08-02 08:18:12 -07002692 if (!state->is_version(130, 300)
Ian Romanick82c4b4f2011-01-07 16:53:07 -08002693 && !state->ARB_explicit_attrib_location_enable
2694 && !state->ARB_fragment_coord_conventions_enable) {
Ian Romanicke24d35a2010-10-05 16:38:47 -07002695 if (this->type->qualifier.flags.q.out) {
Eric Anholt3f151502010-04-02 01:53:57 -10002696 _mesa_glsl_error(& loc, state,
2697 "`out' qualifier in declaration of `%s' "
Ian Romanick469ea692011-01-07 16:05:59 -08002698 "only valid for function parameters in %s.",
Paul Berrydc9f9d82012-08-02 06:45:30 -07002699 decl->identifier, state->get_version_string());
Eric Anholt3f151502010-04-02 01:53:57 -10002700 }
Ian Romanicke24d35a2010-10-05 16:38:47 -07002701 if (this->type->qualifier.flags.q.in) {
Eric Anholt3f151502010-04-02 01:53:57 -10002702 _mesa_glsl_error(& loc, state,
2703 "`in' qualifier in declaration of `%s' "
Ian Romanick469ea692011-01-07 16:05:59 -08002704 "only valid for function parameters in %s.",
Paul Berrydc9f9d82012-08-02 06:45:30 -07002705 decl->identifier, state->get_version_string());
Eric Anholt3f151502010-04-02 01:53:57 -10002706 }
2707 /* FINISHME: Test for other invalid qualifiers. */
2708 }
2709
Eric Anholt2e063f12010-03-28 00:56:22 -07002710 apply_type_qualifier_to_variable(& this->type->qualifier, var, state,
Paul Berryc33be482012-12-18 14:49:34 -08002711 & loc, this->ubo_qualifiers_valid, false);
Ian Romanicka87ac252010-02-22 13:19:34 -08002712
Ian Romanicke24d35a2010-10-05 16:38:47 -07002713 if (this->type->qualifier.flags.q.invariant) {
Paul Berry42a29d82013-01-11 14:39:32 -08002714 if ((state->target == vertex_shader) &&
2715 var->mode != ir_var_shader_out) {
Ian Romanick6f0823d2010-07-01 20:39:08 -07002716 _mesa_glsl_error(& loc, state,
2717 "`%s' cannot be marked invariant, vertex shader "
2718 "outputs only\n", var->name);
Eric Anholt046bef22010-08-04 20:33:57 -07002719 } else if ((state->target == fragment_shader) &&
Paul Berry42a29d82013-01-11 14:39:32 -08002720 var->mode != ir_var_shader_in) {
Eric Anholt046bef22010-08-04 20:33:57 -07002721 /* FINISHME: Note that this doesn't work for invariant on
2722 * a function signature inval
2723 */
Ian Romanick6f0823d2010-07-01 20:39:08 -07002724 _mesa_glsl_error(& loc, state,
2725 "`%s' cannot be marked invariant, fragment shader "
2726 "inputs only\n", var->name);
2727 }
2728 }
2729
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002730 if (state->current_function != NULL) {
Ian Romanickb168e532010-03-31 12:31:18 -07002731 const char *mode = NULL;
Ian Romanicke0800062010-03-31 13:15:23 -07002732 const char *extra = "";
Ian Romanickb168e532010-03-31 12:31:18 -07002733
Ian Romanicke0800062010-03-31 13:15:23 -07002734 /* There is no need to check for 'inout' here because the parser will
2735 * only allow that in function parameter lists.
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002736 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07002737 if (this->type->qualifier.flags.q.attribute) {
Ian Romanickb168e532010-03-31 12:31:18 -07002738 mode = "attribute";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002739 } else if (this->type->qualifier.flags.q.uniform) {
Ian Romanickb168e532010-03-31 12:31:18 -07002740 mode = "uniform";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002741 } else if (this->type->qualifier.flags.q.varying) {
Ian Romanickb168e532010-03-31 12:31:18 -07002742 mode = "varying";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002743 } else if (this->type->qualifier.flags.q.in) {
Ian Romanicke0800062010-03-31 13:15:23 -07002744 mode = "in";
2745 extra = " or in function parameter list";
Ian Romanicke24d35a2010-10-05 16:38:47 -07002746 } else if (this->type->qualifier.flags.q.out) {
Ian Romanicke0800062010-03-31 13:15:23 -07002747 mode = "out";
2748 extra = " or in function parameter list";
Ian Romanickb168e532010-03-31 12:31:18 -07002749 }
2750
2751 if (mode) {
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002752 _mesa_glsl_error(& loc, state,
Ian Romanickb168e532010-03-31 12:31:18 -07002753 "%s variable `%s' must be declared at "
Ian Romanicke0800062010-03-31 13:15:23 -07002754 "global scope%s",
2755 mode, var->name, extra);
Ian Romanicke1c1a3f2010-03-31 12:26:03 -07002756 }
Paul Berry42a29d82013-01-11 14:39:32 -08002757 } else if (var->mode == ir_var_shader_in) {
Chad Versace01a584d2011-01-20 14:12:16 -08002758 var->read_only = true;
2759
Ian Romanickfb9f5b02010-03-29 17:16:35 -07002760 if (state->target == vertex_shader) {
2761 bool error_emitted = false;
2762
2763 /* From page 31 (page 37 of the PDF) of the GLSL 1.50 spec:
2764 *
2765 * "Vertex shader inputs can only be float, floating-point
2766 * vectors, matrices, signed and unsigned integers and integer
2767 * vectors. Vertex shader inputs can also form arrays of these
2768 * types, but not structures."
2769 *
Ian Romanick2d816202010-03-29 17:40:11 -07002770 * From page 31 (page 27 of the PDF) of the GLSL 1.30 spec:
2771 *
2772 * "Vertex shader inputs can only be float, floating-point
2773 * vectors, matrices, signed and unsigned integers and integer
2774 * vectors. They cannot be arrays or structures."
2775 *
Ian Romanickfb9f5b02010-03-29 17:16:35 -07002776 * From page 23 (page 29 of the PDF) of the GLSL 1.20 spec:
2777 *
2778 * "The attribute qualifier can be used only with float,
2779 * floating-point vectors, and matrices. Attribute variables
2780 * cannot be declared as arrays or structures."
Paul Berryd4a24742012-08-02 08:18:12 -07002781 *
2782 * From page 33 (page 39 of the PDF) of the GLSL ES 3.00 spec:
2783 *
2784 * "Vertex shader inputs can only be float, floating-point
2785 * vectors, matrices, signed and unsigned integers and integer
2786 * vectors. Vertex shader inputs cannot be arrays or
2787 * structures."
Ian Romanickfb9f5b02010-03-29 17:16:35 -07002788 */
2789 const glsl_type *check_type = var->type->is_array()
2790 ? var->type->fields.array : var->type;
2791
2792 switch (check_type->base_type) {
2793 case GLSL_TYPE_FLOAT:
2794 break;
2795 case GLSL_TYPE_UINT:
2796 case GLSL_TYPE_INT:
Paul Berryd4a24742012-08-02 08:18:12 -07002797 if (state->is_version(120, 300))
Ian Romanickfb9f5b02010-03-29 17:16:35 -07002798 break;
2799 /* FALLTHROUGH */
2800 default:
2801 _mesa_glsl_error(& loc, state,
2802 "vertex shader input / attribute cannot have "
2803 "type %s`%s'",
2804 var->type->is_array() ? "array of " : "",
2805 check_type->name);
2806 error_emitted = true;
2807 }
2808
Paul Berry0d9bba62012-08-05 09:57:01 -07002809 if (!error_emitted && var->type->is_array() &&
2810 !state->check_version(140, 0, &loc,
2811 "vertex shader input / attribute "
2812 "cannot have array type")) {
Ian Romanickfb9f5b02010-03-29 17:16:35 -07002813 error_emitted = true;
2814 }
2815 }
2816 }
2817
Chad Versace68d06b12010-12-16 11:06:19 -08002818 /* Integer vertex outputs must be qualified with 'flat'.
2819 *
2820 * From section 4.3.6 of the GLSL 1.30 spec:
2821 * "If a vertex output is a signed or unsigned integer or integer
2822 * vector, then it must be qualified with the interpolation qualifier
2823 * flat."
Paul Berryd4a24742012-08-02 08:18:12 -07002824 *
2825 * From section 4.3.4 of the GLSL 3.00 ES spec:
2826 * "Fragment shader inputs that are signed or unsigned integers or
2827 * integer vectors must be qualified with the interpolation qualifier
2828 * flat."
2829 *
2830 * Since vertex outputs and fragment inputs must have matching
2831 * qualifiers, these two requirements are equivalent.
Chad Versace68d06b12010-12-16 11:06:19 -08002832 */
Paul Berryd4a24742012-08-02 08:18:12 -07002833 if (state->is_version(130, 300)
Chad Versace68d06b12010-12-16 11:06:19 -08002834 && state->target == vertex_shader
2835 && state->current_function == NULL
2836 && var->type->is_integer()
Paul Berry42a29d82013-01-11 14:39:32 -08002837 && var->mode == ir_var_shader_out
Paul Berrycf459492011-10-25 18:06:37 -07002838 && var->interpolation != INTERP_QUALIFIER_FLAT) {
Chad Versace68d06b12010-12-16 11:06:19 -08002839
2840 _mesa_glsl_error(&loc, state, "If a vertex output is an integer, "
2841 "then it must be qualified with 'flat'");
2842 }
2843
2844
Chad Versace605aacc2011-01-11 17:21:18 -08002845 /* Interpolation qualifiers cannot be applied to 'centroid' and
2846 * 'centroid varying'.
2847 *
2848 * From page 29 (page 35 of the PDF) of the GLSL 1.30 spec:
2849 * "interpolation qualifiers may only precede the qualifiers in,
2850 * centroid in, out, or centroid out in a declaration. They do not apply
2851 * to the deprecated storage qualifiers varying or centroid varying."
Paul Berryd4a24742012-08-02 08:18:12 -07002852 *
2853 * These deprecated storage qualifiers do not exist in GLSL ES 3.00.
Chad Versace605aacc2011-01-11 17:21:18 -08002854 */
Paul Berrye3ded7f2012-08-01 14:50:05 -07002855 if (state->is_version(130, 0)
Chad Versace605aacc2011-01-11 17:21:18 -08002856 && this->type->qualifier.has_interpolation()
2857 && this->type->qualifier.flags.q.varying) {
2858
2859 const char *i = this->type->qualifier.interpolation_string();
2860 assert(i != NULL);
2861 const char *s;
2862 if (this->type->qualifier.flags.q.centroid)
2863 s = "centroid varying";
2864 else
2865 s = "varying";
2866
2867 _mesa_glsl_error(&loc, state,
2868 "qualifier '%s' cannot be applied to the "
2869 "deprecated storage qualifier '%s'", i, s);
2870 }
2871
2872
Chad Versace8faaa4a2011-01-11 18:13:26 -08002873 /* Interpolation qualifiers can only apply to vertex shader outputs and
2874 * fragment shader inputs.
2875 *
2876 * From page 29 (page 35 of the PDF) of the GLSL 1.30 spec:
2877 * "Outputs from a vertex shader (out) and inputs to a fragment
2878 * shader (in) can be further qualified with one or more of these
2879 * interpolation qualifiers"
Paul Berryd4a24742012-08-02 08:18:12 -07002880 *
2881 * From page 31 (page 37 of the PDF) of the GLSL ES 3.00 spec:
2882 * "These interpolation qualifiers may only precede the qualifiers
2883 * in, centroid in, out, or centroid out in a declaration. They do
2884 * not apply to inputs into a vertex shader or outputs from a
2885 * fragment shader."
Chad Versace8faaa4a2011-01-11 18:13:26 -08002886 */
Paul Berryd4a24742012-08-02 08:18:12 -07002887 if (state->is_version(130, 300)
Chad Versace8faaa4a2011-01-11 18:13:26 -08002888 && this->type->qualifier.has_interpolation()) {
2889
2890 const char *i = this->type->qualifier.interpolation_string();
2891 assert(i != NULL);
2892
2893 switch (state->target) {
2894 case vertex_shader:
2895 if (this->type->qualifier.flags.q.in) {
2896 _mesa_glsl_error(&loc, state,
2897 "qualifier '%s' cannot be applied to vertex "
2898 "shader inputs", i);
2899 }
2900 break;
2901 case fragment_shader:
2902 if (this->type->qualifier.flags.q.out) {
2903 _mesa_glsl_error(&loc, state,
2904 "qualifier '%s' cannot be applied to fragment "
2905 "shader outputs", i);
2906 }
2907 break;
2908 default:
2909 assert(0);
2910 }
2911 }
2912
2913
Chad Versace1eb0f172011-01-11 18:24:17 -08002914 /* From section 4.3.4 of the GLSL 1.30 spec:
2915 * "It is an error to use centroid in in a vertex shader."
Paul Berryd4a24742012-08-02 08:18:12 -07002916 *
2917 * From section 4.3.4 of the GLSL ES 3.00 spec:
2918 * "It is an error to use centroid in or interpolation qualifiers in
2919 * a vertex shader input."
Chad Versace1eb0f172011-01-11 18:24:17 -08002920 */
Paul Berryd4a24742012-08-02 08:18:12 -07002921 if (state->is_version(130, 300)
Chad Versace1eb0f172011-01-11 18:24:17 -08002922 && this->type->qualifier.flags.q.centroid
2923 && this->type->qualifier.flags.q.in
2924 && state->target == vertex_shader) {
2925
2926 _mesa_glsl_error(&loc, state,
2927 "'centroid in' cannot be used in a vertex shader");
2928 }
2929
2930
Chad Versace889e1a52011-01-16 22:38:45 -08002931 /* Precision qualifiers exists only in GLSL versions 1.00 and >= 1.30.
2932 */
Paul Berry0d9bba62012-08-05 09:57:01 -07002933 if (this->type->specifier->precision != ast_precision_none) {
2934 state->check_precision_qualifiers_allowed(&loc);
Chad Versace889e1a52011-01-16 22:38:45 -08002935 }
2936
2937
Chad Versace45e8e6c2011-01-17 15:28:39 -08002938 /* Precision qualifiers only apply to floating point and integer types.
Chad Versace889e1a52011-01-16 22:38:45 -08002939 *
2940 * From section 4.5.2 of the GLSL 1.30 spec:
2941 * "Any floating point or any integer declaration can have the type
2942 * preceded by one of these precision qualifiers [...] Literal
2943 * constants do not have precision qualifiers. Neither do Boolean
2944 * variables.
Kenneth Graunke87528242011-03-26 23:37:09 -07002945 *
2946 * In GLSL ES, sampler types are also allowed.
2947 *
2948 * From page 87 of the GLSL ES spec:
2949 * "RESOLUTION: Allow sampler types to take a precision qualifier."
Chad Versace889e1a52011-01-16 22:38:45 -08002950 */
2951 if (this->type->specifier->precision != ast_precision_none
Chad Versace45e8e6c2011-01-17 15:28:39 -08002952 && !var->type->is_float()
2953 && !var->type->is_integer()
Kenneth Graunke87528242011-03-26 23:37:09 -07002954 && !(var->type->is_sampler() && state->es_shader)
Chad Versace45e8e6c2011-01-17 15:28:39 -08002955 && !(var->type->is_array()
2956 && (var->type->fields.array->is_float()
2957 || var->type->fields.array->is_integer()))) {
Chad Versace889e1a52011-01-16 22:38:45 -08002958
2959 _mesa_glsl_error(&loc, state,
Kenneth Graunke87528242011-03-26 23:37:09 -07002960 "precision qualifiers apply only to floating point"
2961 "%s types", state->es_shader ? ", integer, and sampler"
2962 : "and integer");
Chad Versace889e1a52011-01-16 22:38:45 -08002963 }
2964
Paul Berryf0722102011-07-12 12:03:02 -07002965 /* From page 17 (page 23 of the PDF) of the GLSL 1.20 spec:
2966 *
2967 * "[Sampler types] can only be declared as function
2968 * parameters or uniform variables (see Section 4.3.5
2969 * "Uniform")".
2970 */
2971 if (var_type->contains_sampler() &&
2972 !this->type->qualifier.flags.q.uniform) {
2973 _mesa_glsl_error(&loc, state, "samplers must be declared uniform");
2974 }
2975
Ian Romanicke78e0fa2010-07-07 12:13:34 -07002976 /* Process the initializer and add its instructions to a temporary
2977 * list. This list will be added to the instruction stream (below) after
2978 * the declaration is added. This is done because in some cases (such as
2979 * redeclarations) the declaration may not actually be added to the
2980 * instruction stream.
2981 */
Eric Anholtfa33d0b2010-07-29 13:50:17 -07002982 exec_list initializer_instructions;
Ian Romanick09a4ba02011-03-04 16:15:20 -08002983 ir_variable *earlier = get_variable_being_redeclared(var, decl, state);
2984
Ian Romanick66faec42010-03-27 18:56:53 -07002985 if (decl->initializer != NULL) {
Ian Romanick09a4ba02011-03-04 16:15:20 -08002986 result = process_initializer((earlier == NULL) ? var : earlier,
2987 decl, this->type,
Ian Romanick0292ffb2011-03-04 15:29:33 -08002988 &initializer_instructions, state);
Ian Romanick19360152010-03-26 18:05:27 -07002989 }
Ian Romanick17d86f42010-03-29 12:59:02 -07002990
Eric Anholt0ed61252010-03-31 09:29:33 -10002991 /* From page 23 (page 29 of the PDF) of the GLSL 1.10 spec:
2992 *
2993 * "It is an error to write to a const variable outside of
2994 * its declaration, so they must be initialized when
2995 * declared."
2996 */
Ian Romanicke24d35a2010-10-05 16:38:47 -07002997 if (this->type->qualifier.flags.q.constant && decl->initializer == NULL) {
Eric Anholt0ed61252010-03-31 09:29:33 -10002998 _mesa_glsl_error(& loc, state,
Chad Versace46f71052011-01-18 15:15:19 -08002999 "const declaration of `%s' must be initialized",
3000 decl->identifier);
Eric Anholt0ed61252010-03-31 09:29:33 -10003001 }
3002
Ian Romanick09a4ba02011-03-04 16:15:20 -08003003 /* If the declaration is not a redeclaration, there are a few additional
3004 * semantic checks that must be applied. In addition, variable that was
3005 * created for the declaration should be added to the IR stream.
3006 */
3007 if (earlier == NULL) {
3008 /* From page 15 (page 21 of the PDF) of the GLSL 1.10 spec,
3009 *
3010 * "Identifiers starting with "gl_" are reserved for use by
3011 * OpenGL, and may not be declared in a shader as either a
3012 * variable or a function."
3013 */
3014 if (strncmp(decl->identifier, "gl_", 3) == 0)
3015 _mesa_glsl_error(& loc, state,
3016 "identifier `%s' uses reserved `gl_' prefix",
3017 decl->identifier);
Jason Woodc475a542011-10-06 22:37:48 -07003018 else if (strstr(decl->identifier, "__")) {
Eric Anholt684b7012011-10-03 16:27:59 -07003019 /* From page 14 (page 20 of the PDF) of the GLSL 1.10
3020 * spec:
3021 *
3022 * "In addition, all identifiers containing two
3023 * consecutive underscores (__) are reserved as
3024 * possible future keywords."
3025 */
3026 _mesa_glsl_error(& loc, state,
3027 "identifier `%s' uses reserved `__' string",
3028 decl->identifier);
3029 }
Ian Romanick09a4ba02011-03-04 16:15:20 -08003030
3031 /* Add the variable to the symbol table. Note that the initializer's
3032 * IR was already processed earlier (though it hasn't been emitted
3033 * yet), without the variable in scope.
3034 *
3035 * This differs from most C-like languages, but it follows the GLSL
3036 * specification. From page 28 (page 34 of the PDF) of the GLSL 1.50
3037 * spec:
3038 *
3039 * "Within a declaration, the scope of a name starts immediately
3040 * after the initializer if present or immediately after the name
3041 * being declared if not."
3042 */
3043 if (!state->symbols->add_variable(var)) {
3044 YYLTYPE loc = this->get_location();
3045 _mesa_glsl_error(&loc, state, "name `%s' already taken in the "
3046 "current scope", decl->identifier);
3047 continue;
3048 }
3049
3050 /* Push the variable declaration to the top. It means that all the
3051 * variable declarations will appear in a funny last-to-first order,
3052 * but otherwise we run into trouble if a function is prototyped, a
3053 * global var is decled, then the function is defined with usage of
3054 * the global var. See glslparsertest's CorrectModule.frag.
3055 */
3056 instructions->push_head(var);
Ian Romanick5466b632010-07-01 12:46:55 -07003057 }
3058
Eric Anholtfa33d0b2010-07-29 13:50:17 -07003059 instructions->append_list(&initializer_instructions);
Ian Romanicka87ac252010-02-22 13:19:34 -08003060 }
3061
Eric Anholt85584592010-04-14 15:38:52 -07003062
3063 /* Generally, variable declarations do not have r-values. However,
3064 * one is used for the declaration in
3065 *
3066 * while (bool b = some_condition()) {
3067 * ...
3068 * }
3069 *
3070 * so we return the rvalue from the last seen declaration here.
Ian Romanicka87ac252010-02-22 13:19:34 -08003071 */
Eric Anholt85584592010-04-14 15:38:52 -07003072 return result;
Ian Romanicka87ac252010-02-22 13:19:34 -08003073}
3074
3075
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07003076ir_rvalue *
Ian Romanick0044e7e2010-03-08 23:44:00 -08003077ast_parameter_declarator::hir(exec_list *instructions,
Ian Romanick18238de2010-03-01 13:49:10 -08003078 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08003079{
Kenneth Graunke953ff122010-06-25 13:14:37 -07003080 void *ctx = state;
Ian Romanicka87ac252010-02-22 13:19:34 -08003081 const struct glsl_type *type;
3082 const char *name = NULL;
Eric Anholt2e063f12010-03-28 00:56:22 -07003083 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08003084
Ian Romanickd612a122010-03-31 16:22:06 -07003085 type = this->type->specifier->glsl_type(& name, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08003086
3087 if (type == NULL) {
Ian Romanicka87ac252010-02-22 13:19:34 -08003088 if (name != NULL) {
3089 _mesa_glsl_error(& loc, state,
3090 "invalid type `%s' in declaration of `%s'",
Ian Romanick18238de2010-03-01 13:49:10 -08003091 name, this->identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08003092 } else {
3093 _mesa_glsl_error(& loc, state,
3094 "invalid type in declaration of `%s'",
Ian Romanick18238de2010-03-01 13:49:10 -08003095 this->identifier);
Ian Romanicka87ac252010-02-22 13:19:34 -08003096 }
3097
Ian Romanick0471e8b2010-03-26 14:33:41 -07003098 type = glsl_type::error_type;
Ian Romanicka87ac252010-02-22 13:19:34 -08003099 }
3100
Eric Anholt068c80c2010-03-31 09:56:36 -10003101 /* From page 62 (page 68 of the PDF) of the GLSL 1.50 spec:
3102 *
3103 * "Functions that accept no input arguments need not use void in the
3104 * argument list because prototypes (or definitions) are required and
3105 * therefore there is no ambiguity when an empty argument list "( )" is
3106 * declared. The idiom "(void)" as a parameter list is provided for
3107 * convenience."
3108 *
3109 * Placing this check here prevents a void parameter being set up
3110 * for a function, which avoids tripping up checks for main taking
3111 * parameters and lookups of an unnamed symbol.
3112 */
Ian Romanickcf37c9e2010-04-02 15:30:45 -07003113 if (type->is_void()) {
3114 if (this->identifier != NULL)
3115 _mesa_glsl_error(& loc, state,
3116 "named parameter cannot have type `void'");
3117
3118 is_void = true;
Eric Anholt068c80c2010-03-31 09:56:36 -10003119 return NULL;
Ian Romanickcf37c9e2010-04-02 15:30:45 -07003120 }
Eric Anholt068c80c2010-03-31 09:56:36 -10003121
Ian Romanick45d8a702010-04-02 15:09:33 -07003122 if (formal_parameter && (this->identifier == NULL)) {
3123 _mesa_glsl_error(& loc, state, "formal parameter lacks a name");
3124 return NULL;
3125 }
3126
Kenneth Graunkee511a352010-08-21 15:30:34 -07003127 /* This only handles "vec4 foo[..]". The earlier specifier->glsl_type(...)
3128 * call already handled the "vec4[..] foo" case.
3129 */
3130 if (this->is_array) {
Kenneth Graunked8e34e22010-08-07 02:56:01 -07003131 type = process_array_type(&loc, type, this->array_size, state);
Kenneth Graunkee511a352010-08-21 15:30:34 -07003132 }
3133
Ian Romanicka04211e2011-10-24 11:45:50 -07003134 if (!type->is_error() && type->array_size() == 0) {
Kenneth Graunkee511a352010-08-21 15:30:34 -07003135 _mesa_glsl_error(&loc, state, "arrays passed as parameters must have "
3136 "a declared size.");
3137 type = glsl_type::error_type;
3138 }
3139
Ian Romanickcf37c9e2010-04-02 15:30:45 -07003140 is_void = false;
Paul Berry42a29d82013-01-11 14:39:32 -08003141 ir_variable *var = new(ctx)
3142 ir_variable(type, this->identifier, ir_var_function_in);
Ian Romanicka87ac252010-02-22 13:19:34 -08003143
Ian Romanickcdb8d542010-03-11 14:48:51 -08003144 /* Apply any specified qualifiers to the parameter declaration. Note that
3145 * for function parameters the default mode is 'in'.
3146 */
Eric Anholtf7561e82012-04-26 18:19:39 -07003147 apply_type_qualifier_to_variable(& this->type->qualifier, var, state, & loc,
Paul Berryc33be482012-12-18 14:49:34 -08003148 false, true);
Ian Romanicka87ac252010-02-22 13:19:34 -08003149
Paul Berryf0722102011-07-12 12:03:02 -07003150 /* From page 17 (page 23 of the PDF) of the GLSL 1.20 spec:
3151 *
3152 * "Samplers cannot be treated as l-values; hence cannot be used
3153 * as out or inout function parameters, nor can they be assigned
3154 * into."
3155 */
Paul Berry42a29d82013-01-11 14:39:32 -08003156 if ((var->mode == ir_var_function_inout || var->mode == ir_var_function_out)
Paul Berryf0722102011-07-12 12:03:02 -07003157 && type->contains_sampler()) {
3158 _mesa_glsl_error(&loc, state, "out and inout parameters cannot contain samplers");
3159 type = glsl_type::error_type;
3160 }
3161
Paul Berry00792e32011-09-10 07:48:46 -07003162 /* From page 39 (page 45 of the PDF) of the GLSL 1.10 spec:
3163 *
3164 * "When calling a function, expressions that do not evaluate to
3165 * l-values cannot be passed to parameters declared as out or inout."
3166 *
3167 * From page 32 (page 38 of the PDF) of the GLSL 1.10 spec:
3168 *
3169 * "Other binary or unary expressions, non-dereferenced arrays,
3170 * function names, swizzles with repeated fields, and constants
3171 * cannot be l-values."
3172 *
3173 * So for GLSL 1.10, passing an array as an out or inout parameter is not
3174 * allowed. This restriction is removed in GLSL 1.20, and in GLSL ES.
3175 */
Paul Berry42a29d82013-01-11 14:39:32 -08003176 if ((var->mode == ir_var_function_inout || var->mode == ir_var_function_out)
Paul Berry0d9bba62012-08-05 09:57:01 -07003177 && type->is_array()
3178 && !state->check_version(120, 100, &loc,
3179 "Arrays cannot be out or inout parameters")) {
Paul Berry00792e32011-09-10 07:48:46 -07003180 type = glsl_type::error_type;
3181 }
3182
Ian Romanick0044e7e2010-03-08 23:44:00 -08003183 instructions->push_tail(var);
Ian Romanicka87ac252010-02-22 13:19:34 -08003184
3185 /* Parameter declarations do not have r-values.
3186 */
3187 return NULL;
3188}
3189
3190
Ian Romanick45d8a702010-04-02 15:09:33 -07003191void
Ian Romanick304ea902010-05-10 11:17:53 -07003192ast_parameter_declarator::parameters_to_hir(exec_list *ast_parameters,
Ian Romanick45d8a702010-04-02 15:09:33 -07003193 bool formal,
3194 exec_list *ir_parameters,
3195 _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08003196{
Ian Romanickcf37c9e2010-04-02 15:30:45 -07003197 ast_parameter_declarator *void_param = NULL;
3198 unsigned count = 0;
Ian Romanicka87ac252010-02-22 13:19:34 -08003199
Ian Romanick2b97dc62010-05-10 17:42:05 -07003200 foreach_list_typed (ast_parameter_declarator, param, link, ast_parameters) {
Ian Romanick45d8a702010-04-02 15:09:33 -07003201 param->formal_parameter = formal;
Eric Anholt068c80c2010-03-31 09:56:36 -10003202 param->hir(ir_parameters, state);
Ian Romanickcf37c9e2010-04-02 15:30:45 -07003203
3204 if (param->is_void)
3205 void_param = param;
3206
3207 count++;
3208 }
3209
3210 if ((void_param != NULL) && (count > 1)) {
3211 YYLTYPE loc = void_param->get_location();
3212
3213 _mesa_glsl_error(& loc, state,
3214 "`void' parameter must be only parameter");
Ian Romanicka87ac252010-02-22 13:19:34 -08003215 }
3216}
3217
3218
Kenneth Graunke6fae1e42010-12-06 10:54:05 -08003219void
Paul Berry0d81b0e2011-07-29 15:28:52 -07003220emit_function(_mesa_glsl_parse_state *state, ir_function *f)
Kenneth Graunke6fae1e42010-12-06 10:54:05 -08003221{
Paul Berry0d81b0e2011-07-29 15:28:52 -07003222 /* IR invariants disallow function declarations or definitions
3223 * nested within other function definitions. But there is no
3224 * requirement about the relative order of function declarations
3225 * and definitions with respect to one another. So simply insert
3226 * the new ir_function block at the end of the toplevel instruction
3227 * list.
3228 */
3229 state->toplevel_ir->push_tail(f);
Kenneth Graunke6fae1e42010-12-06 10:54:05 -08003230}
3231
3232
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07003233ir_rvalue *
Ian Romanick92318a92010-03-31 18:23:21 -07003234ast_function::hir(exec_list *instructions,
3235 struct _mesa_glsl_parse_state *state)
Ian Romanicka87ac252010-02-22 13:19:34 -08003236{
Kenneth Graunke953ff122010-06-25 13:14:37 -07003237 void *ctx = state;
Ian Romanick18238de2010-03-01 13:49:10 -08003238 ir_function *f = NULL;
Ian Romanick92318a92010-03-31 18:23:21 -07003239 ir_function_signature *sig = NULL;
3240 exec_list hir_parameters;
Ian Romanicka87ac252010-02-22 13:19:34 -08003241
Kenneth Graunkeac04c252010-06-29 00:48:10 -07003242 const char *const name = identifier;
Ian Romanicka87ac252010-02-22 13:19:34 -08003243
Ian Romanick9a3bd5e2011-08-29 14:56:29 -07003244 /* New functions are always added to the top-level IR instruction stream,
3245 * so this instruction list pointer is ignored. See also emit_function
3246 * (called below).
3247 */
3248 (void) instructions;
3249
Ian Romanick63b80f82010-09-01 06:34:58 -07003250 /* From page 21 (page 27 of the PDF) of the GLSL 1.20 spec,
3251 *
3252 * "Function declarations (prototypes) cannot occur inside of functions;
3253 * they must be at global scope, or for the built-in functions, outside
3254 * the global scope."
3255 *
3256 * From page 27 (page 33 of the PDF) of the GLSL ES 1.00.16 spec,
3257 *
3258 * "User defined functions may only be defined within the global scope."
3259 *
3260 * Note that this language does not appear in GLSL 1.10.
3261 */
Paul Berrye3ded7f2012-08-01 14:50:05 -07003262 if ((state->current_function != NULL) &&
3263 state->is_version(120, 100)) {
Ian Romanick63b80f82010-09-01 06:34:58 -07003264 YYLTYPE loc = this->get_location();
3265 _mesa_glsl_error(&loc, state,
3266 "declaration of function `%s' not allowed within "
3267 "function body", name);
3268 }
3269
Kenneth Graunkeedd180f2010-08-20 02:14:35 -07003270 /* From page 15 (page 21 of the PDF) of the GLSL 1.10 spec,
3271 *
3272 * "Identifiers starting with "gl_" are reserved for use by
3273 * OpenGL, and may not be declared in a shader as either a
3274 * variable or a function."
3275 */
3276 if (strncmp(name, "gl_", 3) == 0) {
3277 YYLTYPE loc = this->get_location();
3278 _mesa_glsl_error(&loc, state,
3279 "identifier `%s' uses reserved `gl_' prefix", name);
3280 }
3281
Ian Romanicka87ac252010-02-22 13:19:34 -08003282 /* Convert the list of function parameters to HIR now so that they can be
3283 * used below to compare this function's signature with previously seen
3284 * signatures for functions with the same name.
3285 */
Ian Romanick45d8a702010-04-02 15:09:33 -07003286 ast_parameter_declarator::parameters_to_hir(& this->parameters,
3287 is_definition,
3288 & hir_parameters, state);
Ian Romanicka87ac252010-02-22 13:19:34 -08003289
Ian Romanicke39cc692010-03-23 12:19:13 -07003290 const char *return_type_name;
3291 const glsl_type *return_type =
Ian Romanick92318a92010-03-31 18:23:21 -07003292 this->return_type->specifier->glsl_type(& return_type_name, state);
Ian Romanicke39cc692010-03-23 12:19:13 -07003293
Eric Anholt76e96d72010-08-23 13:26:52 -07003294 if (!return_type) {
3295 YYLTYPE loc = this->get_location();
3296 _mesa_glsl_error(&loc, state,
3297 "function `%s' has undeclared return type `%s'",
3298 name, return_type_name);
3299 return_type = glsl_type::error_type;
3300 }
Ian Romanicke39cc692010-03-23 12:19:13 -07003301
Kenneth Graunkeac04c252010-06-29 00:48:10 -07003302 /* From page 56 (page 62 of the PDF) of the GLSL 1.30 spec:
3303 * "No qualifier is allowed on the return type of a function."
3304 */
3305 if (this->return_type->has_qualifiers()) {
3306 YYLTYPE loc = this->get_location();
3307 _mesa_glsl_error(& loc, state,
3308 "function `%s' return type has qualifiers", name);
3309 }
3310
Paul Berryf0722102011-07-12 12:03:02 -07003311 /* From page 17 (page 23 of the PDF) of the GLSL 1.20 spec:
3312 *
3313 * "[Sampler types] can only be declared as function parameters
3314 * or uniform variables (see Section 4.3.5 "Uniform")".
3315 */
3316 if (return_type->contains_sampler()) {
3317 YYLTYPE loc = this->get_location();
3318 _mesa_glsl_error(&loc, state,
3319 "function `%s' return type can't contain a sampler",
3320 name);
3321 }
3322
Ian Romanicka87ac252010-02-22 13:19:34 -08003323 /* Verify that this function's signature either doesn't match a previously
3324 * seen signature for a function with the same name, or, if a match is found,
3325 * that the previously seen signature does not have an associated definition.
3326 */
Ian Romanicke466b182010-09-01 14:16:53 -07003327 f = state->symbols->get_function(name);
Kenneth Graunke81f03392010-09-16 02:52:25 -07003328 if (f != NULL && (state->es_shader || f->has_user_signature())) {
Ian Romanick202604e2010-08-11 16:58:25 -07003329 sig = f->exact_matching_signature(&hir_parameters);
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07003330 if (sig != NULL) {
3331 const char *badvar = sig->qualifiers_match(&hir_parameters);
3332 if (badvar != NULL) {
3333 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08003334
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07003335 _mesa_glsl_error(&loc, state, "function `%s' parameter `%s' "
3336 "qualifiers don't match prototype", name, badvar);
Ian Romanicka87ac252010-02-22 13:19:34 -08003337 }
3338
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07003339 if (sig->return_type != return_type) {
3340 YYLTYPE loc = this->get_location();
Ian Romanicka87ac252010-02-22 13:19:34 -08003341
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07003342 _mesa_glsl_error(&loc, state, "function `%s' return type doesn't "
3343 "match prototype", name);
3344 }
3345
3346 if (is_definition && sig->is_defined) {
3347 YYLTYPE loc = this->get_location();
3348
3349 _mesa_glsl_error(& loc, state, "function `%s' redefined", name);
Kenneth Graunke0d605cb2010-04-28 12:04:23 -07003350 }
3351 }
Ian Romanicka87ac252010-02-22 13:19:34 -08003352 } else {
Carl Worth1660a292010-06-23 18:11:51 -07003353 f = new(ctx) ir_function(name);
Eric Anholte8f5ebf2010-11-05 06:08:45 -07003354 if (!state->symbols->add_function(f)) {
Kenneth Graunkee0959132010-08-25 16:37:46 -07003355 /* This function name shadows a non-function use of the same name. */
3356 YYLTYPE loc = this->get_location();
3357
3358 _mesa_glsl_error(&loc, state, "function name `%s' conflicts with "
3359 "non-function", name);
3360 return NULL;
3361 }
Kenneth Graunke9fa99f32010-04-21 12:30:22 -07003362
Paul Berry0d81b0e2011-07-29 15:28:52 -07003363 emit_function(state, f);
Ian Romanicka87ac252010-02-22 13:19:34 -08003364 }
3365
Eric Anholtab372da2010-03-28 01:24:55 -07003366 /* Verify the return type of main() */
3367 if (strcmp(name, "main") == 0) {
Ian Romanick25711a82010-03-31 17:39:10 -07003368 if (! return_type->is_void()) {
Eric Anholtab372da2010-03-28 01:24:55 -07003369 YYLTYPE loc = this->get_location();
3370
3371 _mesa_glsl_error(& loc, state, "main() must return void");
3372 }
Eric Anholt174cc032010-03-30 23:37:51 -10003373
Ian Romanick92318a92010-03-31 18:23:21 -07003374 if (!hir_parameters.is_empty()) {
Eric Anholt174cc032010-03-30 23:37:51 -10003375 YYLTYPE loc = this->get_location();
3376
3377 _mesa_glsl_error(& loc, state, "main() must not take any parameters");
3378 }
Eric Anholtab372da2010-03-28 01:24:55 -07003379 }
Ian Romanicka87ac252010-02-22 13:19:34 -08003380
3381 /* Finish storing the information about this new function in its signature.
3382 */
Ian Romanick92318a92010-03-31 18:23:21 -07003383 if (sig == NULL) {
Carl Worth1660a292010-06-23 18:11:51 -07003384 sig = new(ctx) ir_function_signature(return_type);
Ian Romanick92318a92010-03-31 18:23:21 -07003385 f->add_signature(sig);
Ian Romanicka87ac252010-02-22 13:19:34 -08003386 }
3387
Kenneth Graunkebff60132010-04-28 12:44:24 -07003388 sig->replace_parameters(&hir_parameters);
Ian Romanick92318a92010-03-31 18:23:21 -07003389 signature = sig;
Ian Romanicke29a5852010-03-31 17:54:26 -07003390
Ian Romanick92318a92010-03-31 18:23:21 -07003391 /* Function declarations (prototypes) do not have r-values.
3392 */
3393 return NULL;
3394}
3395
3396
3397ir_rvalue *
3398ast_function_definition::hir(exec_list *instructions,
3399 struct _mesa_glsl_parse_state *state)
3400{
3401 prototype->is_definition = true;
3402 prototype->hir(instructions, state);
3403
3404 ir_function_signature *signature = prototype->signature;
Kenneth Graunke826a39c2010-08-20 02:04:52 -07003405 if (signature == NULL)
3406 return NULL;
Ian Romanicka87ac252010-02-22 13:19:34 -08003407
Ian Romanick41ec6a42010-03-19 17:08:05 -07003408 assert(state->current_function == NULL);
3409 state->current_function = signature;
Kenneth Graunke6de82562010-06-29 09:59:40 -07003410 state->found_return = false;
Ian Romanick41ec6a42010-03-19 17:08:05 -07003411
Ian Romanicke29a5852010-03-31 17:54:26 -07003412 /* Duplicate parameters declared in the prototype as concrete variables.
3413 * Add these to the symbol table.
Ian Romanicka87ac252010-02-22 13:19:34 -08003414 */
Ian Romanick8bde4ce2010-03-19 11:57:24 -07003415 state->symbols->push_scope();
Ian Romanicke29a5852010-03-31 17:54:26 -07003416 foreach_iter(exec_list_iterator, iter, signature->parameters) {
Eric Anholtfbc7c0b2010-04-07 14:32:53 -07003417 ir_variable *const var = ((ir_instruction *) iter.get())->as_variable();
Ian Romanicka87ac252010-02-22 13:19:34 -08003418
Eric Anholtfbc7c0b2010-04-07 14:32:53 -07003419 assert(var != NULL);
Ian Romanicka87ac252010-02-22 13:19:34 -08003420
Ian Romanick3359e582010-03-19 15:38:52 -07003421 /* The only way a parameter would "exist" is if two parameters have
3422 * the same name.
3423 */
3424 if (state->symbols->name_declared_this_scope(var->name)) {
3425 YYLTYPE loc = this->get_location();
3426
3427 _mesa_glsl_error(& loc, state, "parameter `%s' redeclared", var->name);
3428 } else {
Eric Anholt001eee52010-11-05 06:11:24 -07003429 state->symbols->add_variable(var);
Ian Romanick3359e582010-03-19 15:38:52 -07003430 }
Ian Romanicka87ac252010-02-22 13:19:34 -08003431 }
3432
Kenneth Graunke9fa99f32010-04-21 12:30:22 -07003433 /* Convert the body of the function to HIR. */
Eric Anholt894ea972010-04-07 13:19:11 -07003434 this->body->hir(&signature->body, state);
Kenneth Graunke9fa99f32010-04-21 12:30:22 -07003435 signature->is_defined = true;
Ian Romanicka87ac252010-02-22 13:19:34 -08003436
Ian Romanick8bde4ce2010-03-19 11:57:24 -07003437 state->symbols->pop_scope();
Ian Romanicka87ac252010-02-22 13:19:34 -08003438
Ian Romanick41ec6a42010-03-19 17:08:05 -07003439 assert(state->current_function == signature);
3440 state->current_function = NULL;
Ian Romanicka87ac252010-02-22 13:19:34 -08003441
Kenneth Graunke6de82562010-06-29 09:59:40 -07003442 if (!signature->return_type->is_void() && !state->found_return) {
3443 YYLTYPE loc = this->get_location();
3444 _mesa_glsl_error(& loc, state, "function `%s' has non-void return type "
3445 "%s, but no return statement",
3446 signature->function_name(),
3447 signature->return_type->name);
3448 }
3449
Ian Romanicka87ac252010-02-22 13:19:34 -08003450 /* Function definitions do not have r-values.
3451 */
3452 return NULL;
3453}
Ian Romanick16a246c2010-03-19 16:45:19 -07003454
3455
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -07003456ir_rvalue *
Ian Romanick16a246c2010-03-19 16:45:19 -07003457ast_jump_statement::hir(exec_list *instructions,
3458 struct _mesa_glsl_parse_state *state)
3459{
Kenneth Graunke953ff122010-06-25 13:14:37 -07003460 void *ctx = state;
Ian Romanick16a246c2010-03-19 16:45:19 -07003461
Ian Romanickc0e76d82010-04-05 16:53:19 -07003462 switch (mode) {
3463 case ast_return: {
Ian Romanick16a246c2010-03-19 16:45:19 -07003464 ir_return *inst;
Eric Anholtaad7c772010-03-30 23:28:20 -10003465 assert(state->current_function);
Ian Romanick16a246c2010-03-19 16:45:19 -07003466
3467 if (opt_return_value) {
Chad Versaceb4cdba62010-11-17 10:28:01 -08003468 ir_rvalue *const ret = opt_return_value->hir(instructions, state);
Ian Romanick2db46fe2011-01-22 17:47:05 -08003469
3470 /* The value of the return type can be NULL if the shader says
3471 * 'return foo();' and foo() is a function that returns void.
3472 *
3473 * NOTE: The GLSL spec doesn't say that this is an error. The type
3474 * of the return value is void. If the return type of the function is
3475 * also void, then this should compile without error. Seriously.
3476 */
3477 const glsl_type *const ret_type =
3478 (ret == NULL) ? glsl_type::void_type : ret->type;
Ian Romanick16a246c2010-03-19 16:45:19 -07003479
Kenneth Graunke18707eb2010-06-28 23:38:04 -07003480 /* Implicit conversions are not allowed for return values. */
Ian Romanick2db46fe2011-01-22 17:47:05 -08003481 if (state->current_function->return_type != ret_type) {
Kenneth Graunke18707eb2010-06-28 23:38:04 -07003482 YYLTYPE loc = this->get_location();
3483
3484 _mesa_glsl_error(& loc, state,
3485 "`return' with wrong type %s, in function `%s' "
3486 "returning %s",
Ian Romanick2db46fe2011-01-22 17:47:05 -08003487 ret_type->name,
Kenneth Graunke18707eb2010-06-28 23:38:04 -07003488 state->current_function->function_name(),
3489 state->current_function->return_type->name);
3490 }
Ian Romanick16a246c2010-03-19 16:45:19 -07003491
Carl Worth1660a292010-06-23 18:11:51 -07003492 inst = new(ctx) ir_return(ret);
Ian Romanick16a246c2010-03-19 16:45:19 -07003493 } else {
Eric Anholtaad7c772010-03-30 23:28:20 -10003494 if (state->current_function->return_type->base_type !=
3495 GLSL_TYPE_VOID) {
3496 YYLTYPE loc = this->get_location();
3497
3498 _mesa_glsl_error(& loc, state,
3499 "`return' with no value, in function %s returning "
3500 "non-void",
Kenneth Graunkef96c52b2010-04-21 15:17:26 -07003501 state->current_function->function_name());
Eric Anholtaad7c772010-03-30 23:28:20 -10003502 }
Carl Worth1660a292010-06-23 18:11:51 -07003503 inst = new(ctx) ir_return;
Ian Romanick16a246c2010-03-19 16:45:19 -07003504 }
3505
Kenneth Graunke6de82562010-06-29 09:59:40 -07003506 state->found_return = true;
Ian Romanick16a246c2010-03-19 16:45:19 -07003507 instructions->push_tail(inst);
Ian Romanickc0e76d82010-04-05 16:53:19 -07003508 break;
Ian Romanick16a246c2010-03-19 16:45:19 -07003509 }
3510
Ian Romanickc0e76d82010-04-05 16:53:19 -07003511 case ast_discard:
Eric Anholtb9802072010-03-30 23:40:14 -10003512 if (state->target != fragment_shader) {
3513 YYLTYPE loc = this->get_location();
3514
3515 _mesa_glsl_error(& loc, state,
3516 "`discard' may only appear in a fragment shader");
3517 }
Kenneth Graunke77049a72010-06-30 14:11:00 -07003518 instructions->push_tail(new(ctx) ir_discard);
Ian Romanickc0e76d82010-04-05 16:53:19 -07003519 break;
3520
3521 case ast_break:
3522 case ast_continue:
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003523 if (mode == ast_continue &&
3524 state->loop_nesting_ast == NULL) {
Ian Romanick4cf20cd2010-04-05 17:13:47 -07003525 YYLTYPE loc = this->get_location();
3526
3527 _mesa_glsl_error(& loc, state,
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003528 "continue may only appear in a loop");
3529 } else if (mode == ast_break &&
3530 state->loop_nesting_ast == NULL &&
Eric Anholt22d81f12012-01-28 11:26:02 -08003531 state->switch_state.switch_nesting_ast == NULL) {
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003532 YYLTYPE loc = this->get_location();
Ian Romanick4cf20cd2010-04-05 17:13:47 -07003533
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003534 _mesa_glsl_error(& loc, state,
3535 "break may only appear in a loop or a switch");
3536 } else {
3537 /* For a loop, inline the for loop expression again,
3538 * since we don't know where near the end of
3539 * the loop body the normal copy of it
Eric Anholt2d1ed7b2010-07-22 12:55:16 -07003540 * is going to be placed.
3541 */
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003542 if (state->loop_nesting_ast != NULL &&
3543 mode == ast_continue &&
3544 state->loop_nesting_ast->rest_expression) {
3545 state->loop_nesting_ast->rest_expression->hir(instructions,
3546 state);
Eric Anholt2d1ed7b2010-07-22 12:55:16 -07003547 }
3548
Eric Anholt22d81f12012-01-28 11:26:02 -08003549 if (state->switch_state.is_switch_innermost &&
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003550 mode == ast_break) {
3551 /* Force break out of switch by setting is_break switch state.
3552 */
Eric Anholt22d81f12012-01-28 11:26:02 -08003553 ir_variable *const is_break_var = state->switch_state.is_break_var;
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003554 ir_dereference_variable *const deref_is_break_var =
3555 new(ctx) ir_dereference_variable(is_break_var);
3556 ir_constant *const true_val = new(ctx) ir_constant(true);
3557 ir_assignment *const set_break_var =
Eric Anholtaa5ec132012-05-14 09:14:54 -07003558 new(ctx) ir_assignment(deref_is_break_var, true_val);
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003559
3560 instructions->push_tail(set_break_var);
3561 }
3562 else {
3563 ir_loop_jump *const jump =
Carl Worth1660a292010-06-23 18:11:51 -07003564 new(ctx) ir_loop_jump((mode == ast_break)
3565 ? ir_loop_jump::jump_break
3566 : ir_loop_jump::jump_continue);
Ian Romanick4cf20cd2010-04-05 17:13:47 -07003567 instructions->push_tail(jump);
3568 }
3569 }
3570
Ian Romanickc0e76d82010-04-05 16:53:19 -07003571 break;
Eric Anholtb9802072010-03-30 23:40:14 -10003572 }
3573
Ian Romanick16a246c2010-03-19 16:45:19 -07003574 /* Jump instructions do not have r-values.
3575 */
3576 return NULL;
3577}
Ian Romanick3c6fea32010-03-29 14:11:25 -07003578
3579
3580ir_rvalue *
3581ast_selection_statement::hir(exec_list *instructions,
3582 struct _mesa_glsl_parse_state *state)
3583{
Kenneth Graunke953ff122010-06-25 13:14:37 -07003584 void *ctx = state;
Carl Worth1660a292010-06-23 18:11:51 -07003585
Ian Romanick3c6fea32010-03-29 14:11:25 -07003586 ir_rvalue *const condition = this->condition->hir(instructions, state);
Ian Romanick3c6fea32010-03-29 14:11:25 -07003587
3588 /* From page 66 (page 72 of the PDF) of the GLSL 1.50 spec:
3589 *
3590 * "Any expression whose type evaluates to a Boolean can be used as the
3591 * conditional expression bool-expression. Vector types are not accepted
3592 * as the expression to if."
3593 *
3594 * The checks are separated so that higher quality diagnostics can be
3595 * generated for cases where both rules are violated.
3596 */
3597 if (!condition->type->is_boolean() || !condition->type->is_scalar()) {
3598 YYLTYPE loc = this->condition->get_location();
3599
3600 _mesa_glsl_error(& loc, state, "if-statement condition must be scalar "
3601 "boolean");
3602 }
3603
Carl Worth1660a292010-06-23 18:11:51 -07003604 ir_if *const stmt = new(ctx) ir_if(condition);
Ian Romanick3c6fea32010-03-29 14:11:25 -07003605
Kenneth Graunke665d75c2010-08-18 13:54:50 -07003606 if (then_statement != NULL) {
3607 state->symbols->push_scope();
Ian Romanick4f9d72f2010-05-10 11:10:26 -07003608 then_statement->hir(& stmt->then_instructions, state);
Kenneth Graunke665d75c2010-08-18 13:54:50 -07003609 state->symbols->pop_scope();
3610 }
Ian Romanick3c6fea32010-03-29 14:11:25 -07003611
Kenneth Graunke665d75c2010-08-18 13:54:50 -07003612 if (else_statement != NULL) {
3613 state->symbols->push_scope();
Ian Romanick4f9d72f2010-05-10 11:10:26 -07003614 else_statement->hir(& stmt->else_instructions, state);
Kenneth Graunke665d75c2010-08-18 13:54:50 -07003615 state->symbols->pop_scope();
3616 }
Ian Romanick3c6fea32010-03-29 14:11:25 -07003617
3618 instructions->push_tail(stmt);
3619
3620 /* if-statements do not have r-values.
3621 */
3622 return NULL;
3623}
Ian Romanick9e7d0102010-04-05 16:37:49 -07003624
3625
Dan McCabe85beb392011-11-07 15:11:04 -08003626ir_rvalue *
3627ast_switch_statement::hir(exec_list *instructions,
3628 struct _mesa_glsl_parse_state *state)
3629{
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003630 void *ctx = state;
3631
3632 ir_rvalue *const test_expression =
3633 this->test_expression->hir(instructions, state);
3634
3635 /* From page 66 (page 55 of the PDF) of the GLSL 1.50 spec:
3636 *
3637 * "The type of init-expression in a switch statement must be a
3638 * scalar integer."
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003639 */
Eric Anholtbbbc7c72012-05-14 08:45:59 -07003640 if (!test_expression->type->is_scalar() ||
3641 !test_expression->type->is_integer()) {
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003642 YYLTYPE loc = this->test_expression->get_location();
3643
3644 _mesa_glsl_error(& loc,
3645 state,
3646 "switch-statement expression must be scalar "
3647 "integer");
3648 }
3649
3650 /* Track the switch-statement nesting in a stack-like manner.
3651 */
Eric Anholt22d81f12012-01-28 11:26:02 -08003652 struct glsl_switch_state saved = state->switch_state;
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003653
Eric Anholt22d81f12012-01-28 11:26:02 -08003654 state->switch_state.is_switch_innermost = true;
3655 state->switch_state.switch_nesting_ast = this;
Eric Anholt14063212012-01-30 08:50:14 -08003656 state->switch_state.labels_ht = hash_table_ctor(0, hash_table_pointer_hash,
3657 hash_table_pointer_compare);
Eric Anholt57e44372012-01-30 09:50:35 -08003658 state->switch_state.previous_default = NULL;
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003659
3660 /* Initalize is_fallthru state to false.
3661 */
3662 ir_rvalue *const is_fallthru_val = new (ctx) ir_constant(false);
Eric Anholt22d81f12012-01-28 11:26:02 -08003663 state->switch_state.is_fallthru_var =
3664 new(ctx) ir_variable(glsl_type::bool_type,
3665 "switch_is_fallthru_tmp",
3666 ir_var_temporary);
3667 instructions->push_tail(state->switch_state.is_fallthru_var);
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003668
3669 ir_dereference_variable *deref_is_fallthru_var =
Eric Anholt22d81f12012-01-28 11:26:02 -08003670 new(ctx) ir_dereference_variable(state->switch_state.is_fallthru_var);
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003671 instructions->push_tail(new(ctx) ir_assignment(deref_is_fallthru_var,
Eric Anholtaa5ec132012-05-14 09:14:54 -07003672 is_fallthru_val));
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003673
3674 /* Initalize is_break state to false.
3675 */
3676 ir_rvalue *const is_break_val = new (ctx) ir_constant(false);
Eric Anholt22d81f12012-01-28 11:26:02 -08003677 state->switch_state.is_break_var = new(ctx) ir_variable(glsl_type::bool_type,
3678 "switch_is_break_tmp",
3679 ir_var_temporary);
3680 instructions->push_tail(state->switch_state.is_break_var);
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003681
3682 ir_dereference_variable *deref_is_break_var =
Eric Anholt22d81f12012-01-28 11:26:02 -08003683 new(ctx) ir_dereference_variable(state->switch_state.is_break_var);
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003684 instructions->push_tail(new(ctx) ir_assignment(deref_is_break_var,
Eric Anholtaa5ec132012-05-14 09:14:54 -07003685 is_break_val));
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003686
3687 /* Cache test expression.
3688 */
3689 test_to_hir(instructions, state);
Eric Anholt5462f362012-05-14 08:37:50 -07003690
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003691 /* Emit code for body of switch stmt.
3692 */
3693 body->hir(instructions, state);
3694
Eric Anholt14063212012-01-30 08:50:14 -08003695 hash_table_dtor(state->switch_state.labels_ht);
3696
Eric Anholt22d81f12012-01-28 11:26:02 -08003697 state->switch_state = saved;
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003698
Eric Anholt5462f362012-05-14 08:37:50 -07003699 /* Switch statements do not have r-values. */
3700 return NULL;
3701}
Dan McCabe85beb392011-11-07 15:11:04 -08003702
3703
Eric Anholt5462f362012-05-14 08:37:50 -07003704void
3705ast_switch_statement::test_to_hir(exec_list *instructions,
3706 struct _mesa_glsl_parse_state *state)
3707{
3708 void *ctx = state;
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003709
Eric Anholt5462f362012-05-14 08:37:50 -07003710 /* Cache value of test expression. */
3711 ir_rvalue *const test_val =
3712 test_expression->hir(instructions,
3713 state);
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003714
Eric Anholt9c4e9ce2012-05-14 08:51:03 -07003715 state->switch_state.test_var = new(ctx) ir_variable(test_val->type,
Eric Anholt5462f362012-05-14 08:37:50 -07003716 "switch_test_tmp",
3717 ir_var_temporary);
3718 ir_dereference_variable *deref_test_var =
3719 new(ctx) ir_dereference_variable(state->switch_state.test_var);
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003720
Eric Anholt5462f362012-05-14 08:37:50 -07003721 instructions->push_tail(state->switch_state.test_var);
Eric Anholtaa5ec132012-05-14 09:14:54 -07003722 instructions->push_tail(new(ctx) ir_assignment(deref_test_var, test_val));
Eric Anholt5462f362012-05-14 08:37:50 -07003723}
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003724
3725
Eric Anholt5462f362012-05-14 08:37:50 -07003726ir_rvalue *
3727ast_switch_body::hir(exec_list *instructions,
3728 struct _mesa_glsl_parse_state *state)
3729{
3730 if (stmts != NULL)
3731 stmts->hir(instructions, state);
Eric Anholt22d81f12012-01-28 11:26:02 -08003732
Eric Anholt5462f362012-05-14 08:37:50 -07003733 /* Switch bodies do not have r-values. */
3734 return NULL;
3735}
3736
3737ir_rvalue *
3738ast_case_statement_list::hir(exec_list *instructions,
3739 struct _mesa_glsl_parse_state *state)
3740{
3741 foreach_list_typed (ast_case_statement, case_stmt, link, & this->cases)
3742 case_stmt->hir(instructions, state);
3743
3744 /* Case statements do not have r-values. */
3745 return NULL;
3746}
3747
3748ir_rvalue *
3749ast_case_statement::hir(exec_list *instructions,
3750 struct _mesa_glsl_parse_state *state)
3751{
3752 labels->hir(instructions, state);
3753
3754 /* Conditionally set fallthru state based on break state. */
3755 ir_constant *const false_val = new(state) ir_constant(false);
3756 ir_dereference_variable *const deref_is_fallthru_var =
3757 new(state) ir_dereference_variable(state->switch_state.is_fallthru_var);
3758 ir_dereference_variable *const deref_is_break_var =
3759 new(state) ir_dereference_variable(state->switch_state.is_break_var);
3760 ir_assignment *const reset_fallthru_on_break =
3761 new(state) ir_assignment(deref_is_fallthru_var,
3762 false_val,
3763 deref_is_break_var);
3764 instructions->push_tail(reset_fallthru_on_break);
3765
3766 /* Guard case statements depending on fallthru state. */
3767 ir_dereference_variable *const deref_fallthru_guard =
3768 new(state) ir_dereference_variable(state->switch_state.is_fallthru_var);
3769 ir_if *const test_fallthru = new(state) ir_if(deref_fallthru_guard);
3770
3771 foreach_list_typed (ast_node, stmt, link, & this->stmts)
3772 stmt->hir(& test_fallthru->then_instructions, state);
3773
3774 instructions->push_tail(test_fallthru);
3775
3776 /* Case statements do not have r-values. */
3777 return NULL;
3778}
Dan McCabe85beb392011-11-07 15:11:04 -08003779
3780
Eric Anholt5462f362012-05-14 08:37:50 -07003781ir_rvalue *
3782ast_case_label_list::hir(exec_list *instructions,
3783 struct _mesa_glsl_parse_state *state)
3784{
3785 foreach_list_typed (ast_case_label, label, link, & this->labels)
3786 label->hir(instructions, state);
Eric Anholt22d81f12012-01-28 11:26:02 -08003787
Eric Anholt5462f362012-05-14 08:37:50 -07003788 /* Case labels do not have r-values. */
3789 return NULL;
3790}
Dan McCabe85beb392011-11-07 15:11:04 -08003791
Eric Anholt5462f362012-05-14 08:37:50 -07003792ir_rvalue *
3793ast_case_label::hir(exec_list *instructions,
3794 struct _mesa_glsl_parse_state *state)
3795{
3796 void *ctx = state;
Dan McCabe85beb392011-11-07 15:11:04 -08003797
Eric Anholt5462f362012-05-14 08:37:50 -07003798 ir_dereference_variable *deref_fallthru_var =
3799 new(ctx) ir_dereference_variable(state->switch_state.is_fallthru_var);
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003800
Eric Anholt5462f362012-05-14 08:37:50 -07003801 ir_rvalue *const true_val = new(ctx) ir_constant(true);
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003802
Eric Anholt5462f362012-05-14 08:37:50 -07003803 /* If not default case, ... */
3804 if (this->test_value != NULL) {
3805 /* Conditionally set fallthru state based on
3806 * comparison of cached test expression value to case label.
3807 */
3808 ir_rvalue *const label_rval = this->test_value->hir(instructions, state);
3809 ir_constant *label_const = label_rval->constant_expression_value();
Eric Anholt22d81f12012-01-28 11:26:02 -08003810
Eric Anholt5462f362012-05-14 08:37:50 -07003811 if (!label_const) {
3812 YYLTYPE loc = this->test_value->get_location();
Eric Anholt22d81f12012-01-28 11:26:02 -08003813
Eric Anholt5462f362012-05-14 08:37:50 -07003814 _mesa_glsl_error(& loc, state,
3815 "switch statement case label must be a "
3816 "constant expression");
Eric Anholt22d81f12012-01-28 11:26:02 -08003817
Eric Anholt5462f362012-05-14 08:37:50 -07003818 /* Stuff a dummy value in to allow processing to continue. */
3819 label_const = new(ctx) ir_constant(0);
3820 } else {
3821 ast_expression *previous_label = (ast_expression *)
3822 hash_table_find(state->switch_state.labels_ht,
3823 (void *)(uintptr_t)label_const->value.u[0]);
Dan McCabe85beb392011-11-07 15:11:04 -08003824
Eric Anholt5462f362012-05-14 08:37:50 -07003825 if (previous_label) {
3826 YYLTYPE loc = this->test_value->get_location();
3827 _mesa_glsl_error(& loc, state,
3828 "duplicate case value");
Dan McCabe85beb392011-11-07 15:11:04 -08003829
Eric Anholt5462f362012-05-14 08:37:50 -07003830 loc = previous_label->get_location();
3831 _mesa_glsl_error(& loc, state,
3832 "this is the previous case label");
3833 } else {
3834 hash_table_insert(state->switch_state.labels_ht,
3835 this->test_value,
Eric Anholt14063212012-01-30 08:50:14 -08003836 (void *)(uintptr_t)label_const->value.u[0]);
Eric Anholt5462f362012-05-14 08:37:50 -07003837 }
3838 }
Eric Anholt14063212012-01-30 08:50:14 -08003839
Eric Anholt5462f362012-05-14 08:37:50 -07003840 ir_dereference_variable *deref_test_var =
3841 new(ctx) ir_dereference_variable(state->switch_state.test_var);
Eric Anholt14063212012-01-30 08:50:14 -08003842
Eric Anholt5462f362012-05-14 08:37:50 -07003843 ir_rvalue *const test_cond = new(ctx) ir_expression(ir_binop_all_equal,
Eric Anholt5462f362012-05-14 08:37:50 -07003844 label_const,
3845 deref_test_var);
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003846
Eric Anholt5462f362012-05-14 08:37:50 -07003847 ir_assignment *set_fallthru_on_test =
3848 new(ctx) ir_assignment(deref_fallthru_var,
3849 true_val,
3850 test_cond);
Dan McCabe5c02e2e2011-11-07 16:17:58 -08003851
Eric Anholt5462f362012-05-14 08:37:50 -07003852 instructions->push_tail(set_fallthru_on_test);
3853 } else { /* default case */
3854 if (state->switch_state.previous_default) {
Eric Anholt5462f362012-05-14 08:37:50 -07003855 YYLTYPE loc = this->get_location();
3856 _mesa_glsl_error(& loc, state,
3857 "multiple default labels in one switch");
Eric Anholt22d81f12012-01-28 11:26:02 -08003858
Eric Anholt5462f362012-05-14 08:37:50 -07003859 loc = state->switch_state.previous_default->get_location();
3860 _mesa_glsl_error(& loc, state,
3861 "this is the first default label");
3862 }
3863 state->switch_state.previous_default = this;
Eric Anholt57e44372012-01-30 09:50:35 -08003864
Eric Anholt5462f362012-05-14 08:37:50 -07003865 /* Set falltrhu state. */
3866 ir_assignment *set_fallthru =
Eric Anholtaa5ec132012-05-14 09:14:54 -07003867 new(ctx) ir_assignment(deref_fallthru_var, true_val);
Eric Anholt57e44372012-01-30 09:50:35 -08003868
Eric Anholt5462f362012-05-14 08:37:50 -07003869 instructions->push_tail(set_fallthru);
3870 }
Eric Anholt57e44372012-01-30 09:50:35 -08003871
Eric Anholt5462f362012-05-14 08:37:50 -07003872 /* Case statements do not have r-values. */
3873 return NULL;
3874}
Eric Anholt22d81f12012-01-28 11:26:02 -08003875
Eric Anholt5462f362012-05-14 08:37:50 -07003876void
3877ast_iteration_statement::condition_to_hir(ir_loop *stmt,
3878 struct _mesa_glsl_parse_state *state)
3879{
3880 void *ctx = state;
Eric Anholt22d81f12012-01-28 11:26:02 -08003881
Eric Anholt5462f362012-05-14 08:37:50 -07003882 if (condition != NULL) {
3883 ir_rvalue *const cond =
3884 condition->hir(& stmt->body_instructions, state);
3885
3886 if ((cond == NULL)
3887 || !cond->type->is_boolean() || !cond->type->is_scalar()) {
3888 YYLTYPE loc = condition->get_location();
3889
3890 _mesa_glsl_error(& loc, state,
3891 "loop condition must be scalar boolean");
3892 } else {
3893 /* As the first code in the loop body, generate a block that looks
3894 * like 'if (!condition) break;' as the loop termination condition.
3895 */
3896 ir_rvalue *const not_cond =
Eric Anholt5d6ea162012-05-14 08:39:54 -07003897 new(ctx) ir_expression(ir_unop_logic_not, cond);
Eric Anholt5462f362012-05-14 08:37:50 -07003898
3899 ir_if *const if_stmt = new(ctx) ir_if(not_cond);
3900
3901 ir_jump *const break_stmt =
3902 new(ctx) ir_loop_jump(ir_loop_jump::jump_break);
3903
3904 if_stmt->then_instructions.push_tail(break_stmt);
3905 stmt->body_instructions.push_tail(if_stmt);
3906 }
3907 }
3908}
Dan McCabe85beb392011-11-07 15:11:04 -08003909
3910
Eric Anholt5462f362012-05-14 08:37:50 -07003911ir_rvalue *
3912ast_iteration_statement::hir(exec_list *instructions,
3913 struct _mesa_glsl_parse_state *state)
3914{
3915 void *ctx = state;
Carl Worth1660a292010-06-23 18:11:51 -07003916
Eric Anholt5462f362012-05-14 08:37:50 -07003917 /* For-loops and while-loops start a new scope, but do-while loops do not.
3918 */
3919 if (mode != ast_do_while)
3920 state->symbols->push_scope();
Ian Romanick9e7d0102010-04-05 16:37:49 -07003921
Eric Anholt5462f362012-05-14 08:37:50 -07003922 if (init_statement != NULL)
3923 init_statement->hir(instructions, state);
Ian Romanick9e7d0102010-04-05 16:37:49 -07003924
Eric Anholt5462f362012-05-14 08:37:50 -07003925 ir_loop *const stmt = new(ctx) ir_loop();
3926 instructions->push_tail(stmt);
Ian Romanick9e7d0102010-04-05 16:37:49 -07003927
Eric Anholt5462f362012-05-14 08:37:50 -07003928 /* Track the current loop nesting. */
3929 ast_iteration_statement *nesting_ast = state->loop_nesting_ast;
Ian Romanick9e7d0102010-04-05 16:37:49 -07003930
Eric Anholt5462f362012-05-14 08:37:50 -07003931 state->loop_nesting_ast = this;
Ian Romanick9e7d0102010-04-05 16:37:49 -07003932
Eric Anholt5462f362012-05-14 08:37:50 -07003933 /* Likewise, indicate that following code is closest to a loop,
3934 * NOT closest to a switch.
3935 */
3936 bool saved_is_switch_innermost = state->switch_state.is_switch_innermost;
3937 state->switch_state.is_switch_innermost = false;
Ian Romanick8c46ed22010-04-05 18:07:27 -07003938
Eric Anholt5462f362012-05-14 08:37:50 -07003939 if (mode != ast_do_while)
3940 condition_to_hir(stmt, state);
Ian Romanick8c46ed22010-04-05 18:07:27 -07003941
Eric Anholt5462f362012-05-14 08:37:50 -07003942 if (body != NULL)
3943 body->hir(& stmt->body_instructions, state);
Carl Worth1660a292010-06-23 18:11:51 -07003944
Eric Anholt5462f362012-05-14 08:37:50 -07003945 if (rest_expression != NULL)
3946 rest_expression->hir(& stmt->body_instructions, state);
Ian Romanick8c46ed22010-04-05 18:07:27 -07003947
Eric Anholt5462f362012-05-14 08:37:50 -07003948 if (mode == ast_do_while)
3949 condition_to_hir(stmt, state);
Ian Romanick8c46ed22010-04-05 18:07:27 -07003950
Eric Anholt5462f362012-05-14 08:37:50 -07003951 if (mode != ast_do_while)
3952 state->symbols->pop_scope();
Ian Romanick8c46ed22010-04-05 18:07:27 -07003953
Eric Anholt5462f362012-05-14 08:37:50 -07003954 /* Restore previous nesting before returning. */
3955 state->loop_nesting_ast = nesting_ast;
3956 state->switch_state.is_switch_innermost = saved_is_switch_innermost;
Ian Romanicke9d0f262010-04-05 17:01:53 -07003957
Ian Romanick9e7d0102010-04-05 16:37:49 -07003958 /* Loops do not have r-values.
3959 */
3960 return NULL;
3961}
Ian Romanick3455ce62010-04-19 15:13:15 -07003962
3963
3964ir_rvalue *
3965ast_type_specifier::hir(exec_list *instructions,
3966 struct _mesa_glsl_parse_state *state)
3967{
Chad Versace08a286c2011-01-16 21:44:57 -08003968 if (!this->is_precision_statement && this->structure == NULL)
3969 return NULL;
3970
3971 YYLTYPE loc = this->get_location();
3972
3973 if (this->precision != ast_precision_none
Paul Berry0d9bba62012-08-05 09:57:01 -07003974 && !state->check_precision_qualifiers_allowed(&loc)) {
Chad Versace08a286c2011-01-16 21:44:57 -08003975 return NULL;
3976 }
3977 if (this->precision != ast_precision_none
3978 && this->structure != NULL) {
3979 _mesa_glsl_error(&loc, state,
3980 "precision qualifiers do not apply to structures");
3981 return NULL;
3982 }
3983
3984 /* If this is a precision statement, check that the type to which it is
3985 * applied is either float or int.
3986 *
3987 * From section 4.5.3 of the GLSL 1.30 spec:
3988 * "The precision statement
3989 * precision precision-qualifier type;
3990 * can be used to establish a default precision qualifier. The type
3991 * field can be either int or float [...]. Any other types or
3992 * qualifiers will result in an error.
3993 */
3994 if (this->is_precision_statement) {
3995 assert(this->precision != ast_precision_none);
3996 assert(this->structure == NULL); /* The check for structures was
3997 * performed above. */
3998 if (this->is_array) {
3999 _mesa_glsl_error(&loc, state,
4000 "default precision statements do not apply to "
4001 "arrays");
4002 return NULL;
4003 }
Eric Anholteb7a71d2012-03-29 23:17:32 -07004004 if (strcmp(this->type_name, "float") != 0 &&
4005 strcmp(this->type_name, "int") != 0) {
Chad Versace08a286c2011-01-16 21:44:57 -08004006 _mesa_glsl_error(&loc, state,
4007 "default precision statements apply only to types "
4008 "float and int");
4009 return NULL;
4010 }
4011
4012 /* FINISHME: Translate precision statements into IR. */
4013 return NULL;
4014 }
4015
Ian Romanick3455ce62010-04-19 15:13:15 -07004016 if (this->structure != NULL)
4017 return this->structure->hir(instructions, state);
Ian Romanick85ba37b2010-04-21 14:33:34 -07004018
4019 return NULL;
Ian Romanick3455ce62010-04-19 15:13:15 -07004020}
4021
4022
4023ir_rvalue *
4024ast_struct_specifier::hir(exec_list *instructions,
4025 struct _mesa_glsl_parse_state *state)
4026{
Ian Romanick3455ce62010-04-19 15:13:15 -07004027 unsigned decl_count = 0;
4028
4029 /* Make an initial pass over the list of structure fields to determine how
4030 * many there are. Each element in this list is an ast_declarator_list.
4031 * This means that we actually need to count the number of elements in the
4032 * 'declarations' list in each of the elements.
4033 */
Ian Romanick2b97dc62010-05-10 17:42:05 -07004034 foreach_list_typed (ast_declarator_list, decl_list, link,
4035 &this->declarations) {
Ian Romanick304ea902010-05-10 11:17:53 -07004036 foreach_list_const (decl_ptr, & decl_list->declarations) {
Ian Romanick3455ce62010-04-19 15:13:15 -07004037 decl_count++;
4038 }
4039 }
4040
Ian Romanick3455ce62010-04-19 15:13:15 -07004041 /* Allocate storage for the structure fields and process the field
4042 * declarations. As the declarations are processed, try to also convert
4043 * the types to HIR. This ensures that structure definitions embedded in
4044 * other structure definitions are processed.
4045 */
Kenneth Graunked3073f52011-01-21 14:32:31 -08004046 glsl_struct_field *const fields = ralloc_array(state, glsl_struct_field,
Eric Anholt21b0dbd2010-07-20 16:47:25 -07004047 decl_count);
Ian Romanick3455ce62010-04-19 15:13:15 -07004048
4049 unsigned i = 0;
Ian Romanick2b97dc62010-05-10 17:42:05 -07004050 foreach_list_typed (ast_declarator_list, decl_list, link,
4051 &this->declarations) {
Ian Romanick3455ce62010-04-19 15:13:15 -07004052 const char *type_name;
4053
4054 decl_list->type->specifier->hir(instructions, state);
4055
Kenneth Graunkec98deb12010-08-16 14:02:25 -07004056 /* Section 10.9 of the GLSL ES 1.00 specification states that
4057 * embedded structure definitions have been removed from the language.
4058 */
4059 if (state->es_shader && decl_list->type->specifier->structure != NULL) {
4060 YYLTYPE loc = this->get_location();
4061 _mesa_glsl_error(&loc, state, "Embedded structure definitions are "
4062 "not allowed in GLSL ES 1.00.");
4063 }
4064
Ian Romanick3455ce62010-04-19 15:13:15 -07004065 const glsl_type *decl_type =
4066 decl_list->type->specifier->glsl_type(& type_name, state);
4067
Ian Romanick2b97dc62010-05-10 17:42:05 -07004068 foreach_list_typed (ast_declaration, decl, link,
4069 &decl_list->declarations) {
Kenneth Graunked8e34e22010-08-07 02:56:01 -07004070 const struct glsl_type *field_type = decl_type;
4071 if (decl->is_array) {
4072 YYLTYPE loc = decl->get_location();
4073 field_type = process_array_type(&loc, decl_type, decl->array_size,
4074 state);
4075 }
Ian Romanick73986a72010-04-20 16:49:03 -07004076 fields[i].type = (field_type != NULL)
4077 ? field_type : glsl_type::error_type;
Ian Romanick3455ce62010-04-19 15:13:15 -07004078 fields[i].name = decl->identifier;
4079 i++;
4080 }
4081 }
4082
4083 assert(i == decl_count);
4084
Ian Romanick49e35772010-06-28 11:54:57 -07004085 const glsl_type *t =
Kenneth Graunkeca92ae22010-09-18 11:11:09 +02004086 glsl_type::get_record_instance(fields, decl_count, this->name);
Ian Romanick1d28b612010-04-20 16:48:24 -07004087
Ian Romanickab899272010-04-23 13:24:08 -07004088 YYLTYPE loc = this->get_location();
Ian Romanicka789ca62010-09-01 14:08:08 -07004089 if (!state->symbols->add_type(name, t)) {
Ian Romanickab899272010-04-23 13:24:08 -07004090 _mesa_glsl_error(& loc, state, "struct `%s' previously defined", name);
4091 } else {
Kenneth Graunkeeb639342011-02-27 01:17:29 -08004092 const glsl_type **s = reralloc(state, state->user_structures,
4093 const glsl_type *,
4094 state->num_user_structures + 1);
Ian Romanicka2c6df52010-04-28 13:14:53 -07004095 if (s != NULL) {
4096 s[state->num_user_structures] = t;
4097 state->user_structures = s;
4098 state->num_user_structures++;
4099 }
Ian Romanickab899272010-04-23 13:24:08 -07004100 }
Ian Romanick3455ce62010-04-19 15:13:15 -07004101
4102 /* Structure type definitions do not have r-values.
4103 */
4104 return NULL;
4105}
Eric Anholt4b2a4cb2012-03-29 17:29:20 -07004106
Eric Anholtb3c093c2012-04-26 18:21:43 -07004107static struct gl_uniform_block *
4108get_next_uniform_block(struct _mesa_glsl_parse_state *state)
4109{
4110 if (state->num_uniform_blocks >= state->uniform_block_array_size) {
4111 state->uniform_block_array_size *= 2;
4112 if (state->uniform_block_array_size <= 4)
4113 state->uniform_block_array_size = 4;
4114
4115 state->uniform_blocks = reralloc(state,
4116 state->uniform_blocks,
4117 struct gl_uniform_block,
4118 state->uniform_block_array_size);
4119 }
4120
4121 memset(&state->uniform_blocks[state->num_uniform_blocks],
4122 0, sizeof(*state->uniform_blocks));
4123 return &state->uniform_blocks[state->num_uniform_blocks++];
4124}
4125
Eric Anholt2d03f482012-04-18 13:35:56 -07004126ir_rvalue *
4127ast_uniform_block::hir(exec_list *instructions,
4128 struct _mesa_glsl_parse_state *state)
4129{
4130 /* The ast_uniform_block has a list of ast_declarator_lists. We
4131 * need to turn those into ir_variables with an association
4132 * with this uniform block.
4133 */
Eric Anholtb3c093c2012-04-26 18:21:43 -07004134 struct gl_uniform_block *ubo = get_next_uniform_block(state);
4135 ubo->Name = ralloc_strdup(state->uniform_blocks, this->block_name);
4136
Kenneth Graunke4f291692012-11-28 00:18:02 -08004137 if (!state->symbols->add_uniform_block(ubo)) {
4138 YYLTYPE loc = this->get_location();
4139 _mesa_glsl_error(&loc, state, "Uniform block name `%s' already taken in "
4140 "the current scope.\n", ubo->Name);
4141 }
4142
Eric Anholtb3c093c2012-04-26 18:21:43 -07004143 unsigned int num_variables = 0;
4144 foreach_list_typed(ast_declarator_list, decl_list, link, &declarations) {
4145 foreach_list_const(node, &decl_list->declarations) {
4146 num_variables++;
4147 }
4148 }
4149
4150 bool block_row_major = this->layout.flags.q.row_major;
4151
4152 ubo->Uniforms = rzalloc_array(state->uniform_blocks,
4153 struct gl_uniform_buffer_variable,
4154 num_variables);
4155
Eric Anholtf7561e82012-04-26 18:19:39 -07004156 foreach_list_typed(ast_declarator_list, decl_list, link, &declarations) {
4157 exec_list declared_variables;
4158
4159 decl_list->hir(&declared_variables, state);
4160
Eric Anholtb3c093c2012-04-26 18:21:43 -07004161 foreach_list_const(node, &declared_variables) {
Brian Paul78d3cfb2012-11-04 16:43:44 -07004162 ir_variable *var = (ir_variable *)node;
Eric Anholtb3c093c2012-04-26 18:21:43 -07004163
4164 struct gl_uniform_buffer_variable *ubo_var =
4165 &ubo->Uniforms[ubo->NumUniforms++];
4166
4167 var->uniform_block = ubo - state->uniform_blocks;
4168
4169 ubo_var->Name = ralloc_strdup(state->uniform_blocks, var->name);
4170 ubo_var->Type = var->type;
Eric Anholtb3c093c2012-04-26 18:21:43 -07004171 ubo_var->Offset = 0; /* Assigned at link time. */
Eric Anholt86e00452012-07-23 14:31:42 -07004172
4173 if (var->type->is_matrix() ||
4174 (var->type->is_array() && var->type->fields.array->is_matrix())) {
4175 ubo_var->RowMajor = block_row_major;
4176 if (decl_list->type->qualifier.flags.q.row_major)
4177 ubo_var->RowMajor = true;
4178 else if (decl_list->type->qualifier.flags.q.column_major)
4179 ubo_var->RowMajor = false;
4180 }
Eric Anholtb3c093c2012-04-26 18:21:43 -07004181
4182 /* From the GL_ARB_uniform_buffer_object spec:
4183 *
4184 * "Sampler types are not allowed inside of uniform
4185 * blocks. All other types, arrays, and structures
4186 * allowed for uniforms are allowed within a uniform
4187 * block."
4188 */
4189 if (var->type->contains_sampler()) {
4190 YYLTYPE loc = decl_list->get_location();
4191 _mesa_glsl_error(&loc, state,
4192 "Uniform in non-default uniform block contains sampler\n");
4193 }
4194 }
4195
Eric Anholtf7561e82012-04-26 18:19:39 -07004196 instructions->append_list(&declared_variables);
4197 }
4198
Eric Anholt2d03f482012-04-18 13:35:56 -07004199 return NULL;
4200}
4201
Eric Anholt4b2a4cb2012-03-29 17:29:20 -07004202static void
4203detect_conflicting_assignments(struct _mesa_glsl_parse_state *state,
4204 exec_list *instructions)
4205{
4206 bool gl_FragColor_assigned = false;
4207 bool gl_FragData_assigned = false;
4208 bool user_defined_fs_output_assigned = false;
4209 ir_variable *user_defined_fs_output = NULL;
4210
4211 /* It would be nice to have proper location information. */
4212 YYLTYPE loc;
4213 memset(&loc, 0, sizeof(loc));
4214
4215 foreach_list(node, instructions) {
4216 ir_variable *var = ((ir_instruction *)node)->as_variable();
4217
Eric Anholtb2ee5a02012-04-23 16:10:12 -07004218 if (!var || !var->assigned)
Eric Anholt4b2a4cb2012-03-29 17:29:20 -07004219 continue;
4220
4221 if (strcmp(var->name, "gl_FragColor") == 0)
Eric Anholtb2ee5a02012-04-23 16:10:12 -07004222 gl_FragColor_assigned = true;
Eric Anholt4b2a4cb2012-03-29 17:29:20 -07004223 else if (strcmp(var->name, "gl_FragData") == 0)
Eric Anholtb2ee5a02012-04-23 16:10:12 -07004224 gl_FragData_assigned = true;
Eric Anholt4b2a4cb2012-03-29 17:29:20 -07004225 else if (strncmp(var->name, "gl_", 3) != 0) {
4226 if (state->target == fragment_shader &&
Paul Berry42a29d82013-01-11 14:39:32 -08004227 var->mode == ir_var_shader_out) {
Eric Anholt4b2a4cb2012-03-29 17:29:20 -07004228 user_defined_fs_output_assigned = true;
4229 user_defined_fs_output = var;
4230 }
4231 }
4232 }
4233
4234 /* From the GLSL 1.30 spec:
4235 *
4236 * "If a shader statically assigns a value to gl_FragColor, it
4237 * may not assign a value to any element of gl_FragData. If a
4238 * shader statically writes a value to any element of
4239 * gl_FragData, it may not assign a value to
4240 * gl_FragColor. That is, a shader may assign values to either
4241 * gl_FragColor or gl_FragData, but not both. Multiple shaders
4242 * linked together must also consistently write just one of
4243 * these variables. Similarly, if user declared output
4244 * variables are in use (statically assigned to), then the
4245 * built-in variables gl_FragColor and gl_FragData may not be
4246 * assigned to. These incorrect usages all generate compile
4247 * time errors."
4248 */
4249 if (gl_FragColor_assigned && gl_FragData_assigned) {
4250 _mesa_glsl_error(&loc, state, "fragment shader writes to both "
4251 "`gl_FragColor' and `gl_FragData'\n");
4252 } else if (gl_FragColor_assigned && user_defined_fs_output_assigned) {
4253 _mesa_glsl_error(&loc, state, "fragment shader writes to both "
4254 "`gl_FragColor' and `%s'\n",
4255 user_defined_fs_output->name);
4256 } else if (gl_FragData_assigned && user_defined_fs_output_assigned) {
4257 _mesa_glsl_error(&loc, state, "fragment shader writes to both "
4258 "`gl_FragData' and `%s'\n",
4259 user_defined_fs_output->name);
4260 }
4261}