3fc834906a3e2c7ebf4d1c3fe50933fb49c571d6
[mesa.git] / src / glsl / ir.h
1 /* -*- c++ -*- */
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
25 #pragma once
26 #ifndef IR_H
27 #define IR_H
28
29 #include <cstdio>
30 #include <cstdlib>
31
32 extern "C" {
33 #include <talloc.h>
34 }
35
36 #include "list.h"
37 #include "ir_visitor.h"
38 #include "ir_hierarchical_visitor.h"
39
40 /**
41 * \defgroup IR Intermediate representation nodes
42 *
43 * @{
44 */
45
46 /**
47 * Class tags
48 *
49 * Each concrete class derived from \c ir_instruction has a value in this
50 * enumerant. The value for the type is stored in \c ir_instruction::ir_type
51 * by the constructor. While using type tags is not very C++, it is extremely
52 * convenient. For example, during debugging you can simply inspect
53 * \c ir_instruction::ir_type to find out the actual type of the object.
54 *
55 * In addition, it is possible to use a switch-statement based on \c
56 * \c ir_instruction::ir_type to select different behavior for different object
57 * types. For functions that have only slight differences for several object
58 * types, this allows writing very straightforward, readable code.
59 */
60 enum ir_node_type {
61 /**
62 * Zero is unused so that the IR validator can detect cases where
63 * \c ir_instruction::ir_type has not been initialized.
64 */
65 ir_type_unset,
66 ir_type_variable,
67 ir_type_assignment,
68 ir_type_call,
69 ir_type_constant,
70 ir_type_dereference_array,
71 ir_type_dereference_record,
72 ir_type_dereference_variable,
73 ir_type_discard,
74 ir_type_expression,
75 ir_type_function,
76 ir_type_function_signature,
77 ir_type_if,
78 ir_type_loop,
79 ir_type_loop_jump,
80 ir_type_return,
81 ir_type_swizzle,
82 ir_type_texture,
83 ir_type_max /**< maximum ir_type enum number, for validation */
84 };
85
86 /**
87 * Base class of all IR instructions
88 */
89 class ir_instruction : public exec_node {
90 public:
91 enum ir_node_type ir_type;
92 const struct glsl_type *type;
93
94 /** ir_print_visitor helper for debugging. */
95 void print(void) const;
96
97 virtual void accept(ir_visitor *) = 0;
98 virtual ir_visitor_status accept(ir_hierarchical_visitor *) = 0;
99 virtual ir_instruction *clone(void *mem_ctx,
100 struct hash_table *ht) const = 0;
101
102 /**
103 * \name IR instruction downcast functions
104 *
105 * These functions either cast the object to a derived class or return
106 * \c NULL if the object's type does not match the specified derived class.
107 * Additional downcast functions will be added as needed.
108 */
109 /*@{*/
110 virtual class ir_variable * as_variable() { return NULL; }
111 virtual class ir_function * as_function() { return NULL; }
112 virtual class ir_dereference * as_dereference() { return NULL; }
113 virtual class ir_dereference_array * as_dereference_array() { return NULL; }
114 virtual class ir_dereference_variable *as_dereference_variable() { return NULL; }
115 virtual class ir_expression * as_expression() { return NULL; }
116 virtual class ir_rvalue * as_rvalue() { return NULL; }
117 virtual class ir_loop * as_loop() { return NULL; }
118 virtual class ir_assignment * as_assignment() { return NULL; }
119 virtual class ir_call * as_call() { return NULL; }
120 virtual class ir_return * as_return() { return NULL; }
121 virtual class ir_if * as_if() { return NULL; }
122 virtual class ir_swizzle * as_swizzle() { return NULL; }
123 virtual class ir_constant * as_constant() { return NULL; }
124 /*@}*/
125
126 protected:
127 ir_instruction()
128 {
129 ir_type = ir_type_unset;
130 type = NULL;
131 }
132 };
133
134
135 class ir_rvalue : public ir_instruction {
136 public:
137 virtual ir_rvalue *clone(void *mem_ctx, struct hash_table *) const = 0;
138
139 virtual ir_constant *constant_expression_value() = 0;
140
141 virtual ir_rvalue * as_rvalue()
142 {
143 return this;
144 }
145
146 virtual bool is_lvalue()
147 {
148 return false;
149 }
150
151 /**
152 * Get the variable that is ultimately referenced by an r-value
153 */
154 virtual ir_variable *variable_referenced()
155 {
156 return NULL;
157 }
158
159
160 /**
161 * If an r-value is a reference to a whole variable, get that variable
162 *
163 * \return
164 * Pointer to a variable that is completely dereferenced by the r-value. If
165 * the r-value is not a dereference or the dereference does not access the
166 * entire variable (i.e., it's just one array element, struct field), \c NULL
167 * is returned.
168 */
169 virtual ir_variable *whole_variable_referenced()
170 {
171 return NULL;
172 }
173
174 protected:
175 ir_rvalue();
176 };
177
178
179 /**
180 * Variable storage classes
181 */
182 enum ir_variable_mode {
183 ir_var_auto = 0, /**< Function local variables and globals. */
184 ir_var_uniform, /**< Variable declared as a uniform. */
185 ir_var_in,
186 ir_var_out,
187 ir_var_inout,
188 ir_var_temporary /**< Temporary variable generated during compilation. */
189 };
190
191 enum ir_variable_interpolation {
192 ir_var_smooth = 0,
193 ir_var_flat,
194 ir_var_noperspective
195 };
196
197
198 class ir_variable : public ir_instruction {
199 public:
200 ir_variable(const struct glsl_type *, const char *, ir_variable_mode);
201
202 virtual ir_variable *clone(void *mem_ctx, struct hash_table *ht) const;
203
204 virtual ir_variable *as_variable()
205 {
206 return this;
207 }
208
209 virtual void accept(ir_visitor *v)
210 {
211 v->visit(this);
212 }
213
214 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
215
216
217 /**
218 * Get the string value for the interpolation qualifier
219 *
220 * \return The string that would be used in a shader to specify \c
221 * mode will be returned.
222 *
223 * This function should only be used on a shader input or output variable.
224 */
225 const char *interpolation_string() const;
226
227 /**
228 * Calculate the number of slots required to hold this variable
229 *
230 * This is used to determine how many uniform or varying locations a variable
231 * occupies. The count is in units of floating point components.
232 */
233 unsigned component_slots() const;
234
235 /**
236 * Delcared name of the variable
237 */
238 const char *name;
239
240 /**
241 * Highest element accessed with a constant expression array index
242 *
243 * Not used for non-array variables.
244 */
245 unsigned max_array_access;
246
247 /**
248 * Is the variable read-only?
249 *
250 * This is set for variables declared as \c const, shader inputs,
251 * and uniforms.
252 */
253 unsigned read_only:1;
254 unsigned centroid:1;
255 unsigned invariant:1;
256
257 /**
258 * Storage class of the variable.
259 *
260 * \sa ir_variable_mode
261 */
262 unsigned mode:3;
263
264 /**
265 * Interpolation mode for shader inputs / outputs
266 *
267 * \sa ir_variable_interpolation
268 */
269 unsigned interpolation:2;
270
271 /**
272 * Flag that the whole array is assignable
273 *
274 * In GLSL 1.20 and later whole arrays are assignable (and comparable for
275 * equality). This flag enables this behavior.
276 */
277 unsigned array_lvalue:1;
278
279 /**
280 * \name ARB_fragment_coord_conventions
281 * @{
282 */
283 unsigned origin_upper_left:1;
284 unsigned pixel_center_integer:1;
285 /*@}*/
286
287 /**
288 * Was the location explicitly set in the shader?
289 *
290 * If the location is explicitly set in the shader, it \b cannot be changed
291 * by the linker or by the API (e.g., calls to \c glBindAttribLocation have
292 * no effect).
293 */
294 unsigned explicit_location:1;
295
296 /**
297 * Storage location of the base of this variable
298 *
299 * The precise meaning of this field depends on the nature of the variable.
300 *
301 * - Vertex shader input: one of the values from \c gl_vert_attrib.
302 * - Vertex shader output: one of the values from \c gl_vert_result.
303 * - Fragment shader input: one of the values from \c gl_frag_attrib.
304 * - Fragment shader output: one of the values from \c gl_frag_result.
305 * - Uniforms: Per-stage uniform slot number.
306 * - Other: This field is not currently used.
307 *
308 * If the variable is a uniform, shader input, or shader output, and the
309 * slot has not been assigned, the value will be -1.
310 */
311 int location;
312
313 /**
314 * Emit a warning if this variable is accessed.
315 */
316 const char *warn_extension;
317
318 /**
319 * Value assigned in the initializer of a variable declared "const"
320 */
321 ir_constant *constant_value;
322 };
323
324
325 /*@{*/
326 /**
327 * The representation of a function instance; may be the full definition or
328 * simply a prototype.
329 */
330 class ir_function_signature : public ir_instruction {
331 /* An ir_function_signature will be part of the list of signatures in
332 * an ir_function.
333 */
334 public:
335 ir_function_signature(const glsl_type *return_type);
336
337 virtual ir_function_signature *clone(void *mem_ctx,
338 struct hash_table *ht) const;
339
340 virtual void accept(ir_visitor *v)
341 {
342 v->visit(this);
343 }
344
345 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
346
347 /**
348 * Get the name of the function for which this is a signature
349 */
350 const char *function_name() const;
351
352 /**
353 * Get a handle to the function for which this is a signature
354 *
355 * There is no setter function, this function returns a \c const pointer,
356 * and \c ir_function_signature::_function is private for a reason. The
357 * only way to make a connection between a function and function signature
358 * is via \c ir_function::add_signature. This helps ensure that certain
359 * invariants (i.e., a function signature is in the list of signatures for
360 * its \c _function) are met.
361 *
362 * \sa ir_function::add_signature
363 */
364 inline const class ir_function *function() const
365 {
366 return this->_function;
367 }
368
369 /**
370 * Check whether the qualifiers match between this signature's parameters
371 * and the supplied parameter list. If not, returns the name of the first
372 * parameter with mismatched qualifiers (for use in error messages).
373 */
374 const char *qualifiers_match(exec_list *params);
375
376 /**
377 * Replace the current parameter list with the given one. This is useful
378 * if the current information came from a prototype, and either has invalid
379 * or missing parameter names.
380 */
381 void replace_parameters(exec_list *new_params);
382
383 /**
384 * Function return type.
385 *
386 * \note This discards the optional precision qualifier.
387 */
388 const struct glsl_type *return_type;
389
390 /**
391 * List of ir_variable of function parameters.
392 *
393 * This represents the storage. The paramaters passed in a particular
394 * call will be in ir_call::actual_paramaters.
395 */
396 struct exec_list parameters;
397
398 /** Whether or not this function has a body (which may be empty). */
399 unsigned is_defined:1;
400
401 /** Whether or not this function signature is a built-in. */
402 unsigned is_builtin:1;
403
404 /** Body of instructions in the function. */
405 struct exec_list body;
406
407 private:
408 /** Function of which this signature is one overload. */
409 class ir_function *_function;
410
411 friend class ir_function;
412 };
413
414
415 /**
416 * Header for tracking multiple overloaded functions with the same name.
417 * Contains a list of ir_function_signatures representing each of the
418 * actual functions.
419 */
420 class ir_function : public ir_instruction {
421 public:
422 ir_function(const char *name);
423
424 virtual ir_function *clone(void *mem_ctx, struct hash_table *ht) const;
425
426 virtual ir_function *as_function()
427 {
428 return this;
429 }
430
431 virtual void accept(ir_visitor *v)
432 {
433 v->visit(this);
434 }
435
436 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
437
438 void add_signature(ir_function_signature *sig)
439 {
440 sig->_function = this;
441 this->signatures.push_tail(sig);
442 }
443
444 /**
445 * Get an iterator for the set of function signatures
446 */
447 exec_list_iterator iterator()
448 {
449 return signatures.iterator();
450 }
451
452 /**
453 * Find a signature that matches a set of actual parameters, taking implicit
454 * conversions into account.
455 */
456 ir_function_signature *matching_signature(const exec_list *actual_param);
457
458 /**
459 * Find a signature that exactly matches a set of actual parameters without
460 * any implicit type conversions.
461 */
462 ir_function_signature *exact_matching_signature(const exec_list *actual_ps);
463
464 /**
465 * Name of the function.
466 */
467 const char *name;
468
469 /** Whether or not this function has a signature that isn't a built-in. */
470 bool has_user_signature();
471
472 /**
473 * List of ir_function_signature for each overloaded function with this name.
474 */
475 struct exec_list signatures;
476 };
477
478 inline const char *ir_function_signature::function_name() const
479 {
480 return this->_function->name;
481 }
482 /*@}*/
483
484
485 /**
486 * IR instruction representing high-level if-statements
487 */
488 class ir_if : public ir_instruction {
489 public:
490 ir_if(ir_rvalue *condition)
491 : condition(condition)
492 {
493 ir_type = ir_type_if;
494 }
495
496 virtual ir_if *clone(void *mem_ctx, struct hash_table *ht) const;
497
498 virtual ir_if *as_if()
499 {
500 return this;
501 }
502
503 virtual void accept(ir_visitor *v)
504 {
505 v->visit(this);
506 }
507
508 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
509
510 ir_rvalue *condition;
511 /** List of ir_instruction for the body of the then branch */
512 exec_list then_instructions;
513 /** List of ir_instruction for the body of the else branch */
514 exec_list else_instructions;
515 };
516
517
518 /**
519 * IR instruction representing a high-level loop structure.
520 */
521 class ir_loop : public ir_instruction {
522 public:
523 ir_loop();
524
525 virtual ir_loop *clone(void *mem_ctx, struct hash_table *ht) const;
526
527 virtual void accept(ir_visitor *v)
528 {
529 v->visit(this);
530 }
531
532 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
533
534 virtual ir_loop *as_loop()
535 {
536 return this;
537 }
538
539 /**
540 * Get an iterator for the instructions of the loop body
541 */
542 exec_list_iterator iterator()
543 {
544 return body_instructions.iterator();
545 }
546
547 /** List of ir_instruction that make up the body of the loop. */
548 exec_list body_instructions;
549
550 /**
551 * \name Loop counter and controls
552 *
553 * Represents a loop like a FORTRAN \c do-loop.
554 *
555 * \note
556 * If \c from and \c to are the same value, the loop will execute once.
557 */
558 /*@{*/
559 ir_rvalue *from; /** Value of the loop counter on the first
560 * iteration of the loop.
561 */
562 ir_rvalue *to; /** Value of the loop counter on the last
563 * iteration of the loop.
564 */
565 ir_rvalue *increment;
566 ir_variable *counter;
567
568 /**
569 * Comparison operation in the loop terminator.
570 *
571 * If any of the loop control fields are non-\c NULL, this field must be
572 * one of \c ir_binop_less, \c ir_binop_greater, \c ir_binop_lequal,
573 * \c ir_binop_gequal, \c ir_binop_equal, or \c ir_binop_nequal.
574 */
575 int cmp;
576 /*@}*/
577 };
578
579
580 class ir_assignment : public ir_instruction {
581 public:
582 ir_assignment(ir_rvalue *lhs, ir_rvalue *rhs, ir_rvalue *condition);
583
584 /**
585 * Construct an assignment with an explicit write mask
586 *
587 * \note
588 * Since a write mask is supplied, the LHS must already be a bare
589 * \c ir_dereference. The cannot be any swizzles in the LHS.
590 */
591 ir_assignment(ir_dereference *lhs, ir_rvalue *rhs, ir_rvalue *condition,
592 unsigned write_mask);
593
594 virtual ir_assignment *clone(void *mem_ctx, struct hash_table *ht) const;
595
596 virtual ir_constant *constant_expression_value();
597
598 virtual void accept(ir_visitor *v)
599 {
600 v->visit(this);
601 }
602
603 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
604
605 virtual ir_assignment * as_assignment()
606 {
607 return this;
608 }
609
610 /**
611 * Get a whole variable written by an assignment
612 *
613 * If the LHS of the assignment writes a whole variable, the variable is
614 * returned. Otherwise \c NULL is returned. Examples of whole-variable
615 * assignment are:
616 *
617 * - Assigning to a scalar
618 * - Assigning to all components of a vector
619 * - Whole array (or matrix) assignment
620 * - Whole structure assignment
621 */
622 ir_variable *whole_variable_written();
623
624 /**
625 * Set the LHS of an assignment
626 */
627 void set_lhs(ir_rvalue *lhs);
628
629 /**
630 * Left-hand side of the assignment.
631 *
632 * This should be treated as read only. If you need to set the LHS of an
633 * assignment, use \c ir_assignment::set_lhs.
634 */
635 ir_dereference *lhs;
636
637 /**
638 * Value being assigned
639 */
640 ir_rvalue *rhs;
641
642 /**
643 * Optional condition for the assignment.
644 */
645 ir_rvalue *condition;
646
647
648 /**
649 * Component mask written
650 *
651 * For non-vector types in the LHS, this field will be zero. For vector
652 * types, a bit will be set for each component that is written. Note that
653 * for \c vec2 and \c vec3 types only the lower bits will ever be set.
654 *
655 * A partially-set write mask means that each enabled channel gets
656 * the value from a consecutive channel of the rhs. For example,
657 * to write just .xyw of gl_FrontColor with color:
658 *
659 * (assign (constant bool (1)) (xyw)
660 * (var_ref gl_FragColor)
661 * (swiz xyw (var_ref color)))
662 */
663 unsigned write_mask:4;
664 };
665
666 /* Update ir_expression::num_operands() and operator_strs when
667 * updating this list.
668 */
669 enum ir_expression_operation {
670 ir_unop_bit_not,
671 ir_unop_logic_not,
672 ir_unop_neg,
673 ir_unop_abs,
674 ir_unop_sign,
675 ir_unop_rcp,
676 ir_unop_rsq,
677 ir_unop_sqrt,
678 ir_unop_exp, /**< Log base e on gentype */
679 ir_unop_log, /**< Natural log on gentype */
680 ir_unop_exp2,
681 ir_unop_log2,
682 ir_unop_f2i, /**< Float-to-integer conversion. */
683 ir_unop_i2f, /**< Integer-to-float conversion. */
684 ir_unop_f2b, /**< Float-to-boolean conversion */
685 ir_unop_b2f, /**< Boolean-to-float conversion */
686 ir_unop_i2b, /**< int-to-boolean conversion */
687 ir_unop_b2i, /**< Boolean-to-int conversion */
688 ir_unop_u2f, /**< Unsigned-to-float conversion. */
689 ir_unop_any,
690
691 /**
692 * \name Unary floating-point rounding operations.
693 */
694 /*@{*/
695 ir_unop_trunc,
696 ir_unop_ceil,
697 ir_unop_floor,
698 ir_unop_fract,
699 ir_unop_round_even,
700 /*@}*/
701
702 /**
703 * \name Trigonometric operations.
704 */
705 /*@{*/
706 ir_unop_sin,
707 ir_unop_cos,
708 /*@}*/
709
710 /**
711 * \name Partial derivatives.
712 */
713 /*@{*/
714 ir_unop_dFdx,
715 ir_unop_dFdy,
716 /*@}*/
717
718 ir_unop_noise,
719
720 /**
721 * A sentinel marking the last of the unary operations.
722 */
723 ir_last_unop = ir_unop_noise,
724
725 ir_binop_add,
726 ir_binop_sub,
727 ir_binop_mul,
728 ir_binop_div,
729
730 /**
731 * Takes one of two combinations of arguments:
732 *
733 * - mod(vecN, vecN)
734 * - mod(vecN, float)
735 *
736 * Does not take integer types.
737 */
738 ir_binop_mod,
739
740 /**
741 * \name Binary comparison operators which return a boolean vector.
742 * The type of both operands must be equal.
743 */
744 /*@{*/
745 ir_binop_less,
746 ir_binop_greater,
747 ir_binop_lequal,
748 ir_binop_gequal,
749 ir_binop_equal,
750 ir_binop_nequal,
751 /**
752 * Returns single boolean for whether all components of operands[0]
753 * equal the components of operands[1].
754 */
755 ir_binop_all_equal,
756 /**
757 * Returns single boolean for whether any component of operands[0]
758 * is not equal to the corresponding component of operands[1].
759 */
760 ir_binop_any_nequal,
761 /*@}*/
762
763 /**
764 * \name Bit-wise binary operations.
765 */
766 /*@{*/
767 ir_binop_lshift,
768 ir_binop_rshift,
769 ir_binop_bit_and,
770 ir_binop_bit_xor,
771 ir_binop_bit_or,
772 /*@}*/
773
774 ir_binop_logic_and,
775 ir_binop_logic_xor,
776 ir_binop_logic_or,
777
778 ir_binop_dot,
779 ir_binop_min,
780 ir_binop_max,
781
782 ir_binop_pow,
783
784 /**
785 * A sentinel marking the last of the binary operations.
786 */
787 ir_last_binop = ir_binop_pow,
788
789 /**
790 * A sentinel marking the last of all operations.
791 */
792 ir_last_opcode = ir_last_binop
793 };
794
795 class ir_expression : public ir_rvalue {
796 public:
797 ir_expression(int op, const struct glsl_type *type,
798 ir_rvalue *, ir_rvalue *);
799
800 virtual ir_expression *as_expression()
801 {
802 return this;
803 }
804
805 virtual ir_expression *clone(void *mem_ctx, struct hash_table *ht) const;
806
807 /**
808 * Attempt to constant-fold the expression
809 *
810 * If the expression cannot be constant folded, this method will return
811 * \c NULL.
812 */
813 virtual ir_constant *constant_expression_value();
814
815 /**
816 * Determine the number of operands used by an expression
817 */
818 static unsigned int get_num_operands(ir_expression_operation);
819
820 /**
821 * Determine the number of operands used by an expression
822 */
823 unsigned int get_num_operands() const
824 {
825 return get_num_operands(operation);
826 }
827
828 /**
829 * Return a string representing this expression's operator.
830 */
831 const char *operator_string();
832
833 /**
834 * Return a string representing this expression's operator.
835 */
836 static const char *operator_string(ir_expression_operation);
837
838
839 /**
840 * Do a reverse-lookup to translate the given string into an operator.
841 */
842 static ir_expression_operation get_operator(const char *);
843
844 virtual void accept(ir_visitor *v)
845 {
846 v->visit(this);
847 }
848
849 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
850
851 ir_expression_operation operation;
852 ir_rvalue *operands[2];
853 };
854
855
856 /**
857 * IR instruction representing a function call
858 */
859 class ir_call : public ir_rvalue {
860 public:
861 ir_call(ir_function_signature *callee, exec_list *actual_parameters)
862 : callee(callee)
863 {
864 ir_type = ir_type_call;
865 assert(callee->return_type != NULL);
866 type = callee->return_type;
867 actual_parameters->move_nodes_to(& this->actual_parameters);
868 }
869
870 virtual ir_call *clone(void *mem_ctx, struct hash_table *ht) const;
871
872 virtual ir_constant *constant_expression_value();
873
874 virtual ir_call *as_call()
875 {
876 return this;
877 }
878
879 virtual void accept(ir_visitor *v)
880 {
881 v->visit(this);
882 }
883
884 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
885
886 /**
887 * Get a generic ir_call object when an error occurs
888 *
889 * Any allocation will be performed with 'ctx' as talloc owner.
890 */
891 static ir_call *get_error_instruction(void *ctx);
892
893 /**
894 * Get an iterator for the set of acutal parameters
895 */
896 exec_list_iterator iterator()
897 {
898 return actual_parameters.iterator();
899 }
900
901 /**
902 * Get the name of the function being called.
903 */
904 const char *callee_name() const
905 {
906 return callee->function_name();
907 }
908
909 /**
910 * Get the function signature bound to this function call
911 */
912 ir_function_signature *get_callee()
913 {
914 return callee;
915 }
916
917 /**
918 * Set the function call target
919 */
920 void set_callee(ir_function_signature *sig);
921
922 /**
923 * Generates an inline version of the function before @ir,
924 * returning the return value of the function.
925 */
926 ir_rvalue *generate_inline(ir_instruction *ir);
927
928 /* List of ir_rvalue of paramaters passed in this call. */
929 exec_list actual_parameters;
930
931 private:
932 ir_call()
933 : callee(NULL)
934 {
935 this->ir_type = ir_type_call;
936 }
937
938 ir_function_signature *callee;
939 };
940
941
942 /**
943 * \name Jump-like IR instructions.
944 *
945 * These include \c break, \c continue, \c return, and \c discard.
946 */
947 /*@{*/
948 class ir_jump : public ir_instruction {
949 protected:
950 ir_jump()
951 {
952 ir_type = ir_type_unset;
953 }
954 };
955
956 class ir_return : public ir_jump {
957 public:
958 ir_return()
959 : value(NULL)
960 {
961 this->ir_type = ir_type_return;
962 }
963
964 ir_return(ir_rvalue *value)
965 : value(value)
966 {
967 this->ir_type = ir_type_return;
968 }
969
970 virtual ir_return *clone(void *mem_ctx, struct hash_table *) const;
971
972 virtual ir_return *as_return()
973 {
974 return this;
975 }
976
977 ir_rvalue *get_value() const
978 {
979 return value;
980 }
981
982 virtual void accept(ir_visitor *v)
983 {
984 v->visit(this);
985 }
986
987 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
988
989 ir_rvalue *value;
990 };
991
992
993 /**
994 * Jump instructions used inside loops
995 *
996 * These include \c break and \c continue. The \c break within a loop is
997 * different from the \c break within a switch-statement.
998 *
999 * \sa ir_switch_jump
1000 */
1001 class ir_loop_jump : public ir_jump {
1002 public:
1003 enum jump_mode {
1004 jump_break,
1005 jump_continue
1006 };
1007
1008 ir_loop_jump(jump_mode mode)
1009 {
1010 this->ir_type = ir_type_loop_jump;
1011 this->mode = mode;
1012 this->loop = loop;
1013 }
1014
1015 virtual ir_loop_jump *clone(void *mem_ctx, struct hash_table *) const;
1016
1017 virtual void accept(ir_visitor *v)
1018 {
1019 v->visit(this);
1020 }
1021
1022 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1023
1024 bool is_break() const
1025 {
1026 return mode == jump_break;
1027 }
1028
1029 bool is_continue() const
1030 {
1031 return mode == jump_continue;
1032 }
1033
1034 /** Mode selector for the jump instruction. */
1035 enum jump_mode mode;
1036 private:
1037 /** Loop containing this break instruction. */
1038 ir_loop *loop;
1039 };
1040
1041 /**
1042 * IR instruction representing discard statements.
1043 */
1044 class ir_discard : public ir_jump {
1045 public:
1046 ir_discard()
1047 {
1048 this->ir_type = ir_type_discard;
1049 this->condition = NULL;
1050 }
1051
1052 ir_discard(ir_rvalue *cond)
1053 {
1054 this->ir_type = ir_type_discard;
1055 this->condition = cond;
1056 }
1057
1058 virtual ir_discard *clone(void *mem_ctx, struct hash_table *ht) const;
1059
1060 virtual void accept(ir_visitor *v)
1061 {
1062 v->visit(this);
1063 }
1064
1065 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1066
1067 ir_rvalue *condition;
1068 };
1069 /*@}*/
1070
1071
1072 /**
1073 * Texture sampling opcodes used in ir_texture
1074 */
1075 enum ir_texture_opcode {
1076 ir_tex, /**< Regular texture look-up */
1077 ir_txb, /**< Texture look-up with LOD bias */
1078 ir_txl, /**< Texture look-up with explicit LOD */
1079 ir_txd, /**< Texture look-up with partial derivatvies */
1080 ir_txf /**< Texel fetch with explicit LOD */
1081 };
1082
1083
1084 /**
1085 * IR instruction to sample a texture
1086 *
1087 * The specific form of the IR instruction depends on the \c mode value
1088 * selected from \c ir_texture_opcodes. In the printed IR, these will
1089 * appear as:
1090 *
1091 * Texel offset
1092 * | Projection divisor
1093 * | | Shadow comparitor
1094 * | | |
1095 * v v v
1096 * (tex (sampler) (coordinate) (0 0 0) (1) ( ))
1097 * (txb (sampler) (coordinate) (0 0 0) (1) ( ) (bias))
1098 * (txl (sampler) (coordinate) (0 0 0) (1) ( ) (lod))
1099 * (txd (sampler) (coordinate) (0 0 0) (1) ( ) (dPdx dPdy))
1100 * (txf (sampler) (coordinate) (0 0 0) (lod))
1101 */
1102 class ir_texture : public ir_rvalue {
1103 public:
1104 ir_texture(enum ir_texture_opcode op)
1105 : op(op), projector(NULL), shadow_comparitor(NULL)
1106 {
1107 this->ir_type = ir_type_texture;
1108 }
1109
1110 virtual ir_texture *clone(void *mem_ctx, struct hash_table *) const;
1111
1112 virtual ir_constant *constant_expression_value();
1113
1114 virtual void accept(ir_visitor *v)
1115 {
1116 v->visit(this);
1117 }
1118
1119 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1120
1121 /**
1122 * Return a string representing the ir_texture_opcode.
1123 */
1124 const char *opcode_string();
1125
1126 /** Set the sampler and infer the type. */
1127 void set_sampler(ir_dereference *sampler);
1128
1129 /**
1130 * Do a reverse-lookup to translate a string into an ir_texture_opcode.
1131 */
1132 static ir_texture_opcode get_opcode(const char *);
1133
1134 enum ir_texture_opcode op;
1135
1136 /** Sampler to use for the texture access. */
1137 ir_dereference *sampler;
1138
1139 /** Texture coordinate to sample */
1140 ir_rvalue *coordinate;
1141
1142 /**
1143 * Value used for projective divide.
1144 *
1145 * If there is no projective divide (the common case), this will be
1146 * \c NULL. Optimization passes should check for this to point to a constant
1147 * of 1.0 and replace that with \c NULL.
1148 */
1149 ir_rvalue *projector;
1150
1151 /**
1152 * Coordinate used for comparison on shadow look-ups.
1153 *
1154 * If there is no shadow comparison, this will be \c NULL. For the
1155 * \c ir_txf opcode, this *must* be \c NULL.
1156 */
1157 ir_rvalue *shadow_comparitor;
1158
1159 /** Explicit texel offsets. */
1160 signed char offsets[3];
1161
1162 union {
1163 ir_rvalue *lod; /**< Floating point LOD */
1164 ir_rvalue *bias; /**< Floating point LOD bias */
1165 struct {
1166 ir_rvalue *dPdx; /**< Partial derivative of coordinate wrt X */
1167 ir_rvalue *dPdy; /**< Partial derivative of coordinate wrt Y */
1168 } grad;
1169 } lod_info;
1170 };
1171
1172
1173 struct ir_swizzle_mask {
1174 unsigned x:2;
1175 unsigned y:2;
1176 unsigned z:2;
1177 unsigned w:2;
1178
1179 /**
1180 * Number of components in the swizzle.
1181 */
1182 unsigned num_components:3;
1183
1184 /**
1185 * Does the swizzle contain duplicate components?
1186 *
1187 * L-value swizzles cannot contain duplicate components.
1188 */
1189 unsigned has_duplicates:1;
1190 };
1191
1192
1193 class ir_swizzle : public ir_rvalue {
1194 public:
1195 ir_swizzle(ir_rvalue *, unsigned x, unsigned y, unsigned z, unsigned w,
1196 unsigned count);
1197
1198 ir_swizzle(ir_rvalue *val, const unsigned *components, unsigned count);
1199
1200 ir_swizzle(ir_rvalue *val, ir_swizzle_mask mask);
1201
1202 virtual ir_swizzle *clone(void *mem_ctx, struct hash_table *) const;
1203
1204 virtual ir_constant *constant_expression_value();
1205
1206 virtual ir_swizzle *as_swizzle()
1207 {
1208 return this;
1209 }
1210
1211 /**
1212 * Construct an ir_swizzle from the textual representation. Can fail.
1213 */
1214 static ir_swizzle *create(ir_rvalue *, const char *, unsigned vector_length);
1215
1216 virtual void accept(ir_visitor *v)
1217 {
1218 v->visit(this);
1219 }
1220
1221 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1222
1223 bool is_lvalue()
1224 {
1225 return val->is_lvalue() && !mask.has_duplicates;
1226 }
1227
1228 /**
1229 * Get the variable that is ultimately referenced by an r-value
1230 */
1231 virtual ir_variable *variable_referenced();
1232
1233 ir_rvalue *val;
1234 ir_swizzle_mask mask;
1235
1236 private:
1237 /**
1238 * Initialize the mask component of a swizzle
1239 *
1240 * This is used by the \c ir_swizzle constructors.
1241 */
1242 void init_mask(const unsigned *components, unsigned count);
1243 };
1244
1245
1246 class ir_dereference : public ir_rvalue {
1247 public:
1248 virtual ir_dereference *clone(void *mem_ctx, struct hash_table *) const = 0;
1249
1250 virtual ir_dereference *as_dereference()
1251 {
1252 return this;
1253 }
1254
1255 bool is_lvalue();
1256
1257 /**
1258 * Get the variable that is ultimately referenced by an r-value
1259 */
1260 virtual ir_variable *variable_referenced() = 0;
1261 };
1262
1263
1264 class ir_dereference_variable : public ir_dereference {
1265 public:
1266 ir_dereference_variable(ir_variable *var);
1267
1268 virtual ir_dereference_variable *clone(void *mem_ctx,
1269 struct hash_table *) const;
1270
1271 virtual ir_constant *constant_expression_value();
1272
1273 virtual ir_dereference_variable *as_dereference_variable()
1274 {
1275 return this;
1276 }
1277
1278 /**
1279 * Get the variable that is ultimately referenced by an r-value
1280 */
1281 virtual ir_variable *variable_referenced()
1282 {
1283 return this->var;
1284 }
1285
1286 virtual ir_variable *whole_variable_referenced()
1287 {
1288 /* ir_dereference_variable objects always dereference the entire
1289 * variable. However, if this dereference is dereferenced by anything
1290 * else, the complete deferefernce chain is not a whole-variable
1291 * dereference. This method should only be called on the top most
1292 * ir_rvalue in a dereference chain.
1293 */
1294 return this->var;
1295 }
1296
1297 virtual void accept(ir_visitor *v)
1298 {
1299 v->visit(this);
1300 }
1301
1302 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1303
1304 /**
1305 * Object being dereferenced.
1306 */
1307 ir_variable *var;
1308 };
1309
1310
1311 class ir_dereference_array : public ir_dereference {
1312 public:
1313 ir_dereference_array(ir_rvalue *value, ir_rvalue *array_index);
1314
1315 ir_dereference_array(ir_variable *var, ir_rvalue *array_index);
1316
1317 virtual ir_dereference_array *clone(void *mem_ctx,
1318 struct hash_table *) const;
1319
1320 virtual ir_constant *constant_expression_value();
1321
1322 virtual ir_dereference_array *as_dereference_array()
1323 {
1324 return this;
1325 }
1326
1327 /**
1328 * Get the variable that is ultimately referenced by an r-value
1329 */
1330 virtual ir_variable *variable_referenced()
1331 {
1332 return this->array->variable_referenced();
1333 }
1334
1335 virtual void accept(ir_visitor *v)
1336 {
1337 v->visit(this);
1338 }
1339
1340 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1341
1342 ir_rvalue *array;
1343 ir_rvalue *array_index;
1344
1345 private:
1346 void set_array(ir_rvalue *value);
1347 };
1348
1349
1350 class ir_dereference_record : public ir_dereference {
1351 public:
1352 ir_dereference_record(ir_rvalue *value, const char *field);
1353
1354 ir_dereference_record(ir_variable *var, const char *field);
1355
1356 virtual ir_dereference_record *clone(void *mem_ctx,
1357 struct hash_table *) const;
1358
1359 virtual ir_constant *constant_expression_value();
1360
1361 /**
1362 * Get the variable that is ultimately referenced by an r-value
1363 */
1364 virtual ir_variable *variable_referenced()
1365 {
1366 return this->record->variable_referenced();
1367 }
1368
1369 virtual void accept(ir_visitor *v)
1370 {
1371 v->visit(this);
1372 }
1373
1374 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1375
1376 ir_rvalue *record;
1377 const char *field;
1378 };
1379
1380
1381 /**
1382 * Data stored in an ir_constant
1383 */
1384 union ir_constant_data {
1385 unsigned u[16];
1386 int i[16];
1387 float f[16];
1388 bool b[16];
1389 };
1390
1391
1392 class ir_constant : public ir_rvalue {
1393 public:
1394 ir_constant(const struct glsl_type *type, const ir_constant_data *data);
1395 ir_constant(bool b);
1396 ir_constant(unsigned int u);
1397 ir_constant(int i);
1398 ir_constant(float f);
1399
1400 /**
1401 * Construct an ir_constant from a list of ir_constant values
1402 */
1403 ir_constant(const struct glsl_type *type, exec_list *values);
1404
1405 /**
1406 * Construct an ir_constant from a scalar component of another ir_constant
1407 *
1408 * The new \c ir_constant inherits the type of the component from the
1409 * source constant.
1410 *
1411 * \note
1412 * In the case of a matrix constant, the new constant is a scalar, \b not
1413 * a vector.
1414 */
1415 ir_constant(const ir_constant *c, unsigned i);
1416
1417 /**
1418 * Return a new ir_constant of the specified type containing all zeros.
1419 */
1420 static ir_constant *zero(void *mem_ctx, const glsl_type *type);
1421
1422 virtual ir_constant *clone(void *mem_ctx, struct hash_table *) const;
1423
1424 virtual ir_constant *constant_expression_value();
1425
1426 virtual ir_constant *as_constant()
1427 {
1428 return this;
1429 }
1430
1431 virtual void accept(ir_visitor *v)
1432 {
1433 v->visit(this);
1434 }
1435
1436 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1437
1438 /**
1439 * Get a particular component of a constant as a specific type
1440 *
1441 * This is useful, for example, to get a value from an integer constant
1442 * as a float or bool. This appears frequently when constructors are
1443 * called with all constant parameters.
1444 */
1445 /*@{*/
1446 bool get_bool_component(unsigned i) const;
1447 float get_float_component(unsigned i) const;
1448 int get_int_component(unsigned i) const;
1449 unsigned get_uint_component(unsigned i) const;
1450 /*@}*/
1451
1452 ir_constant *get_array_element(unsigned i) const;
1453
1454 ir_constant *get_record_field(const char *name);
1455
1456 /**
1457 * Determine whether a constant has the same value as another constant
1458 *
1459 * \sa ir_constant::is_zero, ir_constant::is_one
1460 */
1461 bool has_value(const ir_constant *) const;
1462
1463 /**
1464 * Determine if a constant has the value zero
1465 *
1466 * \note
1467 * This function always returns \c false for constants that are not
1468 * scalars or vectors.
1469 *
1470 * \sa ir_constant::has_value, ir_constant::is_one
1471 */
1472 bool is_zero() const;
1473
1474 /**
1475 * Determine if a constant has the value one
1476 *
1477 * \note
1478 * This function always returns \c false for constants that are not
1479 * scalars or vectors.
1480 *
1481 * \sa ir_constant::has_value, ir_constant::is_zero
1482 */
1483 bool is_one() const;
1484
1485 /**
1486 * Value of the constant.
1487 *
1488 * The field used to back the values supplied by the constant is determined
1489 * by the type associated with the \c ir_instruction. Constants may be
1490 * scalars, vectors, or matrices.
1491 */
1492 union ir_constant_data value;
1493
1494 /* Array elements */
1495 ir_constant **array_elements;
1496
1497 /* Structure fields */
1498 exec_list components;
1499
1500 private:
1501 /**
1502 * Parameterless constructor only used by the clone method
1503 */
1504 ir_constant(void);
1505 };
1506
1507 /*@}*/
1508
1509 /**
1510 * Apply a visitor to each IR node in a list
1511 */
1512 void
1513 visit_exec_list(exec_list *list, ir_visitor *visitor);
1514
1515 /**
1516 * Validate invariants on each IR node in a list
1517 */
1518 void validate_ir_tree(exec_list *instructions);
1519
1520 /**
1521 * Make a clone of each IR instruction in a list
1522 *
1523 * \param in List of IR instructions that are to be cloned
1524 * \param out List to hold the cloned instructions
1525 */
1526 void
1527 clone_ir_list(void *mem_ctx, exec_list *out, const exec_list *in);
1528
1529 extern void
1530 _mesa_glsl_initialize_variables(exec_list *instructions,
1531 struct _mesa_glsl_parse_state *state);
1532
1533 extern void
1534 _mesa_glsl_initialize_functions(exec_list *instructions,
1535 struct _mesa_glsl_parse_state *state);
1536
1537 extern void
1538 _mesa_glsl_release_functions(void);
1539
1540 extern void
1541 reparent_ir(exec_list *list, void *mem_ctx);
1542
1543 struct glsl_symbol_table;
1544
1545 extern void
1546 import_prototypes(const exec_list *source, exec_list *dest,
1547 struct glsl_symbol_table *symbols, void *mem_ctx);
1548
1549 extern bool
1550 ir_has_call(ir_instruction *ir);
1551
1552 extern void
1553 do_set_program_inouts(exec_list *instructions, struct gl_program *prog);
1554
1555 #endif /* IR_H */