Ian Romanick | 986b8f7 | 2010-03-10 13:58:12 -0800 | [diff] [blame] | 1 | /* -*- c++ -*- */ |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright © 2010 Intel Corporation |
| 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 6 | * copy of this software and associated documentation files (the "Software"), |
| 7 | * to deal in the Software without restriction, including without limitation |
| 8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 9 | * and/or sell copies of the Software, and to permit persons to whom the |
| 10 | * Software is furnished to do so, subject to the following conditions: |
| 11 | * |
| 12 | * The above copyright notice and this permission notice (including the next |
| 13 | * paragraph) shall be included in all copies or substantial portions of the |
| 14 | * Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 22 | * DEALINGS IN THE SOFTWARE. |
| 23 | */ |
| 24 | |
Ian Romanick | e309a60 | 2010-03-15 15:20:15 -0700 | [diff] [blame] | 25 | #pragma once |
| 26 | #ifndef IR_H |
| 27 | #define IR_H |
| 28 | |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 29 | #include "list.h" |
Ian Romanick | 78b51b0 | 2010-03-09 16:23:37 -0800 | [diff] [blame] | 30 | #include "ir_visitor.h" |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 31 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 32 | struct ir_program { |
| 33 | void *bong_hits; |
| 34 | }; |
| 35 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 36 | /** |
| 37 | * Base class of all IR instructions |
| 38 | */ |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 39 | class ir_instruction : public exec_node { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 40 | public: |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 41 | const struct glsl_type *type; |
| 42 | |
Ian Romanick | 78b51b0 | 2010-03-09 16:23:37 -0800 | [diff] [blame] | 43 | virtual void accept(ir_visitor *) = 0; |
| 44 | |
Kenneth Graunke | 44e1dfa | 2010-03-25 23:30:28 -0700 | [diff] [blame] | 45 | /** |
| 46 | * \name IR instruction downcast functions |
| 47 | * |
| 48 | * These functions either cast the object to a derived class or return |
| 49 | * \c NULL if the object's type does not match the specified derived class. |
| 50 | * Additional downcast functions will be added as needed. |
| 51 | */ |
| 52 | /*@{*/ |
| 53 | virtual class ir_variable * as_variable() { return NULL; } |
| 54 | virtual class ir_dereference * as_dereference() { return NULL; } |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 55 | virtual class ir_rvalue * as_rvalue() { return NULL; } |
Kenneth Graunke | 44e1dfa | 2010-03-25 23:30:28 -0700 | [diff] [blame] | 56 | /*@}*/ |
| 57 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 58 | protected: |
Kenneth Graunke | 44e1dfa | 2010-03-25 23:30:28 -0700 | [diff] [blame] | 59 | ir_instruction() |
Ian Romanick | d27ec24 | 2010-03-11 14:23:41 -0800 | [diff] [blame] | 60 | { |
| 61 | /* empty */ |
| 62 | } |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 66 | class ir_rvalue : public ir_instruction { |
| 67 | public: |
| 68 | virtual ir_rvalue * as_rvalue() |
| 69 | { |
| 70 | return this; |
| 71 | } |
| 72 | |
| 73 | virtual bool is_lvalue() |
| 74 | { |
| 75 | return false; |
| 76 | } |
| 77 | |
| 78 | protected: |
| 79 | ir_rvalue() : ir_instruction() { } |
| 80 | }; |
| 81 | |
| 82 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 83 | enum ir_variable_mode { |
| 84 | ir_var_auto = 0, |
| 85 | ir_var_uniform, |
| 86 | ir_var_in, |
| 87 | ir_var_out, |
| 88 | ir_var_inout |
| 89 | }; |
| 90 | |
| 91 | enum ir_varaible_interpolation { |
| 92 | ir_var_smooth = 0, |
| 93 | ir_var_flat, |
| 94 | ir_var_noperspective |
| 95 | }; |
| 96 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 97 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 98 | class ir_variable : public ir_instruction { |
| 99 | public: |
| 100 | ir_variable(const struct glsl_type *, const char *); |
| 101 | |
Kenneth Graunke | 44e1dfa | 2010-03-25 23:30:28 -0700 | [diff] [blame] | 102 | virtual ir_variable *as_variable() |
| 103 | { |
| 104 | return this; |
| 105 | } |
| 106 | |
Ian Romanick | 78b51b0 | 2010-03-09 16:23:37 -0800 | [diff] [blame] | 107 | virtual void accept(ir_visitor *v) |
| 108 | { |
| 109 | v->visit(this); |
| 110 | } |
| 111 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 112 | const char *name; |
| 113 | |
| 114 | unsigned read_only:1; |
| 115 | unsigned centroid:1; |
| 116 | unsigned invariant:1; |
| 117 | |
| 118 | unsigned mode:3; |
| 119 | unsigned interpolation:2; |
| 120 | }; |
| 121 | |
| 122 | |
| 123 | class ir_label : public ir_instruction { |
| 124 | public: |
| 125 | ir_label(const char *label); |
| 126 | |
Ian Romanick | 78b51b0 | 2010-03-09 16:23:37 -0800 | [diff] [blame] | 127 | virtual void accept(ir_visitor *v) |
| 128 | { |
| 129 | v->visit(this); |
| 130 | } |
| 131 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 132 | const char *label; |
| 133 | }; |
| 134 | |
| 135 | |
| 136 | /*@{*/ |
| 137 | class ir_function_signature : public ir_instruction { |
| 138 | public: |
Ian Romanick | e39cc69 | 2010-03-23 12:19:13 -0700 | [diff] [blame] | 139 | ir_function_signature(const glsl_type *return_type); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 140 | |
Ian Romanick | 78b51b0 | 2010-03-09 16:23:37 -0800 | [diff] [blame] | 141 | virtual void accept(ir_visitor *v) |
| 142 | { |
| 143 | v->visit(this); |
| 144 | } |
| 145 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 146 | /** |
| 147 | * Function return type. |
| 148 | * |
| 149 | * \note This discards the optional precision qualifier. |
| 150 | */ |
| 151 | const struct glsl_type *return_type; |
| 152 | |
| 153 | /** |
| 154 | * List of function parameters stored as ir_variable objects. |
| 155 | */ |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 156 | struct exec_list parameters; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 157 | |
| 158 | /** |
| 159 | * Pointer to the label that begins the function definition. |
| 160 | */ |
| 161 | ir_label *definition; |
| 162 | }; |
| 163 | |
| 164 | |
| 165 | /** |
| 166 | * Header for tracking functions in the symbol table |
| 167 | */ |
| 168 | class ir_function : public ir_instruction { |
| 169 | public: |
Ian Romanick | 882dad7 | 2010-03-23 17:42:04 -0700 | [diff] [blame] | 170 | ir_function(const char *name); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 171 | |
Ian Romanick | 78b51b0 | 2010-03-09 16:23:37 -0800 | [diff] [blame] | 172 | virtual void accept(ir_visitor *v) |
| 173 | { |
| 174 | v->visit(this); |
| 175 | } |
| 176 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 177 | /** |
Ian Romanick | 471471f | 2010-03-11 14:50:30 -0800 | [diff] [blame] | 178 | * Find a signature that matches a set of actual parameters. |
| 179 | */ |
| 180 | const ir_function_signature *matching_signature(exec_list *actual_param); |
| 181 | |
| 182 | /** |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 183 | * Name of the function. |
| 184 | */ |
| 185 | const char *name; |
| 186 | |
Ian Romanick | 471471f | 2010-03-11 14:50:30 -0800 | [diff] [blame] | 187 | /** |
| 188 | * Set of overloaded functions with this name. |
| 189 | */ |
Ian Romanick | 0044e7e | 2010-03-08 23:44:00 -0800 | [diff] [blame] | 190 | struct exec_list signatures; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 191 | }; |
| 192 | /*@}*/ |
| 193 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 194 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 195 | class ir_assignment : public ir_rvalue { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 196 | public: |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 197 | ir_assignment(ir_rvalue *lhs, ir_rvalue *rhs, ir_rvalue *condition); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 198 | |
Ian Romanick | 78b51b0 | 2010-03-09 16:23:37 -0800 | [diff] [blame] | 199 | virtual void accept(ir_visitor *v) |
| 200 | { |
| 201 | v->visit(this); |
| 202 | } |
| 203 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 204 | /** |
| 205 | * Left-hand side of the assignment. |
| 206 | */ |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 207 | ir_rvalue *lhs; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 208 | |
| 209 | /** |
| 210 | * Value being assigned |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 211 | */ |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 212 | ir_rvalue *rhs; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 213 | |
| 214 | /** |
| 215 | * Optional condition for the assignment. |
| 216 | */ |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 217 | ir_rvalue *condition; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 218 | }; |
| 219 | |
| 220 | |
| 221 | enum ir_expression_operation { |
| 222 | ir_unop_bit_not, |
| 223 | ir_unop_logic_not, |
| 224 | ir_unop_neg, |
| 225 | ir_unop_abs, |
| 226 | ir_unop_rcp, |
| 227 | ir_unop_rsq, |
| 228 | ir_unop_exp, |
| 229 | ir_unop_log, |
| 230 | ir_unop_f2i, /**< Float-to-integer conversion. */ |
| 231 | ir_unop_i2f, /**< Integer-to-float conversion. */ |
| 232 | |
| 233 | /** |
| 234 | * \name Unary floating-point rounding operations. |
| 235 | */ |
| 236 | /*@{*/ |
| 237 | ir_unop_trunc, |
| 238 | ir_unop_ceil, |
| 239 | ir_unop_floor, |
| 240 | /*@}*/ |
| 241 | |
| 242 | ir_binop_add, |
| 243 | ir_binop_sub, |
| 244 | ir_binop_mul, |
| 245 | ir_binop_div, |
| 246 | ir_binop_mod, |
| 247 | |
| 248 | /** |
| 249 | * \name Binary comparison operators |
| 250 | */ |
| 251 | /*@{*/ |
| 252 | ir_binop_less, |
| 253 | ir_binop_greater, |
| 254 | ir_binop_lequal, |
| 255 | ir_binop_gequal, |
| 256 | ir_binop_equal, |
| 257 | ir_binop_nequal, |
| 258 | /*@}*/ |
| 259 | |
| 260 | /** |
| 261 | * \name Bit-wise binary operations. |
| 262 | */ |
| 263 | /*@{*/ |
| 264 | ir_binop_lshift, |
| 265 | ir_binop_rshift, |
| 266 | ir_binop_bit_and, |
| 267 | ir_binop_bit_xor, |
| 268 | ir_binop_bit_or, |
| 269 | /*@}*/ |
| 270 | |
| 271 | ir_binop_logic_and, |
| 272 | ir_binop_logic_xor, |
| 273 | ir_binop_logic_or, |
| 274 | ir_binop_logic_not, |
| 275 | |
| 276 | ir_binop_dot, |
| 277 | ir_binop_min, |
| 278 | ir_binop_max, |
| 279 | |
| 280 | ir_binop_pow |
| 281 | }; |
| 282 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 283 | class ir_expression : public ir_rvalue { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 284 | public: |
| 285 | ir_expression(int op, const struct glsl_type *type, |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 286 | ir_rvalue *, ir_rvalue *); |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 287 | |
Ian Romanick | 78b51b0 | 2010-03-09 16:23:37 -0800 | [diff] [blame] | 288 | virtual void accept(ir_visitor *v) |
| 289 | { |
| 290 | v->visit(this); |
| 291 | } |
| 292 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 293 | ir_expression_operation operation; |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 294 | ir_rvalue *operands[2]; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 295 | }; |
| 296 | |
| 297 | |
Ian Romanick | ed45ec6 | 2010-03-11 14:34:27 -0800 | [diff] [blame] | 298 | /** |
| 299 | * IR instruction representing a function call |
| 300 | */ |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 301 | class ir_call : public ir_rvalue { |
Ian Romanick | ed45ec6 | 2010-03-11 14:34:27 -0800 | [diff] [blame] | 302 | public: |
Ian Romanick | 471471f | 2010-03-11 14:50:30 -0800 | [diff] [blame] | 303 | ir_call(const ir_function_signature *callee, exec_list *actual_parameters) |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 304 | : ir_rvalue(), callee(callee) |
Ian Romanick | ed45ec6 | 2010-03-11 14:34:27 -0800 | [diff] [blame] | 305 | { |
Ian Romanick | 9e7c34b | 2010-03-23 12:21:18 -0700 | [diff] [blame] | 306 | assert(callee->return_type != NULL); |
| 307 | type = callee->return_type; |
Ian Romanick | 471471f | 2010-03-11 14:50:30 -0800 | [diff] [blame] | 308 | actual_parameters->move_nodes_to(& this->actual_parameters); |
Ian Romanick | ed45ec6 | 2010-03-11 14:34:27 -0800 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | virtual void accept(ir_visitor *v) |
| 312 | { |
| 313 | v->visit(this); |
| 314 | } |
| 315 | |
| 316 | /** |
| 317 | * Get a generic ir_call object when an error occurs |
| 318 | */ |
| 319 | static ir_call *get_error_instruction(); |
| 320 | |
| 321 | private: |
Ian Romanick | 471471f | 2010-03-11 14:50:30 -0800 | [diff] [blame] | 322 | ir_call() |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 323 | : ir_rvalue(), callee(NULL) |
Ian Romanick | 471471f | 2010-03-11 14:50:30 -0800 | [diff] [blame] | 324 | { |
| 325 | /* empty */ |
| 326 | } |
| 327 | |
| 328 | const ir_function_signature *callee; |
Ian Romanick | ed45ec6 | 2010-03-11 14:34:27 -0800 | [diff] [blame] | 329 | exec_list actual_parameters; |
| 330 | }; |
| 331 | |
| 332 | |
Ian Romanick | 9578c87 | 2010-03-19 16:44:52 -0700 | [diff] [blame] | 333 | /** |
| 334 | * \name Jump-like IR instructions. |
| 335 | * |
| 336 | * These include \c break, \c continue, \c return, and \c discard. |
| 337 | */ |
| 338 | /*@{*/ |
| 339 | class ir_jump : public ir_instruction { |
| 340 | protected: |
| 341 | ir_jump() |
Kenneth Graunke | 44e1dfa | 2010-03-25 23:30:28 -0700 | [diff] [blame] | 342 | : ir_instruction() |
Ian Romanick | 9578c87 | 2010-03-19 16:44:52 -0700 | [diff] [blame] | 343 | { |
| 344 | /* empty */ |
| 345 | } |
| 346 | }; |
| 347 | |
| 348 | class ir_return : public ir_jump { |
| 349 | public: |
| 350 | ir_return() |
| 351 | : value(NULL) |
| 352 | { |
| 353 | /* empty */ |
| 354 | } |
| 355 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 356 | ir_return(ir_rvalue *value) |
Ian Romanick | 9578c87 | 2010-03-19 16:44:52 -0700 | [diff] [blame] | 357 | : value(value) |
| 358 | { |
| 359 | /* empty */ |
| 360 | } |
| 361 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 362 | ir_rvalue *get_value() const |
Ian Romanick | 9578c87 | 2010-03-19 16:44:52 -0700 | [diff] [blame] | 363 | { |
| 364 | return value; |
| 365 | } |
| 366 | |
| 367 | virtual void accept(ir_visitor *v) |
| 368 | { |
| 369 | v->visit(this); |
| 370 | } |
| 371 | |
| 372 | private: |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 373 | ir_rvalue *value; |
Ian Romanick | 9578c87 | 2010-03-19 16:44:52 -0700 | [diff] [blame] | 374 | }; |
| 375 | /*@}*/ |
| 376 | |
| 377 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 378 | struct ir_swizzle_mask { |
| 379 | unsigned x:2; |
| 380 | unsigned y:2; |
| 381 | unsigned z:2; |
| 382 | unsigned w:2; |
| 383 | |
| 384 | /** |
| 385 | * Number of components in the swizzle. |
| 386 | */ |
Kenneth Graunke | f25a5ad | 2010-03-25 11:22:42 -0700 | [diff] [blame] | 387 | unsigned num_components:3; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 388 | |
| 389 | /** |
| 390 | * Does the swizzle contain duplicate components? |
| 391 | * |
| 392 | * L-value swizzles cannot contain duplicate components. |
| 393 | */ |
| 394 | unsigned has_duplicates:1; |
| 395 | }; |
| 396 | |
Kenneth Graunke | affc141 | 2010-03-26 01:20:08 -0700 | [diff] [blame^] | 397 | |
| 398 | class ir_swizzle : public ir_rvalue { |
| 399 | public: |
| 400 | ir_swizzle(ir_rvalue *, unsigned x, unsigned y, unsigned z, unsigned w, |
| 401 | unsigned count); |
| 402 | /** |
| 403 | * Construct an ir_swizzle from the textual representation. Can fail. |
| 404 | */ |
| 405 | static ir_swizzle *create(ir_rvalue *, const char *, unsigned vector_length); |
| 406 | |
| 407 | virtual void accept(ir_visitor *v) |
| 408 | { |
| 409 | v->visit(this); |
| 410 | } |
| 411 | |
| 412 | bool is_lvalue() |
| 413 | { |
| 414 | return val->is_lvalue(); |
| 415 | } |
| 416 | |
| 417 | ir_rvalue *val; |
| 418 | ir_swizzle_mask mask; |
| 419 | }; |
| 420 | |
| 421 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 422 | class ir_dereference : public ir_rvalue { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 423 | public: |
| 424 | ir_dereference(struct ir_instruction *); |
| 425 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 426 | ir_dereference(ir_instruction *variable, ir_rvalue *array_index); |
Ian Romanick | 9546997 | 2010-03-25 17:01:15 -0700 | [diff] [blame] | 427 | |
Kenneth Graunke | 44e1dfa | 2010-03-25 23:30:28 -0700 | [diff] [blame] | 428 | virtual ir_dereference *as_dereference() |
| 429 | { |
| 430 | return this; |
| 431 | } |
| 432 | |
Ian Romanick | 78b51b0 | 2010-03-09 16:23:37 -0800 | [diff] [blame] | 433 | virtual void accept(ir_visitor *v) |
| 434 | { |
| 435 | v->visit(this); |
| 436 | } |
| 437 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 438 | bool is_lvalue() |
| 439 | { |
| 440 | return var != NULL; |
| 441 | } |
| 442 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 443 | enum { |
| 444 | ir_reference_variable, |
| 445 | ir_reference_array, |
| 446 | ir_reference_record |
| 447 | } mode; |
| 448 | |
| 449 | /** |
| 450 | * Object being dereferenced. |
| 451 | * |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 452 | * Must be either an \c ir_variable or an \c ir_rvalue. |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 453 | */ |
| 454 | ir_instruction *var; |
| 455 | |
| 456 | union { |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 457 | ir_rvalue *array_index; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 458 | const char *field; |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 459 | } selector; |
| 460 | }; |
| 461 | |
| 462 | |
Kenneth Graunke | fb9fb5f | 2010-03-26 00:25:36 -0700 | [diff] [blame] | 463 | class ir_constant : public ir_rvalue { |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 464 | public: |
| 465 | ir_constant(const struct glsl_type *type, const void *data); |
| 466 | |
Ian Romanick | 78b51b0 | 2010-03-09 16:23:37 -0800 | [diff] [blame] | 467 | virtual void accept(ir_visitor *v) |
| 468 | { |
| 469 | v->visit(this); |
| 470 | } |
| 471 | |
Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 472 | /** |
| 473 | * Value of the constant. |
| 474 | * |
| 475 | * The field used to back the values supplied by the constant is determined |
| 476 | * by the type associated with the \c ir_instruction. Constants may be |
| 477 | * scalars, vectors, or matrices. |
| 478 | */ |
| 479 | union { |
| 480 | unsigned u[16]; |
| 481 | int i[16]; |
| 482 | float f[16]; |
| 483 | bool b[16]; |
| 484 | } value; |
| 485 | }; |
| 486 | |
Ian Romanick | adfb0cd | 2010-03-10 10:43:16 -0800 | [diff] [blame] | 487 | |
| 488 | extern void |
| 489 | _mesa_glsl_initialize_variables(exec_list *instructions, |
| 490 | struct _mesa_glsl_parse_state *state); |
Ian Romanick | e309a60 | 2010-03-15 15:20:15 -0700 | [diff] [blame] | 491 | |
| 492 | #endif /* IR_H */ |