Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2010 Intel Corporation |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice (including the next |
| 12 | * paragraph) shall be included in all copies or substantial portions of the |
| 13 | * Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 21 | * DEALINGS IN THE SOFTWARE. |
| 22 | */ |
| 23 | |
| 24 | /** |
| 25 | * \file ast_to_hir.c |
| 26 | * Convert abstract syntax to to high-level intermediate reprensentation (HIR). |
| 27 | * |
| 28 | * During the conversion to HIR, the majority of the symantic checking is |
| 29 | * preformed on the program. This includes: |
| 30 | * |
| 31 | * * Symbol table management |
| 32 | * * Type checking |
| 33 | * * Function binding |
| 34 | * |
| 35 | * The majority of this work could be done during parsing, and the parser could |
| 36 | * probably generate HIR directly. However, this results in frequent changes |
| 37 | * to the parser code. Since we do not assume that every system this complier |
| 38 | * is built on will have Flex and Bison installed, we have to store the code |
| 39 | * generated by these tools in our version control system. In other parts of |
| 40 | * the system we've seen problems where a parser was changed but the generated |
| 41 | * code was not committed, merge conflicts where created because two developers |
| 42 | * had slightly different versions of Bison installed, etc. |
| 43 | * |
| 44 | * I have also noticed that running Bison generated parsers in GDB is very |
| 45 | * irritating. When you get a segfault on '$$ = $1->foo', you can't very |
| 46 | * well 'print $1' in GDB. |
| 47 | * |
| 48 | * As a result, my preference is to put as little C code as possible in the |
| 49 | * parser (and lexer) sources. |
| 50 | */ |
Eric Anholt | ac95f2f | 2010-06-22 10:38:52 -0700 | [diff] [blame] | 51 | |
Chia-I Wu | bfd7c9a | 2010-08-23 17:51:42 +0800 | [diff] [blame] | 52 | #include "main/core.h" /* for struct gl_extensions */ |
Ian Romanick | 8bde4ce | 2010-03-19 11:57:24 -0700 | [diff] [blame] | 53 | #include "glsl_symbol_table.h" |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 54 | #include "glsl_parser_extras.h" |
| 55 | #include "ast.h" |
| 56 | #include "glsl_types.h" |
| 57 | #include "ir.h" |
| 58 | |
Ian Romanick | d949a9a | 2010-03-10 09:55:22 -0800 | [diff] [blame] | 59 | void |
| 60 | _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state) |
| 61 | { |
Ian Romanick | adfb0cd | 2010-03-10 10:43:16 -0800 | [diff] [blame] | 62 | _mesa_glsl_initialize_variables(instructions, state); |
Kenneth Graunke | 8116835 | 2011-01-01 12:01:09 -0800 | [diff] [blame] | 63 | _mesa_glsl_initialize_functions(state); |
Ian Romanick | adfb0cd | 2010-03-10 10:43:16 -0800 | [diff] [blame] | 64 | |
Kenneth Graunke | 814c89a | 2010-09-05 00:31:28 -0700 | [diff] [blame] | 65 | state->symbols->language_version = state->language_version; |
| 66 | |
Ian Romanick | 41ec6a4 | 2010-03-19 17:08:05 -0700 | [diff] [blame] | 67 | state->current_function = NULL; |
| 68 | |
Kenneth Graunke | a044285 | 2010-08-23 14:52:06 -0700 | [diff] [blame] | 69 | /* Section 4.2 of the GLSL 1.20 specification states: |
| 70 | * "The built-in functions are scoped in a scope outside the global scope |
| 71 | * users declare global variables in. That is, a shader's global scope, |
| 72 | * available for user-defined functions and global variables, is nested |
| 73 | * inside the scope containing the built-in functions." |
| 74 | * |
| 75 | * Since built-in functions like ftransform() access built-in variables, |
| 76 | * it follows that those must be in the outer scope as well. |
| 77 | * |
| 78 | * We push scope here to create this nesting effect...but don't pop. |
| 79 | * This way, a shader's globals are still in the symbol table for use |
| 80 | * by the linker. |
| 81 | */ |
| 82 | state->symbols->push_scope(); |
| 83 | |
Ian Romanick | 2b97dc6 | 2010-05-10 17:42:05 -0700 | [diff] [blame] | 84 | foreach_list_typed (ast_node, ast, link, & state->translation_unit) |
Ian Romanick | 304ea90 | 2010-05-10 11:17:53 -0700 | [diff] [blame] | 85 | ast->hir(instructions, state); |
Ian Romanick | d949a9a | 2010-03-10 09:55:22 -0800 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | |
Ian Romanick | 0104536 | 2010-03-29 16:17:56 -0700 | [diff] [blame] | 89 | /** |
| 90 | * If a conversion is available, convert one operand to a different type |
| 91 | * |
| 92 | * The \c from \c ir_rvalue is converted "in place". |
| 93 | * |
| 94 | * \param to Type that the operand it to be converted to |
| 95 | * \param from Operand that is being converted |
| 96 | * \param state GLSL compiler state |
| 97 | * |
| 98 | * \return |
| 99 | * If a conversion is possible (or unnecessary), \c true is returned. |
| 100 | * Otherwise \c false is returned. |
| 101 | */ |
Kenneth Graunke | f32d3df | 2010-09-01 20:03:17 -0700 | [diff] [blame] | 102 | bool |
Ian Romanick | bfb09c2 | 2010-03-29 16:32:55 -0700 | [diff] [blame] | 103 | apply_implicit_conversion(const glsl_type *to, ir_rvalue * &from, |
Ian Romanick | 0104536 | 2010-03-29 16:17:56 -0700 | [diff] [blame] | 104 | struct _mesa_glsl_parse_state *state) |
| 105 | { |
Kenneth Graunke | 953ff12 | 2010-06-25 13:14:37 -0700 | [diff] [blame] | 106 | void *ctx = state; |
Ian Romanick | bfb09c2 | 2010-03-29 16:32:55 -0700 | [diff] [blame] | 107 | if (to->base_type == from->type->base_type) |
Ian Romanick | 0104536 | 2010-03-29 16:17:56 -0700 | [diff] [blame] | 108 | return true; |
| 109 | |
| 110 | /* This conversion was added in GLSL 1.20. If the compilation mode is |
| 111 | * GLSL 1.10, the conversion is skipped. |
| 112 | */ |
| 113 | if (state->language_version < 120) |
| 114 | return false; |
| 115 | |
| 116 | /* From page 27 (page 33 of the PDF) of the GLSL 1.50 spec: |
| 117 | * |
| 118 | * "There are no implicit array or structure conversions. For |
| 119 | * example, an array of int cannot be implicitly converted to an |
| 120 | * array of float. There are no implicit conversions between |
| 121 | * signed and unsigned integers." |
| 122 | */ |
| 123 | /* FINISHME: The above comment is partially a lie. There is int/uint |
| 124 | * FINISHME: conversion for immediate constants. |
| 125 | */ |
Ian Romanick | bfb09c2 | 2010-03-29 16:32:55 -0700 | [diff] [blame] | 126 | if (!to->is_float() || !from->type->is_numeric()) |
Ian Romanick | 0104536 | 2010-03-29 16:17:56 -0700 | [diff] [blame] | 127 | return false; |
| 128 | |
Kenneth Graunke | 506199b | 2010-06-29 15:59:27 -0700 | [diff] [blame] | 129 | /* Convert to a floating point type with the same number of components |
| 130 | * as the original type - i.e. int to float, not int to vec4. |
| 131 | */ |
| 132 | to = glsl_type::get_instance(GLSL_TYPE_FLOAT, from->type->vector_elements, |
| 133 | from->type->matrix_columns); |
| 134 | |
Ian Romanick | bfb09c2 | 2010-03-29 16:32:55 -0700 | [diff] [blame] | 135 | switch (from->type->base_type) { |
Ian Romanick | 0104536 | 2010-03-29 16:17:56 -0700 | [diff] [blame] | 136 | case GLSL_TYPE_INT: |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 137 | from = new(ctx) ir_expression(ir_unop_i2f, to, from, NULL); |
Ian Romanick | 0104536 | 2010-03-29 16:17:56 -0700 | [diff] [blame] | 138 | break; |
| 139 | case GLSL_TYPE_UINT: |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 140 | from = new(ctx) ir_expression(ir_unop_u2f, to, from, NULL); |
Ian Romanick | 0104536 | 2010-03-29 16:17:56 -0700 | [diff] [blame] | 141 | break; |
| 142 | case GLSL_TYPE_BOOL: |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 143 | from = new(ctx) ir_expression(ir_unop_b2f, to, from, NULL); |
Eric Anholt | dc58b3f | 2010-04-02 02:13:43 -1000 | [diff] [blame] | 144 | break; |
Ian Romanick | 0104536 | 2010-03-29 16:17:56 -0700 | [diff] [blame] | 145 | default: |
| 146 | assert(0); |
| 147 | } |
| 148 | |
| 149 | return true; |
| 150 | } |
| 151 | |
| 152 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 153 | static const struct glsl_type * |
Ian Romanick | bfb09c2 | 2010-03-29 16:32:55 -0700 | [diff] [blame] | 154 | arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 155 | bool multiply, |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 156 | struct _mesa_glsl_parse_state *state, YYLTYPE *loc) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 157 | { |
Eric Anholt | 336b4ad | 2010-05-19 10:38:37 -0700 | [diff] [blame] | 158 | const glsl_type *type_a = value_a->type; |
| 159 | const glsl_type *type_b = value_b->type; |
Ian Romanick | 0104536 | 2010-03-29 16:17:56 -0700 | [diff] [blame] | 160 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 161 | /* From GLSL 1.50 spec, page 56: |
| 162 | * |
| 163 | * "The arithmetic binary operators add (+), subtract (-), |
| 164 | * multiply (*), and divide (/) operate on integer and |
| 165 | * floating-point scalars, vectors, and matrices." |
| 166 | */ |
Ian Romanick | 60b54d9 | 2010-03-24 17:08:13 -0700 | [diff] [blame] | 167 | if (!type_a->is_numeric() || !type_b->is_numeric()) { |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 168 | _mesa_glsl_error(loc, state, |
| 169 | "Operands to arithmetic operators must be numeric"); |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 170 | return glsl_type::error_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | |
| 174 | /* "If one operand is floating-point based and the other is |
| 175 | * not, then the conversions from Section 4.1.10 "Implicit |
| 176 | * Conversions" are applied to the non-floating-point-based operand." |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 177 | */ |
Ian Romanick | 0104536 | 2010-03-29 16:17:56 -0700 | [diff] [blame] | 178 | if (!apply_implicit_conversion(type_a, value_b, state) |
| 179 | && !apply_implicit_conversion(type_b, value_a, state)) { |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 180 | _mesa_glsl_error(loc, state, |
| 181 | "Could not implicitly convert operands to " |
| 182 | "arithmetic operator"); |
Ian Romanick | 0104536 | 2010-03-29 16:17:56 -0700 | [diff] [blame] | 183 | return glsl_type::error_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 184 | } |
Eric Anholt | 336b4ad | 2010-05-19 10:38:37 -0700 | [diff] [blame] | 185 | type_a = value_a->type; |
| 186 | type_b = value_b->type; |
| 187 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 188 | /* "If the operands are integer types, they must both be signed or |
| 189 | * both be unsigned." |
| 190 | * |
| 191 | * From this rule and the preceeding conversion it can be inferred that |
| 192 | * both types must be GLSL_TYPE_FLOAT, or GLSL_TYPE_UINT, or GLSL_TYPE_INT. |
Ian Romanick | 60b54d9 | 2010-03-24 17:08:13 -0700 | [diff] [blame] | 193 | * The is_numeric check above already filtered out the case where either |
| 194 | * type is not one of these, so now the base types need only be tested for |
| 195 | * equality. |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 196 | */ |
| 197 | if (type_a->base_type != type_b->base_type) { |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 198 | _mesa_glsl_error(loc, state, |
| 199 | "base type mismatch for arithmetic operator"); |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 200 | return glsl_type::error_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | /* "All arithmetic binary operators result in the same fundamental type |
| 204 | * (signed integer, unsigned integer, or floating-point) as the |
| 205 | * operands they operate on, after operand type conversion. After |
| 206 | * conversion, the following cases are valid |
| 207 | * |
| 208 | * * The two operands are scalars. In this case the operation is |
| 209 | * applied, resulting in a scalar." |
| 210 | */ |
Ian Romanick | cb36f8a | 2010-03-09 15:51:22 -0800 | [diff] [blame] | 211 | if (type_a->is_scalar() && type_b->is_scalar()) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 212 | return type_a; |
| 213 | |
| 214 | /* "* One operand is a scalar, and the other is a vector or matrix. |
| 215 | * In this case, the scalar operation is applied independently to each |
| 216 | * component of the vector or matrix, resulting in the same size |
| 217 | * vector or matrix." |
| 218 | */ |
Ian Romanick | cb36f8a | 2010-03-09 15:51:22 -0800 | [diff] [blame] | 219 | if (type_a->is_scalar()) { |
| 220 | if (!type_b->is_scalar()) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 221 | return type_b; |
Ian Romanick | cb36f8a | 2010-03-09 15:51:22 -0800 | [diff] [blame] | 222 | } else if (type_b->is_scalar()) { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 223 | return type_a; |
| 224 | } |
| 225 | |
| 226 | /* All of the combinations of <scalar, scalar>, <vector, scalar>, |
| 227 | * <scalar, vector>, <scalar, matrix>, and <matrix, scalar> have been |
| 228 | * handled. |
| 229 | */ |
Ian Romanick | 60b54d9 | 2010-03-24 17:08:13 -0700 | [diff] [blame] | 230 | assert(!type_a->is_scalar()); |
| 231 | assert(!type_b->is_scalar()); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 232 | |
| 233 | /* "* The two operands are vectors of the same size. In this case, the |
| 234 | * operation is done component-wise resulting in the same size |
| 235 | * vector." |
| 236 | */ |
Ian Romanick | a2dd22f | 2010-03-09 15:55:16 -0800 | [diff] [blame] | 237 | if (type_a->is_vector() && type_b->is_vector()) { |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 238 | if (type_a == type_b) { |
| 239 | return type_a; |
| 240 | } else { |
| 241 | _mesa_glsl_error(loc, state, |
| 242 | "vector size mismatch for arithmetic operator"); |
| 243 | return glsl_type::error_type; |
| 244 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | /* All of the combinations of <scalar, scalar>, <vector, scalar>, |
| 248 | * <scalar, vector>, <scalar, matrix>, <matrix, scalar>, and |
| 249 | * <vector, vector> have been handled. At least one of the operands must |
| 250 | * be matrix. Further, since there are no integer matrix types, the base |
| 251 | * type of both operands must be float. |
| 252 | */ |
Ian Romanick | 60b54d9 | 2010-03-24 17:08:13 -0700 | [diff] [blame] | 253 | assert(type_a->is_matrix() || type_b->is_matrix()); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 254 | assert(type_a->base_type == GLSL_TYPE_FLOAT); |
| 255 | assert(type_b->base_type == GLSL_TYPE_FLOAT); |
| 256 | |
| 257 | /* "* The operator is add (+), subtract (-), or divide (/), and the |
| 258 | * operands are matrices with the same number of rows and the same |
| 259 | * number of columns. In this case, the operation is done component- |
| 260 | * wise resulting in the same size matrix." |
| 261 | * * The operator is multiply (*), where both operands are matrices or |
| 262 | * one operand is a vector and the other a matrix. A right vector |
| 263 | * operand is treated as a column vector and a left vector operand as a |
| 264 | * row vector. In all these cases, it is required that the number of |
| 265 | * columns of the left operand is equal to the number of rows of the |
| 266 | * right operand. Then, the multiply (*) operation does a linear |
| 267 | * algebraic multiply, yielding an object that has the same number of |
| 268 | * rows as the left operand and the same number of columns as the right |
| 269 | * operand. Section 5.10 "Vector and Matrix Operations" explains in |
| 270 | * more detail how vectors and matrices are operated on." |
| 271 | */ |
| 272 | if (! multiply) { |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 273 | if (type_a == type_b) |
| 274 | return type_a; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 275 | } else { |
Ian Romanick | fce1150 | 2010-03-09 15:58:52 -0800 | [diff] [blame] | 276 | if (type_a->is_matrix() && type_b->is_matrix()) { |
Ian Romanick | c1bd3a1 | 2010-03-25 13:06:58 -0700 | [diff] [blame] | 277 | /* Matrix multiply. The columns of A must match the rows of B. Given |
| 278 | * the other previously tested constraints, this means the vector type |
| 279 | * of a row from A must be the same as the vector type of a column from |
| 280 | * B. |
| 281 | */ |
| 282 | if (type_a->row_type() == type_b->column_type()) { |
| 283 | /* The resulting matrix has the number of columns of matrix B and |
| 284 | * the number of rows of matrix A. We get the row count of A by |
| 285 | * looking at the size of a vector that makes up a column. The |
| 286 | * transpose (size of a row) is done for B. |
| 287 | */ |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 288 | const glsl_type *const type = |
Ian Romanick | c1bd3a1 | 2010-03-25 13:06:58 -0700 | [diff] [blame] | 289 | glsl_type::get_instance(type_a->base_type, |
| 290 | type_a->column_type()->vector_elements, |
| 291 | type_b->row_type()->vector_elements); |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 292 | assert(type != glsl_type::error_type); |
| 293 | |
| 294 | return type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 295 | } |
Ian Romanick | fce1150 | 2010-03-09 15:58:52 -0800 | [diff] [blame] | 296 | } else if (type_a->is_matrix()) { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 297 | /* A is a matrix and B is a column vector. Columns of A must match |
Ian Romanick | c1bd3a1 | 2010-03-25 13:06:58 -0700 | [diff] [blame] | 298 | * rows of B. Given the other previously tested constraints, this |
| 299 | * means the vector type of a row from A must be the same as the |
| 300 | * vector the type of B. |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 301 | */ |
Carl Worth | 47c90b1 | 2010-07-22 14:56:14 -0700 | [diff] [blame] | 302 | if (type_a->row_type() == type_b) { |
| 303 | /* The resulting vector has a number of elements equal to |
| 304 | * the number of rows of matrix A. */ |
| 305 | const glsl_type *const type = |
| 306 | glsl_type::get_instance(type_a->base_type, |
| 307 | type_a->column_type()->vector_elements, |
| 308 | 1); |
| 309 | assert(type != glsl_type::error_type); |
| 310 | |
| 311 | return type; |
| 312 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 313 | } else { |
Ian Romanick | fce1150 | 2010-03-09 15:58:52 -0800 | [diff] [blame] | 314 | assert(type_b->is_matrix()); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 315 | |
Ian Romanick | c1bd3a1 | 2010-03-25 13:06:58 -0700 | [diff] [blame] | 316 | /* A is a row vector and B is a matrix. Columns of A must match rows |
| 317 | * of B. Given the other previously tested constraints, this means |
| 318 | * the type of A must be the same as the vector type of a column from |
| 319 | * B. |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 320 | */ |
Carl Worth | 47c90b1 | 2010-07-22 14:56:14 -0700 | [diff] [blame] | 321 | if (type_a == type_b->column_type()) { |
| 322 | /* The resulting vector has a number of elements equal to |
| 323 | * the number of columns of matrix B. */ |
| 324 | const glsl_type *const type = |
| 325 | glsl_type::get_instance(type_a->base_type, |
| 326 | type_b->row_type()->vector_elements, |
| 327 | 1); |
| 328 | assert(type != glsl_type::error_type); |
| 329 | |
| 330 | return type; |
| 331 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 332 | } |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 333 | |
| 334 | _mesa_glsl_error(loc, state, "size mismatch for matrix multiplication"); |
| 335 | return glsl_type::error_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | |
| 339 | /* "All other cases are illegal." |
| 340 | */ |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 341 | _mesa_glsl_error(loc, state, "type mismatch"); |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 342 | return glsl_type::error_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | |
| 346 | static const struct glsl_type * |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 347 | unary_arithmetic_result_type(const struct glsl_type *type, |
| 348 | struct _mesa_glsl_parse_state *state, YYLTYPE *loc) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 349 | { |
| 350 | /* From GLSL 1.50 spec, page 57: |
| 351 | * |
| 352 | * "The arithmetic unary operators negate (-), post- and pre-increment |
| 353 | * and decrement (-- and ++) operate on integer or floating-point |
| 354 | * values (including vectors and matrices). All unary operators work |
| 355 | * component-wise on their operands. These result with the same type |
| 356 | * they operated on." |
| 357 | */ |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 358 | if (!type->is_numeric()) { |
| 359 | _mesa_glsl_error(loc, state, |
| 360 | "Operands to arithmetic operators must be numeric"); |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 361 | return glsl_type::error_type; |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 362 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 363 | |
| 364 | return type; |
| 365 | } |
| 366 | |
Chad Versace | cfdbf8b | 2010-10-15 11:28:05 -0700 | [diff] [blame] | 367 | /** |
| 368 | * \brief Return the result type of a bit-logic operation. |
| 369 | * |
| 370 | * If the given types to the bit-logic operator are invalid, return |
| 371 | * glsl_type::error_type. |
| 372 | * |
| 373 | * \param type_a Type of LHS of bit-logic op |
| 374 | * \param type_b Type of RHS of bit-logic op |
| 375 | */ |
| 376 | static const struct glsl_type * |
| 377 | bit_logic_result_type(const struct glsl_type *type_a, |
| 378 | const struct glsl_type *type_b, |
| 379 | ast_operators op, |
| 380 | struct _mesa_glsl_parse_state *state, YYLTYPE *loc) |
| 381 | { |
| 382 | if (state->language_version < 130) { |
| 383 | _mesa_glsl_error(loc, state, "bit operations require GLSL 1.30"); |
| 384 | return glsl_type::error_type; |
| 385 | } |
| 386 | |
| 387 | /* From page 50 (page 56 of PDF) of GLSL 1.30 spec: |
| 388 | * |
| 389 | * "The bitwise operators and (&), exclusive-or (^), and inclusive-or |
| 390 | * (|). The operands must be of type signed or unsigned integers or |
| 391 | * integer vectors." |
| 392 | */ |
| 393 | if (!type_a->is_integer()) { |
| 394 | _mesa_glsl_error(loc, state, "LHS of `%s' must be an integer", |
| 395 | ast_expression::operator_string(op)); |
| 396 | return glsl_type::error_type; |
| 397 | } |
| 398 | if (!type_b->is_integer()) { |
| 399 | _mesa_glsl_error(loc, state, "RHS of `%s' must be an integer", |
| 400 | ast_expression::operator_string(op)); |
| 401 | return glsl_type::error_type; |
| 402 | } |
| 403 | |
| 404 | /* "The fundamental types of the operands (signed or unsigned) must |
| 405 | * match," |
| 406 | */ |
| 407 | if (type_a->base_type != type_b->base_type) { |
| 408 | _mesa_glsl_error(loc, state, "operands of `%s' must have the same " |
| 409 | "base type", ast_expression::operator_string(op)); |
| 410 | return glsl_type::error_type; |
| 411 | } |
| 412 | |
| 413 | /* "The operands cannot be vectors of differing size." */ |
| 414 | if (type_a->is_vector() && |
| 415 | type_b->is_vector() && |
| 416 | type_a->vector_elements != type_b->vector_elements) { |
| 417 | _mesa_glsl_error(loc, state, "operands of `%s' cannot be vectors of " |
| 418 | "different sizes", ast_expression::operator_string(op)); |
| 419 | return glsl_type::error_type; |
| 420 | } |
| 421 | |
| 422 | /* "If one operand is a scalar and the other a vector, the scalar is |
| 423 | * applied component-wise to the vector, resulting in the same type as |
| 424 | * the vector. The fundamental types of the operands [...] will be the |
| 425 | * resulting fundamental type." |
| 426 | */ |
| 427 | if (type_a->is_scalar()) |
| 428 | return type_b; |
| 429 | else |
| 430 | return type_a; |
| 431 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 432 | |
| 433 | static const struct glsl_type * |
| 434 | modulus_result_type(const struct glsl_type *type_a, |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 435 | const struct glsl_type *type_b, |
| 436 | struct _mesa_glsl_parse_state *state, YYLTYPE *loc) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 437 | { |
| 438 | /* From GLSL 1.50 spec, page 56: |
| 439 | * "The operator modulus (%) operates on signed or unsigned integers or |
| 440 | * integer vectors. The operand types must both be signed or both be |
| 441 | * unsigned." |
| 442 | */ |
Ian Romanick | 40176e2 | 2010-03-26 14:38:37 -0700 | [diff] [blame] | 443 | if (!type_a->is_integer() || !type_b->is_integer() |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 444 | || (type_a->base_type != type_b->base_type)) { |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 445 | _mesa_glsl_error(loc, state, "type mismatch"); |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 446 | return glsl_type::error_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | /* "The operands cannot be vectors of differing size. If one operand is |
| 450 | * a scalar and the other vector, then the scalar is applied component- |
| 451 | * wise to the vector, resulting in the same type as the vector. If both |
| 452 | * are vectors of the same size, the result is computed component-wise." |
| 453 | */ |
Ian Romanick | a2dd22f | 2010-03-09 15:55:16 -0800 | [diff] [blame] | 454 | if (type_a->is_vector()) { |
| 455 | if (!type_b->is_vector() |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 456 | || (type_a->vector_elements == type_b->vector_elements)) |
| 457 | return type_a; |
| 458 | } else |
| 459 | return type_b; |
| 460 | |
| 461 | /* "The operator modulus (%) is not defined for any other data types |
| 462 | * (non-integer types)." |
| 463 | */ |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 464 | _mesa_glsl_error(loc, state, "type mismatch"); |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 465 | return glsl_type::error_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | |
| 469 | static const struct glsl_type * |
Ian Romanick | bfb09c2 | 2010-03-29 16:32:55 -0700 | [diff] [blame] | 470 | relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 471 | struct _mesa_glsl_parse_state *state, YYLTYPE *loc) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 472 | { |
Eric Anholt | 336b4ad | 2010-05-19 10:38:37 -0700 | [diff] [blame] | 473 | const glsl_type *type_a = value_a->type; |
| 474 | const glsl_type *type_b = value_b->type; |
Ian Romanick | 0150f5f | 2010-03-29 16:20:07 -0700 | [diff] [blame] | 475 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 476 | /* From GLSL 1.50 spec, page 56: |
| 477 | * "The relational operators greater than (>), less than (<), greater |
| 478 | * than or equal (>=), and less than or equal (<=) operate only on |
| 479 | * scalar integer and scalar floating-point expressions." |
| 480 | */ |
Ian Romanick | a6d653d | 2010-03-26 14:40:37 -0700 | [diff] [blame] | 481 | if (!type_a->is_numeric() |
| 482 | || !type_b->is_numeric() |
Ian Romanick | cb36f8a | 2010-03-09 15:51:22 -0800 | [diff] [blame] | 483 | || !type_a->is_scalar() |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 484 | || !type_b->is_scalar()) { |
| 485 | _mesa_glsl_error(loc, state, |
| 486 | "Operands to relational operators must be scalar and " |
| 487 | "numeric"); |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 488 | return glsl_type::error_type; |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 489 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 490 | |
| 491 | /* "Either the operands' types must match, or the conversions from |
| 492 | * Section 4.1.10 "Implicit Conversions" will be applied to the integer |
| 493 | * operand, after which the types must match." |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 494 | */ |
Ian Romanick | 0150f5f | 2010-03-29 16:20:07 -0700 | [diff] [blame] | 495 | if (!apply_implicit_conversion(type_a, value_b, state) |
| 496 | && !apply_implicit_conversion(type_b, value_a, state)) { |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 497 | _mesa_glsl_error(loc, state, |
| 498 | "Could not implicitly convert operands to " |
| 499 | "relational operator"); |
Ian Romanick | 0150f5f | 2010-03-29 16:20:07 -0700 | [diff] [blame] | 500 | return glsl_type::error_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 501 | } |
Eric Anholt | 336b4ad | 2010-05-19 10:38:37 -0700 | [diff] [blame] | 502 | type_a = value_a->type; |
| 503 | type_b = value_b->type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 504 | |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 505 | if (type_a->base_type != type_b->base_type) { |
| 506 | _mesa_glsl_error(loc, state, "base type mismatch"); |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 507 | return glsl_type::error_type; |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 508 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 509 | |
| 510 | /* "The result is scalar Boolean." |
| 511 | */ |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 512 | return glsl_type::bool_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 513 | } |
| 514 | |
Chad Versace | c0197ab | 2010-10-15 09:49:46 -0700 | [diff] [blame] | 515 | /** |
| 516 | * \brief Return the result type of a bit-shift operation. |
| 517 | * |
| 518 | * If the given types to the bit-shift operator are invalid, return |
| 519 | * glsl_type::error_type. |
| 520 | * |
| 521 | * \param type_a Type of LHS of bit-shift op |
| 522 | * \param type_b Type of RHS of bit-shift op |
| 523 | */ |
| 524 | static const struct glsl_type * |
| 525 | shift_result_type(const struct glsl_type *type_a, |
| 526 | const struct glsl_type *type_b, |
| 527 | ast_operators op, |
| 528 | struct _mesa_glsl_parse_state *state, YYLTYPE *loc) |
| 529 | { |
| 530 | if (state->language_version < 130) { |
| 531 | _mesa_glsl_error(loc, state, "bit operations require GLSL 1.30"); |
| 532 | return glsl_type::error_type; |
| 533 | } |
| 534 | |
| 535 | /* From page 50 (page 56 of the PDF) of the GLSL 1.30 spec: |
| 536 | * |
| 537 | * "The shift operators (<<) and (>>). For both operators, the operands |
| 538 | * must be signed or unsigned integers or integer vectors. One operand |
| 539 | * can be signed while the other is unsigned." |
| 540 | */ |
| 541 | if (!type_a->is_integer()) { |
| 542 | _mesa_glsl_error(loc, state, "LHS of operator %s must be an integer or " |
| 543 | "integer vector", ast_expression::operator_string(op)); |
| 544 | return glsl_type::error_type; |
| 545 | |
| 546 | } |
| 547 | if (!type_b->is_integer()) { |
| 548 | _mesa_glsl_error(loc, state, "RHS of operator %s must be an integer or " |
| 549 | "integer vector", ast_expression::operator_string(op)); |
| 550 | return glsl_type::error_type; |
| 551 | } |
| 552 | |
| 553 | /* "If the first operand is a scalar, the second operand has to be |
| 554 | * a scalar as well." |
| 555 | */ |
| 556 | if (type_a->is_scalar() && !type_b->is_scalar()) { |
| 557 | _mesa_glsl_error(loc, state, "If the first operand of %s is scalar, the " |
| 558 | "second must be scalar as well", |
| 559 | ast_expression::operator_string(op)); |
| 560 | return glsl_type::error_type; |
| 561 | } |
| 562 | |
| 563 | /* If both operands are vectors, check that they have same number of |
| 564 | * elements. |
| 565 | */ |
| 566 | if (type_a->is_vector() && |
| 567 | type_b->is_vector() && |
| 568 | type_a->vector_elements != type_b->vector_elements) { |
| 569 | _mesa_glsl_error(loc, state, "Vector operands to operator %s must " |
| 570 | "have same number of elements", |
| 571 | ast_expression::operator_string(op)); |
| 572 | return glsl_type::error_type; |
| 573 | } |
| 574 | |
| 575 | /* "In all cases, the resulting type will be the same type as the left |
| 576 | * operand." |
| 577 | */ |
| 578 | return type_a; |
| 579 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 580 | |
Ian Romanick | 0bb1c3c | 2010-03-23 13:23:31 -0700 | [diff] [blame] | 581 | /** |
| 582 | * Validates that a value can be assigned to a location with a specified type |
| 583 | * |
| 584 | * Validates that \c rhs can be assigned to some location. If the types are |
| 585 | * not an exact match but an automatic conversion is possible, \c rhs will be |
| 586 | * converted. |
| 587 | * |
| 588 | * \return |
| 589 | * \c NULL if \c rhs cannot be assigned to a location with type \c lhs_type. |
| 590 | * Otherwise the actual RHS to be assigned will be returned. This may be |
| 591 | * \c rhs, or it may be \c rhs after some type conversion. |
| 592 | * |
| 593 | * \note |
| 594 | * In addition to being used for assignments, this function is used to |
| 595 | * type-check return values. |
| 596 | */ |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 597 | ir_rvalue * |
Eric Anholt | 336b4ad | 2010-05-19 10:38:37 -0700 | [diff] [blame] | 598 | validate_assignment(struct _mesa_glsl_parse_state *state, |
| 599 | const glsl_type *lhs_type, ir_rvalue *rhs) |
Ian Romanick | 0bb1c3c | 2010-03-23 13:23:31 -0700 | [diff] [blame] | 600 | { |
Ian Romanick | 0bb1c3c | 2010-03-23 13:23:31 -0700 | [diff] [blame] | 601 | /* If there is already some error in the RHS, just return it. Anything |
| 602 | * else will lead to an avalanche of error message back to the user. |
| 603 | */ |
Ian Romanick | ec53010 | 2010-12-10 15:47:11 -0800 | [diff] [blame] | 604 | if (rhs->type->is_error()) |
Ian Romanick | 0bb1c3c | 2010-03-23 13:23:31 -0700 | [diff] [blame] | 605 | return rhs; |
| 606 | |
Ian Romanick | 0bb1c3c | 2010-03-23 13:23:31 -0700 | [diff] [blame] | 607 | /* If the types are identical, the assignment can trivially proceed. |
| 608 | */ |
Ian Romanick | ec53010 | 2010-12-10 15:47:11 -0800 | [diff] [blame] | 609 | if (rhs->type == lhs_type) |
Ian Romanick | 0bb1c3c | 2010-03-23 13:23:31 -0700 | [diff] [blame] | 610 | return rhs; |
| 611 | |
Ian Romanick | 0157f41 | 2010-04-02 17:44:39 -0700 | [diff] [blame] | 612 | /* If the array element types are the same and the size of the LHS is zero, |
| 613 | * the assignment is okay. |
| 614 | * |
| 615 | * Note: Whole-array assignments are not permitted in GLSL 1.10, but this |
| 616 | * is handled by ir_dereference::is_lvalue. |
| 617 | */ |
| 618 | if (lhs_type->is_array() && rhs->type->is_array() |
| 619 | && (lhs_type->element_type() == rhs->type->element_type()) |
| 620 | && (lhs_type->array_size() == 0)) { |
| 621 | return rhs; |
| 622 | } |
| 623 | |
Eric Anholt | 336b4ad | 2010-05-19 10:38:37 -0700 | [diff] [blame] | 624 | /* Check for implicit conversion in GLSL 1.20 */ |
| 625 | if (apply_implicit_conversion(lhs_type, rhs, state)) { |
Ian Romanick | ec53010 | 2010-12-10 15:47:11 -0800 | [diff] [blame] | 626 | if (rhs->type == lhs_type) |
Eric Anholt | 336b4ad | 2010-05-19 10:38:37 -0700 | [diff] [blame] | 627 | return rhs; |
| 628 | } |
| 629 | |
Ian Romanick | 0bb1c3c | 2010-03-23 13:23:31 -0700 | [diff] [blame] | 630 | return NULL; |
| 631 | } |
| 632 | |
Eric Anholt | 10a6852 | 2010-03-26 11:53:37 -0700 | [diff] [blame] | 633 | ir_rvalue * |
| 634 | do_assignment(exec_list *instructions, struct _mesa_glsl_parse_state *state, |
| 635 | ir_rvalue *lhs, ir_rvalue *rhs, |
| 636 | YYLTYPE lhs_loc) |
| 637 | { |
Kenneth Graunke | 953ff12 | 2010-06-25 13:14:37 -0700 | [diff] [blame] | 638 | void *ctx = state; |
Eric Anholt | 10a6852 | 2010-03-26 11:53:37 -0700 | [diff] [blame] | 639 | bool error_emitted = (lhs->type->is_error() || rhs->type->is_error()); |
| 640 | |
| 641 | if (!error_emitted) { |
Eric Anholt | 10a6852 | 2010-03-26 11:53:37 -0700 | [diff] [blame] | 642 | if (!lhs->is_lvalue()) { |
| 643 | _mesa_glsl_error(& lhs_loc, state, "non-lvalue in assignment"); |
| 644 | error_emitted = true; |
| 645 | } |
Kenneth Graunke | 10eaa8b | 2010-09-07 02:59:38 -0700 | [diff] [blame] | 646 | |
| 647 | if (state->es_shader && lhs->type->is_array()) { |
| 648 | _mesa_glsl_error(&lhs_loc, state, "whole array assignment is not " |
| 649 | "allowed in GLSL ES 1.00."); |
| 650 | error_emitted = true; |
| 651 | } |
Eric Anholt | 10a6852 | 2010-03-26 11:53:37 -0700 | [diff] [blame] | 652 | } |
| 653 | |
Eric Anholt | 336b4ad | 2010-05-19 10:38:37 -0700 | [diff] [blame] | 654 | ir_rvalue *new_rhs = validate_assignment(state, lhs->type, rhs); |
Eric Anholt | 10a6852 | 2010-03-26 11:53:37 -0700 | [diff] [blame] | 655 | if (new_rhs == NULL) { |
| 656 | _mesa_glsl_error(& lhs_loc, state, "type mismatch"); |
| 657 | } else { |
| 658 | rhs = new_rhs; |
Ian Romanick | 0157f41 | 2010-04-02 17:44:39 -0700 | [diff] [blame] | 659 | |
| 660 | /* If the LHS array was not declared with a size, it takes it size from |
| 661 | * the RHS. If the LHS is an l-value and a whole array, it must be a |
| 662 | * dereference of a variable. Any other case would require that the LHS |
| 663 | * is either not an l-value or not a whole array. |
| 664 | */ |
| 665 | if (lhs->type->array_size() == 0) { |
| 666 | ir_dereference *const d = lhs->as_dereference(); |
| 667 | |
| 668 | assert(d != NULL); |
| 669 | |
Ian Romanick | 36ea286 | 2010-05-19 13:52:29 +0200 | [diff] [blame] | 670 | ir_variable *const var = d->variable_referenced(); |
Ian Romanick | 0157f41 | 2010-04-02 17:44:39 -0700 | [diff] [blame] | 671 | |
| 672 | assert(var != NULL); |
| 673 | |
Ian Romanick | 63f3942 | 2010-04-05 14:35:47 -0700 | [diff] [blame] | 674 | if (var->max_array_access >= unsigned(rhs->type->array_size())) { |
| 675 | /* FINISHME: This should actually log the location of the RHS. */ |
| 676 | _mesa_glsl_error(& lhs_loc, state, "array size must be > %u due to " |
| 677 | "previous access", |
| 678 | var->max_array_access); |
| 679 | } |
| 680 | |
Ian Romanick | f38d15b | 2010-07-20 15:33:40 -0700 | [diff] [blame] | 681 | var->type = glsl_type::get_array_instance(lhs->type->element_type(), |
Ian Romanick | 0157f41 | 2010-04-02 17:44:39 -0700 | [diff] [blame] | 682 | rhs->type->array_size()); |
Eric Anholt | 9703ed0 | 2010-07-22 15:50:37 -0700 | [diff] [blame] | 683 | d->type = var->type; |
Ian Romanick | 0157f41 | 2010-04-02 17:44:39 -0700 | [diff] [blame] | 684 | } |
Eric Anholt | 10a6852 | 2010-03-26 11:53:37 -0700 | [diff] [blame] | 685 | } |
| 686 | |
Eric Anholt | 2731a73 | 2010-06-23 14:51:14 -0700 | [diff] [blame] | 687 | /* Most callers of do_assignment (assign, add_assign, pre_inc/dec, |
| 688 | * but not post_inc) need the converted assigned value as an rvalue |
| 689 | * to handle things like: |
| 690 | * |
| 691 | * i = j += 1; |
| 692 | * |
| 693 | * So we always just store the computed value being assigned to a |
| 694 | * temporary and return a deref of that temporary. If the rvalue |
| 695 | * ends up not being used, the temp will get copy-propagated out. |
| 696 | */ |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 697 | ir_variable *var = new(ctx) ir_variable(rhs->type, "assignment_tmp", |
| 698 | ir_var_temporary); |
Eric Anholt | e33c103 | 2010-06-24 15:13:03 -0700 | [diff] [blame] | 699 | ir_dereference_variable *deref_var = new(ctx) ir_dereference_variable(var); |
Eric Anholt | ae80592 | 2010-06-24 09:06:12 -0700 | [diff] [blame] | 700 | instructions->push_tail(var); |
Eric Anholt | e33c103 | 2010-06-24 15:13:03 -0700 | [diff] [blame] | 701 | instructions->push_tail(new(ctx) ir_assignment(deref_var, |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 702 | rhs, |
| 703 | NULL)); |
Eric Anholt | e33c103 | 2010-06-24 15:13:03 -0700 | [diff] [blame] | 704 | deref_var = new(ctx) ir_dereference_variable(var); |
Eric Anholt | 10a6852 | 2010-03-26 11:53:37 -0700 | [diff] [blame] | 705 | |
Ian Romanick | 8e9ce2e | 2010-08-03 15:02:35 -0700 | [diff] [blame] | 706 | if (!error_emitted) |
| 707 | instructions->push_tail(new(ctx) ir_assignment(lhs, deref_var, NULL)); |
Eric Anholt | 2731a73 | 2010-06-23 14:51:14 -0700 | [diff] [blame] | 708 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 709 | return new(ctx) ir_dereference_variable(var); |
Eric Anholt | 10a6852 | 2010-03-26 11:53:37 -0700 | [diff] [blame] | 710 | } |
Ian Romanick | 0bb1c3c | 2010-03-23 13:23:31 -0700 | [diff] [blame] | 711 | |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 712 | static ir_rvalue * |
Eric Anholt | 959a9ec | 2010-06-23 14:43:50 -0700 | [diff] [blame] | 713 | get_lvalue_copy(exec_list *instructions, ir_rvalue *lvalue) |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 714 | { |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 715 | void *ctx = talloc_parent(lvalue); |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 716 | ir_variable *var; |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 717 | |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 718 | var = new(ctx) ir_variable(lvalue->type, "_post_incdec_tmp", |
| 719 | ir_var_temporary); |
Eric Anholt | 43b5b03 | 2010-07-07 14:04:30 -0700 | [diff] [blame] | 720 | instructions->push_tail(var); |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 721 | var->mode = ir_var_auto; |
| 722 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 723 | instructions->push_tail(new(ctx) ir_assignment(new(ctx) ir_dereference_variable(var), |
| 724 | lvalue, NULL)); |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 725 | |
| 726 | /* Once we've created this temporary, mark it read only so it's no |
| 727 | * longer considered an lvalue. |
| 728 | */ |
| 729 | var->read_only = true; |
| 730 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 731 | return new(ctx) ir_dereference_variable(var); |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 732 | } |
| 733 | |
| 734 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 735 | ir_rvalue * |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 736 | ast_node::hir(exec_list *instructions, |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 737 | struct _mesa_glsl_parse_state *state) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 738 | { |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 739 | (void) instructions; |
| 740 | (void) state; |
| 741 | |
| 742 | return NULL; |
| 743 | } |
| 744 | |
Eric Anholt | b4f5856 | 2010-12-01 15:55:53 -0800 | [diff] [blame] | 745 | static void |
| 746 | mark_whole_array_access(ir_rvalue *access) |
| 747 | { |
| 748 | ir_dereference_variable *deref = access->as_dereference_variable(); |
| 749 | |
| 750 | if (deref) { |
| 751 | deref->var->max_array_access = deref->type->length - 1; |
| 752 | } |
| 753 | } |
| 754 | |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 755 | static ir_rvalue * |
| 756 | do_comparison(void *mem_ctx, int operation, ir_rvalue *op0, ir_rvalue *op1) |
| 757 | { |
| 758 | int join_op; |
Ian Romanick | 6d36be5 | 2010-12-02 12:17:36 -0800 | [diff] [blame] | 759 | ir_rvalue *cmp = NULL; |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 760 | |
| 761 | if (operation == ir_binop_all_equal) |
| 762 | join_op = ir_binop_logic_and; |
| 763 | else |
| 764 | join_op = ir_binop_logic_or; |
| 765 | |
| 766 | switch (op0->type->base_type) { |
| 767 | case GLSL_TYPE_FLOAT: |
| 768 | case GLSL_TYPE_UINT: |
| 769 | case GLSL_TYPE_INT: |
| 770 | case GLSL_TYPE_BOOL: |
| 771 | return new(mem_ctx) ir_expression(operation, op0, op1); |
| 772 | |
| 773 | case GLSL_TYPE_ARRAY: { |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 774 | for (unsigned int i = 0; i < op0->type->length; i++) { |
| 775 | ir_rvalue *e0, *e1, *result; |
| 776 | |
| 777 | e0 = new(mem_ctx) ir_dereference_array(op0->clone(mem_ctx, NULL), |
| 778 | new(mem_ctx) ir_constant(i)); |
| 779 | e1 = new(mem_ctx) ir_dereference_array(op1->clone(mem_ctx, NULL), |
| 780 | new(mem_ctx) ir_constant(i)); |
| 781 | result = do_comparison(mem_ctx, operation, e0, e1); |
| 782 | |
Ian Romanick | 6d36be5 | 2010-12-02 12:17:36 -0800 | [diff] [blame] | 783 | if (cmp) { |
| 784 | cmp = new(mem_ctx) ir_expression(join_op, cmp, result); |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 785 | } else { |
Ian Romanick | 6d36be5 | 2010-12-02 12:17:36 -0800 | [diff] [blame] | 786 | cmp = result; |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 787 | } |
| 788 | } |
Eric Anholt | b4f5856 | 2010-12-01 15:55:53 -0800 | [diff] [blame] | 789 | |
| 790 | mark_whole_array_access(op0); |
| 791 | mark_whole_array_access(op1); |
Ian Romanick | 6d36be5 | 2010-12-02 12:17:36 -0800 | [diff] [blame] | 792 | break; |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 793 | } |
| 794 | |
| 795 | case GLSL_TYPE_STRUCT: { |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 796 | for (unsigned int i = 0; i < op0->type->length; i++) { |
| 797 | ir_rvalue *e0, *e1, *result; |
| 798 | const char *field_name = op0->type->fields.structure[i].name; |
| 799 | |
| 800 | e0 = new(mem_ctx) ir_dereference_record(op0->clone(mem_ctx, NULL), |
| 801 | field_name); |
| 802 | e1 = new(mem_ctx) ir_dereference_record(op1->clone(mem_ctx, NULL), |
| 803 | field_name); |
| 804 | result = do_comparison(mem_ctx, operation, e0, e1); |
| 805 | |
Ian Romanick | 6d36be5 | 2010-12-02 12:17:36 -0800 | [diff] [blame] | 806 | if (cmp) { |
| 807 | cmp = new(mem_ctx) ir_expression(join_op, cmp, result); |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 808 | } else { |
Ian Romanick | 6d36be5 | 2010-12-02 12:17:36 -0800 | [diff] [blame] | 809 | cmp = result; |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 810 | } |
| 811 | } |
Ian Romanick | 6d36be5 | 2010-12-02 12:17:36 -0800 | [diff] [blame] | 812 | break; |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 813 | } |
| 814 | |
| 815 | case GLSL_TYPE_ERROR: |
| 816 | case GLSL_TYPE_VOID: |
| 817 | case GLSL_TYPE_SAMPLER: |
| 818 | /* I assume a comparison of a struct containing a sampler just |
| 819 | * ignores the sampler present in the type. |
| 820 | */ |
Ian Romanick | 6d36be5 | 2010-12-02 12:17:36 -0800 | [diff] [blame] | 821 | break; |
| 822 | |
| 823 | default: |
| 824 | assert(!"Should not get here."); |
| 825 | break; |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 826 | } |
Eric Anholt | d56c974 | 2010-11-30 13:28:47 -0800 | [diff] [blame] | 827 | |
Ian Romanick | 6d36be5 | 2010-12-02 12:17:36 -0800 | [diff] [blame] | 828 | if (cmp == NULL) |
| 829 | cmp = new(mem_ctx) ir_constant(true); |
| 830 | |
| 831 | return cmp; |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 832 | } |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 833 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 834 | ir_rvalue * |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 835 | ast_expression::hir(exec_list *instructions, |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 836 | struct _mesa_glsl_parse_state *state) |
| 837 | { |
Kenneth Graunke | 953ff12 | 2010-06-25 13:14:37 -0700 | [diff] [blame] | 838 | void *ctx = state; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 839 | static const int operations[AST_NUM_OPERATORS] = { |
| 840 | -1, /* ast_assign doesn't convert to ir_expression. */ |
| 841 | -1, /* ast_plus doesn't convert to ir_expression. */ |
| 842 | ir_unop_neg, |
| 843 | ir_binop_add, |
| 844 | ir_binop_sub, |
| 845 | ir_binop_mul, |
| 846 | ir_binop_div, |
| 847 | ir_binop_mod, |
| 848 | ir_binop_lshift, |
| 849 | ir_binop_rshift, |
| 850 | ir_binop_less, |
| 851 | ir_binop_greater, |
| 852 | ir_binop_lequal, |
| 853 | ir_binop_gequal, |
Luca Barbieri | 4dfb899 | 2010-09-08 01:31:39 +0200 | [diff] [blame] | 854 | ir_binop_all_equal, |
| 855 | ir_binop_any_nequal, |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 856 | ir_binop_bit_and, |
| 857 | ir_binop_bit_xor, |
| 858 | ir_binop_bit_or, |
| 859 | ir_unop_bit_not, |
| 860 | ir_binop_logic_and, |
| 861 | ir_binop_logic_xor, |
| 862 | ir_binop_logic_or, |
| 863 | ir_unop_logic_not, |
| 864 | |
| 865 | /* Note: The following block of expression types actually convert |
| 866 | * to multiple IR instructions. |
| 867 | */ |
| 868 | ir_binop_mul, /* ast_mul_assign */ |
| 869 | ir_binop_div, /* ast_div_assign */ |
| 870 | ir_binop_mod, /* ast_mod_assign */ |
| 871 | ir_binop_add, /* ast_add_assign */ |
| 872 | ir_binop_sub, /* ast_sub_assign */ |
| 873 | ir_binop_lshift, /* ast_ls_assign */ |
| 874 | ir_binop_rshift, /* ast_rs_assign */ |
| 875 | ir_binop_bit_and, /* ast_and_assign */ |
| 876 | ir_binop_bit_xor, /* ast_xor_assign */ |
| 877 | ir_binop_bit_or, /* ast_or_assign */ |
| 878 | |
| 879 | -1, /* ast_conditional doesn't convert to ir_expression. */ |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 880 | ir_binop_add, /* ast_pre_inc. */ |
| 881 | ir_binop_sub, /* ast_pre_dec. */ |
| 882 | ir_binop_add, /* ast_post_inc. */ |
| 883 | ir_binop_sub, /* ast_post_dec. */ |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 884 | -1, /* ast_field_selection doesn't conv to ir_expression. */ |
| 885 | -1, /* ast_array_index doesn't convert to ir_expression. */ |
| 886 | -1, /* ast_function_call doesn't conv to ir_expression. */ |
| 887 | -1, /* ast_identifier doesn't convert to ir_expression. */ |
| 888 | -1, /* ast_int_constant doesn't convert to ir_expression. */ |
| 889 | -1, /* ast_uint_constant doesn't conv to ir_expression. */ |
| 890 | -1, /* ast_float_constant doesn't conv to ir_expression. */ |
| 891 | -1, /* ast_bool_constant doesn't conv to ir_expression. */ |
| 892 | -1, /* ast_sequence doesn't convert to ir_expression. */ |
| 893 | }; |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 894 | ir_rvalue *result = NULL; |
Aras Pranckevicius | 1c325af | 2010-07-29 15:35:22 +0300 | [diff] [blame] | 895 | ir_rvalue *op[3]; |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 896 | const struct glsl_type *type = glsl_type::error_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 897 | bool error_emitted = false; |
| 898 | YYLTYPE loc; |
| 899 | |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 900 | loc = this->get_location(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 901 | |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 902 | switch (this->oper) { |
Ian Romanick | 6652af3 | 2010-03-09 16:38:02 -0800 | [diff] [blame] | 903 | case ast_assign: { |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 904 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 905 | op[1] = this->subexpressions[1]->hir(instructions, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 906 | |
Eric Anholt | 10a6852 | 2010-03-26 11:53:37 -0700 | [diff] [blame] | 907 | result = do_assignment(instructions, state, op[0], op[1], |
| 908 | this->subexpressions[0]->get_location()); |
| 909 | error_emitted = result->type->is_error(); |
| 910 | type = result->type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 911 | break; |
Ian Romanick | 6652af3 | 2010-03-09 16:38:02 -0800 | [diff] [blame] | 912 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 913 | |
| 914 | case ast_plus: |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 915 | op[0] = this->subexpressions[0]->hir(instructions, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 916 | |
Carl Worth | c24bcad | 2010-07-21 11:23:51 -0700 | [diff] [blame] | 917 | type = unary_arithmetic_result_type(op[0]->type, state, & loc); |
| 918 | |
| 919 | error_emitted = type->is_error(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 920 | |
| 921 | result = op[0]; |
| 922 | break; |
| 923 | |
| 924 | case ast_neg: |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 925 | op[0] = this->subexpressions[0]->hir(instructions, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 926 | |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 927 | type = unary_arithmetic_result_type(op[0]->type, state, & loc); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 928 | |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 929 | error_emitted = type->is_error(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 930 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 931 | result = new(ctx) ir_expression(operations[this->oper], type, |
| 932 | op[0], NULL); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 933 | break; |
| 934 | |
| 935 | case ast_add: |
| 936 | case ast_sub: |
| 937 | case ast_mul: |
| 938 | case ast_div: |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 939 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 940 | op[1] = this->subexpressions[1]->hir(instructions, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 941 | |
Ian Romanick | bfb09c2 | 2010-03-29 16:32:55 -0700 | [diff] [blame] | 942 | type = arithmetic_result_type(op[0], op[1], |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 943 | (this->oper == ast_mul), |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 944 | state, & loc); |
| 945 | error_emitted = type->is_error(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 946 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 947 | result = new(ctx) ir_expression(operations[this->oper], type, |
| 948 | op[0], op[1]); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 949 | break; |
| 950 | |
| 951 | case ast_mod: |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 952 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 953 | op[1] = this->subexpressions[1]->hir(instructions, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 954 | |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 955 | type = modulus_result_type(op[0]->type, op[1]->type, state, & loc); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 956 | |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 957 | assert(operations[this->oper] == ir_binop_mod); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 958 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 959 | result = new(ctx) ir_expression(operations[this->oper], type, |
| 960 | op[0], op[1]); |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 961 | error_emitted = type->is_error(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 962 | break; |
| 963 | |
| 964 | case ast_lshift: |
| 965 | case ast_rshift: |
Chad Versace | 5c4c36f | 2010-10-08 16:22:28 -0700 | [diff] [blame] | 966 | if (state->language_version < 130) { |
| 967 | _mesa_glsl_error(&loc, state, "operator %s requires GLSL 1.30", |
| 968 | operator_string(this->oper)); |
| 969 | error_emitted = true; |
Chad Versace | 5c4c36f | 2010-10-08 16:22:28 -0700 | [diff] [blame] | 970 | } |
| 971 | |
Chad Versace | 5c4c36f | 2010-10-08 16:22:28 -0700 | [diff] [blame] | 972 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 973 | op[1] = this->subexpressions[1]->hir(instructions, state); |
Chad Versace | c0197ab | 2010-10-15 09:49:46 -0700 | [diff] [blame] | 974 | type = shift_result_type(op[0]->type, op[1]->type, this->oper, state, |
| 975 | &loc); |
Chad Versace | 5c4c36f | 2010-10-08 16:22:28 -0700 | [diff] [blame] | 976 | result = new(ctx) ir_expression(operations[this->oper], type, |
| 977 | op[0], op[1]); |
| 978 | error_emitted = op[0]->type->is_error() || op[1]->type->is_error(); |
| 979 | break; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 980 | |
| 981 | case ast_less: |
| 982 | case ast_greater: |
| 983 | case ast_lequal: |
| 984 | case ast_gequal: |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 985 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 986 | op[1] = this->subexpressions[1]->hir(instructions, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 987 | |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 988 | type = relational_result_type(op[0], op[1], state, & loc); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 989 | |
| 990 | /* The relational operators must either generate an error or result |
| 991 | * in a scalar boolean. See page 57 of the GLSL 1.50 spec. |
| 992 | */ |
Ian Romanick | a43817a | 2010-03-26 14:27:23 -0700 | [diff] [blame] | 993 | assert(type->is_error() |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 994 | || ((type->base_type == GLSL_TYPE_BOOL) |
Ian Romanick | cb36f8a | 2010-03-09 15:51:22 -0800 | [diff] [blame] | 995 | && type->is_scalar())); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 996 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 997 | result = new(ctx) ir_expression(operations[this->oper], type, |
| 998 | op[0], op[1]); |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 999 | error_emitted = type->is_error(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1000 | break; |
| 1001 | |
| 1002 | case ast_nequal: |
| 1003 | case ast_equal: |
Ian Romanick | 6e659ca | 2010-03-29 15:11:05 -0700 | [diff] [blame] | 1004 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1005 | op[1] = this->subexpressions[1]->hir(instructions, state); |
| 1006 | |
| 1007 | /* From page 58 (page 64 of the PDF) of the GLSL 1.50 spec: |
| 1008 | * |
| 1009 | * "The equality operators equal (==), and not equal (!=) |
| 1010 | * operate on all types. They result in a scalar Boolean. If |
| 1011 | * the operand types do not match, then there must be a |
| 1012 | * conversion from Section 4.1.10 "Implicit Conversions" |
| 1013 | * applied to one operand that can make them match, in which |
| 1014 | * case this conversion is done." |
| 1015 | */ |
Ian Romanick | bfb09c2 | 2010-03-29 16:32:55 -0700 | [diff] [blame] | 1016 | if ((!apply_implicit_conversion(op[0]->type, op[1], state) |
| 1017 | && !apply_implicit_conversion(op[1]->type, op[0], state)) |
Ian Romanick | 212b032 | 2010-03-29 16:22:38 -0700 | [diff] [blame] | 1018 | || (op[0]->type != op[1]->type)) { |
Ian Romanick | 6e659ca | 2010-03-29 15:11:05 -0700 | [diff] [blame] | 1019 | _mesa_glsl_error(& loc, state, "operands of `%s' must have the same " |
| 1020 | "type", (this->oper == ast_equal) ? "==" : "!="); |
| 1021 | error_emitted = true; |
Ian Romanick | a80cbd6 | 2010-03-30 17:04:48 -0700 | [diff] [blame] | 1022 | } else if ((state->language_version <= 110) |
| 1023 | && (op[0]->type->is_array() || op[1]->type->is_array())) { |
| 1024 | _mesa_glsl_error(& loc, state, "array comparisons forbidden in " |
| 1025 | "GLSL 1.10"); |
| 1026 | error_emitted = true; |
Ian Romanick | 6e659ca | 2010-03-29 15:11:05 -0700 | [diff] [blame] | 1027 | } |
| 1028 | |
Eric Anholt | ff79633 | 2010-11-30 11:23:28 -0800 | [diff] [blame] | 1029 | result = do_comparison(ctx, operations[this->oper], op[0], op[1]); |
Ian Romanick | 6e659ca | 2010-03-29 15:11:05 -0700 | [diff] [blame] | 1030 | type = glsl_type::bool_type; |
| 1031 | |
Ian Romanick | 6d36be5 | 2010-12-02 12:17:36 -0800 | [diff] [blame] | 1032 | assert(error_emitted || (result->type == glsl_type::bool_type)); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1033 | break; |
| 1034 | |
| 1035 | case ast_bit_and: |
| 1036 | case ast_bit_xor: |
| 1037 | case ast_bit_or: |
Kenneth Graunke | 1eea963 | 2010-08-31 10:56:24 -0700 | [diff] [blame] | 1038 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1039 | op[1] = this->subexpressions[1]->hir(instructions, state); |
Chad Versace | cfdbf8b | 2010-10-15 11:28:05 -0700 | [diff] [blame] | 1040 | type = bit_logic_result_type(op[0]->type, op[1]->type, this->oper, |
| 1041 | state, &loc); |
Kenneth Graunke | 1eea963 | 2010-08-31 10:56:24 -0700 | [diff] [blame] | 1042 | result = new(ctx) ir_expression(operations[this->oper], type, |
| 1043 | op[0], op[1]); |
| 1044 | error_emitted = op[0]->type->is_error() || op[1]->type->is_error(); |
| 1045 | break; |
| 1046 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1047 | case ast_bit_not: |
Kenneth Graunke | 1eea963 | 2010-08-31 10:56:24 -0700 | [diff] [blame] | 1048 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1049 | |
| 1050 | if (state->language_version < 130) { |
| 1051 | _mesa_glsl_error(&loc, state, "bit-wise operations require GLSL 1.30"); |
| 1052 | error_emitted = true; |
| 1053 | } |
| 1054 | |
| 1055 | if (!op[0]->type->is_integer()) { |
| 1056 | _mesa_glsl_error(&loc, state, "operand of `~' must be an integer"); |
| 1057 | error_emitted = true; |
| 1058 | } |
| 1059 | |
| 1060 | type = op[0]->type; |
| 1061 | result = new(ctx) ir_expression(ir_unop_bit_not, type, op[0], NULL); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1062 | break; |
| 1063 | |
Eric Anholt | 4950a68 | 2010-04-16 01:10:32 -0700 | [diff] [blame] | 1064 | case ast_logic_and: { |
Eric Anholt | b82c0c3 | 2010-03-31 09:11:39 -1000 | [diff] [blame] | 1065 | op[0] = this->subexpressions[0]->hir(instructions, state); |
Eric Anholt | b82c0c3 | 2010-03-31 09:11:39 -1000 | [diff] [blame] | 1066 | |
| 1067 | if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) { |
| 1068 | YYLTYPE loc = this->subexpressions[0]->get_location(); |
| 1069 | |
| 1070 | _mesa_glsl_error(& loc, state, "LHS of `%s' must be scalar boolean", |
| 1071 | operator_string(this->oper)); |
Eric Anholt | ebbf14b | 2010-03-31 17:05:32 -1000 | [diff] [blame] | 1072 | error_emitted = true; |
Eric Anholt | b82c0c3 | 2010-03-31 09:11:39 -1000 | [diff] [blame] | 1073 | } |
| 1074 | |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1075 | ir_constant *op0_const = op[0]->constant_expression_value(); |
| 1076 | if (op0_const) { |
| 1077 | if (op0_const->value.b[0]) { |
| 1078 | op[1] = this->subexpressions[1]->hir(instructions, state); |
Eric Anholt | 4950a68 | 2010-04-16 01:10:32 -0700 | [diff] [blame] | 1079 | |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1080 | if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) { |
| 1081 | YYLTYPE loc = this->subexpressions[1]->get_location(); |
Eric Anholt | 4950a68 | 2010-04-16 01:10:32 -0700 | [diff] [blame] | 1082 | |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1083 | _mesa_glsl_error(& loc, state, |
| 1084 | "RHS of `%s' must be scalar boolean", |
| 1085 | operator_string(this->oper)); |
| 1086 | error_emitted = true; |
| 1087 | } |
| 1088 | result = op[1]; |
| 1089 | } else { |
| 1090 | result = op0_const; |
| 1091 | } |
| 1092 | type = glsl_type::bool_type; |
| 1093 | } else { |
Ian Romanick | 81d664f | 2010-07-12 15:18:55 -0700 | [diff] [blame] | 1094 | ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type, |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 1095 | "and_tmp", |
| 1096 | ir_var_temporary); |
Ian Romanick | 81d664f | 2010-07-12 15:18:55 -0700 | [diff] [blame] | 1097 | instructions->push_tail(tmp); |
| 1098 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1099 | ir_if *const stmt = new(ctx) ir_if(op[0]); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1100 | instructions->push_tail(stmt); |
Eric Anholt | 4950a68 | 2010-04-16 01:10:32 -0700 | [diff] [blame] | 1101 | |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1102 | op[1] = this->subexpressions[1]->hir(&stmt->then_instructions, state); |
Eric Anholt | b82c0c3 | 2010-03-31 09:11:39 -1000 | [diff] [blame] | 1103 | |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1104 | if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) { |
| 1105 | YYLTYPE loc = this->subexpressions[1]->get_location(); |
| 1106 | |
| 1107 | _mesa_glsl_error(& loc, state, |
| 1108 | "RHS of `%s' must be scalar boolean", |
| 1109 | operator_string(this->oper)); |
| 1110 | error_emitted = true; |
| 1111 | } |
| 1112 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1113 | ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1114 | ir_assignment *const then_assign = |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1115 | new(ctx) ir_assignment(then_deref, op[1], NULL); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1116 | stmt->then_instructions.push_tail(then_assign); |
| 1117 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1118 | ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1119 | ir_assignment *const else_assign = |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1120 | new(ctx) ir_assignment(else_deref, new(ctx) ir_constant(false), NULL); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1121 | stmt->else_instructions.push_tail(else_assign); |
| 1122 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1123 | result = new(ctx) ir_dereference_variable(tmp); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1124 | type = tmp->type; |
Eric Anholt | b82c0c3 | 2010-03-31 09:11:39 -1000 | [diff] [blame] | 1125 | } |
Eric Anholt | 4950a68 | 2010-04-16 01:10:32 -0700 | [diff] [blame] | 1126 | break; |
| 1127 | } |
| 1128 | |
| 1129 | case ast_logic_or: { |
| 1130 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1131 | |
| 1132 | if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) { |
| 1133 | YYLTYPE loc = this->subexpressions[0]->get_location(); |
| 1134 | |
| 1135 | _mesa_glsl_error(& loc, state, "LHS of `%s' must be scalar boolean", |
| 1136 | operator_string(this->oper)); |
| 1137 | error_emitted = true; |
| 1138 | } |
| 1139 | |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1140 | ir_constant *op0_const = op[0]->constant_expression_value(); |
| 1141 | if (op0_const) { |
| 1142 | if (op0_const->value.b[0]) { |
| 1143 | result = op0_const; |
| 1144 | } else { |
| 1145 | op[1] = this->subexpressions[1]->hir(instructions, state); |
Eric Anholt | 4950a68 | 2010-04-16 01:10:32 -0700 | [diff] [blame] | 1146 | |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1147 | if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) { |
| 1148 | YYLTYPE loc = this->subexpressions[1]->get_location(); |
Eric Anholt | 4950a68 | 2010-04-16 01:10:32 -0700 | [diff] [blame] | 1149 | |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1150 | _mesa_glsl_error(& loc, state, |
| 1151 | "RHS of `%s' must be scalar boolean", |
| 1152 | operator_string(this->oper)); |
| 1153 | error_emitted = true; |
| 1154 | } |
| 1155 | result = op[1]; |
| 1156 | } |
| 1157 | type = glsl_type::bool_type; |
| 1158 | } else { |
Kenneth Graunke | dfd30ca | 2010-07-08 12:40:52 -0700 | [diff] [blame] | 1159 | ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type, |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 1160 | "or_tmp", |
| 1161 | ir_var_temporary); |
Ian Romanick | 0b9ae3b | 2010-07-12 14:22:05 -0700 | [diff] [blame] | 1162 | instructions->push_tail(tmp); |
Eric Anholt | 4950a68 | 2010-04-16 01:10:32 -0700 | [diff] [blame] | 1163 | |
Ian Romanick | 81d664f | 2010-07-12 15:18:55 -0700 | [diff] [blame] | 1164 | ir_if *const stmt = new(ctx) ir_if(op[0]); |
| 1165 | instructions->push_tail(stmt); |
| 1166 | |
Eric Anholt | a0879b9 | 2010-07-22 16:30:41 -0700 | [diff] [blame] | 1167 | op[1] = this->subexpressions[1]->hir(&stmt->else_instructions, state); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1168 | |
| 1169 | if (!op[1]->type->is_boolean() || !op[1]->type->is_scalar()) { |
| 1170 | YYLTYPE loc = this->subexpressions[1]->get_location(); |
| 1171 | |
| 1172 | _mesa_glsl_error(& loc, state, "RHS of `%s' must be scalar boolean", |
| 1173 | operator_string(this->oper)); |
| 1174 | error_emitted = true; |
| 1175 | } |
| 1176 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1177 | ir_dereference *const then_deref = new(ctx) ir_dereference_variable(tmp); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1178 | ir_assignment *const then_assign = |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1179 | new(ctx) ir_assignment(then_deref, new(ctx) ir_constant(true), NULL); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1180 | stmt->then_instructions.push_tail(then_assign); |
| 1181 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1182 | ir_dereference *const else_deref = new(ctx) ir_dereference_variable(tmp); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1183 | ir_assignment *const else_assign = |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1184 | new(ctx) ir_assignment(else_deref, op[1], NULL); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1185 | stmt->else_instructions.push_tail(else_assign); |
| 1186 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1187 | result = new(ctx) ir_dereference_variable(tmp); |
Eric Anholt | 44b694e | 2010-04-16 13:49:04 -0700 | [diff] [blame] | 1188 | type = tmp->type; |
Eric Anholt | 4950a68 | 2010-04-16 01:10:32 -0700 | [diff] [blame] | 1189 | } |
Eric Anholt | 4950a68 | 2010-04-16 01:10:32 -0700 | [diff] [blame] | 1190 | break; |
| 1191 | } |
| 1192 | |
| 1193 | case ast_logic_xor: |
| 1194 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1195 | op[1] = this->subexpressions[1]->hir(instructions, state); |
| 1196 | |
| 1197 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1198 | result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type, |
| 1199 | op[0], op[1]); |
Eric Anholt | ebbf14b | 2010-03-31 17:05:32 -1000 | [diff] [blame] | 1200 | type = glsl_type::bool_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1201 | break; |
| 1202 | |
Eric Anholt | a5827fe | 2010-03-31 16:50:55 -1000 | [diff] [blame] | 1203 | case ast_logic_not: |
| 1204 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1205 | |
| 1206 | if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) { |
| 1207 | YYLTYPE loc = this->subexpressions[0]->get_location(); |
| 1208 | |
| 1209 | _mesa_glsl_error(& loc, state, |
| 1210 | "operand of `!' must be scalar boolean"); |
Eric Anholt | ebbf14b | 2010-03-31 17:05:32 -1000 | [diff] [blame] | 1211 | error_emitted = true; |
Eric Anholt | a5827fe | 2010-03-31 16:50:55 -1000 | [diff] [blame] | 1212 | } |
| 1213 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1214 | result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type, |
| 1215 | op[0], NULL); |
Eric Anholt | ebbf14b | 2010-03-31 17:05:32 -1000 | [diff] [blame] | 1216 | type = glsl_type::bool_type; |
Eric Anholt | a5827fe | 2010-03-31 16:50:55 -1000 | [diff] [blame] | 1217 | break; |
| 1218 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1219 | case ast_mul_assign: |
| 1220 | case ast_div_assign: |
| 1221 | case ast_add_assign: |
| 1222 | case ast_sub_assign: { |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 1223 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1224 | op[1] = this->subexpressions[1]->hir(instructions, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1225 | |
Ian Romanick | bfb09c2 | 2010-03-29 16:32:55 -0700 | [diff] [blame] | 1226 | type = arithmetic_result_type(op[0], op[1], |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 1227 | (this->oper == ast_mul_assign), |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 1228 | state, & loc); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1229 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1230 | ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper], type, |
| 1231 | op[0], op[1]); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1232 | |
Eric Anholt | 3e24ef6 | 2010-06-23 12:40:17 -0700 | [diff] [blame] | 1233 | result = do_assignment(instructions, state, |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 1234 | op[0]->clone(ctx, NULL), temp_rhs, |
Eric Anholt | 10a6852 | 2010-03-26 11:53:37 -0700 | [diff] [blame] | 1235 | this->subexpressions[0]->get_location()); |
| 1236 | type = result->type; |
| 1237 | error_emitted = (op[0]->type->is_error()); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1238 | |
| 1239 | /* GLSL 1.10 does not allow array assignment. However, we don't have to |
| 1240 | * explicitly test for this because none of the binary expression |
| 1241 | * operators allow array operands either. |
| 1242 | */ |
| 1243 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1244 | break; |
| 1245 | } |
| 1246 | |
Eric Anholt | 48a0e64 | 2010-03-26 11:57:46 -0700 | [diff] [blame] | 1247 | case ast_mod_assign: { |
| 1248 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1249 | op[1] = this->subexpressions[1]->hir(instructions, state); |
| 1250 | |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 1251 | type = modulus_result_type(op[0]->type, op[1]->type, state, & loc); |
Eric Anholt | 48a0e64 | 2010-03-26 11:57:46 -0700 | [diff] [blame] | 1252 | |
| 1253 | assert(operations[this->oper] == ir_binop_mod); |
| 1254 | |
Ian Romanick | 768b55a | 2010-08-13 16:46:43 -0700 | [diff] [blame] | 1255 | ir_rvalue *temp_rhs; |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1256 | temp_rhs = new(ctx) ir_expression(operations[this->oper], type, |
| 1257 | op[0], op[1]); |
Eric Anholt | 48a0e64 | 2010-03-26 11:57:46 -0700 | [diff] [blame] | 1258 | |
Eric Anholt | 3e24ef6 | 2010-06-23 12:40:17 -0700 | [diff] [blame] | 1259 | result = do_assignment(instructions, state, |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 1260 | op[0]->clone(ctx, NULL), temp_rhs, |
Eric Anholt | 48a0e64 | 2010-03-26 11:57:46 -0700 | [diff] [blame] | 1261 | this->subexpressions[0]->get_location()); |
| 1262 | type = result->type; |
Eric Anholt | 65e1a7ac | 2010-03-31 16:45:20 -1000 | [diff] [blame] | 1263 | error_emitted = type->is_error(); |
Eric Anholt | 48a0e64 | 2010-03-26 11:57:46 -0700 | [diff] [blame] | 1264 | break; |
| 1265 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1266 | |
| 1267 | case ast_ls_assign: |
Chad Versace | 338ed6e | 2010-10-15 10:05:50 -0700 | [diff] [blame] | 1268 | case ast_rs_assign: { |
| 1269 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1270 | op[1] = this->subexpressions[1]->hir(instructions, state); |
| 1271 | type = shift_result_type(op[0]->type, op[1]->type, this->oper, state, |
| 1272 | &loc); |
| 1273 | ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper], |
| 1274 | type, op[0], op[1]); |
| 1275 | result = do_assignment(instructions, state, op[0]->clone(ctx, NULL), |
| 1276 | temp_rhs, |
| 1277 | this->subexpressions[0]->get_location()); |
| 1278 | error_emitted = op[0]->type->is_error() || op[1]->type->is_error(); |
Ian Romanick | 251eb75 | 2010-03-29 14:15:05 -0700 | [diff] [blame] | 1279 | break; |
Chad Versace | 338ed6e | 2010-10-15 10:05:50 -0700 | [diff] [blame] | 1280 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1281 | |
| 1282 | case ast_and_assign: |
| 1283 | case ast_xor_assign: |
Chad Versace | d03ac0f | 2010-10-15 12:08:28 -0700 | [diff] [blame] | 1284 | case ast_or_assign: { |
| 1285 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1286 | op[1] = this->subexpressions[1]->hir(instructions, state); |
| 1287 | type = bit_logic_result_type(op[0]->type, op[1]->type, this->oper, |
| 1288 | state, &loc); |
| 1289 | ir_rvalue *temp_rhs = new(ctx) ir_expression(operations[this->oper], |
| 1290 | type, op[0], op[1]); |
| 1291 | result = do_assignment(instructions, state, op[0]->clone(ctx, NULL), |
| 1292 | temp_rhs, |
| 1293 | this->subexpressions[0]->get_location()); |
| 1294 | error_emitted = op[0]->type->is_error() || op[1]->type->is_error(); |
Ian Romanick | 251eb75 | 2010-03-29 14:15:05 -0700 | [diff] [blame] | 1295 | break; |
Chad Versace | d03ac0f | 2010-10-15 12:08:28 -0700 | [diff] [blame] | 1296 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1297 | |
Ian Romanick | 96f9cea | 2010-03-29 15:33:54 -0700 | [diff] [blame] | 1298 | case ast_conditional: { |
| 1299 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1300 | |
| 1301 | /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec: |
| 1302 | * |
| 1303 | * "The ternary selection operator (?:). It operates on three |
| 1304 | * expressions (exp1 ? exp2 : exp3). This operator evaluates the |
| 1305 | * first expression, which must result in a scalar Boolean." |
| 1306 | */ |
| 1307 | if (!op[0]->type->is_boolean() || !op[0]->type->is_scalar()) { |
| 1308 | YYLTYPE loc = this->subexpressions[0]->get_location(); |
| 1309 | |
| 1310 | _mesa_glsl_error(& loc, state, "?: condition must be scalar boolean"); |
| 1311 | error_emitted = true; |
| 1312 | } |
| 1313 | |
| 1314 | /* The :? operator is implemented by generating an anonymous temporary |
| 1315 | * followed by an if-statement. The last instruction in each branch of |
| 1316 | * the if-statement assigns a value to the anonymous temporary. This |
| 1317 | * temporary is the r-value of the expression. |
| 1318 | */ |
Ian Romanick | 0ad76c6 | 2010-06-11 12:56:26 -0700 | [diff] [blame] | 1319 | exec_list then_instructions; |
| 1320 | exec_list else_instructions; |
Ian Romanick | 96f9cea | 2010-03-29 15:33:54 -0700 | [diff] [blame] | 1321 | |
Ian Romanick | 0ad76c6 | 2010-06-11 12:56:26 -0700 | [diff] [blame] | 1322 | op[1] = this->subexpressions[1]->hir(&then_instructions, state); |
| 1323 | op[2] = this->subexpressions[2]->hir(&else_instructions, state); |
Ian Romanick | 96f9cea | 2010-03-29 15:33:54 -0700 | [diff] [blame] | 1324 | |
| 1325 | /* From page 59 (page 65 of the PDF) of the GLSL 1.50 spec: |
| 1326 | * |
| 1327 | * "The second and third expressions can be any type, as |
| 1328 | * long their types match, or there is a conversion in |
| 1329 | * Section 4.1.10 "Implicit Conversions" that can be applied |
| 1330 | * to one of the expressions to make their types match. This |
| 1331 | * resulting matching type is the type of the entire |
| 1332 | * expression." |
| 1333 | */ |
Ian Romanick | bfb09c2 | 2010-03-29 16:32:55 -0700 | [diff] [blame] | 1334 | if ((!apply_implicit_conversion(op[1]->type, op[2], state) |
| 1335 | && !apply_implicit_conversion(op[2]->type, op[1], state)) |
Ian Romanick | db9be2e | 2010-03-29 16:25:56 -0700 | [diff] [blame] | 1336 | || (op[1]->type != op[2]->type)) { |
Ian Romanick | 96f9cea | 2010-03-29 15:33:54 -0700 | [diff] [blame] | 1337 | YYLTYPE loc = this->subexpressions[1]->get_location(); |
| 1338 | |
| 1339 | _mesa_glsl_error(& loc, state, "Second and third operands of ?: " |
| 1340 | "operator must have matching types."); |
| 1341 | error_emitted = true; |
Ian Romanick | 0ad76c6 | 2010-06-11 12:56:26 -0700 | [diff] [blame] | 1342 | type = glsl_type::error_type; |
Ian Romanick | db9be2e | 2010-03-29 16:25:56 -0700 | [diff] [blame] | 1343 | } else { |
Ian Romanick | 0ad76c6 | 2010-06-11 12:56:26 -0700 | [diff] [blame] | 1344 | type = op[1]->type; |
Ian Romanick | 96f9cea | 2010-03-29 15:33:54 -0700 | [diff] [blame] | 1345 | } |
| 1346 | |
Ian Romanick | f09fabc | 2010-09-07 14:30:06 -0700 | [diff] [blame] | 1347 | /* From page 33 (page 39 of the PDF) of the GLSL 1.10 spec: |
| 1348 | * |
| 1349 | * "The second and third expressions must be the same type, but can |
| 1350 | * be of any type other than an array." |
| 1351 | */ |
| 1352 | if ((state->language_version <= 110) && type->is_array()) { |
| 1353 | _mesa_glsl_error(& loc, state, "Second and third operands of ?: " |
| 1354 | "operator must not be arrays."); |
| 1355 | error_emitted = true; |
| 1356 | } |
| 1357 | |
Ian Romanick | 7825d3d | 2010-06-11 13:45:51 -0700 | [diff] [blame] | 1358 | ir_constant *cond_val = op[0]->constant_expression_value(); |
| 1359 | ir_constant *then_val = op[1]->constant_expression_value(); |
| 1360 | ir_constant *else_val = op[2]->constant_expression_value(); |
Ian Romanick | 0ad76c6 | 2010-06-11 12:56:26 -0700 | [diff] [blame] | 1361 | |
Ian Romanick | 7825d3d | 2010-06-11 13:45:51 -0700 | [diff] [blame] | 1362 | if (then_instructions.is_empty() |
| 1363 | && else_instructions.is_empty() |
| 1364 | && (cond_val != NULL) && (then_val != NULL) && (else_val != NULL)) { |
| 1365 | result = (cond_val->value.b[0]) ? then_val : else_val; |
| 1366 | } else { |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 1367 | ir_variable *const tmp = |
| 1368 | new(ctx) ir_variable(type, "conditional_tmp", ir_var_temporary); |
Ian Romanick | 0b9ae3b | 2010-07-12 14:22:05 -0700 | [diff] [blame] | 1369 | instructions->push_tail(tmp); |
Ian Romanick | 0ad76c6 | 2010-06-11 12:56:26 -0700 | [diff] [blame] | 1370 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1371 | ir_if *const stmt = new(ctx) ir_if(op[0]); |
Ian Romanick | 7825d3d | 2010-06-11 13:45:51 -0700 | [diff] [blame] | 1372 | instructions->push_tail(stmt); |
Ian Romanick | 0ad76c6 | 2010-06-11 12:56:26 -0700 | [diff] [blame] | 1373 | |
Ian Romanick | 7825d3d | 2010-06-11 13:45:51 -0700 | [diff] [blame] | 1374 | then_instructions.move_nodes_to(& stmt->then_instructions); |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1375 | ir_dereference *const then_deref = |
| 1376 | new(ctx) ir_dereference_variable(tmp); |
Ian Romanick | 7825d3d | 2010-06-11 13:45:51 -0700 | [diff] [blame] | 1377 | ir_assignment *const then_assign = |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1378 | new(ctx) ir_assignment(then_deref, op[1], NULL); |
Ian Romanick | 7825d3d | 2010-06-11 13:45:51 -0700 | [diff] [blame] | 1379 | stmt->then_instructions.push_tail(then_assign); |
Ian Romanick | 0ad76c6 | 2010-06-11 12:56:26 -0700 | [diff] [blame] | 1380 | |
Ian Romanick | 7825d3d | 2010-06-11 13:45:51 -0700 | [diff] [blame] | 1381 | else_instructions.move_nodes_to(& stmt->else_instructions); |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1382 | ir_dereference *const else_deref = |
| 1383 | new(ctx) ir_dereference_variable(tmp); |
Ian Romanick | 7825d3d | 2010-06-11 13:45:51 -0700 | [diff] [blame] | 1384 | ir_assignment *const else_assign = |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1385 | new(ctx) ir_assignment(else_deref, op[2], NULL); |
Ian Romanick | 7825d3d | 2010-06-11 13:45:51 -0700 | [diff] [blame] | 1386 | stmt->else_instructions.push_tail(else_assign); |
| 1387 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1388 | result = new(ctx) ir_dereference_variable(tmp); |
Ian Romanick | 7825d3d | 2010-06-11 13:45:51 -0700 | [diff] [blame] | 1389 | } |
Ian Romanick | 251eb75 | 2010-03-29 14:15:05 -0700 | [diff] [blame] | 1390 | break; |
Ian Romanick | 96f9cea | 2010-03-29 15:33:54 -0700 | [diff] [blame] | 1391 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1392 | |
| 1393 | case ast_pre_inc: |
Eric Anholt | 76ea56c | 2010-03-26 12:16:54 -0700 | [diff] [blame] | 1394 | case ast_pre_dec: { |
| 1395 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1396 | if (op[0]->type->base_type == GLSL_TYPE_FLOAT) |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1397 | op[1] = new(ctx) ir_constant(1.0f); |
Eric Anholt | 76ea56c | 2010-03-26 12:16:54 -0700 | [diff] [blame] | 1398 | else |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1399 | op[1] = new(ctx) ir_constant(1); |
Eric Anholt | 76ea56c | 2010-03-26 12:16:54 -0700 | [diff] [blame] | 1400 | |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 1401 | type = arithmetic_result_type(op[0], op[1], false, state, & loc); |
Eric Anholt | 76ea56c | 2010-03-26 12:16:54 -0700 | [diff] [blame] | 1402 | |
Ian Romanick | 768b55a | 2010-08-13 16:46:43 -0700 | [diff] [blame] | 1403 | ir_rvalue *temp_rhs; |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1404 | temp_rhs = new(ctx) ir_expression(operations[this->oper], type, |
| 1405 | op[0], op[1]); |
Eric Anholt | 76ea56c | 2010-03-26 12:16:54 -0700 | [diff] [blame] | 1406 | |
Eric Anholt | 3e24ef6 | 2010-06-23 12:40:17 -0700 | [diff] [blame] | 1407 | result = do_assignment(instructions, state, |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 1408 | op[0]->clone(ctx, NULL), temp_rhs, |
Eric Anholt | 76ea56c | 2010-03-26 12:16:54 -0700 | [diff] [blame] | 1409 | this->subexpressions[0]->get_location()); |
| 1410 | type = result->type; |
| 1411 | error_emitted = op[0]->type->is_error(); |
| 1412 | break; |
| 1413 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1414 | |
| 1415 | case ast_post_inc: |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 1416 | case ast_post_dec: { |
| 1417 | op[0] = this->subexpressions[0]->hir(instructions, state); |
| 1418 | if (op[0]->type->base_type == GLSL_TYPE_FLOAT) |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1419 | op[1] = new(ctx) ir_constant(1.0f); |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 1420 | else |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1421 | op[1] = new(ctx) ir_constant(1); |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 1422 | |
| 1423 | error_emitted = op[0]->type->is_error() || op[1]->type->is_error(); |
| 1424 | |
Eric Anholt | a13bb14 | 2010-03-31 16:38:11 -1000 | [diff] [blame] | 1425 | type = arithmetic_result_type(op[0], op[1], false, state, & loc); |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 1426 | |
Ian Romanick | 768b55a | 2010-08-13 16:46:43 -0700 | [diff] [blame] | 1427 | ir_rvalue *temp_rhs; |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1428 | temp_rhs = new(ctx) ir_expression(operations[this->oper], type, |
| 1429 | op[0], op[1]); |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 1430 | |
| 1431 | /* Get a temporary of a copy of the lvalue before it's modified. |
| 1432 | * This may get thrown away later. |
| 1433 | */ |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 1434 | result = get_lvalue_copy(instructions, op[0]->clone(ctx, NULL)); |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 1435 | |
Eric Anholt | 3e24ef6 | 2010-06-23 12:40:17 -0700 | [diff] [blame] | 1436 | (void)do_assignment(instructions, state, |
Eric Anholt | 8273bd4 | 2010-08-04 12:34:56 -0700 | [diff] [blame] | 1437 | op[0]->clone(ctx, NULL), temp_rhs, |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 1438 | this->subexpressions[0]->get_location()); |
| 1439 | |
| 1440 | type = result->type; |
| 1441 | error_emitted = op[0]->type->is_error(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1442 | break; |
Eric Anholt | de38f0e | 2010-03-26 12:14:54 -0700 | [diff] [blame] | 1443 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1444 | |
| 1445 | case ast_field_selection: |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 1446 | result = _mesa_ast_field_selection_to_hir(this, instructions, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1447 | type = result->type; |
| 1448 | break; |
| 1449 | |
Ian Romanick | 27e3cf8 | 2010-04-01 18:03:59 -0700 | [diff] [blame] | 1450 | case ast_array_index: { |
| 1451 | YYLTYPE index_loc = subexpressions[1]->get_location(); |
| 1452 | |
| 1453 | op[0] = subexpressions[0]->hir(instructions, state); |
| 1454 | op[1] = subexpressions[1]->hir(instructions, state); |
| 1455 | |
| 1456 | error_emitted = op[0]->type->is_error() || op[1]->type->is_error(); |
| 1457 | |
Ian Romanick | a9159f9 | 2010-05-26 15:08:11 -0700 | [diff] [blame] | 1458 | ir_rvalue *const array = op[0]; |
Ian Romanick | b8a21cc | 2010-04-01 18:31:11 -0700 | [diff] [blame] | 1459 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1460 | result = new(ctx) ir_dereference_array(op[0], op[1]); |
Ian Romanick | b8a21cc | 2010-04-01 18:31:11 -0700 | [diff] [blame] | 1461 | |
| 1462 | /* Do not use op[0] after this point. Use array. |
| 1463 | */ |
| 1464 | op[0] = NULL; |
| 1465 | |
Ian Romanick | 27e3cf8 | 2010-04-01 18:03:59 -0700 | [diff] [blame] | 1466 | |
| 1467 | if (error_emitted) |
| 1468 | break; |
| 1469 | |
Ian Romanick | 63038e1 | 2010-04-05 13:16:00 -0700 | [diff] [blame] | 1470 | if (!array->type->is_array() |
| 1471 | && !array->type->is_matrix() |
| 1472 | && !array->type->is_vector()) { |
Ian Romanick | 27e3cf8 | 2010-04-01 18:03:59 -0700 | [diff] [blame] | 1473 | _mesa_glsl_error(& index_loc, state, |
Ian Romanick | 63038e1 | 2010-04-05 13:16:00 -0700 | [diff] [blame] | 1474 | "cannot dereference non-array / non-matrix / " |
| 1475 | "non-vector"); |
Ian Romanick | 27e3cf8 | 2010-04-01 18:03:59 -0700 | [diff] [blame] | 1476 | error_emitted = true; |
| 1477 | } |
| 1478 | |
| 1479 | if (!op[1]->type->is_integer()) { |
| 1480 | _mesa_glsl_error(& index_loc, state, |
| 1481 | "array index must be integer type"); |
| 1482 | error_emitted = true; |
| 1483 | } else if (!op[1]->type->is_scalar()) { |
| 1484 | _mesa_glsl_error(& index_loc, state, |
| 1485 | "array index must be scalar"); |
| 1486 | error_emitted = true; |
| 1487 | } |
| 1488 | |
| 1489 | /* If the array index is a constant expression and the array has a |
| 1490 | * declared size, ensure that the access is in-bounds. If the array |
| 1491 | * index is not a constant expression, ensure that the array has a |
| 1492 | * declared size. |
| 1493 | */ |
| 1494 | ir_constant *const const_index = op[1]->constant_expression_value(); |
| 1495 | if (const_index != NULL) { |
| 1496 | const int idx = const_index->value.i[0]; |
Ian Romanick | 63038e1 | 2010-04-05 13:16:00 -0700 | [diff] [blame] | 1497 | const char *type_name; |
| 1498 | unsigned bound = 0; |
| 1499 | |
| 1500 | if (array->type->is_matrix()) { |
| 1501 | type_name = "matrix"; |
| 1502 | } else if (array->type->is_vector()) { |
| 1503 | type_name = "vector"; |
| 1504 | } else { |
| 1505 | type_name = "array"; |
| 1506 | } |
Ian Romanick | 27e3cf8 | 2010-04-01 18:03:59 -0700 | [diff] [blame] | 1507 | |
| 1508 | /* From page 24 (page 30 of the PDF) of the GLSL 1.50 spec: |
| 1509 | * |
| 1510 | * "It is illegal to declare an array with a size, and then |
| 1511 | * later (in the same shader) index the same array with an |
| 1512 | * integral constant expression greater than or equal to the |
| 1513 | * declared size. It is also illegal to index an array with a |
| 1514 | * negative constant expression." |
| 1515 | */ |
Ian Romanick | 63038e1 | 2010-04-05 13:16:00 -0700 | [diff] [blame] | 1516 | if (array->type->is_matrix()) { |
| 1517 | if (array->type->row_type()->vector_elements <= idx) { |
| 1518 | bound = array->type->row_type()->vector_elements; |
| 1519 | } |
| 1520 | } else if (array->type->is_vector()) { |
| 1521 | if (array->type->vector_elements <= idx) { |
| 1522 | bound = array->type->vector_elements; |
| 1523 | } |
| 1524 | } else { |
| 1525 | if ((array->type->array_size() > 0) |
| 1526 | && (array->type->array_size() <= idx)) { |
| 1527 | bound = array->type->array_size(); |
| 1528 | } |
| 1529 | } |
| 1530 | |
| 1531 | if (bound > 0) { |
| 1532 | _mesa_glsl_error(& loc, state, "%s index must be < %u", |
| 1533 | type_name, bound); |
| 1534 | error_emitted = true; |
| 1535 | } else if (idx < 0) { |
| 1536 | _mesa_glsl_error(& loc, state, "%s index must be >= 0", |
| 1537 | type_name); |
Ian Romanick | 27e3cf8 | 2010-04-01 18:03:59 -0700 | [diff] [blame] | 1538 | error_emitted = true; |
| 1539 | } |
| 1540 | |
Ian Romanick | 63038e1 | 2010-04-05 13:16:00 -0700 | [diff] [blame] | 1541 | if (array->type->is_array()) { |
Ian Romanick | a9159f9 | 2010-05-26 15:08:11 -0700 | [diff] [blame] | 1542 | /* If the array is a variable dereference, it dereferences the |
| 1543 | * whole array, by definition. Use this to get the variable. |
| 1544 | * |
| 1545 | * FINISHME: Should some methods for getting / setting / testing |
| 1546 | * FINISHME: array access limits be added to ir_dereference? |
| 1547 | */ |
| 1548 | ir_variable *const v = array->whole_variable_referenced(); |
Ian Romanick | 63038e1 | 2010-04-05 13:16:00 -0700 | [diff] [blame] | 1549 | if ((v != NULL) && (unsigned(idx) > v->max_array_access)) |
| 1550 | v->max_array_access = idx; |
Ian Romanick | 27e3cf8 | 2010-04-01 18:03:59 -0700 | [diff] [blame] | 1551 | } |
Kenneth Graunke | 2b7c42b | 2010-07-16 18:28:44 -0700 | [diff] [blame] | 1552 | } else if (array->type->array_size() == 0) { |
| 1553 | _mesa_glsl_error(&loc, state, "unsized array index must be constant"); |
Eric Anholt | a721abf | 2010-08-23 10:32:01 -0700 | [diff] [blame] | 1554 | } else { |
| 1555 | if (array->type->is_array()) { |
Aras Pranckevicius | 5226f8c | 2010-08-25 22:42:13 +0300 | [diff] [blame] | 1556 | /* whole_variable_referenced can return NULL if the array is a |
| 1557 | * member of a structure. In this case it is safe to not update |
| 1558 | * the max_array_access field because it is never used for fields |
| 1559 | * of structures. |
| 1560 | */ |
Eric Anholt | a721abf | 2010-08-23 10:32:01 -0700 | [diff] [blame] | 1561 | ir_variable *v = array->whole_variable_referenced(); |
Aras Pranckevicius | 5226f8c | 2010-08-25 22:42:13 +0300 | [diff] [blame] | 1562 | if (v != NULL) |
| 1563 | v->max_array_access = array->type->array_size(); |
Eric Anholt | a721abf | 2010-08-23 10:32:01 -0700 | [diff] [blame] | 1564 | } |
Ian Romanick | 27e3cf8 | 2010-04-01 18:03:59 -0700 | [diff] [blame] | 1565 | } |
| 1566 | |
Ian Romanick | e942f32 | 2011-01-04 16:09:00 -0800 | [diff] [blame] | 1567 | /* From page 23 (29 of the PDF) of the GLSL 1.30 spec: |
| 1568 | * |
Chad Versace | f0f2ec4 | 2010-12-07 10:35:36 -0800 | [diff] [blame] | 1569 | * "Samplers aggregated into arrays within a shader (using square |
| 1570 | * brackets [ ]) can only be indexed with integral constant |
| 1571 | * expressions [...]." |
Ian Romanick | e942f32 | 2011-01-04 16:09:00 -0800 | [diff] [blame] | 1572 | * |
| 1573 | * This restriction was added in GLSL 1.30. Shaders using earlier version |
| 1574 | * of the language should not be rejected by the compiler front-end for |
| 1575 | * using this construct. This allows useful things such as using a loop |
| 1576 | * counter as the index to an array of samplers. If the loop in unrolled, |
| 1577 | * the code should compile correctly. Instead, emit a warning. |
Chad Versace | f0f2ec4 | 2010-12-07 10:35:36 -0800 | [diff] [blame] | 1578 | */ |
| 1579 | if (array->type->is_array() && |
| 1580 | array->type->element_type()->is_sampler() && |
| 1581 | const_index == NULL) { |
| 1582 | |
Ian Romanick | e942f32 | 2011-01-04 16:09:00 -0800 | [diff] [blame] | 1583 | if (state->language_version == 100) { |
| 1584 | _mesa_glsl_warning(&loc, state, |
| 1585 | "sampler arrays indexed with non-constant " |
| 1586 | "expressions is optional in GLSL ES 1.00"); |
| 1587 | } else if (state->language_version < 130) { |
| 1588 | _mesa_glsl_warning(&loc, state, |
| 1589 | "sampler arrays indexed with non-constant " |
| 1590 | "expressions is forbidden in GLSL 1.30 and " |
| 1591 | "later"); |
| 1592 | } else { |
| 1593 | _mesa_glsl_error(&loc, state, |
| 1594 | "sampler arrays indexed with non-constant " |
| 1595 | "expressions is forbidden in GLSL 1.30 and " |
| 1596 | "later"); |
| 1597 | error_emitted = true; |
| 1598 | } |
Chad Versace | f0f2ec4 | 2010-12-07 10:35:36 -0800 | [diff] [blame] | 1599 | } |
| 1600 | |
Ian Romanick | 27e3cf8 | 2010-04-01 18:03:59 -0700 | [diff] [blame] | 1601 | if (error_emitted) |
| 1602 | result->type = glsl_type::error_type; |
| 1603 | |
| 1604 | type = result->type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1605 | break; |
Ian Romanick | 27e3cf8 | 2010-04-01 18:03:59 -0700 | [diff] [blame] | 1606 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1607 | |
| 1608 | case ast_function_call: |
Ian Romanick | 7cfddf1 | 2010-03-10 13:26:52 -0800 | [diff] [blame] | 1609 | /* Should *NEVER* get here. ast_function_call should always be handled |
| 1610 | * by ast_function_expression::hir. |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1611 | */ |
Ian Romanick | 7cfddf1 | 2010-03-10 13:26:52 -0800 | [diff] [blame] | 1612 | assert(0); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1613 | break; |
| 1614 | |
| 1615 | case ast_identifier: { |
| 1616 | /* ast_identifier can appear several places in a full abstract syntax |
| 1617 | * tree. This particular use must be at location specified in the grammar |
| 1618 | * as 'variable_identifier'. |
| 1619 | */ |
Ian Romanick | 8bde4ce | 2010-03-19 11:57:24 -0700 | [diff] [blame] | 1620 | ir_variable *var = |
| 1621 | state->symbols->get_variable(this->primary_expression.identifier); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1622 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1623 | result = new(ctx) ir_dereference_variable(var); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1624 | |
| 1625 | if (var != NULL) { |
Ian Romanick | bd33055 | 2011-01-07 18:34:58 -0800 | [diff] [blame] | 1626 | var->used = true; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1627 | type = result->type; |
| 1628 | } else { |
Ian Romanick | 71d0bbf | 2010-03-23 13:21:19 -0700 | [diff] [blame] | 1629 | _mesa_glsl_error(& loc, state, "`%s' undeclared", |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 1630 | this->primary_expression.identifier); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1631 | |
| 1632 | error_emitted = true; |
| 1633 | } |
| 1634 | break; |
| 1635 | } |
| 1636 | |
| 1637 | case ast_int_constant: |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 1638 | type = glsl_type::int_type; |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1639 | result = new(ctx) ir_constant(this->primary_expression.int_constant); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1640 | break; |
| 1641 | |
| 1642 | case ast_uint_constant: |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 1643 | type = glsl_type::uint_type; |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1644 | result = new(ctx) ir_constant(this->primary_expression.uint_constant); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1645 | break; |
| 1646 | |
| 1647 | case ast_float_constant: |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 1648 | type = glsl_type::float_type; |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1649 | result = new(ctx) ir_constant(this->primary_expression.float_constant); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1650 | break; |
| 1651 | |
| 1652 | case ast_bool_constant: |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 1653 | type = glsl_type::bool_type; |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 1654 | result = new(ctx) ir_constant(bool(this->primary_expression.bool_constant)); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1655 | break; |
| 1656 | |
| 1657 | case ast_sequence: { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1658 | /* It should not be possible to generate a sequence in the AST without |
| 1659 | * any expressions in it. |
| 1660 | */ |
Ian Romanick | 304ea90 | 2010-05-10 11:17:53 -0700 | [diff] [blame] | 1661 | assert(!this->expressions.is_empty()); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1662 | |
| 1663 | /* The r-value of a sequence is the last expression in the sequence. If |
| 1664 | * the other expressions in the sequence do not have side-effects (and |
| 1665 | * therefore add instructions to the instruction list), they get dropped |
| 1666 | * on the floor. |
| 1667 | */ |
Ian Romanick | 2b97dc6 | 2010-05-10 17:42:05 -0700 | [diff] [blame] | 1668 | foreach_list_typed (ast_node, ast, link, &this->expressions) |
Ian Romanick | 304ea90 | 2010-05-10 11:17:53 -0700 | [diff] [blame] | 1669 | result = ast->hir(instructions, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1670 | |
| 1671 | type = result->type; |
| 1672 | |
| 1673 | /* Any errors should have already been emitted in the loop above. |
| 1674 | */ |
| 1675 | error_emitted = true; |
| 1676 | break; |
| 1677 | } |
| 1678 | } |
| 1679 | |
Ian Romanick | cef3bae | 2010-03-26 14:41:32 -0700 | [diff] [blame] | 1680 | if (type->is_error() && !error_emitted) |
Ian Romanick | 71d0bbf | 2010-03-23 13:21:19 -0700 | [diff] [blame] | 1681 | _mesa_glsl_error(& loc, state, "type mismatch"); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1682 | |
| 1683 | return result; |
| 1684 | } |
| 1685 | |
| 1686 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 1687 | ir_rvalue * |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 1688 | ast_expression_statement::hir(exec_list *instructions, |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 1689 | struct _mesa_glsl_parse_state *state) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1690 | { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1691 | /* It is possible to have expression statements that don't have an |
| 1692 | * expression. This is the solitary semicolon: |
| 1693 | * |
| 1694 | * for (i = 0; i < 5; i++) |
| 1695 | * ; |
| 1696 | * |
| 1697 | * In this case the expression will be NULL. Test for NULL and don't do |
| 1698 | * anything in that case. |
| 1699 | */ |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 1700 | if (expression != NULL) |
| 1701 | expression->hir(instructions, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1702 | |
| 1703 | /* Statements do not have r-values. |
| 1704 | */ |
| 1705 | return NULL; |
| 1706 | } |
| 1707 | |
| 1708 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 1709 | ir_rvalue * |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 1710 | ast_compound_statement::hir(exec_list *instructions, |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 1711 | struct _mesa_glsl_parse_state *state) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1712 | { |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 1713 | if (new_scope) |
Ian Romanick | 8bde4ce | 2010-03-19 11:57:24 -0700 | [diff] [blame] | 1714 | state->symbols->push_scope(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1715 | |
Ian Romanick | 2b97dc6 | 2010-05-10 17:42:05 -0700 | [diff] [blame] | 1716 | foreach_list_typed (ast_node, ast, link, &this->statements) |
Ian Romanick | 304ea90 | 2010-05-10 11:17:53 -0700 | [diff] [blame] | 1717 | ast->hir(instructions, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1718 | |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 1719 | if (new_scope) |
Ian Romanick | 8bde4ce | 2010-03-19 11:57:24 -0700 | [diff] [blame] | 1720 | state->symbols->pop_scope(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1721 | |
| 1722 | /* Compound statements do not have r-values. |
| 1723 | */ |
| 1724 | return NULL; |
| 1725 | } |
| 1726 | |
| 1727 | |
Ian Romanick | 28009cd | 2010-03-30 16:59:27 -0700 | [diff] [blame] | 1728 | static const glsl_type * |
Kenneth Graunke | d8e34e2 | 2010-08-07 02:56:01 -0700 | [diff] [blame] | 1729 | process_array_type(YYLTYPE *loc, const glsl_type *base, ast_node *array_size, |
Ian Romanick | 28009cd | 2010-03-30 16:59:27 -0700 | [diff] [blame] | 1730 | struct _mesa_glsl_parse_state *state) |
| 1731 | { |
| 1732 | unsigned length = 0; |
| 1733 | |
| 1734 | /* FINISHME: Reject delcarations of multidimensional arrays. */ |
| 1735 | |
| 1736 | if (array_size != NULL) { |
| 1737 | exec_list dummy_instructions; |
| 1738 | ir_rvalue *const ir = array_size->hir(& dummy_instructions, state); |
| 1739 | YYLTYPE loc = array_size->get_location(); |
| 1740 | |
| 1741 | /* FINISHME: Verify that the grammar forbids side-effects in array |
| 1742 | * FINISHME: sizes. i.e., 'vec4 [x = 12] data' |
| 1743 | */ |
| 1744 | assert(dummy_instructions.is_empty()); |
| 1745 | |
| 1746 | if (ir != NULL) { |
| 1747 | if (!ir->type->is_integer()) { |
| 1748 | _mesa_glsl_error(& loc, state, "array size must be integer type"); |
| 1749 | } else if (!ir->type->is_scalar()) { |
| 1750 | _mesa_glsl_error(& loc, state, "array size must be scalar type"); |
| 1751 | } else { |
| 1752 | ir_constant *const size = ir->constant_expression_value(); |
| 1753 | |
| 1754 | if (size == NULL) { |
| 1755 | _mesa_glsl_error(& loc, state, "array size must be a " |
| 1756 | "constant valued expression"); |
| 1757 | } else if (size->value.i[0] <= 0) { |
| 1758 | _mesa_glsl_error(& loc, state, "array size must be > 0"); |
| 1759 | } else { |
| 1760 | assert(size->type == ir->type); |
| 1761 | length = size->value.u[0]; |
| 1762 | } |
| 1763 | } |
| 1764 | } |
Kenneth Graunke | d8e34e2 | 2010-08-07 02:56:01 -0700 | [diff] [blame] | 1765 | } else if (state->es_shader) { |
| 1766 | /* Section 10.17 of the GLSL ES 1.00 specification states that unsized |
| 1767 | * array declarations have been removed from the language. |
| 1768 | */ |
| 1769 | _mesa_glsl_error(loc, state, "unsized array declarations are not " |
| 1770 | "allowed in GLSL ES 1.00."); |
Ian Romanick | 28009cd | 2010-03-30 16:59:27 -0700 | [diff] [blame] | 1771 | } |
| 1772 | |
Ian Romanick | f38d15b | 2010-07-20 15:33:40 -0700 | [diff] [blame] | 1773 | return glsl_type::get_array_instance(base, length); |
Ian Romanick | 28009cd | 2010-03-30 16:59:27 -0700 | [diff] [blame] | 1774 | } |
| 1775 | |
| 1776 | |
Ian Romanick | d612a12 | 2010-03-31 16:22:06 -0700 | [diff] [blame] | 1777 | const glsl_type * |
| 1778 | ast_type_specifier::glsl_type(const char **name, |
| 1779 | struct _mesa_glsl_parse_state *state) const |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1780 | { |
Ian Romanick | d612a12 | 2010-03-31 16:22:06 -0700 | [diff] [blame] | 1781 | const struct glsl_type *type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1782 | |
Kenneth Graunke | ca92ae2 | 2010-09-18 11:11:09 +0200 | [diff] [blame] | 1783 | type = state->symbols->get_type(this->type_name); |
| 1784 | *name = this->type_name; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1785 | |
Kenneth Graunke | ca92ae2 | 2010-09-18 11:11:09 +0200 | [diff] [blame] | 1786 | if (this->is_array) { |
| 1787 | YYLTYPE loc = this->get_location(); |
| 1788 | type = process_array_type(&loc, type, this->array_size, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1789 | } |
| 1790 | |
| 1791 | return type; |
| 1792 | } |
| 1793 | |
| 1794 | |
| 1795 | static void |
| 1796 | apply_type_qualifier_to_variable(const struct ast_type_qualifier *qual, |
Ian Romanick | 768b55a | 2010-08-13 16:46:43 -0700 | [diff] [blame] | 1797 | ir_variable *var, |
Eric Anholt | 2e063f1 | 2010-03-28 00:56:22 -0700 | [diff] [blame] | 1798 | struct _mesa_glsl_parse_state *state, |
| 1799 | YYLTYPE *loc) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1800 | { |
Ian Romanick | bd33055 | 2011-01-07 18:34:58 -0800 | [diff] [blame] | 1801 | if (qual->flags.q.invariant) { |
| 1802 | if (var->used) { |
| 1803 | _mesa_glsl_error(loc, state, |
| 1804 | "variable `%s' may not be redeclared " |
| 1805 | "`invariant' after being used", |
| 1806 | var->name); |
| 1807 | } else { |
| 1808 | var->invariant = 1; |
| 1809 | } |
| 1810 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1811 | |
| 1812 | /* FINISHME: Mark 'in' variables at global scope as read-only. */ |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1813 | if (qual->flags.q.constant || qual->flags.q.attribute |
| 1814 | || qual->flags.q.uniform |
| 1815 | || (qual->flags.q.varying && (state->target == fragment_shader))) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1816 | var->read_only = 1; |
| 1817 | |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1818 | if (qual->flags.q.centroid) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1819 | var->centroid = 1; |
| 1820 | |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1821 | if (qual->flags.q.attribute && state->target != vertex_shader) { |
Eric Anholt | 2e063f1 | 2010-03-28 00:56:22 -0700 | [diff] [blame] | 1822 | var->type = glsl_type::error_type; |
| 1823 | _mesa_glsl_error(loc, state, |
| 1824 | "`attribute' variables may not be declared in the " |
Ian Romanick | ae4c4c0 | 2010-04-07 16:41:40 -0700 | [diff] [blame] | 1825 | "%s shader", |
| 1826 | _mesa_glsl_shader_target_name(state->target)); |
Eric Anholt | 2e063f1 | 2010-03-28 00:56:22 -0700 | [diff] [blame] | 1827 | } |
| 1828 | |
Eric Anholt | 90b7825 | 2010-03-31 21:21:20 -1000 | [diff] [blame] | 1829 | /* From page 25 (page 31 of the PDF) of the GLSL 1.10 spec: |
| 1830 | * |
| 1831 | * "The varying qualifier can be used only with the data types |
| 1832 | * float, vec2, vec3, vec4, mat2, mat3, and mat4, or arrays of |
| 1833 | * these." |
| 1834 | */ |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1835 | if (qual->flags.q.varying) { |
Eric Anholt | 0ca1719 | 2010-05-19 13:38:15 -0700 | [diff] [blame] | 1836 | const glsl_type *non_array_type; |
| 1837 | |
| 1838 | if (var->type && var->type->is_array()) |
| 1839 | non_array_type = var->type->fields.array; |
| 1840 | else |
| 1841 | non_array_type = var->type; |
| 1842 | |
| 1843 | if (non_array_type && non_array_type->base_type != GLSL_TYPE_FLOAT) { |
| 1844 | var->type = glsl_type::error_type; |
| 1845 | _mesa_glsl_error(loc, state, |
| 1846 | "varying variables must be of base type float"); |
| 1847 | } |
Eric Anholt | 90b7825 | 2010-03-31 21:21:20 -1000 | [diff] [blame] | 1848 | } |
| 1849 | |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 1850 | /* If there is no qualifier that changes the mode of the variable, leave |
| 1851 | * the setting alone. |
| 1852 | */ |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1853 | if (qual->flags.q.in && qual->flags.q.out) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1854 | var->mode = ir_var_inout; |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1855 | else if (qual->flags.q.attribute || qual->flags.q.in |
| 1856 | || (qual->flags.q.varying && (state->target == fragment_shader))) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1857 | var->mode = ir_var_in; |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1858 | else if (qual->flags.q.out |
| 1859 | || (qual->flags.q.varying && (state->target == vertex_shader))) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1860 | var->mode = ir_var_out; |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1861 | else if (qual->flags.q.uniform) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1862 | var->mode = ir_var_uniform; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1863 | |
Ian Romanick | 86b4398 | 2011-01-06 10:49:56 -0800 | [diff] [blame] | 1864 | if (state->all_invariant && (state->current_function == NULL)) { |
| 1865 | switch (state->target) { |
| 1866 | case vertex_shader: |
| 1867 | if (var->mode == ir_var_out) |
| 1868 | var->invariant = true; |
| 1869 | break; |
| 1870 | case geometry_shader: |
| 1871 | if ((var->mode == ir_var_in) || (var->mode == ir_var_out)) |
| 1872 | var->invariant = true; |
| 1873 | break; |
| 1874 | case fragment_shader: |
| 1875 | if (var->mode == ir_var_in) |
| 1876 | var->invariant = true; |
| 1877 | break; |
| 1878 | } |
| 1879 | } |
| 1880 | |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1881 | if (qual->flags.q.flat) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1882 | var->interpolation = ir_var_flat; |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1883 | else if (qual->flags.q.noperspective) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1884 | var->interpolation = ir_var_noperspective; |
| 1885 | else |
| 1886 | var->interpolation = ir_var_smooth; |
Ian Romanick | 9d97537 | 2010-04-02 17:17:47 -0700 | [diff] [blame] | 1887 | |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1888 | var->pixel_center_integer = qual->flags.q.pixel_center_integer; |
| 1889 | var->origin_upper_left = qual->flags.q.origin_upper_left; |
| 1890 | if ((qual->flags.q.origin_upper_left || qual->flags.q.pixel_center_integer) |
Ian Romanick | 8d8469e | 2010-06-30 17:48:09 -0700 | [diff] [blame] | 1891 | && (strcmp(var->name, "gl_FragCoord") != 0)) { |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 1892 | const char *const qual_string = (qual->flags.q.origin_upper_left) |
Ian Romanick | 8d8469e | 2010-06-30 17:48:09 -0700 | [diff] [blame] | 1893 | ? "origin_upper_left" : "pixel_center_integer"; |
| 1894 | |
| 1895 | _mesa_glsl_error(loc, state, |
| 1896 | "layout qualifier `%s' can only be applied to " |
| 1897 | "fragment shader input `gl_FragCoord'", |
| 1898 | qual_string); |
| 1899 | } |
| 1900 | |
Ian Romanick | eee68d3 | 2010-10-07 15:13:38 -0700 | [diff] [blame] | 1901 | if (qual->flags.q.explicit_location) { |
| 1902 | const bool global_scope = (state->current_function == NULL); |
| 1903 | bool fail = false; |
| 1904 | const char *string = ""; |
| 1905 | |
| 1906 | /* In the vertex shader only shader inputs can be given explicit |
| 1907 | * locations. |
| 1908 | * |
| 1909 | * In the fragment shader only shader outputs can be given explicit |
| 1910 | * locations. |
| 1911 | */ |
| 1912 | switch (state->target) { |
| 1913 | case vertex_shader: |
| 1914 | if (!global_scope || (var->mode != ir_var_in)) { |
| 1915 | fail = true; |
| 1916 | string = "input"; |
| 1917 | } |
| 1918 | break; |
| 1919 | |
| 1920 | case geometry_shader: |
| 1921 | _mesa_glsl_error(loc, state, |
| 1922 | "geometry shader variables cannot be given " |
| 1923 | "explicit locations\n"); |
| 1924 | break; |
| 1925 | |
| 1926 | case fragment_shader: |
| 1927 | if (!global_scope || (var->mode != ir_var_in)) { |
| 1928 | fail = true; |
| 1929 | string = "output"; |
| 1930 | } |
| 1931 | break; |
Kenneth Graunke | a75da2c | 2010-10-20 14:59:40 -0700 | [diff] [blame] | 1932 | }; |
Ian Romanick | eee68d3 | 2010-10-07 15:13:38 -0700 | [diff] [blame] | 1933 | |
| 1934 | if (fail) { |
| 1935 | _mesa_glsl_error(loc, state, |
| 1936 | "only %s shader %s variables can be given an " |
| 1937 | "explicit location\n", |
| 1938 | _mesa_glsl_shader_target_name(state->target), |
| 1939 | string); |
| 1940 | } else { |
| 1941 | var->explicit_location = true; |
Ian Romanick | 68a4fc9 | 2010-10-07 17:21:22 -0700 | [diff] [blame] | 1942 | |
| 1943 | /* This bit of silliness is needed because invalid explicit locations |
| 1944 | * are supposed to be flagged during linking. Small negative values |
| 1945 | * biased by VERT_ATTRIB_GENERIC0 or FRAG_RESULT_DATA0 could alias |
| 1946 | * built-in values (e.g., -16+VERT_ATTRIB_GENERIC0 = VERT_ATTRIB_POS). |
| 1947 | * The linker needs to be able to differentiate these cases. This |
| 1948 | * ensures that negative values stay negative. |
| 1949 | */ |
| 1950 | if (qual->location >= 0) { |
| 1951 | var->location = (state->target == vertex_shader) |
| 1952 | ? (qual->location + VERT_ATTRIB_GENERIC0) |
| 1953 | : (qual->location + FRAG_RESULT_DATA0); |
| 1954 | } else { |
| 1955 | var->location = qual->location; |
| 1956 | } |
Ian Romanick | eee68d3 | 2010-10-07 15:13:38 -0700 | [diff] [blame] | 1957 | } |
| 1958 | } |
| 1959 | |
Ian Romanick | 4bcff0c | 2011-01-07 16:53:59 -0800 | [diff] [blame] | 1960 | /* Does the declaration use the 'layout' keyword? |
| 1961 | */ |
| 1962 | const bool uses_layout = qual->flags.q.pixel_center_integer |
| 1963 | || qual->flags.q.origin_upper_left |
| 1964 | || qual->flags.q.explicit_location; |
| 1965 | |
| 1966 | /* Does the declaration use the deprecated 'attribute' or 'varying' |
| 1967 | * keywords? |
| 1968 | */ |
| 1969 | const bool uses_deprecated_qualifier = qual->flags.q.attribute |
| 1970 | || qual->flags.q.varying; |
| 1971 | |
| 1972 | /* Is the 'layout' keyword used with parameters that allow relaxed checking. |
| 1973 | * Many implementations of GL_ARB_fragment_coord_conventions_enable and some |
| 1974 | * implementations (only Mesa?) GL_ARB_explicit_attrib_location_enable |
| 1975 | * allowed the layout qualifier to be used with 'varying' and 'attribute'. |
| 1976 | * These extensions and all following extensions that add the 'layout' |
| 1977 | * keyword have been modified to require the use of 'in' or 'out'. |
| 1978 | * |
| 1979 | * The following extension do not allow the deprecated keywords: |
| 1980 | * |
| 1981 | * GL_AMD_conservative_depth |
| 1982 | * GL_ARB_gpu_shader5 |
| 1983 | * GL_ARB_separate_shader_objects |
| 1984 | * GL_ARB_tesselation_shader |
| 1985 | * GL_ARB_transform_feedback3 |
| 1986 | * GL_ARB_uniform_buffer_object |
| 1987 | * |
| 1988 | * It is unknown whether GL_EXT_shader_image_load_store or GL_NV_gpu_shader5 |
| 1989 | * allow layout with the deprecated keywords. |
| 1990 | */ |
| 1991 | const bool relaxed_layout_qualifier_checking = |
| 1992 | state->ARB_fragment_coord_conventions_enable; |
| 1993 | |
| 1994 | if (uses_layout && uses_deprecated_qualifier) { |
| 1995 | if (relaxed_layout_qualifier_checking) { |
| 1996 | _mesa_glsl_warning(loc, state, |
| 1997 | "`layout' qualifier may not be used with " |
| 1998 | "`attribute' or `varying'"); |
| 1999 | } else { |
| 2000 | _mesa_glsl_error(loc, state, |
| 2001 | "`layout' qualifier may not be used with " |
| 2002 | "`attribute' or `varying'"); |
| 2003 | } |
| 2004 | } |
| 2005 | |
Kenneth Graunke | 10eaa8b | 2010-09-07 02:59:38 -0700 | [diff] [blame] | 2006 | if (var->type->is_array() && state->language_version != 110) { |
Ian Romanick | 9d97537 | 2010-04-02 17:17:47 -0700 | [diff] [blame] | 2007 | var->array_lvalue = true; |
| 2008 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2009 | } |
| 2010 | |
| 2011 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 2012 | ir_rvalue * |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 2013 | ast_declarator_list::hir(exec_list *instructions, |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 2014 | struct _mesa_glsl_parse_state *state) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2015 | { |
Kenneth Graunke | 953ff12 | 2010-06-25 13:14:37 -0700 | [diff] [blame] | 2016 | void *ctx = state; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2017 | const struct glsl_type *decl_type; |
| 2018 | const char *type_name = NULL; |
Eric Anholt | 8558459 | 2010-04-14 15:38:52 -0700 | [diff] [blame] | 2019 | ir_rvalue *result = NULL; |
Ian Romanick | c824e35 | 2010-04-23 15:55:19 -0700 | [diff] [blame] | 2020 | YYLTYPE loc = this->get_location(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2021 | |
Ian Romanick | 6f0823d | 2010-07-01 20:39:08 -0700 | [diff] [blame] | 2022 | /* From page 46 (page 52 of the PDF) of the GLSL 1.50 spec: |
| 2023 | * |
| 2024 | * "To ensure that a particular output variable is invariant, it is |
| 2025 | * necessary to use the invariant qualifier. It can either be used to |
| 2026 | * qualify a previously declared variable as being invariant |
| 2027 | * |
| 2028 | * invariant gl_Position; // make existing gl_Position be invariant" |
| 2029 | * |
| 2030 | * In these cases the parser will set the 'invariant' flag in the declarator |
| 2031 | * list, and the type will be NULL. |
| 2032 | */ |
| 2033 | if (this->invariant) { |
| 2034 | assert(this->type == NULL); |
| 2035 | |
| 2036 | if (state->current_function != NULL) { |
| 2037 | _mesa_glsl_error(& loc, state, |
| 2038 | "All uses of `invariant' keyword must be at global " |
| 2039 | "scope\n"); |
| 2040 | } |
| 2041 | |
| 2042 | foreach_list_typed (ast_declaration, decl, link, &this->declarations) { |
| 2043 | assert(!decl->is_array); |
| 2044 | assert(decl->array_size == NULL); |
| 2045 | assert(decl->initializer == NULL); |
| 2046 | |
| 2047 | ir_variable *const earlier = |
| 2048 | state->symbols->get_variable(decl->identifier); |
| 2049 | if (earlier == NULL) { |
| 2050 | _mesa_glsl_error(& loc, state, |
| 2051 | "Undeclared variable `%s' cannot be marked " |
| 2052 | "invariant\n", decl->identifier); |
| 2053 | } else if ((state->target == vertex_shader) |
| 2054 | && (earlier->mode != ir_var_out)) { |
| 2055 | _mesa_glsl_error(& loc, state, |
| 2056 | "`%s' cannot be marked invariant, vertex shader " |
| 2057 | "outputs only\n", decl->identifier); |
| 2058 | } else if ((state->target == fragment_shader) |
| 2059 | && (earlier->mode != ir_var_in)) { |
| 2060 | _mesa_glsl_error(& loc, state, |
| 2061 | "`%s' cannot be marked invariant, fragment shader " |
| 2062 | "inputs only\n", decl->identifier); |
Ian Romanick | bd33055 | 2011-01-07 18:34:58 -0800 | [diff] [blame] | 2063 | } else if (earlier->used) { |
| 2064 | _mesa_glsl_error(& loc, state, |
| 2065 | "variable `%s' may not be redeclared " |
| 2066 | "`invariant' after being used", |
| 2067 | earlier->name); |
Ian Romanick | 6f0823d | 2010-07-01 20:39:08 -0700 | [diff] [blame] | 2068 | } else { |
| 2069 | earlier->invariant = true; |
| 2070 | } |
| 2071 | } |
| 2072 | |
| 2073 | /* Invariant redeclarations do not have r-values. |
| 2074 | */ |
| 2075 | return NULL; |
| 2076 | } |
| 2077 | |
| 2078 | assert(this->type != NULL); |
| 2079 | assert(!this->invariant); |
| 2080 | |
Ian Romanick | 3455ce6 | 2010-04-19 15:13:15 -0700 | [diff] [blame] | 2081 | /* The type specifier may contain a structure definition. Process that |
| 2082 | * before any of the variable declarations. |
| 2083 | */ |
| 2084 | (void) this->type->specifier->hir(instructions, state); |
| 2085 | |
Ian Romanick | d612a12 | 2010-03-31 16:22:06 -0700 | [diff] [blame] | 2086 | decl_type = this->type->specifier->glsl_type(& type_name, state); |
Ian Romanick | 304ea90 | 2010-05-10 11:17:53 -0700 | [diff] [blame] | 2087 | if (this->declarations.is_empty()) { |
Ian Romanick | 6f0823d | 2010-07-01 20:39:08 -0700 | [diff] [blame] | 2088 | /* The only valid case where the declaration list can be empty is when |
| 2089 | * the declaration is setting the default precision of a built-in type |
| 2090 | * (e.g., 'precision highp vec4;'). |
Ian Romanick | c824e35 | 2010-04-23 15:55:19 -0700 | [diff] [blame] | 2091 | */ |
| 2092 | |
Ian Romanick | 6f0823d | 2010-07-01 20:39:08 -0700 | [diff] [blame] | 2093 | if (decl_type != NULL) { |
Ian Romanick | c824e35 | 2010-04-23 15:55:19 -0700 | [diff] [blame] | 2094 | } else { |
| 2095 | _mesa_glsl_error(& loc, state, "incomplete declaration"); |
| 2096 | } |
| 2097 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2098 | |
Ian Romanick | 2b97dc6 | 2010-05-10 17:42:05 -0700 | [diff] [blame] | 2099 | foreach_list_typed (ast_declaration, decl, link, &this->declarations) { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2100 | const struct glsl_type *var_type; |
Ian Romanick | 768b55a | 2010-08-13 16:46:43 -0700 | [diff] [blame] | 2101 | ir_variable *var; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2102 | |
| 2103 | /* FINISHME: Emit a warning if a variable declaration shadows a |
| 2104 | * FINISHME: declaration at a higher scope. |
| 2105 | */ |
| 2106 | |
Ian Romanick | cec65a6 | 2010-03-23 12:28:44 -0700 | [diff] [blame] | 2107 | if ((decl_type == NULL) || decl_type->is_void()) { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2108 | if (type_name != NULL) { |
| 2109 | _mesa_glsl_error(& loc, state, |
| 2110 | "invalid type `%s' in declaration of `%s'", |
| 2111 | type_name, decl->identifier); |
| 2112 | } else { |
| 2113 | _mesa_glsl_error(& loc, state, |
| 2114 | "invalid type in declaration of `%s'", |
| 2115 | decl->identifier); |
| 2116 | } |
| 2117 | continue; |
| 2118 | } |
| 2119 | |
| 2120 | if (decl->is_array) { |
Kenneth Graunke | d8e34e2 | 2010-08-07 02:56:01 -0700 | [diff] [blame] | 2121 | var_type = process_array_type(&loc, decl_type, decl->array_size, |
| 2122 | state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2123 | } else { |
| 2124 | var_type = decl_type; |
| 2125 | } |
| 2126 | |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 2127 | var = new(ctx) ir_variable(var_type, decl->identifier, ir_var_auto); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2128 | |
Eric Anholt | 3f15150 | 2010-04-02 01:53:57 -1000 | [diff] [blame] | 2129 | /* From page 22 (page 28 of the PDF) of the GLSL 1.10 specification; |
| 2130 | * |
| 2131 | * "Global variables can only use the qualifiers const, |
| 2132 | * attribute, uni form, or varying. Only one may be |
| 2133 | * specified. |
| 2134 | * |
| 2135 | * Local variables can only use the qualifier const." |
| 2136 | * |
Ian Romanick | 82c4b4f | 2011-01-07 16:53:07 -0800 | [diff] [blame] | 2137 | * This is relaxed in GLSL 1.30. It is also relaxed by any extension |
| 2138 | * that adds the 'layout' keyword. |
Eric Anholt | 3f15150 | 2010-04-02 01:53:57 -1000 | [diff] [blame] | 2139 | */ |
Ian Romanick | 82c4b4f | 2011-01-07 16:53:07 -0800 | [diff] [blame] | 2140 | if ((state->language_version < 130) |
| 2141 | && !state->ARB_explicit_attrib_location_enable |
| 2142 | && !state->ARB_fragment_coord_conventions_enable) { |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2143 | if (this->type->qualifier.flags.q.out) { |
Eric Anholt | 3f15150 | 2010-04-02 01:53:57 -1000 | [diff] [blame] | 2144 | _mesa_glsl_error(& loc, state, |
| 2145 | "`out' qualifier in declaration of `%s' " |
Ian Romanick | 469ea69 | 2011-01-07 16:05:59 -0800 | [diff] [blame] | 2146 | "only valid for function parameters in %s.", |
| 2147 | decl->identifier, state->version_string); |
Eric Anholt | 3f15150 | 2010-04-02 01:53:57 -1000 | [diff] [blame] | 2148 | } |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2149 | if (this->type->qualifier.flags.q.in) { |
Eric Anholt | 3f15150 | 2010-04-02 01:53:57 -1000 | [diff] [blame] | 2150 | _mesa_glsl_error(& loc, state, |
| 2151 | "`in' qualifier in declaration of `%s' " |
Ian Romanick | 469ea69 | 2011-01-07 16:05:59 -0800 | [diff] [blame] | 2152 | "only valid for function parameters in %s.", |
| 2153 | decl->identifier, state->version_string); |
Eric Anholt | 3f15150 | 2010-04-02 01:53:57 -1000 | [diff] [blame] | 2154 | } |
| 2155 | /* FINISHME: Test for other invalid qualifiers. */ |
| 2156 | } |
| 2157 | |
Eric Anholt | 2e063f1 | 2010-03-28 00:56:22 -0700 | [diff] [blame] | 2158 | apply_type_qualifier_to_variable(& this->type->qualifier, var, state, |
| 2159 | & loc); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2160 | |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2161 | if (this->type->qualifier.flags.q.invariant) { |
Eric Anholt | 046bef2 | 2010-08-04 20:33:57 -0700 | [diff] [blame] | 2162 | if ((state->target == vertex_shader) && !(var->mode == ir_var_out || |
| 2163 | var->mode == ir_var_inout)) { |
| 2164 | /* FINISHME: Note that this doesn't work for invariant on |
| 2165 | * a function signature outval |
| 2166 | */ |
Ian Romanick | 6f0823d | 2010-07-01 20:39:08 -0700 | [diff] [blame] | 2167 | _mesa_glsl_error(& loc, state, |
| 2168 | "`%s' cannot be marked invariant, vertex shader " |
| 2169 | "outputs only\n", var->name); |
Eric Anholt | 046bef2 | 2010-08-04 20:33:57 -0700 | [diff] [blame] | 2170 | } else if ((state->target == fragment_shader) && |
| 2171 | !(var->mode == ir_var_in || var->mode == ir_var_inout)) { |
| 2172 | /* FINISHME: Note that this doesn't work for invariant on |
| 2173 | * a function signature inval |
| 2174 | */ |
Ian Romanick | 6f0823d | 2010-07-01 20:39:08 -0700 | [diff] [blame] | 2175 | _mesa_glsl_error(& loc, state, |
| 2176 | "`%s' cannot be marked invariant, fragment shader " |
| 2177 | "inputs only\n", var->name); |
| 2178 | } |
| 2179 | } |
| 2180 | |
Ian Romanick | e1c1a3f | 2010-03-31 12:26:03 -0700 | [diff] [blame] | 2181 | if (state->current_function != NULL) { |
Ian Romanick | b168e53 | 2010-03-31 12:31:18 -0700 | [diff] [blame] | 2182 | const char *mode = NULL; |
Ian Romanick | e080006 | 2010-03-31 13:15:23 -0700 | [diff] [blame] | 2183 | const char *extra = ""; |
Ian Romanick | b168e53 | 2010-03-31 12:31:18 -0700 | [diff] [blame] | 2184 | |
Ian Romanick | e080006 | 2010-03-31 13:15:23 -0700 | [diff] [blame] | 2185 | /* There is no need to check for 'inout' here because the parser will |
| 2186 | * only allow that in function parameter lists. |
Ian Romanick | e1c1a3f | 2010-03-31 12:26:03 -0700 | [diff] [blame] | 2187 | */ |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2188 | if (this->type->qualifier.flags.q.attribute) { |
Ian Romanick | b168e53 | 2010-03-31 12:31:18 -0700 | [diff] [blame] | 2189 | mode = "attribute"; |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2190 | } else if (this->type->qualifier.flags.q.uniform) { |
Ian Romanick | b168e53 | 2010-03-31 12:31:18 -0700 | [diff] [blame] | 2191 | mode = "uniform"; |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2192 | } else if (this->type->qualifier.flags.q.varying) { |
Ian Romanick | b168e53 | 2010-03-31 12:31:18 -0700 | [diff] [blame] | 2193 | mode = "varying"; |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2194 | } else if (this->type->qualifier.flags.q.in) { |
Ian Romanick | e080006 | 2010-03-31 13:15:23 -0700 | [diff] [blame] | 2195 | mode = "in"; |
| 2196 | extra = " or in function parameter list"; |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2197 | } else if (this->type->qualifier.flags.q.out) { |
Ian Romanick | e080006 | 2010-03-31 13:15:23 -0700 | [diff] [blame] | 2198 | mode = "out"; |
| 2199 | extra = " or in function parameter list"; |
Ian Romanick | b168e53 | 2010-03-31 12:31:18 -0700 | [diff] [blame] | 2200 | } |
| 2201 | |
| 2202 | if (mode) { |
Ian Romanick | e1c1a3f | 2010-03-31 12:26:03 -0700 | [diff] [blame] | 2203 | _mesa_glsl_error(& loc, state, |
Ian Romanick | b168e53 | 2010-03-31 12:31:18 -0700 | [diff] [blame] | 2204 | "%s variable `%s' must be declared at " |
Ian Romanick | e080006 | 2010-03-31 13:15:23 -0700 | [diff] [blame] | 2205 | "global scope%s", |
| 2206 | mode, var->name, extra); |
Ian Romanick | e1c1a3f | 2010-03-31 12:26:03 -0700 | [diff] [blame] | 2207 | } |
| 2208 | } else if (var->mode == ir_var_in) { |
Ian Romanick | fb9f5b0 | 2010-03-29 17:16:35 -0700 | [diff] [blame] | 2209 | if (state->target == vertex_shader) { |
| 2210 | bool error_emitted = false; |
| 2211 | |
| 2212 | /* From page 31 (page 37 of the PDF) of the GLSL 1.50 spec: |
| 2213 | * |
| 2214 | * "Vertex shader inputs can only be float, floating-point |
| 2215 | * vectors, matrices, signed and unsigned integers and integer |
| 2216 | * vectors. Vertex shader inputs can also form arrays of these |
| 2217 | * types, but not structures." |
| 2218 | * |
Ian Romanick | 2d81620 | 2010-03-29 17:40:11 -0700 | [diff] [blame] | 2219 | * From page 31 (page 27 of the PDF) of the GLSL 1.30 spec: |
| 2220 | * |
| 2221 | * "Vertex shader inputs can only be float, floating-point |
| 2222 | * vectors, matrices, signed and unsigned integers and integer |
| 2223 | * vectors. They cannot be arrays or structures." |
| 2224 | * |
Ian Romanick | fb9f5b0 | 2010-03-29 17:16:35 -0700 | [diff] [blame] | 2225 | * From page 23 (page 29 of the PDF) of the GLSL 1.20 spec: |
| 2226 | * |
| 2227 | * "The attribute qualifier can be used only with float, |
| 2228 | * floating-point vectors, and matrices. Attribute variables |
| 2229 | * cannot be declared as arrays or structures." |
| 2230 | */ |
| 2231 | const glsl_type *check_type = var->type->is_array() |
| 2232 | ? var->type->fields.array : var->type; |
| 2233 | |
| 2234 | switch (check_type->base_type) { |
| 2235 | case GLSL_TYPE_FLOAT: |
| 2236 | break; |
| 2237 | case GLSL_TYPE_UINT: |
| 2238 | case GLSL_TYPE_INT: |
| 2239 | if (state->language_version > 120) |
| 2240 | break; |
| 2241 | /* FALLTHROUGH */ |
| 2242 | default: |
| 2243 | _mesa_glsl_error(& loc, state, |
| 2244 | "vertex shader input / attribute cannot have " |
| 2245 | "type %s`%s'", |
| 2246 | var->type->is_array() ? "array of " : "", |
| 2247 | check_type->name); |
| 2248 | error_emitted = true; |
| 2249 | } |
| 2250 | |
Ian Romanick | 2d81620 | 2010-03-29 17:40:11 -0700 | [diff] [blame] | 2251 | if (!error_emitted && (state->language_version <= 130) |
Ian Romanick | fb9f5b0 | 2010-03-29 17:16:35 -0700 | [diff] [blame] | 2252 | && var->type->is_array()) { |
| 2253 | _mesa_glsl_error(& loc, state, |
| 2254 | "vertex shader input / attribute cannot have " |
| 2255 | "array type"); |
| 2256 | error_emitted = true; |
| 2257 | } |
| 2258 | } |
| 2259 | } |
| 2260 | |
Chad Versace | 68d06b1 | 2010-12-16 11:06:19 -0800 | [diff] [blame] | 2261 | /* Integer vertex outputs must be qualified with 'flat'. |
| 2262 | * |
| 2263 | * From section 4.3.6 of the GLSL 1.30 spec: |
| 2264 | * "If a vertex output is a signed or unsigned integer or integer |
| 2265 | * vector, then it must be qualified with the interpolation qualifier |
| 2266 | * flat." |
| 2267 | */ |
| 2268 | if (state->language_version >= 130 |
| 2269 | && state->target == vertex_shader |
| 2270 | && state->current_function == NULL |
| 2271 | && var->type->is_integer() |
| 2272 | && var->mode == ir_var_out |
| 2273 | && var->interpolation != ir_var_flat) { |
| 2274 | |
| 2275 | _mesa_glsl_error(&loc, state, "If a vertex output is an integer, " |
| 2276 | "then it must be qualified with 'flat'"); |
| 2277 | } |
| 2278 | |
| 2279 | |
Chad Versace | 605aacc | 2011-01-11 17:21:18 -0800 | [diff] [blame] | 2280 | /* Interpolation qualifiers cannot be applied to 'centroid' and |
| 2281 | * 'centroid varying'. |
| 2282 | * |
| 2283 | * From page 29 (page 35 of the PDF) of the GLSL 1.30 spec: |
| 2284 | * "interpolation qualifiers may only precede the qualifiers in, |
| 2285 | * centroid in, out, or centroid out in a declaration. They do not apply |
| 2286 | * to the deprecated storage qualifiers varying or centroid varying." |
| 2287 | */ |
| 2288 | if (state->language_version >= 130 |
| 2289 | && this->type->qualifier.has_interpolation() |
| 2290 | && this->type->qualifier.flags.q.varying) { |
| 2291 | |
| 2292 | const char *i = this->type->qualifier.interpolation_string(); |
| 2293 | assert(i != NULL); |
| 2294 | const char *s; |
| 2295 | if (this->type->qualifier.flags.q.centroid) |
| 2296 | s = "centroid varying"; |
| 2297 | else |
| 2298 | s = "varying"; |
| 2299 | |
| 2300 | _mesa_glsl_error(&loc, state, |
| 2301 | "qualifier '%s' cannot be applied to the " |
| 2302 | "deprecated storage qualifier '%s'", i, s); |
| 2303 | } |
| 2304 | |
| 2305 | |
Chad Versace | 8faaa4a | 2011-01-11 18:13:26 -0800 | [diff] [blame^] | 2306 | /* Interpolation qualifiers can only apply to vertex shader outputs and |
| 2307 | * fragment shader inputs. |
| 2308 | * |
| 2309 | * From page 29 (page 35 of the PDF) of the GLSL 1.30 spec: |
| 2310 | * "Outputs from a vertex shader (out) and inputs to a fragment |
| 2311 | * shader (in) can be further qualified with one or more of these |
| 2312 | * interpolation qualifiers" |
| 2313 | */ |
| 2314 | if (state->language_version >= 130 |
| 2315 | && this->type->qualifier.has_interpolation()) { |
| 2316 | |
| 2317 | const char *i = this->type->qualifier.interpolation_string(); |
| 2318 | assert(i != NULL); |
| 2319 | |
| 2320 | switch (state->target) { |
| 2321 | case vertex_shader: |
| 2322 | if (this->type->qualifier.flags.q.in) { |
| 2323 | _mesa_glsl_error(&loc, state, |
| 2324 | "qualifier '%s' cannot be applied to vertex " |
| 2325 | "shader inputs", i); |
| 2326 | } |
| 2327 | break; |
| 2328 | case fragment_shader: |
| 2329 | if (this->type->qualifier.flags.q.out) { |
| 2330 | _mesa_glsl_error(&loc, state, |
| 2331 | "qualifier '%s' cannot be applied to fragment " |
| 2332 | "shader outputs", i); |
| 2333 | } |
| 2334 | break; |
| 2335 | default: |
| 2336 | assert(0); |
| 2337 | } |
| 2338 | } |
| 2339 | |
| 2340 | |
Ian Romanick | e78e0fa | 2010-07-07 12:13:34 -0700 | [diff] [blame] | 2341 | /* Process the initializer and add its instructions to a temporary |
| 2342 | * list. This list will be added to the instruction stream (below) after |
| 2343 | * the declaration is added. This is done because in some cases (such as |
| 2344 | * redeclarations) the declaration may not actually be added to the |
| 2345 | * instruction stream. |
| 2346 | */ |
Eric Anholt | fa33d0b | 2010-07-29 13:50:17 -0700 | [diff] [blame] | 2347 | exec_list initializer_instructions; |
Ian Romanick | 66faec4 | 2010-03-27 18:56:53 -0700 | [diff] [blame] | 2348 | if (decl->initializer != NULL) { |
Ian Romanick | 43de172 | 2010-03-28 17:03:16 -0700 | [diff] [blame] | 2349 | YYLTYPE initializer_loc = decl->initializer->get_location(); |
| 2350 | |
Ian Romanick | 66faec4 | 2010-03-27 18:56:53 -0700 | [diff] [blame] | 2351 | /* From page 24 (page 30 of the PDF) of the GLSL 1.10 spec: |
| 2352 | * |
| 2353 | * "All uniform variables are read-only and are initialized either |
| 2354 | * directly by an application via API commands, or indirectly by |
| 2355 | * OpenGL." |
| 2356 | */ |
| 2357 | if ((state->language_version <= 110) |
| 2358 | && (var->mode == ir_var_uniform)) { |
Ian Romanick | 43de172 | 2010-03-28 17:03:16 -0700 | [diff] [blame] | 2359 | _mesa_glsl_error(& initializer_loc, state, |
| 2360 | "cannot initialize uniforms in GLSL 1.10"); |
| 2361 | } |
Ian Romanick | 1936015 | 2010-03-26 18:05:27 -0700 | [diff] [blame] | 2362 | |
Ian Romanick | 43de172 | 2010-03-28 17:03:16 -0700 | [diff] [blame] | 2363 | if (var->type->is_sampler()) { |
| 2364 | _mesa_glsl_error(& initializer_loc, state, |
| 2365 | "cannot initialize samplers"); |
| 2366 | } |
| 2367 | |
| 2368 | if ((var->mode == ir_var_in) && (state->current_function == NULL)) { |
| 2369 | _mesa_glsl_error(& initializer_loc, state, |
| 2370 | "cannot initialize %s shader input / %s", |
Ian Romanick | ae4c4c0 | 2010-04-07 16:41:40 -0700 | [diff] [blame] | 2371 | _mesa_glsl_shader_target_name(state->target), |
Ian Romanick | 43de172 | 2010-03-28 17:03:16 -0700 | [diff] [blame] | 2372 | (state->target == vertex_shader) |
| 2373 | ? "attribute" : "varying"); |
Ian Romanick | 66faec4 | 2010-03-27 18:56:53 -0700 | [diff] [blame] | 2374 | } |
| 2375 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 2376 | ir_dereference *const lhs = new(ctx) ir_dereference_variable(var); |
Eric Anholt | fa33d0b | 2010-07-29 13:50:17 -0700 | [diff] [blame] | 2377 | ir_rvalue *rhs = decl->initializer->hir(&initializer_instructions, |
Ian Romanick | e78e0fa | 2010-07-07 12:13:34 -0700 | [diff] [blame] | 2378 | state); |
Ian Romanick | 66faec4 | 2010-03-27 18:56:53 -0700 | [diff] [blame] | 2379 | |
Ian Romanick | ce03088 | 2010-06-17 20:09:34 -0700 | [diff] [blame] | 2380 | /* Calculate the constant value if this is a const or uniform |
Eric Anholt | 307c71b | 2010-03-31 15:53:26 -1000 | [diff] [blame] | 2381 | * declaration. |
Ian Romanick | 66faec4 | 2010-03-27 18:56:53 -0700 | [diff] [blame] | 2382 | */ |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2383 | if (this->type->qualifier.flags.q.constant |
| 2384 | || this->type->qualifier.flags.q.uniform) { |
Kenneth Graunke | e1d7185 | 2010-07-20 03:53:47 -0700 | [diff] [blame] | 2385 | ir_rvalue *new_rhs = validate_assignment(state, var->type, rhs); |
| 2386 | if (new_rhs != NULL) { |
| 2387 | rhs = new_rhs; |
Eric Anholt | e11757b | 2010-08-23 14:54:06 -0700 | [diff] [blame] | 2388 | |
| 2389 | ir_constant *constant_value = rhs->constant_expression_value(); |
| 2390 | if (!constant_value) { |
| 2391 | _mesa_glsl_error(& initializer_loc, state, |
| 2392 | "initializer of %s variable `%s' must be a " |
| 2393 | "constant expression", |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2394 | (this->type->qualifier.flags.q.constant) |
Eric Anholt | e11757b | 2010-08-23 14:54:06 -0700 | [diff] [blame] | 2395 | ? "const" : "uniform", |
| 2396 | decl->identifier); |
| 2397 | if (var->type->is_numeric()) { |
| 2398 | /* Reduce cascading errors. */ |
| 2399 | var->constant_value = ir_constant::zero(ctx, var->type); |
| 2400 | } |
| 2401 | } else { |
| 2402 | rhs = constant_value; |
| 2403 | var->constant_value = constant_value; |
| 2404 | } |
Kenneth Graunke | e1d7185 | 2010-07-20 03:53:47 -0700 | [diff] [blame] | 2405 | } else { |
| 2406 | _mesa_glsl_error(&initializer_loc, state, |
| 2407 | "initializer of type %s cannot be assigned to " |
| 2408 | "variable of type %s", |
| 2409 | rhs->type->name, var->type->name); |
Eric Anholt | e11757b | 2010-08-23 14:54:06 -0700 | [diff] [blame] | 2410 | if (var->type->is_numeric()) { |
| 2411 | /* Reduce cascading errors. */ |
| 2412 | var->constant_value = ir_constant::zero(ctx, var->type); |
| 2413 | } |
Eric Anholt | 307c71b | 2010-03-31 15:53:26 -1000 | [diff] [blame] | 2414 | } |
| 2415 | } |
Ian Romanick | 66faec4 | 2010-03-27 18:56:53 -0700 | [diff] [blame] | 2416 | |
Eric Anholt | 307c71b | 2010-03-31 15:53:26 -1000 | [diff] [blame] | 2417 | if (rhs && !rhs->type->is_error()) { |
Eric Anholt | ac3af37 | 2010-03-31 15:44:38 -1000 | [diff] [blame] | 2418 | bool temp = var->read_only; |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2419 | if (this->type->qualifier.flags.q.constant) |
Eric Anholt | ac3af37 | 2010-03-31 15:44:38 -1000 | [diff] [blame] | 2420 | var->read_only = false; |
Ian Romanick | ce03088 | 2010-06-17 20:09:34 -0700 | [diff] [blame] | 2421 | |
Ian Romanick | d7f27e2 | 2010-12-10 15:48:15 -0800 | [diff] [blame] | 2422 | /* Never emit code to initialize a uniform. |
| 2423 | */ |
| 2424 | const glsl_type *initializer_type; |
| 2425 | if (!this->type->qualifier.flags.q.uniform) { |
| 2426 | result = do_assignment(&initializer_instructions, state, |
| 2427 | lhs, rhs, |
| 2428 | this->get_location()); |
| 2429 | initializer_type = result->type; |
| 2430 | } else |
| 2431 | initializer_type = rhs->type; |
| 2432 | |
Ian Romanick | b0fc510 | 2010-12-07 16:27:22 -0800 | [diff] [blame] | 2433 | /* If the declared variable is an unsized array, it must inherrit |
| 2434 | * its full type from the initializer. A declaration such as |
| 2435 | * |
| 2436 | * uniform float a[] = float[](1.0, 2.0, 3.0, 3.0); |
| 2437 | * |
| 2438 | * becomes |
| 2439 | * |
| 2440 | * uniform float a[4] = float[](1.0, 2.0, 3.0, 3.0); |
| 2441 | * |
| 2442 | * The assignment generated in the if-statement (below) will also |
| 2443 | * automatically handle this case for non-uniforms. |
| 2444 | * |
| 2445 | * If the declared variable is not an array, the types must |
| 2446 | * already match exactly. As a result, the type assignment |
Ian Romanick | d7f27e2 | 2010-12-10 15:48:15 -0800 | [diff] [blame] | 2447 | * here can be done unconditionally. For non-uniforms the call |
| 2448 | * to do_assignment can change the type of the initializer (via |
| 2449 | * the implicit conversion rules). For uniforms the initializer |
| 2450 | * must be a constant expression, and the type of that expression |
| 2451 | * was validated above. |
Ian Romanick | b0fc510 | 2010-12-07 16:27:22 -0800 | [diff] [blame] | 2452 | */ |
Ian Romanick | d7f27e2 | 2010-12-10 15:48:15 -0800 | [diff] [blame] | 2453 | var->type = initializer_type; |
Ian Romanick | b0fc510 | 2010-12-07 16:27:22 -0800 | [diff] [blame] | 2454 | |
Eric Anholt | ac3af37 | 2010-03-31 15:44:38 -1000 | [diff] [blame] | 2455 | var->read_only = temp; |
Ian Romanick | 66faec4 | 2010-03-27 18:56:53 -0700 | [diff] [blame] | 2456 | } |
Ian Romanick | 1936015 | 2010-03-26 18:05:27 -0700 | [diff] [blame] | 2457 | } |
Ian Romanick | 17d86f4 | 2010-03-29 12:59:02 -0700 | [diff] [blame] | 2458 | |
Eric Anholt | 0ed6125 | 2010-03-31 09:29:33 -1000 | [diff] [blame] | 2459 | /* From page 23 (page 29 of the PDF) of the GLSL 1.10 spec: |
| 2460 | * |
| 2461 | * "It is an error to write to a const variable outside of |
| 2462 | * its declaration, so they must be initialized when |
| 2463 | * declared." |
| 2464 | */ |
Ian Romanick | e24d35a | 2010-10-05 16:38:47 -0700 | [diff] [blame] | 2465 | if (this->type->qualifier.flags.q.constant && decl->initializer == NULL) { |
Eric Anholt | 0ed6125 | 2010-03-31 09:29:33 -1000 | [diff] [blame] | 2466 | _mesa_glsl_error(& loc, state, |
| 2467 | "const declaration of `%s' must be initialized"); |
| 2468 | } |
| 2469 | |
Kenneth Graunke | 5d25746 | 2010-08-24 01:45:49 -0700 | [diff] [blame] | 2470 | /* Check if this declaration is actually a re-declaration, either to |
| 2471 | * resize an array or add qualifiers to an existing variable. |
Ian Romanick | 5466b63 | 2010-07-01 12:46:55 -0700 | [diff] [blame] | 2472 | * |
Kenneth Graunke | a044285 | 2010-08-23 14:52:06 -0700 | [diff] [blame] | 2473 | * This is allowed for variables in the current scope, or when at |
| 2474 | * global scope (for built-ins in the implicit outer scope). |
Ian Romanick | 5466b63 | 2010-07-01 12:46:55 -0700 | [diff] [blame] | 2475 | */ |
Kenneth Graunke | 5d25746 | 2010-08-24 01:45:49 -0700 | [diff] [blame] | 2476 | ir_variable *earlier = state->symbols->get_variable(decl->identifier); |
Kenneth Graunke | a044285 | 2010-08-23 14:52:06 -0700 | [diff] [blame] | 2477 | if (earlier != NULL && (state->current_function == NULL || |
| 2478 | state->symbols->name_declared_this_scope(decl->identifier))) { |
Ian Romanick | 5466b63 | 2010-07-01 12:46:55 -0700 | [diff] [blame] | 2479 | |
Kenneth Graunke | 5d25746 | 2010-08-24 01:45:49 -0700 | [diff] [blame] | 2480 | /* From page 24 (page 30 of the PDF) of the GLSL 1.50 spec, |
| 2481 | * |
| 2482 | * "It is legal to declare an array without a size and then |
| 2483 | * later re-declare the same name as an array of the same |
| 2484 | * type and specify a size." |
| 2485 | */ |
| 2486 | if ((earlier->type->array_size() == 0) |
Ian Romanick | 5466b63 | 2010-07-01 12:46:55 -0700 | [diff] [blame] | 2487 | && var->type->is_array() |
| 2488 | && (var->type->element_type() == earlier->type->element_type())) { |
| 2489 | /* FINISHME: This doesn't match the qualifiers on the two |
| 2490 | * FINISHME: declarations. It's not 100% clear whether this is |
| 2491 | * FINISHME: required or not. |
| 2492 | */ |
| 2493 | |
Ian Romanick | cd00d5b | 2010-07-01 13:17:54 -0700 | [diff] [blame] | 2494 | /* From page 54 (page 60 of the PDF) of the GLSL 1.20 spec: |
| 2495 | * |
| 2496 | * "The size [of gl_TexCoord] can be at most |
| 2497 | * gl_MaxTextureCoords." |
Ian Romanick | cd00d5b | 2010-07-01 13:17:54 -0700 | [diff] [blame] | 2498 | */ |
Ian Romanick | 127308b | 2010-07-01 13:30:50 -0700 | [diff] [blame] | 2499 | const unsigned size = unsigned(var->type->array_size()); |
Ian Romanick | cd00d5b | 2010-07-01 13:17:54 -0700 | [diff] [blame] | 2500 | if ((strcmp("gl_TexCoord", var->name) == 0) |
Ian Romanick | 127308b | 2010-07-01 13:30:50 -0700 | [diff] [blame] | 2501 | && (size > state->Const.MaxTextureCoords)) { |
Ian Romanick | cd00d5b | 2010-07-01 13:17:54 -0700 | [diff] [blame] | 2502 | YYLTYPE loc = this->get_location(); |
| 2503 | |
| 2504 | _mesa_glsl_error(& loc, state, "`gl_TexCoord' array size cannot " |
| 2505 | "be larger than gl_MaxTextureCoords (%u)\n", |
Ian Romanick | 127308b | 2010-07-01 13:30:50 -0700 | [diff] [blame] | 2506 | state->Const.MaxTextureCoords); |
Ian Romanick | 12873fa | 2010-07-01 14:10:19 -0700 | [diff] [blame] | 2507 | } else if ((size > 0) && (size <= earlier->max_array_access)) { |
Ian Romanick | 5466b63 | 2010-07-01 12:46:55 -0700 | [diff] [blame] | 2508 | YYLTYPE loc = this->get_location(); |
| 2509 | |
| 2510 | _mesa_glsl_error(& loc, state, "array size must be > %u due to " |
| 2511 | "previous access", |
| 2512 | earlier->max_array_access); |
| 2513 | } |
| 2514 | |
| 2515 | earlier->type = var->type; |
| 2516 | delete var; |
| 2517 | var = NULL; |
Chad Versace | 6e00627 | 2010-10-23 10:40:40 -0700 | [diff] [blame] | 2518 | } else if (state->ARB_fragment_coord_conventions_enable |
Kenneth Graunke | 5d25746 | 2010-08-24 01:45:49 -0700 | [diff] [blame] | 2519 | && strcmp(var->name, "gl_FragCoord") == 0 |
| 2520 | && earlier->type == var->type |
| 2521 | && earlier->mode == var->mode) { |
Eric Anholt | 4a96217 | 2010-07-28 14:41:51 -0700 | [diff] [blame] | 2522 | /* Allow redeclaration of gl_FragCoord for ARB_fcc layout |
| 2523 | * qualifiers. |
| 2524 | */ |
| 2525 | earlier->origin_upper_left = var->origin_upper_left; |
| 2526 | earlier->pixel_center_integer = var->pixel_center_integer; |
Chad Versace | b84e3f5 | 2010-12-15 16:32:47 -0800 | [diff] [blame] | 2527 | |
| 2528 | /* According to section 4.3.7 of the GLSL 1.30 spec, |
| 2529 | * the following built-in varaibles can be redeclared with an |
| 2530 | * interpolation qualifier: |
| 2531 | * * gl_FrontColor |
| 2532 | * * gl_BackColor |
| 2533 | * * gl_FrontSecondaryColor |
| 2534 | * * gl_BackSecondaryColor |
| 2535 | * * gl_Color |
| 2536 | * * gl_SecondaryColor |
| 2537 | */ |
| 2538 | } else if (state->language_version >= 130 |
| 2539 | && (strcmp(var->name, "gl_FrontColor") == 0 |
| 2540 | || strcmp(var->name, "gl_BackColor") == 0 |
| 2541 | || strcmp(var->name, "gl_FrontSecondaryColor") == 0 |
| 2542 | || strcmp(var->name, "gl_BackSecondaryColor") == 0 |
| 2543 | || strcmp(var->name, "gl_Color") == 0 |
| 2544 | || strcmp(var->name, "gl_SecondaryColor") == 0) |
| 2545 | && earlier->type == var->type |
| 2546 | && earlier->mode == var->mode) { |
| 2547 | earlier->interpolation = var->interpolation; |
Ian Romanick | 5466b63 | 2010-07-01 12:46:55 -0700 | [diff] [blame] | 2548 | } else { |
| 2549 | YYLTYPE loc = this->get_location(); |
Kenneth Graunke | 5d25746 | 2010-08-24 01:45:49 -0700 | [diff] [blame] | 2550 | _mesa_glsl_error(&loc, state, "`%s' redeclared", decl->identifier); |
Ian Romanick | 5466b63 | 2010-07-01 12:46:55 -0700 | [diff] [blame] | 2551 | } |
| 2552 | |
| 2553 | continue; |
| 2554 | } |
| 2555 | |
Kenneth Graunke | 5d25746 | 2010-08-24 01:45:49 -0700 | [diff] [blame] | 2556 | /* By now, we know it's a new variable declaration (we didn't hit the |
| 2557 | * above "continue"). |
| 2558 | * |
| 2559 | * From page 15 (page 21 of the PDF) of the GLSL 1.10 spec, |
Ian Romanick | 5466b63 | 2010-07-01 12:46:55 -0700 | [diff] [blame] | 2560 | * |
| 2561 | * "Identifiers starting with "gl_" are reserved for use by |
| 2562 | * OpenGL, and may not be declared in a shader as either a |
| 2563 | * variable or a function." |
| 2564 | */ |
Ian Romanick | de3b40d | 2010-08-26 09:24:58 -0700 | [diff] [blame] | 2565 | if (strncmp(decl->identifier, "gl_", 3) == 0) |
Ian Romanick | 5466b63 | 2010-07-01 12:46:55 -0700 | [diff] [blame] | 2566 | _mesa_glsl_error(& loc, state, |
| 2567 | "identifier `%s' uses reserved `gl_' prefix", |
| 2568 | decl->identifier); |
Ian Romanick | 5466b63 | 2010-07-01 12:46:55 -0700 | [diff] [blame] | 2569 | |
Kenneth Graunke | 5d25746 | 2010-08-24 01:45:49 -0700 | [diff] [blame] | 2570 | /* Add the variable to the symbol table. Note that the initializer's |
| 2571 | * IR was already processed earlier (though it hasn't been emitted yet), |
| 2572 | * without the variable in scope. |
| 2573 | * |
| 2574 | * This differs from most C-like languages, but it follows the GLSL |
| 2575 | * specification. From page 28 (page 34 of the PDF) of the GLSL 1.50 |
| 2576 | * spec: |
| 2577 | * |
| 2578 | * "Within a declaration, the scope of a name starts immediately |
| 2579 | * after the initializer if present or immediately after the name |
| 2580 | * being declared if not." |
| 2581 | */ |
Eric Anholt | 001eee5 | 2010-11-05 06:11:24 -0700 | [diff] [blame] | 2582 | if (!state->symbols->add_variable(var)) { |
Kenneth Graunke | 5d25746 | 2010-08-24 01:45:49 -0700 | [diff] [blame] | 2583 | YYLTYPE loc = this->get_location(); |
| 2584 | _mesa_glsl_error(&loc, state, "name `%s' already taken in the " |
| 2585 | "current scope", decl->identifier); |
| 2586 | continue; |
| 2587 | } |
| 2588 | |
Eric Anholt | 8048226 | 2010-08-05 14:41:09 -0700 | [diff] [blame] | 2589 | /* Push the variable declaration to the top. It means that all |
| 2590 | * the variable declarations will appear in a funny |
| 2591 | * last-to-first order, but otherwise we run into trouble if a |
| 2592 | * function is prototyped, a global var is decled, then the |
| 2593 | * function is defined with usage of the global var. See |
| 2594 | * glslparsertest's CorrectModule.frag. |
| 2595 | */ |
| 2596 | instructions->push_head(var); |
Eric Anholt | fa33d0b | 2010-07-29 13:50:17 -0700 | [diff] [blame] | 2597 | instructions->append_list(&initializer_instructions); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2598 | } |
| 2599 | |
Eric Anholt | 8558459 | 2010-04-14 15:38:52 -0700 | [diff] [blame] | 2600 | |
| 2601 | /* Generally, variable declarations do not have r-values. However, |
| 2602 | * one is used for the declaration in |
| 2603 | * |
| 2604 | * while (bool b = some_condition()) { |
| 2605 | * ... |
| 2606 | * } |
| 2607 | * |
| 2608 | * so we return the rvalue from the last seen declaration here. |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2609 | */ |
Eric Anholt | 8558459 | 2010-04-14 15:38:52 -0700 | [diff] [blame] | 2610 | return result; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2611 | } |
| 2612 | |
| 2613 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 2614 | ir_rvalue * |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 2615 | ast_parameter_declarator::hir(exec_list *instructions, |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 2616 | struct _mesa_glsl_parse_state *state) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2617 | { |
Kenneth Graunke | 953ff12 | 2010-06-25 13:14:37 -0700 | [diff] [blame] | 2618 | void *ctx = state; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2619 | const struct glsl_type *type; |
| 2620 | const char *name = NULL; |
Eric Anholt | 2e063f1 | 2010-03-28 00:56:22 -0700 | [diff] [blame] | 2621 | YYLTYPE loc = this->get_location(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2622 | |
Ian Romanick | d612a12 | 2010-03-31 16:22:06 -0700 | [diff] [blame] | 2623 | type = this->type->specifier->glsl_type(& name, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2624 | |
| 2625 | if (type == NULL) { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2626 | if (name != NULL) { |
| 2627 | _mesa_glsl_error(& loc, state, |
| 2628 | "invalid type `%s' in declaration of `%s'", |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 2629 | name, this->identifier); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2630 | } else { |
| 2631 | _mesa_glsl_error(& loc, state, |
| 2632 | "invalid type in declaration of `%s'", |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 2633 | this->identifier); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2634 | } |
| 2635 | |
Ian Romanick | 0471e8b | 2010-03-26 14:33:41 -0700 | [diff] [blame] | 2636 | type = glsl_type::error_type; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2637 | } |
| 2638 | |
Eric Anholt | 068c80c | 2010-03-31 09:56:36 -1000 | [diff] [blame] | 2639 | /* From page 62 (page 68 of the PDF) of the GLSL 1.50 spec: |
| 2640 | * |
| 2641 | * "Functions that accept no input arguments need not use void in the |
| 2642 | * argument list because prototypes (or definitions) are required and |
| 2643 | * therefore there is no ambiguity when an empty argument list "( )" is |
| 2644 | * declared. The idiom "(void)" as a parameter list is provided for |
| 2645 | * convenience." |
| 2646 | * |
| 2647 | * Placing this check here prevents a void parameter being set up |
| 2648 | * for a function, which avoids tripping up checks for main taking |
| 2649 | * parameters and lookups of an unnamed symbol. |
| 2650 | */ |
Ian Romanick | cf37c9e | 2010-04-02 15:30:45 -0700 | [diff] [blame] | 2651 | if (type->is_void()) { |
| 2652 | if (this->identifier != NULL) |
| 2653 | _mesa_glsl_error(& loc, state, |
| 2654 | "named parameter cannot have type `void'"); |
| 2655 | |
| 2656 | is_void = true; |
Eric Anholt | 068c80c | 2010-03-31 09:56:36 -1000 | [diff] [blame] | 2657 | return NULL; |
Ian Romanick | cf37c9e | 2010-04-02 15:30:45 -0700 | [diff] [blame] | 2658 | } |
Eric Anholt | 068c80c | 2010-03-31 09:56:36 -1000 | [diff] [blame] | 2659 | |
Ian Romanick | 45d8a70 | 2010-04-02 15:09:33 -0700 | [diff] [blame] | 2660 | if (formal_parameter && (this->identifier == NULL)) { |
| 2661 | _mesa_glsl_error(& loc, state, "formal parameter lacks a name"); |
| 2662 | return NULL; |
| 2663 | } |
| 2664 | |
Kenneth Graunke | e511a35 | 2010-08-21 15:30:34 -0700 | [diff] [blame] | 2665 | /* This only handles "vec4 foo[..]". The earlier specifier->glsl_type(...) |
| 2666 | * call already handled the "vec4[..] foo" case. |
| 2667 | */ |
| 2668 | if (this->is_array) { |
Kenneth Graunke | d8e34e2 | 2010-08-07 02:56:01 -0700 | [diff] [blame] | 2669 | type = process_array_type(&loc, type, this->array_size, state); |
Kenneth Graunke | e511a35 | 2010-08-21 15:30:34 -0700 | [diff] [blame] | 2670 | } |
| 2671 | |
| 2672 | if (type->array_size() == 0) { |
| 2673 | _mesa_glsl_error(&loc, state, "arrays passed as parameters must have " |
| 2674 | "a declared size."); |
| 2675 | type = glsl_type::error_type; |
| 2676 | } |
| 2677 | |
Ian Romanick | cf37c9e | 2010-04-02 15:30:45 -0700 | [diff] [blame] | 2678 | is_void = false; |
Ian Romanick | 7e2aa91 | 2010-07-19 17:12:42 -0700 | [diff] [blame] | 2679 | ir_variable *var = new(ctx) ir_variable(type, this->identifier, ir_var_in); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2680 | |
Ian Romanick | cdb8d54 | 2010-03-11 14:48:51 -0800 | [diff] [blame] | 2681 | /* Apply any specified qualifiers to the parameter declaration. Note that |
| 2682 | * for function parameters the default mode is 'in'. |
| 2683 | */ |
Eric Anholt | 2e063f1 | 2010-03-28 00:56:22 -0700 | [diff] [blame] | 2684 | apply_type_qualifier_to_variable(& this->type->qualifier, var, state, & loc); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2685 | |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 2686 | instructions->push_tail(var); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2687 | |
| 2688 | /* Parameter declarations do not have r-values. |
| 2689 | */ |
| 2690 | return NULL; |
| 2691 | } |
| 2692 | |
| 2693 | |
Ian Romanick | 45d8a70 | 2010-04-02 15:09:33 -0700 | [diff] [blame] | 2694 | void |
Ian Romanick | 304ea90 | 2010-05-10 11:17:53 -0700 | [diff] [blame] | 2695 | ast_parameter_declarator::parameters_to_hir(exec_list *ast_parameters, |
Ian Romanick | 45d8a70 | 2010-04-02 15:09:33 -0700 | [diff] [blame] | 2696 | bool formal, |
| 2697 | exec_list *ir_parameters, |
| 2698 | _mesa_glsl_parse_state *state) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2699 | { |
Ian Romanick | cf37c9e | 2010-04-02 15:30:45 -0700 | [diff] [blame] | 2700 | ast_parameter_declarator *void_param = NULL; |
| 2701 | unsigned count = 0; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2702 | |
Ian Romanick | 2b97dc6 | 2010-05-10 17:42:05 -0700 | [diff] [blame] | 2703 | foreach_list_typed (ast_parameter_declarator, param, link, ast_parameters) { |
Ian Romanick | 45d8a70 | 2010-04-02 15:09:33 -0700 | [diff] [blame] | 2704 | param->formal_parameter = formal; |
Eric Anholt | 068c80c | 2010-03-31 09:56:36 -1000 | [diff] [blame] | 2705 | param->hir(ir_parameters, state); |
Ian Romanick | cf37c9e | 2010-04-02 15:30:45 -0700 | [diff] [blame] | 2706 | |
| 2707 | if (param->is_void) |
| 2708 | void_param = param; |
| 2709 | |
| 2710 | count++; |
| 2711 | } |
| 2712 | |
| 2713 | if ((void_param != NULL) && (count > 1)) { |
| 2714 | YYLTYPE loc = void_param->get_location(); |
| 2715 | |
| 2716 | _mesa_glsl_error(& loc, state, |
| 2717 | "`void' parameter must be only parameter"); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2718 | } |
| 2719 | } |
| 2720 | |
| 2721 | |
Kenneth Graunke | 6fae1e4 | 2010-12-06 10:54:05 -0800 | [diff] [blame] | 2722 | void |
| 2723 | emit_function(_mesa_glsl_parse_state *state, exec_list *instructions, |
| 2724 | ir_function *f) |
| 2725 | { |
| 2726 | /* Emit the new function header */ |
| 2727 | if (state->current_function == NULL) { |
| 2728 | instructions->push_tail(f); |
| 2729 | } else { |
| 2730 | /* IR invariants disallow function declarations or definitions nested |
| 2731 | * within other function definitions. Insert the new ir_function |
| 2732 | * block in the instruction sequence before the ir_function block |
| 2733 | * containing the current ir_function_signature. |
| 2734 | */ |
| 2735 | ir_function *const curr = |
| 2736 | const_cast<ir_function *>(state->current_function->function()); |
| 2737 | |
| 2738 | curr->insert_before(f); |
| 2739 | } |
| 2740 | } |
| 2741 | |
| 2742 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 2743 | ir_rvalue * |
Ian Romanick | 92318a9 | 2010-03-31 18:23:21 -0700 | [diff] [blame] | 2744 | ast_function::hir(exec_list *instructions, |
| 2745 | struct _mesa_glsl_parse_state *state) |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2746 | { |
Kenneth Graunke | 953ff12 | 2010-06-25 13:14:37 -0700 | [diff] [blame] | 2747 | void *ctx = state; |
Ian Romanick | 18238de | 2010-03-01 13:49:10 -0800 | [diff] [blame] | 2748 | ir_function *f = NULL; |
Ian Romanick | 92318a9 | 2010-03-31 18:23:21 -0700 | [diff] [blame] | 2749 | ir_function_signature *sig = NULL; |
| 2750 | exec_list hir_parameters; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2751 | |
Kenneth Graunke | ac04c25 | 2010-06-29 00:48:10 -0700 | [diff] [blame] | 2752 | const char *const name = identifier; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2753 | |
Ian Romanick | 63b80f8 | 2010-09-01 06:34:58 -0700 | [diff] [blame] | 2754 | /* From page 21 (page 27 of the PDF) of the GLSL 1.20 spec, |
| 2755 | * |
| 2756 | * "Function declarations (prototypes) cannot occur inside of functions; |
| 2757 | * they must be at global scope, or for the built-in functions, outside |
| 2758 | * the global scope." |
| 2759 | * |
| 2760 | * From page 27 (page 33 of the PDF) of the GLSL ES 1.00.16 spec, |
| 2761 | * |
| 2762 | * "User defined functions may only be defined within the global scope." |
| 2763 | * |
| 2764 | * Note that this language does not appear in GLSL 1.10. |
| 2765 | */ |
| 2766 | if ((state->current_function != NULL) && (state->language_version != 110)) { |
| 2767 | YYLTYPE loc = this->get_location(); |
| 2768 | _mesa_glsl_error(&loc, state, |
| 2769 | "declaration of function `%s' not allowed within " |
| 2770 | "function body", name); |
| 2771 | } |
| 2772 | |
Kenneth Graunke | edd180f | 2010-08-20 02:14:35 -0700 | [diff] [blame] | 2773 | /* From page 15 (page 21 of the PDF) of the GLSL 1.10 spec, |
| 2774 | * |
| 2775 | * "Identifiers starting with "gl_" are reserved for use by |
| 2776 | * OpenGL, and may not be declared in a shader as either a |
| 2777 | * variable or a function." |
| 2778 | */ |
| 2779 | if (strncmp(name, "gl_", 3) == 0) { |
| 2780 | YYLTYPE loc = this->get_location(); |
| 2781 | _mesa_glsl_error(&loc, state, |
| 2782 | "identifier `%s' uses reserved `gl_' prefix", name); |
| 2783 | } |
| 2784 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2785 | /* Convert the list of function parameters to HIR now so that they can be |
| 2786 | * used below to compare this function's signature with previously seen |
| 2787 | * signatures for functions with the same name. |
| 2788 | */ |
Ian Romanick | 45d8a70 | 2010-04-02 15:09:33 -0700 | [diff] [blame] | 2789 | ast_parameter_declarator::parameters_to_hir(& this->parameters, |
| 2790 | is_definition, |
| 2791 | & hir_parameters, state); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2792 | |
Ian Romanick | e39cc69 | 2010-03-23 12:19:13 -0700 | [diff] [blame] | 2793 | const char *return_type_name; |
| 2794 | const glsl_type *return_type = |
Ian Romanick | 92318a9 | 2010-03-31 18:23:21 -0700 | [diff] [blame] | 2795 | this->return_type->specifier->glsl_type(& return_type_name, state); |
Ian Romanick | e39cc69 | 2010-03-23 12:19:13 -0700 | [diff] [blame] | 2796 | |
Eric Anholt | 76e96d7 | 2010-08-23 13:26:52 -0700 | [diff] [blame] | 2797 | if (!return_type) { |
| 2798 | YYLTYPE loc = this->get_location(); |
| 2799 | _mesa_glsl_error(&loc, state, |
| 2800 | "function `%s' has undeclared return type `%s'", |
| 2801 | name, return_type_name); |
| 2802 | return_type = glsl_type::error_type; |
| 2803 | } |
Ian Romanick | e39cc69 | 2010-03-23 12:19:13 -0700 | [diff] [blame] | 2804 | |
Kenneth Graunke | ac04c25 | 2010-06-29 00:48:10 -0700 | [diff] [blame] | 2805 | /* From page 56 (page 62 of the PDF) of the GLSL 1.30 spec: |
| 2806 | * "No qualifier is allowed on the return type of a function." |
| 2807 | */ |
| 2808 | if (this->return_type->has_qualifiers()) { |
| 2809 | YYLTYPE loc = this->get_location(); |
| 2810 | _mesa_glsl_error(& loc, state, |
| 2811 | "function `%s' return type has qualifiers", name); |
| 2812 | } |
| 2813 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2814 | /* Verify that this function's signature either doesn't match a previously |
| 2815 | * seen signature for a function with the same name, or, if a match is found, |
| 2816 | * that the previously seen signature does not have an associated definition. |
| 2817 | */ |
Ian Romanick | e466b18 | 2010-09-01 14:16:53 -0700 | [diff] [blame] | 2818 | f = state->symbols->get_function(name); |
Kenneth Graunke | 81f0339 | 2010-09-16 02:52:25 -0700 | [diff] [blame] | 2819 | if (f != NULL && (state->es_shader || f->has_user_signature())) { |
Ian Romanick | 202604e | 2010-08-11 16:58:25 -0700 | [diff] [blame] | 2820 | sig = f->exact_matching_signature(&hir_parameters); |
Kenneth Graunke | 0d605cb | 2010-04-28 12:04:23 -0700 | [diff] [blame] | 2821 | if (sig != NULL) { |
| 2822 | const char *badvar = sig->qualifiers_match(&hir_parameters); |
| 2823 | if (badvar != NULL) { |
| 2824 | YYLTYPE loc = this->get_location(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2825 | |
Kenneth Graunke | 0d605cb | 2010-04-28 12:04:23 -0700 | [diff] [blame] | 2826 | _mesa_glsl_error(&loc, state, "function `%s' parameter `%s' " |
| 2827 | "qualifiers don't match prototype", name, badvar); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2828 | } |
| 2829 | |
Kenneth Graunke | 0d605cb | 2010-04-28 12:04:23 -0700 | [diff] [blame] | 2830 | if (sig->return_type != return_type) { |
| 2831 | YYLTYPE loc = this->get_location(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2832 | |
Kenneth Graunke | 0d605cb | 2010-04-28 12:04:23 -0700 | [diff] [blame] | 2833 | _mesa_glsl_error(&loc, state, "function `%s' return type doesn't " |
| 2834 | "match prototype", name); |
| 2835 | } |
| 2836 | |
| 2837 | if (is_definition && sig->is_defined) { |
| 2838 | YYLTYPE loc = this->get_location(); |
| 2839 | |
| 2840 | _mesa_glsl_error(& loc, state, "function `%s' redefined", name); |
Kenneth Graunke | 0d605cb | 2010-04-28 12:04:23 -0700 | [diff] [blame] | 2841 | } |
| 2842 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2843 | } else { |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 2844 | f = new(ctx) ir_function(name); |
Eric Anholt | e8f5ebf | 2010-11-05 06:08:45 -0700 | [diff] [blame] | 2845 | if (!state->symbols->add_function(f)) { |
Kenneth Graunke | e095913 | 2010-08-25 16:37:46 -0700 | [diff] [blame] | 2846 | /* This function name shadows a non-function use of the same name. */ |
| 2847 | YYLTYPE loc = this->get_location(); |
| 2848 | |
| 2849 | _mesa_glsl_error(&loc, state, "function name `%s' conflicts with " |
| 2850 | "non-function", name); |
| 2851 | return NULL; |
| 2852 | } |
Kenneth Graunke | 9fa99f3 | 2010-04-21 12:30:22 -0700 | [diff] [blame] | 2853 | |
Kenneth Graunke | 6fae1e4 | 2010-12-06 10:54:05 -0800 | [diff] [blame] | 2854 | emit_function(state, instructions, f); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2855 | } |
| 2856 | |
Eric Anholt | ab372da | 2010-03-28 01:24:55 -0700 | [diff] [blame] | 2857 | /* Verify the return type of main() */ |
| 2858 | if (strcmp(name, "main") == 0) { |
Ian Romanick | 25711a8 | 2010-03-31 17:39:10 -0700 | [diff] [blame] | 2859 | if (! return_type->is_void()) { |
Eric Anholt | ab372da | 2010-03-28 01:24:55 -0700 | [diff] [blame] | 2860 | YYLTYPE loc = this->get_location(); |
| 2861 | |
| 2862 | _mesa_glsl_error(& loc, state, "main() must return void"); |
| 2863 | } |
Eric Anholt | 174cc03 | 2010-03-30 23:37:51 -1000 | [diff] [blame] | 2864 | |
Ian Romanick | 92318a9 | 2010-03-31 18:23:21 -0700 | [diff] [blame] | 2865 | if (!hir_parameters.is_empty()) { |
Eric Anholt | 174cc03 | 2010-03-30 23:37:51 -1000 | [diff] [blame] | 2866 | YYLTYPE loc = this->get_location(); |
| 2867 | |
| 2868 | _mesa_glsl_error(& loc, state, "main() must not take any parameters"); |
| 2869 | } |
Eric Anholt | ab372da | 2010-03-28 01:24:55 -0700 | [diff] [blame] | 2870 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2871 | |
| 2872 | /* Finish storing the information about this new function in its signature. |
| 2873 | */ |
Ian Romanick | 92318a9 | 2010-03-31 18:23:21 -0700 | [diff] [blame] | 2874 | if (sig == NULL) { |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 2875 | sig = new(ctx) ir_function_signature(return_type); |
Ian Romanick | 92318a9 | 2010-03-31 18:23:21 -0700 | [diff] [blame] | 2876 | f->add_signature(sig); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2877 | } |
| 2878 | |
Kenneth Graunke | bff6013 | 2010-04-28 12:44:24 -0700 | [diff] [blame] | 2879 | sig->replace_parameters(&hir_parameters); |
Ian Romanick | 92318a9 | 2010-03-31 18:23:21 -0700 | [diff] [blame] | 2880 | signature = sig; |
Ian Romanick | e29a585 | 2010-03-31 17:54:26 -0700 | [diff] [blame] | 2881 | |
Ian Romanick | 92318a9 | 2010-03-31 18:23:21 -0700 | [diff] [blame] | 2882 | /* Function declarations (prototypes) do not have r-values. |
| 2883 | */ |
| 2884 | return NULL; |
| 2885 | } |
| 2886 | |
| 2887 | |
| 2888 | ir_rvalue * |
| 2889 | ast_function_definition::hir(exec_list *instructions, |
| 2890 | struct _mesa_glsl_parse_state *state) |
| 2891 | { |
| 2892 | prototype->is_definition = true; |
| 2893 | prototype->hir(instructions, state); |
| 2894 | |
| 2895 | ir_function_signature *signature = prototype->signature; |
Kenneth Graunke | 826a39c | 2010-08-20 02:04:52 -0700 | [diff] [blame] | 2896 | if (signature == NULL) |
| 2897 | return NULL; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2898 | |
Ian Romanick | 41ec6a4 | 2010-03-19 17:08:05 -0700 | [diff] [blame] | 2899 | assert(state->current_function == NULL); |
| 2900 | state->current_function = signature; |
Kenneth Graunke | 6de8256 | 2010-06-29 09:59:40 -0700 | [diff] [blame] | 2901 | state->found_return = false; |
Ian Romanick | 41ec6a4 | 2010-03-19 17:08:05 -0700 | [diff] [blame] | 2902 | |
Ian Romanick | e29a585 | 2010-03-31 17:54:26 -0700 | [diff] [blame] | 2903 | /* Duplicate parameters declared in the prototype as concrete variables. |
| 2904 | * Add these to the symbol table. |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2905 | */ |
Ian Romanick | 8bde4ce | 2010-03-19 11:57:24 -0700 | [diff] [blame] | 2906 | state->symbols->push_scope(); |
Ian Romanick | e29a585 | 2010-03-31 17:54:26 -0700 | [diff] [blame] | 2907 | foreach_iter(exec_list_iterator, iter, signature->parameters) { |
Eric Anholt | fbc7c0b | 2010-04-07 14:32:53 -0700 | [diff] [blame] | 2908 | ir_variable *const var = ((ir_instruction *) iter.get())->as_variable(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2909 | |
Eric Anholt | fbc7c0b | 2010-04-07 14:32:53 -0700 | [diff] [blame] | 2910 | assert(var != NULL); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2911 | |
Ian Romanick | 3359e58 | 2010-03-19 15:38:52 -0700 | [diff] [blame] | 2912 | /* The only way a parameter would "exist" is if two parameters have |
| 2913 | * the same name. |
| 2914 | */ |
| 2915 | if (state->symbols->name_declared_this_scope(var->name)) { |
| 2916 | YYLTYPE loc = this->get_location(); |
| 2917 | |
| 2918 | _mesa_glsl_error(& loc, state, "parameter `%s' redeclared", var->name); |
| 2919 | } else { |
Eric Anholt | 001eee5 | 2010-11-05 06:11:24 -0700 | [diff] [blame] | 2920 | state->symbols->add_variable(var); |
Ian Romanick | 3359e58 | 2010-03-19 15:38:52 -0700 | [diff] [blame] | 2921 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2922 | } |
| 2923 | |
Kenneth Graunke | 9fa99f3 | 2010-04-21 12:30:22 -0700 | [diff] [blame] | 2924 | /* Convert the body of the function to HIR. */ |
Eric Anholt | 894ea97 | 2010-04-07 13:19:11 -0700 | [diff] [blame] | 2925 | this->body->hir(&signature->body, state); |
Kenneth Graunke | 9fa99f3 | 2010-04-21 12:30:22 -0700 | [diff] [blame] | 2926 | signature->is_defined = true; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2927 | |
Ian Romanick | 8bde4ce | 2010-03-19 11:57:24 -0700 | [diff] [blame] | 2928 | state->symbols->pop_scope(); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2929 | |
Ian Romanick | 41ec6a4 | 2010-03-19 17:08:05 -0700 | [diff] [blame] | 2930 | assert(state->current_function == signature); |
| 2931 | state->current_function = NULL; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2932 | |
Kenneth Graunke | 6de8256 | 2010-06-29 09:59:40 -0700 | [diff] [blame] | 2933 | if (!signature->return_type->is_void() && !state->found_return) { |
| 2934 | YYLTYPE loc = this->get_location(); |
| 2935 | _mesa_glsl_error(& loc, state, "function `%s' has non-void return type " |
| 2936 | "%s, but no return statement", |
| 2937 | signature->function_name(), |
| 2938 | signature->return_type->name); |
| 2939 | } |
| 2940 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2941 | /* Function definitions do not have r-values. |
| 2942 | */ |
| 2943 | return NULL; |
| 2944 | } |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 2945 | |
| 2946 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 2947 | ir_rvalue * |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 2948 | ast_jump_statement::hir(exec_list *instructions, |
| 2949 | struct _mesa_glsl_parse_state *state) |
| 2950 | { |
Kenneth Graunke | 953ff12 | 2010-06-25 13:14:37 -0700 | [diff] [blame] | 2951 | void *ctx = state; |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 2952 | |
Ian Romanick | c0e76d8 | 2010-04-05 16:53:19 -0700 | [diff] [blame] | 2953 | switch (mode) { |
| 2954 | case ast_return: { |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 2955 | ir_return *inst; |
Eric Anholt | aad7c77 | 2010-03-30 23:28:20 -1000 | [diff] [blame] | 2956 | assert(state->current_function); |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 2957 | |
| 2958 | if (opt_return_value) { |
Eric Anholt | ab79d4e | 2010-03-30 23:23:16 -1000 | [diff] [blame] | 2959 | if (state->current_function->return_type->base_type == |
| 2960 | GLSL_TYPE_VOID) { |
| 2961 | YYLTYPE loc = this->get_location(); |
| 2962 | |
| 2963 | _mesa_glsl_error(& loc, state, |
| 2964 | "`return` with a value, in function `%s' " |
| 2965 | "returning void", |
Kenneth Graunke | f96c52b | 2010-04-21 15:17:26 -0700 | [diff] [blame] | 2966 | state->current_function->function_name()); |
Eric Anholt | ab79d4e | 2010-03-30 23:23:16 -1000 | [diff] [blame] | 2967 | } |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 2968 | |
Chad Versace | b4cdba6 | 2010-11-17 10:28:01 -0800 | [diff] [blame] | 2969 | ir_rvalue *const ret = opt_return_value->hir(instructions, state); |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 2970 | assert(ret != NULL); |
| 2971 | |
Kenneth Graunke | 18707eb | 2010-06-28 23:38:04 -0700 | [diff] [blame] | 2972 | /* Implicit conversions are not allowed for return values. */ |
| 2973 | if (state->current_function->return_type != ret->type) { |
| 2974 | YYLTYPE loc = this->get_location(); |
| 2975 | |
| 2976 | _mesa_glsl_error(& loc, state, |
| 2977 | "`return' with wrong type %s, in function `%s' " |
| 2978 | "returning %s", |
| 2979 | ret->type->name, |
| 2980 | state->current_function->function_name(), |
| 2981 | state->current_function->return_type->name); |
| 2982 | } |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 2983 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 2984 | inst = new(ctx) ir_return(ret); |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 2985 | } else { |
Eric Anholt | aad7c77 | 2010-03-30 23:28:20 -1000 | [diff] [blame] | 2986 | if (state->current_function->return_type->base_type != |
| 2987 | GLSL_TYPE_VOID) { |
| 2988 | YYLTYPE loc = this->get_location(); |
| 2989 | |
| 2990 | _mesa_glsl_error(& loc, state, |
| 2991 | "`return' with no value, in function %s returning " |
| 2992 | "non-void", |
Kenneth Graunke | f96c52b | 2010-04-21 15:17:26 -0700 | [diff] [blame] | 2993 | state->current_function->function_name()); |
Eric Anholt | aad7c77 | 2010-03-30 23:28:20 -1000 | [diff] [blame] | 2994 | } |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 2995 | inst = new(ctx) ir_return; |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 2996 | } |
| 2997 | |
Kenneth Graunke | 6de8256 | 2010-06-29 09:59:40 -0700 | [diff] [blame] | 2998 | state->found_return = true; |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 2999 | instructions->push_tail(inst); |
Ian Romanick | c0e76d8 | 2010-04-05 16:53:19 -0700 | [diff] [blame] | 3000 | break; |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 3001 | } |
| 3002 | |
Ian Romanick | c0e76d8 | 2010-04-05 16:53:19 -0700 | [diff] [blame] | 3003 | case ast_discard: |
Eric Anholt | b980207 | 2010-03-30 23:40:14 -1000 | [diff] [blame] | 3004 | if (state->target != fragment_shader) { |
| 3005 | YYLTYPE loc = this->get_location(); |
| 3006 | |
| 3007 | _mesa_glsl_error(& loc, state, |
| 3008 | "`discard' may only appear in a fragment shader"); |
| 3009 | } |
Kenneth Graunke | 77049a7 | 2010-06-30 14:11:00 -0700 | [diff] [blame] | 3010 | instructions->push_tail(new(ctx) ir_discard); |
Ian Romanick | c0e76d8 | 2010-04-05 16:53:19 -0700 | [diff] [blame] | 3011 | break; |
| 3012 | |
| 3013 | case ast_break: |
| 3014 | case ast_continue: |
Ian Romanick | 4cf20cd | 2010-04-05 17:13:47 -0700 | [diff] [blame] | 3015 | /* FINISHME: Handle switch-statements. They cannot contain 'continue', |
| 3016 | * FINISHME: and they use a different IR instruction for 'break'. |
| 3017 | */ |
| 3018 | /* FINISHME: Correctly handle the nesting. If a switch-statement is |
| 3019 | * FINISHME: inside a loop, a 'continue' is valid and will bind to the |
| 3020 | * FINISHME: loop. |
| 3021 | */ |
| 3022 | if (state->loop_or_switch_nesting == NULL) { |
| 3023 | YYLTYPE loc = this->get_location(); |
| 3024 | |
| 3025 | _mesa_glsl_error(& loc, state, |
| 3026 | "`%s' may only appear in a loop", |
| 3027 | (mode == ast_break) ? "break" : "continue"); |
| 3028 | } else { |
| 3029 | ir_loop *const loop = state->loop_or_switch_nesting->as_loop(); |
| 3030 | |
Eric Anholt | 2d1ed7b | 2010-07-22 12:55:16 -0700 | [diff] [blame] | 3031 | /* Inline the for loop expression again, since we don't know |
| 3032 | * where near the end of the loop body the normal copy of it |
| 3033 | * is going to be placed. |
| 3034 | */ |
| 3035 | if (mode == ast_continue && |
| 3036 | state->loop_or_switch_nesting_ast->rest_expression) { |
| 3037 | state->loop_or_switch_nesting_ast->rest_expression->hir(instructions, |
| 3038 | state); |
| 3039 | } |
| 3040 | |
Ian Romanick | 4cf20cd | 2010-04-05 17:13:47 -0700 | [diff] [blame] | 3041 | if (loop != NULL) { |
| 3042 | ir_loop_jump *const jump = |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 3043 | new(ctx) ir_loop_jump((mode == ast_break) |
| 3044 | ? ir_loop_jump::jump_break |
| 3045 | : ir_loop_jump::jump_continue); |
Ian Romanick | 4cf20cd | 2010-04-05 17:13:47 -0700 | [diff] [blame] | 3046 | instructions->push_tail(jump); |
| 3047 | } |
| 3048 | } |
| 3049 | |
Ian Romanick | c0e76d8 | 2010-04-05 16:53:19 -0700 | [diff] [blame] | 3050 | break; |
Eric Anholt | b980207 | 2010-03-30 23:40:14 -1000 | [diff] [blame] | 3051 | } |
| 3052 | |
Ian Romanick | 16a246c | 2010-03-19 16:45:19 -0700 | [diff] [blame] | 3053 | /* Jump instructions do not have r-values. |
| 3054 | */ |
| 3055 | return NULL; |
| 3056 | } |
Ian Romanick | 3c6fea3 | 2010-03-29 14:11:25 -0700 | [diff] [blame] | 3057 | |
| 3058 | |
| 3059 | ir_rvalue * |
| 3060 | ast_selection_statement::hir(exec_list *instructions, |
| 3061 | struct _mesa_glsl_parse_state *state) |
| 3062 | { |
Kenneth Graunke | 953ff12 | 2010-06-25 13:14:37 -0700 | [diff] [blame] | 3063 | void *ctx = state; |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 3064 | |
Ian Romanick | 3c6fea3 | 2010-03-29 14:11:25 -0700 | [diff] [blame] | 3065 | ir_rvalue *const condition = this->condition->hir(instructions, state); |
Ian Romanick | 3c6fea3 | 2010-03-29 14:11:25 -0700 | [diff] [blame] | 3066 | |
| 3067 | /* From page 66 (page 72 of the PDF) of the GLSL 1.50 spec: |
| 3068 | * |
| 3069 | * "Any expression whose type evaluates to a Boolean can be used as the |
| 3070 | * conditional expression bool-expression. Vector types are not accepted |
| 3071 | * as the expression to if." |
| 3072 | * |
| 3073 | * The checks are separated so that higher quality diagnostics can be |
| 3074 | * generated for cases where both rules are violated. |
| 3075 | */ |
| 3076 | if (!condition->type->is_boolean() || !condition->type->is_scalar()) { |
| 3077 | YYLTYPE loc = this->condition->get_location(); |
| 3078 | |
| 3079 | _mesa_glsl_error(& loc, state, "if-statement condition must be scalar " |
| 3080 | "boolean"); |
| 3081 | } |
| 3082 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 3083 | ir_if *const stmt = new(ctx) ir_if(condition); |
Ian Romanick | 3c6fea3 | 2010-03-29 14:11:25 -0700 | [diff] [blame] | 3084 | |
Kenneth Graunke | 665d75c | 2010-08-18 13:54:50 -0700 | [diff] [blame] | 3085 | if (then_statement != NULL) { |
| 3086 | state->symbols->push_scope(); |
Ian Romanick | 4f9d72f | 2010-05-10 11:10:26 -0700 | [diff] [blame] | 3087 | then_statement->hir(& stmt->then_instructions, state); |
Kenneth Graunke | 665d75c | 2010-08-18 13:54:50 -0700 | [diff] [blame] | 3088 | state->symbols->pop_scope(); |
| 3089 | } |
Ian Romanick | 3c6fea3 | 2010-03-29 14:11:25 -0700 | [diff] [blame] | 3090 | |
Kenneth Graunke | 665d75c | 2010-08-18 13:54:50 -0700 | [diff] [blame] | 3091 | if (else_statement != NULL) { |
| 3092 | state->symbols->push_scope(); |
Ian Romanick | 4f9d72f | 2010-05-10 11:10:26 -0700 | [diff] [blame] | 3093 | else_statement->hir(& stmt->else_instructions, state); |
Kenneth Graunke | 665d75c | 2010-08-18 13:54:50 -0700 | [diff] [blame] | 3094 | state->symbols->pop_scope(); |
| 3095 | } |
Ian Romanick | 3c6fea3 | 2010-03-29 14:11:25 -0700 | [diff] [blame] | 3096 | |
| 3097 | instructions->push_tail(stmt); |
| 3098 | |
| 3099 | /* if-statements do not have r-values. |
| 3100 | */ |
| 3101 | return NULL; |
| 3102 | } |
Ian Romanick | 9e7d010 | 2010-04-05 16:37:49 -0700 | [diff] [blame] | 3103 | |
| 3104 | |
Ian Romanick | 8c46ed2 | 2010-04-05 18:07:27 -0700 | [diff] [blame] | 3105 | void |
| 3106 | ast_iteration_statement::condition_to_hir(ir_loop *stmt, |
| 3107 | struct _mesa_glsl_parse_state *state) |
Ian Romanick | 9e7d010 | 2010-04-05 16:37:49 -0700 | [diff] [blame] | 3108 | { |
Kenneth Graunke | 953ff12 | 2010-06-25 13:14:37 -0700 | [diff] [blame] | 3109 | void *ctx = state; |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 3110 | |
Ian Romanick | 9e7d010 | 2010-04-05 16:37:49 -0700 | [diff] [blame] | 3111 | if (condition != NULL) { |
| 3112 | ir_rvalue *const cond = |
| 3113 | condition->hir(& stmt->body_instructions, state); |
| 3114 | |
| 3115 | if ((cond == NULL) |
| 3116 | || !cond->type->is_boolean() || !cond->type->is_scalar()) { |
| 3117 | YYLTYPE loc = condition->get_location(); |
| 3118 | |
| 3119 | _mesa_glsl_error(& loc, state, |
| 3120 | "loop condition must be scalar boolean"); |
| 3121 | } else { |
| 3122 | /* As the first code in the loop body, generate a block that looks |
| 3123 | * like 'if (!condition) break;' as the loop termination condition. |
| 3124 | */ |
| 3125 | ir_rvalue *const not_cond = |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 3126 | new(ctx) ir_expression(ir_unop_logic_not, glsl_type::bool_type, cond, |
| 3127 | NULL); |
Ian Romanick | 9e7d010 | 2010-04-05 16:37:49 -0700 | [diff] [blame] | 3128 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 3129 | ir_if *const if_stmt = new(ctx) ir_if(not_cond); |
Ian Romanick | 9e7d010 | 2010-04-05 16:37:49 -0700 | [diff] [blame] | 3130 | |
| 3131 | ir_jump *const break_stmt = |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 3132 | new(ctx) ir_loop_jump(ir_loop_jump::jump_break); |
Ian Romanick | 9e7d010 | 2010-04-05 16:37:49 -0700 | [diff] [blame] | 3133 | |
| 3134 | if_stmt->then_instructions.push_tail(break_stmt); |
| 3135 | stmt->body_instructions.push_tail(if_stmt); |
| 3136 | } |
| 3137 | } |
Ian Romanick | 8c46ed2 | 2010-04-05 18:07:27 -0700 | [diff] [blame] | 3138 | } |
| 3139 | |
| 3140 | |
| 3141 | ir_rvalue * |
| 3142 | ast_iteration_statement::hir(exec_list *instructions, |
| 3143 | struct _mesa_glsl_parse_state *state) |
| 3144 | { |
Kenneth Graunke | 953ff12 | 2010-06-25 13:14:37 -0700 | [diff] [blame] | 3145 | void *ctx = state; |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 3146 | |
Ian Romanick | 4846066 | 2010-04-16 16:42:43 -0700 | [diff] [blame] | 3147 | /* For-loops and while-loops start a new scope, but do-while loops do not. |
Ian Romanick | 8c46ed2 | 2010-04-05 18:07:27 -0700 | [diff] [blame] | 3148 | */ |
Ian Romanick | 4846066 | 2010-04-16 16:42:43 -0700 | [diff] [blame] | 3149 | if (mode != ast_do_while) |
Ian Romanick | 8c46ed2 | 2010-04-05 18:07:27 -0700 | [diff] [blame] | 3150 | state->symbols->push_scope(); |
| 3151 | |
| 3152 | if (init_statement != NULL) |
| 3153 | init_statement->hir(instructions, state); |
| 3154 | |
Carl Worth | 1660a29 | 2010-06-23 18:11:51 -0700 | [diff] [blame] | 3155 | ir_loop *const stmt = new(ctx) ir_loop(); |
Ian Romanick | 8c46ed2 | 2010-04-05 18:07:27 -0700 | [diff] [blame] | 3156 | instructions->push_tail(stmt); |
| 3157 | |
| 3158 | /* Track the current loop and / or switch-statement nesting. |
| 3159 | */ |
| 3160 | ir_instruction *const nesting = state->loop_or_switch_nesting; |
Eric Anholt | 2d1ed7b | 2010-07-22 12:55:16 -0700 | [diff] [blame] | 3161 | ast_iteration_statement *nesting_ast = state->loop_or_switch_nesting_ast; |
| 3162 | |
Ian Romanick | 8c46ed2 | 2010-04-05 18:07:27 -0700 | [diff] [blame] | 3163 | state->loop_or_switch_nesting = stmt; |
Eric Anholt | 2d1ed7b | 2010-07-22 12:55:16 -0700 | [diff] [blame] | 3164 | state->loop_or_switch_nesting_ast = this; |
Ian Romanick | 8c46ed2 | 2010-04-05 18:07:27 -0700 | [diff] [blame] | 3165 | |
| 3166 | if (mode != ast_do_while) |
| 3167 | condition_to_hir(stmt, state); |
Ian Romanick | 9e7d010 | 2010-04-05 16:37:49 -0700 | [diff] [blame] | 3168 | |
Ian Romanick | 4f9d72f | 2010-05-10 11:10:26 -0700 | [diff] [blame] | 3169 | if (body != NULL) |
| 3170 | body->hir(& stmt->body_instructions, state); |
Ian Romanick | 9e7d010 | 2010-04-05 16:37:49 -0700 | [diff] [blame] | 3171 | |
| 3172 | if (rest_expression != NULL) |
| 3173 | rest_expression->hir(& stmt->body_instructions, state); |
| 3174 | |
Ian Romanick | 8c46ed2 | 2010-04-05 18:07:27 -0700 | [diff] [blame] | 3175 | if (mode == ast_do_while) |
| 3176 | condition_to_hir(stmt, state); |
| 3177 | |
Ian Romanick | 4846066 | 2010-04-16 16:42:43 -0700 | [diff] [blame] | 3178 | if (mode != ast_do_while) |
Ian Romanick | 9e7d010 | 2010-04-05 16:37:49 -0700 | [diff] [blame] | 3179 | state->symbols->pop_scope(); |
| 3180 | |
Ian Romanick | e9d0f26 | 2010-04-05 17:01:53 -0700 | [diff] [blame] | 3181 | /* Restore previous nesting before returning. |
| 3182 | */ |
| 3183 | state->loop_or_switch_nesting = nesting; |
Eric Anholt | 2d1ed7b | 2010-07-22 12:55:16 -0700 | [diff] [blame] | 3184 | state->loop_or_switch_nesting_ast = nesting_ast; |
Ian Romanick | e9d0f26 | 2010-04-05 17:01:53 -0700 | [diff] [blame] | 3185 | |
Ian Romanick | 9e7d010 | 2010-04-05 16:37:49 -0700 | [diff] [blame] | 3186 | /* Loops do not have r-values. |
| 3187 | */ |
| 3188 | return NULL; |
| 3189 | } |
Ian Romanick | 3455ce6 | 2010-04-19 15:13:15 -0700 | [diff] [blame] | 3190 | |
| 3191 | |
| 3192 | ir_rvalue * |
| 3193 | ast_type_specifier::hir(exec_list *instructions, |
| 3194 | struct _mesa_glsl_parse_state *state) |
| 3195 | { |
| 3196 | if (this->structure != NULL) |
| 3197 | return this->structure->hir(instructions, state); |
Ian Romanick | 85ba37b | 2010-04-21 14:33:34 -0700 | [diff] [blame] | 3198 | |
| 3199 | return NULL; |
Ian Romanick | 3455ce6 | 2010-04-19 15:13:15 -0700 | [diff] [blame] | 3200 | } |
| 3201 | |
| 3202 | |
| 3203 | ir_rvalue * |
| 3204 | ast_struct_specifier::hir(exec_list *instructions, |
| 3205 | struct _mesa_glsl_parse_state *state) |
| 3206 | { |
Ian Romanick | 3455ce6 | 2010-04-19 15:13:15 -0700 | [diff] [blame] | 3207 | unsigned decl_count = 0; |
| 3208 | |
| 3209 | /* Make an initial pass over the list of structure fields to determine how |
| 3210 | * many there are. Each element in this list is an ast_declarator_list. |
| 3211 | * This means that we actually need to count the number of elements in the |
| 3212 | * 'declarations' list in each of the elements. |
| 3213 | */ |
Ian Romanick | 2b97dc6 | 2010-05-10 17:42:05 -0700 | [diff] [blame] | 3214 | foreach_list_typed (ast_declarator_list, decl_list, link, |
| 3215 | &this->declarations) { |
Ian Romanick | 304ea90 | 2010-05-10 11:17:53 -0700 | [diff] [blame] | 3216 | foreach_list_const (decl_ptr, & decl_list->declarations) { |
Ian Romanick | 3455ce6 | 2010-04-19 15:13:15 -0700 | [diff] [blame] | 3217 | decl_count++; |
| 3218 | } |
| 3219 | } |
| 3220 | |
Ian Romanick | 3455ce6 | 2010-04-19 15:13:15 -0700 | [diff] [blame] | 3221 | /* Allocate storage for the structure fields and process the field |
| 3222 | * declarations. As the declarations are processed, try to also convert |
| 3223 | * the types to HIR. This ensures that structure definitions embedded in |
| 3224 | * other structure definitions are processed. |
| 3225 | */ |
Eric Anholt | 21b0dbd | 2010-07-20 16:47:25 -0700 | [diff] [blame] | 3226 | glsl_struct_field *const fields = talloc_array(state, glsl_struct_field, |
| 3227 | decl_count); |
Ian Romanick | 3455ce6 | 2010-04-19 15:13:15 -0700 | [diff] [blame] | 3228 | |
| 3229 | unsigned i = 0; |
Ian Romanick | 2b97dc6 | 2010-05-10 17:42:05 -0700 | [diff] [blame] | 3230 | foreach_list_typed (ast_declarator_list, decl_list, link, |
| 3231 | &this->declarations) { |
Ian Romanick | 3455ce6 | 2010-04-19 15:13:15 -0700 | [diff] [blame] | 3232 | const char *type_name; |
| 3233 | |
| 3234 | decl_list->type->specifier->hir(instructions, state); |
| 3235 | |
Kenneth Graunke | c98deb1 | 2010-08-16 14:02:25 -0700 | [diff] [blame] | 3236 | /* Section 10.9 of the GLSL ES 1.00 specification states that |
| 3237 | * embedded structure definitions have been removed from the language. |
| 3238 | */ |
| 3239 | if (state->es_shader && decl_list->type->specifier->structure != NULL) { |
| 3240 | YYLTYPE loc = this->get_location(); |
| 3241 | _mesa_glsl_error(&loc, state, "Embedded structure definitions are " |
| 3242 | "not allowed in GLSL ES 1.00."); |
| 3243 | } |
| 3244 | |
Ian Romanick | 3455ce6 | 2010-04-19 15:13:15 -0700 | [diff] [blame] | 3245 | const glsl_type *decl_type = |
| 3246 | decl_list->type->specifier->glsl_type(& type_name, state); |
| 3247 | |
Ian Romanick | 2b97dc6 | 2010-05-10 17:42:05 -0700 | [diff] [blame] | 3248 | foreach_list_typed (ast_declaration, decl, link, |
| 3249 | &decl_list->declarations) { |
Kenneth Graunke | d8e34e2 | 2010-08-07 02:56:01 -0700 | [diff] [blame] | 3250 | const struct glsl_type *field_type = decl_type; |
| 3251 | if (decl->is_array) { |
| 3252 | YYLTYPE loc = decl->get_location(); |
| 3253 | field_type = process_array_type(&loc, decl_type, decl->array_size, |
| 3254 | state); |
| 3255 | } |
Ian Romanick | 73986a7 | 2010-04-20 16:49:03 -0700 | [diff] [blame] | 3256 | fields[i].type = (field_type != NULL) |
| 3257 | ? field_type : glsl_type::error_type; |
Ian Romanick | 3455ce6 | 2010-04-19 15:13:15 -0700 | [diff] [blame] | 3258 | fields[i].name = decl->identifier; |
| 3259 | i++; |
| 3260 | } |
| 3261 | } |
| 3262 | |
| 3263 | assert(i == decl_count); |
| 3264 | |
Ian Romanick | 49e3577 | 2010-06-28 11:54:57 -0700 | [diff] [blame] | 3265 | const glsl_type *t = |
Kenneth Graunke | ca92ae2 | 2010-09-18 11:11:09 +0200 | [diff] [blame] | 3266 | glsl_type::get_record_instance(fields, decl_count, this->name); |
Ian Romanick | 1d28b61 | 2010-04-20 16:48:24 -0700 | [diff] [blame] | 3267 | |
Ian Romanick | ab89927 | 2010-04-23 13:24:08 -0700 | [diff] [blame] | 3268 | YYLTYPE loc = this->get_location(); |
Ian Romanick | a789ca6 | 2010-09-01 14:08:08 -0700 | [diff] [blame] | 3269 | if (!state->symbols->add_type(name, t)) { |
Ian Romanick | ab89927 | 2010-04-23 13:24:08 -0700 | [diff] [blame] | 3270 | _mesa_glsl_error(& loc, state, "struct `%s' previously defined", name); |
| 3271 | } else { |
Ian Romanick | a2c6df5 | 2010-04-28 13:14:53 -0700 | [diff] [blame] | 3272 | |
| 3273 | const glsl_type **s = (const glsl_type **) |
| 3274 | realloc(state->user_structures, |
| 3275 | sizeof(state->user_structures[0]) * |
| 3276 | (state->num_user_structures + 1)); |
| 3277 | if (s != NULL) { |
| 3278 | s[state->num_user_structures] = t; |
| 3279 | state->user_structures = s; |
| 3280 | state->num_user_structures++; |
| 3281 | } |
Ian Romanick | ab89927 | 2010-04-23 13:24:08 -0700 | [diff] [blame] | 3282 | } |
Ian Romanick | 3455ce6 | 2010-04-19 15:13:15 -0700 | [diff] [blame] | 3283 | |
| 3284 | /* Structure type definitions do not have r-values. |
| 3285 | */ |
| 3286 | return NULL; |
| 3287 | } |