blob: 04ac0b3e01386a2ec8f38b77566237c7007c4b47 [file] [log] [blame]
Ian Romanick986b8f72010-03-10 13:58:12 -08001/* -*- c++ -*- */
Ian Romanicka87ac252010-02-22 13:19:34 -08002/*
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 Romanicke309a602010-03-15 15:20:15 -070025#pragma once
26#ifndef IR_H
27#define IR_H
28
Ian Romanick0044e7e2010-03-08 23:44:00 -080029#include "list.h"
Ian Romanick78b51b02010-03-09 16:23:37 -080030#include "ir_visitor.h"
Ian Romanick0044e7e2010-03-08 23:44:00 -080031
Ian Romanicka87ac252010-02-22 13:19:34 -080032struct ir_program {
33 void *bong_hits;
34};
35
Ian Romanicka87ac252010-02-22 13:19:34 -080036/**
37 * Base class of all IR instructions
38 */
Ian Romanick0044e7e2010-03-08 23:44:00 -080039class ir_instruction : public exec_node {
Ian Romanicka87ac252010-02-22 13:19:34 -080040public:
Ian Romanicka87ac252010-02-22 13:19:34 -080041 const struct glsl_type *type;
42
Ian Romanick78b51b02010-03-09 16:23:37 -080043 virtual void accept(ir_visitor *) = 0;
44
Kenneth Graunke44e1dfa2010-03-25 23:30:28 -070045 /**
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 Graunkefb9fb5f2010-03-26 00:25:36 -070055 virtual class ir_rvalue * as_rvalue() { return NULL; }
Kenneth Graunke44e1dfa2010-03-25 23:30:28 -070056 /*@}*/
57
Ian Romanicka87ac252010-02-22 13:19:34 -080058protected:
Kenneth Graunke44e1dfa2010-03-25 23:30:28 -070059 ir_instruction()
Ian Romanickd27ec242010-03-11 14:23:41 -080060 {
61 /* empty */
62 }
Ian Romanicka87ac252010-02-22 13:19:34 -080063};
64
65
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -070066class ir_rvalue : public ir_instruction {
67public:
68 virtual ir_rvalue * as_rvalue()
69 {
70 return this;
71 }
72
73 virtual bool is_lvalue()
74 {
75 return false;
76 }
77
78protected:
79 ir_rvalue() : ir_instruction() { }
80};
81
82
Ian Romanicka87ac252010-02-22 13:19:34 -080083enum 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
91enum ir_varaible_interpolation {
92 ir_var_smooth = 0,
93 ir_var_flat,
94 ir_var_noperspective
95};
96
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -070097
Ian Romanicka87ac252010-02-22 13:19:34 -080098class ir_variable : public ir_instruction {
99public:
100 ir_variable(const struct glsl_type *, const char *);
101
Kenneth Graunke44e1dfa2010-03-25 23:30:28 -0700102 virtual ir_variable *as_variable()
103 {
104 return this;
105 }
106
Ian Romanick78b51b02010-03-09 16:23:37 -0800107 virtual void accept(ir_visitor *v)
108 {
109 v->visit(this);
110 }
111
Ian Romanicka87ac252010-02-22 13:19:34 -0800112 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
123class ir_label : public ir_instruction {
124public:
125 ir_label(const char *label);
126
Ian Romanick78b51b02010-03-09 16:23:37 -0800127 virtual void accept(ir_visitor *v)
128 {
129 v->visit(this);
130 }
131
Ian Romanicka87ac252010-02-22 13:19:34 -0800132 const char *label;
133};
134
135
136/*@{*/
137class ir_function_signature : public ir_instruction {
138public:
Ian Romanicke39cc692010-03-23 12:19:13 -0700139 ir_function_signature(const glsl_type *return_type);
Ian Romanicka87ac252010-02-22 13:19:34 -0800140
Ian Romanick78b51b02010-03-09 16:23:37 -0800141 virtual void accept(ir_visitor *v)
142 {
143 v->visit(this);
144 }
145
Ian Romanicka87ac252010-02-22 13:19:34 -0800146 /**
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 Romanick0044e7e2010-03-08 23:44:00 -0800156 struct exec_list parameters;
Ian Romanicka87ac252010-02-22 13:19:34 -0800157
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 */
168class ir_function : public ir_instruction {
169public:
Ian Romanick882dad72010-03-23 17:42:04 -0700170 ir_function(const char *name);
Ian Romanicka87ac252010-02-22 13:19:34 -0800171
Ian Romanick78b51b02010-03-09 16:23:37 -0800172 virtual void accept(ir_visitor *v)
173 {
174 v->visit(this);
175 }
176
Ian Romanicka87ac252010-02-22 13:19:34 -0800177 /**
Ian Romanick471471f2010-03-11 14:50:30 -0800178 * 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 Romanicka87ac252010-02-22 13:19:34 -0800183 * Name of the function.
184 */
185 const char *name;
186
Ian Romanick471471f2010-03-11 14:50:30 -0800187 /**
188 * Set of overloaded functions with this name.
189 */
Ian Romanick0044e7e2010-03-08 23:44:00 -0800190 struct exec_list signatures;
Ian Romanicka87ac252010-02-22 13:19:34 -0800191};
192/*@}*/
193
Ian Romanicka87ac252010-02-22 13:19:34 -0800194
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700195class ir_assignment : public ir_rvalue {
Ian Romanicka87ac252010-02-22 13:19:34 -0800196public:
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700197 ir_assignment(ir_rvalue *lhs, ir_rvalue *rhs, ir_rvalue *condition);
Ian Romanicka87ac252010-02-22 13:19:34 -0800198
Ian Romanick78b51b02010-03-09 16:23:37 -0800199 virtual void accept(ir_visitor *v)
200 {
201 v->visit(this);
202 }
203
Ian Romanicka87ac252010-02-22 13:19:34 -0800204 /**
205 * Left-hand side of the assignment.
206 */
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700207 ir_rvalue *lhs;
Ian Romanicka87ac252010-02-22 13:19:34 -0800208
209 /**
210 * Value being assigned
Ian Romanicka87ac252010-02-22 13:19:34 -0800211 */
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700212 ir_rvalue *rhs;
Ian Romanicka87ac252010-02-22 13:19:34 -0800213
214 /**
215 * Optional condition for the assignment.
216 */
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700217 ir_rvalue *condition;
Ian Romanicka87ac252010-02-22 13:19:34 -0800218};
219
220
221enum 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. */
Ian Romanick6c86ea82010-03-26 16:11:48 -0700232 ir_unop_u2f, /**< Unsigned-to-float conversion. */
Ian Romanicka87ac252010-02-22 13:19:34 -0800233
234 /**
235 * \name Unary floating-point rounding operations.
236 */
237 /*@{*/
238 ir_unop_trunc,
239 ir_unop_ceil,
240 ir_unop_floor,
241 /*@}*/
242
243 ir_binop_add,
244 ir_binop_sub,
245 ir_binop_mul,
246 ir_binop_div,
247 ir_binop_mod,
248
249 /**
250 * \name Binary comparison operators
251 */
252 /*@{*/
253 ir_binop_less,
254 ir_binop_greater,
255 ir_binop_lequal,
256 ir_binop_gequal,
257 ir_binop_equal,
258 ir_binop_nequal,
259 /*@}*/
260
261 /**
262 * \name Bit-wise binary operations.
263 */
264 /*@{*/
265 ir_binop_lshift,
266 ir_binop_rshift,
267 ir_binop_bit_and,
268 ir_binop_bit_xor,
269 ir_binop_bit_or,
270 /*@}*/
271
272 ir_binop_logic_and,
273 ir_binop_logic_xor,
274 ir_binop_logic_or,
275 ir_binop_logic_not,
276
277 ir_binop_dot,
278 ir_binop_min,
279 ir_binop_max,
280
281 ir_binop_pow
282};
283
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700284class ir_expression : public ir_rvalue {
Ian Romanicka87ac252010-02-22 13:19:34 -0800285public:
286 ir_expression(int op, const struct glsl_type *type,
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700287 ir_rvalue *, ir_rvalue *);
Ian Romanicka87ac252010-02-22 13:19:34 -0800288
Ian Romanick78b51b02010-03-09 16:23:37 -0800289 virtual void accept(ir_visitor *v)
290 {
291 v->visit(this);
292 }
293
Ian Romanicka87ac252010-02-22 13:19:34 -0800294 ir_expression_operation operation;
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700295 ir_rvalue *operands[2];
Ian Romanicka87ac252010-02-22 13:19:34 -0800296};
297
298
Ian Romanicked45ec62010-03-11 14:34:27 -0800299/**
300 * IR instruction representing a function call
301 */
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700302class ir_call : public ir_rvalue {
Ian Romanicked45ec62010-03-11 14:34:27 -0800303public:
Ian Romanick471471f2010-03-11 14:50:30 -0800304 ir_call(const ir_function_signature *callee, exec_list *actual_parameters)
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700305 : ir_rvalue(), callee(callee)
Ian Romanicked45ec62010-03-11 14:34:27 -0800306 {
Ian Romanick9e7c34b2010-03-23 12:21:18 -0700307 assert(callee->return_type != NULL);
308 type = callee->return_type;
Ian Romanick471471f2010-03-11 14:50:30 -0800309 actual_parameters->move_nodes_to(& this->actual_parameters);
Ian Romanicked45ec62010-03-11 14:34:27 -0800310 }
311
312 virtual void accept(ir_visitor *v)
313 {
314 v->visit(this);
315 }
316
317 /**
318 * Get a generic ir_call object when an error occurs
319 */
320 static ir_call *get_error_instruction();
321
322private:
Ian Romanick471471f2010-03-11 14:50:30 -0800323 ir_call()
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700324 : ir_rvalue(), callee(NULL)
Ian Romanick471471f2010-03-11 14:50:30 -0800325 {
326 /* empty */
327 }
328
329 const ir_function_signature *callee;
Ian Romanicked45ec62010-03-11 14:34:27 -0800330 exec_list actual_parameters;
331};
332
333
Ian Romanick9578c872010-03-19 16:44:52 -0700334/**
335 * \name Jump-like IR instructions.
336 *
337 * These include \c break, \c continue, \c return, and \c discard.
338 */
339/*@{*/
340class ir_jump : public ir_instruction {
341protected:
342 ir_jump()
Kenneth Graunke44e1dfa2010-03-25 23:30:28 -0700343 : ir_instruction()
Ian Romanick9578c872010-03-19 16:44:52 -0700344 {
345 /* empty */
346 }
347};
348
349class ir_return : public ir_jump {
350public:
351 ir_return()
352 : value(NULL)
353 {
354 /* empty */
355 }
356
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700357 ir_return(ir_rvalue *value)
Ian Romanick9578c872010-03-19 16:44:52 -0700358 : value(value)
359 {
360 /* empty */
361 }
362
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700363 ir_rvalue *get_value() const
Ian Romanick9578c872010-03-19 16:44:52 -0700364 {
365 return value;
366 }
367
368 virtual void accept(ir_visitor *v)
369 {
370 v->visit(this);
371 }
372
373private:
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700374 ir_rvalue *value;
Ian Romanick9578c872010-03-19 16:44:52 -0700375};
376/*@}*/
377
378
Ian Romanicka87ac252010-02-22 13:19:34 -0800379struct ir_swizzle_mask {
380 unsigned x:2;
381 unsigned y:2;
382 unsigned z:2;
383 unsigned w:2;
384
385 /**
386 * Number of components in the swizzle.
387 */
Kenneth Graunkef25a5ad2010-03-25 11:22:42 -0700388 unsigned num_components:3;
Ian Romanicka87ac252010-02-22 13:19:34 -0800389
390 /**
391 * Does the swizzle contain duplicate components?
392 *
393 * L-value swizzles cannot contain duplicate components.
394 */
395 unsigned has_duplicates:1;
396};
397
Kenneth Graunkeaffc1412010-03-26 01:20:08 -0700398
399class ir_swizzle : public ir_rvalue {
400public:
401 ir_swizzle(ir_rvalue *, unsigned x, unsigned y, unsigned z, unsigned w,
402 unsigned count);
403 /**
404 * Construct an ir_swizzle from the textual representation. Can fail.
405 */
406 static ir_swizzle *create(ir_rvalue *, const char *, unsigned vector_length);
407
408 virtual void accept(ir_visitor *v)
409 {
410 v->visit(this);
411 }
412
413 bool is_lvalue()
414 {
415 return val->is_lvalue();
416 }
417
418 ir_rvalue *val;
419 ir_swizzle_mask mask;
420};
421
422
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700423class ir_dereference : public ir_rvalue {
Ian Romanicka87ac252010-02-22 13:19:34 -0800424public:
425 ir_dereference(struct ir_instruction *);
426
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700427 ir_dereference(ir_instruction *variable, ir_rvalue *array_index);
Ian Romanick95469972010-03-25 17:01:15 -0700428
Kenneth Graunke44e1dfa2010-03-25 23:30:28 -0700429 virtual ir_dereference *as_dereference()
430 {
431 return this;
432 }
433
Ian Romanick78b51b02010-03-09 16:23:37 -0800434 virtual void accept(ir_visitor *v)
435 {
436 v->visit(this);
437 }
438
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700439 bool is_lvalue()
440 {
441 return var != NULL;
442 }
443
Ian Romanicka87ac252010-02-22 13:19:34 -0800444 enum {
445 ir_reference_variable,
446 ir_reference_array,
447 ir_reference_record
448 } mode;
449
450 /**
451 * Object being dereferenced.
452 *
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700453 * Must be either an \c ir_variable or an \c ir_rvalue.
Ian Romanicka87ac252010-02-22 13:19:34 -0800454 */
455 ir_instruction *var;
456
457 union {
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700458 ir_rvalue *array_index;
Ian Romanicka87ac252010-02-22 13:19:34 -0800459 const char *field;
Ian Romanicka87ac252010-02-22 13:19:34 -0800460 } selector;
461};
462
463
Kenneth Graunkefb9fb5f2010-03-26 00:25:36 -0700464class ir_constant : public ir_rvalue {
Ian Romanicka87ac252010-02-22 13:19:34 -0800465public:
466 ir_constant(const struct glsl_type *type, const void *data);
467
Ian Romanick78b51b02010-03-09 16:23:37 -0800468 virtual void accept(ir_visitor *v)
469 {
470 v->visit(this);
471 }
472
Ian Romanicka87ac252010-02-22 13:19:34 -0800473 /**
474 * Value of the constant.
475 *
476 * The field used to back the values supplied by the constant is determined
477 * by the type associated with the \c ir_instruction. Constants may be
478 * scalars, vectors, or matrices.
479 */
480 union {
481 unsigned u[16];
482 int i[16];
483 float f[16];
484 bool b[16];
485 } value;
486};
487
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800488
489extern void
490_mesa_glsl_initialize_variables(exec_list *instructions,
491 struct _mesa_glsl_parse_state *state);
Ian Romanicke309a602010-03-15 15:20:15 -0700492
493#endif /* IR_H */