glsl2: Add cmp field to ir_loop
[mesa/nouveau-pmpeg.git] / src / glsl / ir.h
blobcf3a882f079ba0c3a55af8c95caa0567617e404b
1 /* -*- c++ -*- */
2 /*
3 * Copyright © 2010 Intel Corporation
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:
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.
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.
25 #pragma once
26 #ifndef IR_H
27 #define IR_H
29 #include <cstdio>
30 #include <cstdlib>
32 extern "C" {
33 #include <talloc.h>
36 #include "list.h"
37 #include "ir_visitor.h"
38 #include "ir_hierarchical_visitor.h"
40 #ifndef ARRAY_SIZE
41 #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
42 #endif
44 enum ir_node_type {
45 ir_type_unset,
46 ir_type_variable,
47 ir_type_assignment,
48 ir_type_call,
49 ir_type_constant,
50 ir_type_dereference_array,
51 ir_type_dereference_record,
52 ir_type_dereference_variable,
53 ir_type_discard,
54 ir_type_expression,
55 ir_type_function,
56 ir_type_function_signature,
57 ir_type_if,
58 ir_type_loop,
59 ir_type_loop_jump,
60 ir_type_return,
61 ir_type_swizzle,
62 ir_type_texture,
63 ir_type_max /**< maximum ir_type enum number, for validation */
66 /**
67 * Base class of all IR instructions
69 class ir_instruction : public exec_node {
70 public:
71 enum ir_node_type ir_type;
72 const struct glsl_type *type;
74 /** ir_print_visitor helper for debugging. */
75 void print(void) const;
77 virtual void accept(ir_visitor *) = 0;
78 virtual ir_visitor_status accept(ir_hierarchical_visitor *) = 0;
79 virtual ir_instruction *clone(void *mem_ctx,
80 struct hash_table *ht) const = 0;
82 /**
83 * \name IR instruction downcast functions
85 * These functions either cast the object to a derived class or return
86 * \c NULL if the object's type does not match the specified derived class.
87 * Additional downcast functions will be added as needed.
89 /*@{*/
90 virtual class ir_variable * as_variable() { return NULL; }
91 virtual class ir_function * as_function() { return NULL; }
92 virtual class ir_dereference * as_dereference() { return NULL; }
93 virtual class ir_dereference_array * as_dereference_array() { return NULL; }
94 virtual class ir_dereference_variable *as_dereference_variable() { return NULL; }
95 virtual class ir_expression * as_expression() { return NULL; }
96 virtual class ir_rvalue * as_rvalue() { return NULL; }
97 virtual class ir_loop * as_loop() { return NULL; }
98 virtual class ir_assignment * as_assignment() { return NULL; }
99 virtual class ir_call * as_call() { return NULL; }
100 virtual class ir_return * as_return() { return NULL; }
101 virtual class ir_if * as_if() { return NULL; }
102 virtual class ir_swizzle * as_swizzle() { return NULL; }
103 virtual class ir_constant * as_constant() { return NULL; }
104 /*@}*/
106 protected:
107 ir_instruction()
109 ir_type = ir_type_unset;
110 type = NULL;
115 class ir_rvalue : public ir_instruction {
116 public:
117 virtual ir_rvalue *clone(void *mem_ctx, struct hash_table *) const = 0;
119 virtual ir_constant *constant_expression_value() = 0;
121 virtual ir_rvalue * as_rvalue()
123 return this;
126 virtual bool is_lvalue()
128 return false;
132 * Get the variable that is ultimately referenced by an r-value
134 virtual ir_variable *variable_referenced()
136 return NULL;
141 * If an r-value is a reference to a whole variable, get that variable
143 * \return
144 * Pointer to a variable that is completely dereferenced by the r-value. If
145 * the r-value is not a dereference or the dereference does not access the
146 * entire variable (i.e., it's just one array element, struct field), \c NULL
147 * is returned.
149 virtual ir_variable *whole_variable_referenced()
151 return NULL;
154 protected:
155 ir_rvalue();
159 enum ir_variable_mode {
160 ir_var_auto = 0,
161 ir_var_uniform,
162 ir_var_in,
163 ir_var_out,
164 ir_var_inout,
165 ir_var_temporary /**< Temporary variable generated during compilation. */
168 enum ir_variable_interpolation {
169 ir_var_smooth = 0,
170 ir_var_flat,
171 ir_var_noperspective
175 class ir_variable : public ir_instruction {
176 public:
177 ir_variable(const struct glsl_type *, const char *, ir_variable_mode);
179 virtual ir_variable *clone(void *mem_ctx, struct hash_table *ht) const;
181 virtual ir_variable *as_variable()
183 return this;
186 virtual void accept(ir_visitor *v)
188 v->visit(this);
191 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
195 * Get the string value for the interpolation qualifier
197 * \return The string that would be used in a shader to specify \c
198 * mode will be returned.
200 * This function should only be used on a shader input or output variable.
202 const char *interpolation_string() const;
205 * Calculate the number of slots required to hold this variable
207 * This is used to determine how many uniform or varying locations a variable
208 * occupies. The count is in units of floating point components.
210 unsigned component_slots() const;
212 const char *name;
215 * Highest element accessed with a constant expression array index
217 * Not used for non-array variables.
219 unsigned max_array_access;
221 unsigned read_only:1;
222 unsigned centroid:1;
223 unsigned invariant:1;
225 unsigned mode:3;
226 unsigned interpolation:2;
229 * Flag that the whole array is assignable
231 * In GLSL 1.20 and later whole arrays are assignable (and comparable for
232 * equality). This flag enables this behavior.
234 unsigned array_lvalue:1;
236 /* ARB_fragment_coord_conventions */
237 unsigned origin_upper_left:1;
238 unsigned pixel_center_integer:1;
241 * Storage location of the base of this variable
243 * The precise meaning of this field depends on the nature of the variable.
245 * - Vertex shader input: one of the values from \c gl_vert_attrib.
246 * - Vertex shader output: one of the values from \c gl_vert_result.
247 * - Fragment shader input: one of the values from \c gl_frag_attrib.
248 * - Fragment shader output: one of the values from \c gl_frag_result.
249 * - Uniforms: Per-stage uniform slot number.
250 * - Other: This field is not currently used.
252 * If the variable is a uniform, shader input, or shader output, and the
253 * slot has not been assigned, the value will be -1.
255 int location;
258 * Emit a warning if this variable is accessed.
260 const char *warn_extension;
263 * Value assigned in the initializer of a variable declared "const"
265 ir_constant *constant_value;
269 /*@{*/
271 * The representation of a function instance; may be the full definition or
272 * simply a prototype.
274 class ir_function_signature : public ir_instruction {
275 /* An ir_function_signature will be part of the list of signatures in
276 * an ir_function.
278 public:
279 ir_function_signature(const glsl_type *return_type);
281 virtual ir_function_signature *clone(void *mem_ctx,
282 struct hash_table *ht) const;
284 virtual void accept(ir_visitor *v)
286 v->visit(this);
289 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
292 * Get the name of the function for which this is a signature
294 const char *function_name() const;
297 * Get a handle to the function for which this is a signature
299 * There is no setter function, this function returns a \c const pointer,
300 * and \c ir_function_signature::_function is private for a reason. The
301 * only way to make a connection between a function and function signature
302 * is via \c ir_function::add_signature. This helps ensure that certain
303 * invariants (i.e., a function signature is in the list of signatures for
304 * its \c _function) are met.
306 * \sa ir_function::add_signature
308 inline const class ir_function *function() const
310 return this->_function;
314 * Check whether the qualifiers match between this signature's parameters
315 * and the supplied parameter list. If not, returns the name of the first
316 * parameter with mismatched qualifiers (for use in error messages).
318 const char *qualifiers_match(exec_list *params);
321 * Replace the current parameter list with the given one. This is useful
322 * if the current information came from a prototype, and either has invalid
323 * or missing parameter names.
325 void replace_parameters(exec_list *new_params);
328 * Function return type.
330 * \note This discards the optional precision qualifier.
332 const struct glsl_type *return_type;
335 * List of ir_variable of function parameters.
337 * This represents the storage. The paramaters passed in a particular
338 * call will be in ir_call::actual_paramaters.
340 struct exec_list parameters;
342 /** Whether or not this function has a body (which may be empty). */
343 unsigned is_defined:1;
345 /** Body of instructions in the function. */
346 struct exec_list body;
348 private:
349 /** Function of which this signature is one overload. */
350 class ir_function *_function;
352 friend class ir_function;
357 * Header for tracking multiple overloaded functions with the same name.
358 * Contains a list of ir_function_signatures representing each of the
359 * actual functions.
361 class ir_function : public ir_instruction {
362 public:
363 ir_function(const char *name);
365 virtual ir_function *clone(void *mem_ctx, struct hash_table *ht) const;
367 virtual ir_function *as_function()
369 return this;
372 virtual void accept(ir_visitor *v)
374 v->visit(this);
377 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
379 void add_signature(ir_function_signature *sig)
381 sig->_function = this;
382 this->signatures.push_tail(sig);
386 * Get an iterator for the set of function signatures
388 exec_list_iterator iterator()
390 return signatures.iterator();
394 * Find a signature that matches a set of actual parameters, taking implicit
395 * conversions into account.
397 ir_function_signature *matching_signature(const exec_list *actual_param);
400 * Find a signature that exactly matches a set of actual parameters without
401 * any implicit type conversions.
403 ir_function_signature *exact_matching_signature(const exec_list *actual_ps);
406 * Name of the function.
408 const char *name;
410 /** Whether or not this function is a built-in. */
411 unsigned is_builtin:1;
414 * List of ir_function_signature for each overloaded function with this name.
416 struct exec_list signatures;
419 inline const char *ir_function_signature::function_name() const
421 return this->_function->name;
423 /*@}*/
427 * IR instruction representing high-level if-statements
429 class ir_if : public ir_instruction {
430 public:
431 ir_if(ir_rvalue *condition)
432 : condition(condition)
434 ir_type = ir_type_if;
437 virtual ir_if *clone(void *mem_ctx, struct hash_table *ht) const;
439 virtual ir_if *as_if()
441 return this;
444 virtual void accept(ir_visitor *v)
446 v->visit(this);
449 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
451 ir_rvalue *condition;
452 /** List of ir_instruction for the body of the then branch */
453 exec_list then_instructions;
454 /** List of ir_instruction for the body of the else branch */
455 exec_list else_instructions;
460 * IR instruction representing a high-level loop structure.
462 class ir_loop : public ir_instruction {
463 public:
464 ir_loop();
466 virtual ir_loop *clone(void *mem_ctx, struct hash_table *ht) const;
468 virtual void accept(ir_visitor *v)
470 v->visit(this);
473 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
475 virtual ir_loop *as_loop()
477 return this;
481 * Get an iterator for the instructions of the loop body
483 exec_list_iterator iterator()
485 return body_instructions.iterator();
488 /** List of ir_instruction that make up the body of the loop. */
489 exec_list body_instructions;
492 * \name Loop counter and controls
494 * Represents a loop like a FORTRAN \c do-loop.
496 * \note
497 * If \c from and \c to are the same value, the loop will execute once.
499 /*@{*/
500 ir_rvalue *from; /** Value of the loop counter on the first
501 * iteration of the loop.
503 ir_rvalue *to; /** Value of the loop counter on the last
504 * iteration of the loop.
506 ir_rvalue *increment;
507 ir_variable *counter;
510 * Comparison operation in the loop terminator.
512 * If any of the loop control fields are non-\c NULL, this field must be
513 * one of \c ir_binop_less, \c ir_binop_greater, \c ir_binop_lequal,
514 * \c ir_binop_gequal, \c ir_binop_equal, or \c ir_binop_nequal.
516 int cmp;
517 /*@}*/
521 class ir_assignment : public ir_instruction {
522 public:
523 ir_assignment(ir_rvalue *lhs, ir_rvalue *rhs, ir_rvalue *condition);
526 * Construct an assignment with an explicit write mask
528 * \note
529 * Since a write mask is supplied, the LHS must already be a bare
530 * \c ir_dereference. The cannot be any swizzles in the LHS.
532 ir_assignment(ir_dereference *lhs, ir_rvalue *rhs, ir_rvalue *condition,
533 unsigned write_mask);
535 virtual ir_assignment *clone(void *mem_ctx, struct hash_table *ht) const;
537 virtual ir_constant *constant_expression_value();
539 virtual void accept(ir_visitor *v)
541 v->visit(this);
544 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
546 virtual ir_assignment * as_assignment()
548 return this;
552 * Get a whole variable written by an assignment
554 * If the LHS of the assignment writes a whole variable, the variable is
555 * returned. Otherwise \c NULL is returned. Examples of whole-variable
556 * assignment are:
558 * - Assigning to a scalar
559 * - Assigning to all components of a vector
560 * - Whole array (or matrix) assignment
561 * - Whole structure assignment
563 ir_variable *whole_variable_written();
566 * Set the LHS of an assignment
568 void set_lhs(ir_rvalue *lhs);
571 * Left-hand side of the assignment.
573 * This should be treated as read only. If you need to set the LHS of an
574 * assignment, use \c ir_assignment::set_lhs.
576 ir_dereference *lhs;
579 * Value being assigned
581 ir_rvalue *rhs;
584 * Optional condition for the assignment.
586 ir_rvalue *condition;
590 * Component mask written
592 * For non-vector types in the LHS, this field will be zero. For vector
593 * types, a bit will be set for each component that is written. Note that
594 * for \c vec2 and \c vec3 types only the lower bits will ever be set.
596 unsigned write_mask:4;
599 /* Update ir_expression::num_operands() and operator_strs when
600 * updating this list.
602 enum ir_expression_operation {
603 ir_unop_bit_not,
604 ir_unop_logic_not,
605 ir_unop_neg,
606 ir_unop_abs,
607 ir_unop_sign,
608 ir_unop_rcp,
609 ir_unop_rsq,
610 ir_unop_sqrt,
611 ir_unop_exp, /**< Log base e on gentype */
612 ir_unop_log, /**< Natural log on gentype */
613 ir_unop_exp2,
614 ir_unop_log2,
615 ir_unop_f2i, /**< Float-to-integer conversion. */
616 ir_unop_i2f, /**< Integer-to-float conversion. */
617 ir_unop_f2b, /**< Float-to-boolean conversion */
618 ir_unop_b2f, /**< Boolean-to-float conversion */
619 ir_unop_i2b, /**< int-to-boolean conversion */
620 ir_unop_b2i, /**< Boolean-to-int conversion */
621 ir_unop_u2f, /**< Unsigned-to-float conversion. */
622 ir_unop_any,
625 * \name Unary floating-point rounding operations.
627 /*@{*/
628 ir_unop_trunc,
629 ir_unop_ceil,
630 ir_unop_floor,
631 ir_unop_fract,
632 /*@}*/
635 * \name Trigonometric operations.
637 /*@{*/
638 ir_unop_sin,
639 ir_unop_cos,
640 /*@}*/
643 * \name Partial derivatives.
645 /*@{*/
646 ir_unop_dFdx,
647 ir_unop_dFdy,
648 /*@}*/
650 ir_binop_add,
651 ir_binop_sub,
652 ir_binop_mul,
653 ir_binop_div,
656 * Takes one of two combinations of arguments:
658 * - mod(vecN, vecN)
659 * - mod(vecN, float)
661 * Does not take integer types.
663 ir_binop_mod,
666 * \name Binary comparison operators
668 /*@{*/
669 ir_binop_less,
670 ir_binop_greater,
671 ir_binop_lequal,
672 ir_binop_gequal,
674 * Returns single boolean for whether all components of operands[0]
675 * equal the components of operands[1].
677 ir_binop_equal,
679 * Returns single boolean for whether any component of operands[0]
680 * is not equal to the corresponding component of operands[1].
682 ir_binop_nequal,
683 /*@}*/
686 * \name Bit-wise binary operations.
688 /*@{*/
689 ir_binop_lshift,
690 ir_binop_rshift,
691 ir_binop_bit_and,
692 ir_binop_bit_xor,
693 ir_binop_bit_or,
694 /*@}*/
696 ir_binop_logic_and,
697 ir_binop_logic_xor,
698 ir_binop_logic_or,
700 ir_binop_dot,
701 ir_binop_cross,
702 ir_binop_min,
703 ir_binop_max,
705 ir_binop_pow
708 class ir_expression : public ir_rvalue {
709 public:
710 ir_expression(int op, const struct glsl_type *type,
711 ir_rvalue *, ir_rvalue *);
713 virtual ir_expression *as_expression()
715 return this;
718 virtual ir_expression *clone(void *mem_ctx, struct hash_table *ht) const;
720 virtual ir_constant *constant_expression_value();
722 static unsigned int get_num_operands(ir_expression_operation);
723 unsigned int get_num_operands() const
725 return get_num_operands(operation);
729 * Return a string representing this expression's operator.
731 const char *operator_string();
734 * Do a reverse-lookup to translate the given string into an operator.
736 static ir_expression_operation get_operator(const char *);
738 virtual void accept(ir_visitor *v)
740 v->visit(this);
743 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
745 ir_expression_operation operation;
746 ir_rvalue *operands[2];
751 * IR instruction representing a function call
753 class ir_call : public ir_rvalue {
754 public:
755 ir_call(ir_function_signature *callee, exec_list *actual_parameters)
756 : callee(callee)
758 ir_type = ir_type_call;
759 assert(callee->return_type != NULL);
760 type = callee->return_type;
761 actual_parameters->move_nodes_to(& this->actual_parameters);
764 virtual ir_call *clone(void *mem_ctx, struct hash_table *ht) const;
766 virtual ir_constant *constant_expression_value();
768 virtual ir_call *as_call()
770 return this;
773 virtual void accept(ir_visitor *v)
775 v->visit(this);
778 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
781 * Get a generic ir_call object when an error occurs
783 * Any allocation will be performed with 'ctx' as talloc owner.
785 static ir_call *get_error_instruction(void *ctx);
788 * Get an iterator for the set of acutal parameters
790 exec_list_iterator iterator()
792 return actual_parameters.iterator();
796 * Get the name of the function being called.
798 const char *callee_name() const
800 return callee->function_name();
803 ir_function_signature *get_callee()
805 return callee;
809 * Set the function call target
811 void set_callee(ir_function_signature *sig);
814 * Generates an inline version of the function before @ir,
815 * returning the return value of the function.
817 ir_rvalue *generate_inline(ir_instruction *ir);
819 /* List of ir_rvalue of paramaters passed in this call. */
820 exec_list actual_parameters;
822 private:
823 ir_call()
824 : callee(NULL)
826 this->ir_type = ir_type_call;
829 ir_function_signature *callee;
834 * \name Jump-like IR instructions.
836 * These include \c break, \c continue, \c return, and \c discard.
838 /*@{*/
839 class ir_jump : public ir_instruction {
840 protected:
841 ir_jump()
843 ir_type = ir_type_unset;
847 class ir_return : public ir_jump {
848 public:
849 ir_return()
850 : value(NULL)
852 this->ir_type = ir_type_return;
855 ir_return(ir_rvalue *value)
856 : value(value)
858 this->ir_type = ir_type_return;
861 virtual ir_return *clone(void *mem_ctx, struct hash_table *) const;
863 virtual ir_return *as_return()
865 return this;
868 ir_rvalue *get_value() const
870 return value;
873 virtual void accept(ir_visitor *v)
875 v->visit(this);
878 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
880 ir_rvalue *value;
885 * Jump instructions used inside loops
887 * These include \c break and \c continue. The \c break within a loop is
888 * different from the \c break within a switch-statement.
890 * \sa ir_switch_jump
892 class ir_loop_jump : public ir_jump {
893 public:
894 enum jump_mode {
895 jump_break,
896 jump_continue
899 ir_loop_jump(jump_mode mode)
901 this->ir_type = ir_type_loop_jump;
902 this->mode = mode;
903 this->loop = loop;
906 virtual ir_loop_jump *clone(void *mem_ctx, struct hash_table *) const;
908 virtual void accept(ir_visitor *v)
910 v->visit(this);
913 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
915 bool is_break() const
917 return mode == jump_break;
920 bool is_continue() const
922 return mode == jump_continue;
925 /** Mode selector for the jump instruction. */
926 enum jump_mode mode;
927 private:
928 /** Loop containing this break instruction. */
929 ir_loop *loop;
933 * IR instruction representing discard statements.
935 class ir_discard : public ir_jump {
936 public:
937 ir_discard()
939 this->ir_type = ir_type_discard;
940 this->condition = NULL;
943 ir_discard(ir_rvalue *cond)
945 this->ir_type = ir_type_discard;
946 this->condition = cond;
949 virtual ir_discard *clone(void *mem_ctx, struct hash_table *ht) const;
951 virtual void accept(ir_visitor *v)
953 v->visit(this);
956 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
958 ir_rvalue *condition;
960 /*@}*/
964 * Texture sampling opcodes used in ir_texture
966 enum ir_texture_opcode {
967 ir_tex, /* Regular texture look-up */
968 ir_txb, /* Texture look-up with LOD bias */
969 ir_txl, /* Texture look-up with explicit LOD */
970 ir_txd, /* Texture look-up with partial derivatvies */
971 ir_txf /* Texel fetch with explicit LOD */
976 * IR instruction to sample a texture
978 * The specific form of the IR instruction depends on the \c mode value
979 * selected from \c ir_texture_opcodes. In the printed IR, these will
980 * appear as:
982 * Texel offset
983 * | Projection divisor
984 * | | Shadow comparitor
985 * | | |
986 * v v v
987 * (tex (sampler) (coordinate) (0 0 0) (1) ( ))
988 * (txb (sampler) (coordinate) (0 0 0) (1) ( ) (bias))
989 * (txl (sampler) (coordinate) (0 0 0) (1) ( ) (lod))
990 * (txd (sampler) (coordinate) (0 0 0) (1) ( ) (dPdx dPdy))
991 * (txf (sampler) (coordinate) (0 0 0) (lod))
993 class ir_texture : public ir_rvalue {
994 public:
995 ir_texture(enum ir_texture_opcode op)
996 : op(op), projector(NULL), shadow_comparitor(NULL)
998 this->ir_type = ir_type_texture;
1001 virtual ir_texture *clone(void *mem_ctx, struct hash_table *) const;
1003 virtual ir_constant *constant_expression_value();
1005 virtual void accept(ir_visitor *v)
1007 v->visit(this);
1010 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1013 * Return a string representing the ir_texture_opcode.
1015 const char *opcode_string();
1017 /** Set the sampler and infer the type. */
1018 void set_sampler(ir_dereference *sampler);
1021 * Do a reverse-lookup to translate a string into an ir_texture_opcode.
1023 static ir_texture_opcode get_opcode(const char *);
1025 enum ir_texture_opcode op;
1027 /** Sampler to use for the texture access. */
1028 ir_dereference *sampler;
1030 /** Texture coordinate to sample */
1031 ir_rvalue *coordinate;
1034 * Value used for projective divide.
1036 * If there is no projective divide (the common case), this will be
1037 * \c NULL. Optimization passes should check for this to point to a constant
1038 * of 1.0 and replace that with \c NULL.
1040 ir_rvalue *projector;
1043 * Coordinate used for comparison on shadow look-ups.
1045 * If there is no shadow comparison, this will be \c NULL. For the
1046 * \c ir_txf opcode, this *must* be \c NULL.
1048 ir_rvalue *shadow_comparitor;
1050 /** Explicit texel offsets. */
1051 signed char offsets[3];
1053 union {
1054 ir_rvalue *lod; /**< Floating point LOD */
1055 ir_rvalue *bias; /**< Floating point LOD bias */
1056 struct {
1057 ir_rvalue *dPdx; /**< Partial derivative of coordinate wrt X */
1058 ir_rvalue *dPdy; /**< Partial derivative of coordinate wrt Y */
1059 } grad;
1060 } lod_info;
1064 struct ir_swizzle_mask {
1065 unsigned x:2;
1066 unsigned y:2;
1067 unsigned z:2;
1068 unsigned w:2;
1071 * Number of components in the swizzle.
1073 unsigned num_components:3;
1076 * Does the swizzle contain duplicate components?
1078 * L-value swizzles cannot contain duplicate components.
1080 unsigned has_duplicates:1;
1084 class ir_swizzle : public ir_rvalue {
1085 public:
1086 ir_swizzle(ir_rvalue *, unsigned x, unsigned y, unsigned z, unsigned w,
1087 unsigned count);
1089 ir_swizzle(ir_rvalue *val, const unsigned *components, unsigned count);
1091 ir_swizzle(ir_rvalue *val, ir_swizzle_mask mask);
1093 virtual ir_swizzle *clone(void *mem_ctx, struct hash_table *) const;
1095 virtual ir_constant *constant_expression_value();
1097 virtual ir_swizzle *as_swizzle()
1099 return this;
1103 * Construct an ir_swizzle from the textual representation. Can fail.
1105 static ir_swizzle *create(ir_rvalue *, const char *, unsigned vector_length);
1107 virtual void accept(ir_visitor *v)
1109 v->visit(this);
1112 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1114 bool is_lvalue()
1116 return val->is_lvalue() && !mask.has_duplicates;
1120 * Get the variable that is ultimately referenced by an r-value
1122 virtual ir_variable *variable_referenced();
1124 ir_rvalue *val;
1125 ir_swizzle_mask mask;
1127 private:
1129 * Initialize the mask component of a swizzle
1131 * This is used by the \c ir_swizzle constructors.
1133 void init_mask(const unsigned *components, unsigned count);
1137 class ir_dereference : public ir_rvalue {
1138 public:
1139 virtual ir_dereference *clone(void *mem_ctx, struct hash_table *) const = 0;
1141 virtual ir_dereference *as_dereference()
1143 return this;
1146 bool is_lvalue();
1149 * Get the variable that is ultimately referenced by an r-value
1151 virtual ir_variable *variable_referenced() = 0;
1155 class ir_dereference_variable : public ir_dereference {
1156 public:
1157 ir_dereference_variable(ir_variable *var);
1159 virtual ir_dereference_variable *clone(void *mem_ctx,
1160 struct hash_table *) const;
1162 virtual ir_constant *constant_expression_value();
1164 virtual ir_dereference_variable *as_dereference_variable()
1166 return this;
1170 * Get the variable that is ultimately referenced by an r-value
1172 virtual ir_variable *variable_referenced()
1174 return this->var;
1177 virtual ir_variable *whole_variable_referenced()
1179 /* ir_dereference_variable objects always dereference the entire
1180 * variable. However, if this dereference is dereferenced by anything
1181 * else, the complete deferefernce chain is not a whole-variable
1182 * dereference. This method should only be called on the top most
1183 * ir_rvalue in a dereference chain.
1185 return this->var;
1188 virtual void accept(ir_visitor *v)
1190 v->visit(this);
1193 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1196 * Object being dereferenced.
1198 ir_variable *var;
1202 class ir_dereference_array : public ir_dereference {
1203 public:
1204 ir_dereference_array(ir_rvalue *value, ir_rvalue *array_index);
1206 ir_dereference_array(ir_variable *var, ir_rvalue *array_index);
1208 virtual ir_dereference_array *clone(void *mem_ctx,
1209 struct hash_table *) const;
1211 virtual ir_constant *constant_expression_value();
1213 virtual ir_dereference_array *as_dereference_array()
1215 return this;
1219 * Get the variable that is ultimately referenced by an r-value
1221 virtual ir_variable *variable_referenced()
1223 return this->array->variable_referenced();
1226 virtual void accept(ir_visitor *v)
1228 v->visit(this);
1231 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1233 ir_rvalue *array;
1234 ir_rvalue *array_index;
1236 private:
1237 void set_array(ir_rvalue *value);
1241 class ir_dereference_record : public ir_dereference {
1242 public:
1243 ir_dereference_record(ir_rvalue *value, const char *field);
1245 ir_dereference_record(ir_variable *var, const char *field);
1247 virtual ir_dereference_record *clone(void *mem_ctx,
1248 struct hash_table *) const;
1250 virtual ir_constant *constant_expression_value();
1253 * Get the variable that is ultimately referenced by an r-value
1255 virtual ir_variable *variable_referenced()
1257 return this->record->variable_referenced();
1260 virtual void accept(ir_visitor *v)
1262 v->visit(this);
1265 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1267 ir_rvalue *record;
1268 const char *field;
1273 * Data stored in an ir_constant
1275 union ir_constant_data {
1276 unsigned u[16];
1277 int i[16];
1278 float f[16];
1279 bool b[16];
1283 class ir_constant : public ir_rvalue {
1284 public:
1285 ir_constant(const struct glsl_type *type, const ir_constant_data *data);
1286 ir_constant(bool b);
1287 ir_constant(unsigned int u);
1288 ir_constant(int i);
1289 ir_constant(float f);
1292 * Construct an ir_constant from a list of ir_constant values
1294 ir_constant(const struct glsl_type *type, exec_list *values);
1297 * Construct an ir_constant from a scalar component of another ir_constant
1299 * The new \c ir_constant inherits the type of the component from the
1300 * source constant.
1302 * \note
1303 * In the case of a matrix constant, the new constant is a scalar, \b not
1304 * a vector.
1306 ir_constant(const ir_constant *c, unsigned i);
1309 * Return a new ir_constant of the specified type containing all zeros.
1311 static ir_constant *zero(void *mem_ctx, const glsl_type *type);
1313 virtual ir_constant *clone(void *mem_ctx, struct hash_table *) const;
1315 virtual ir_constant *constant_expression_value();
1317 virtual ir_constant *as_constant()
1319 return this;
1322 virtual void accept(ir_visitor *v)
1324 v->visit(this);
1327 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1330 * Get a particular component of a constant as a specific type
1332 * This is useful, for example, to get a value from an integer constant
1333 * as a float or bool. This appears frequently when constructors are
1334 * called with all constant parameters.
1336 /*@{*/
1337 bool get_bool_component(unsigned i) const;
1338 float get_float_component(unsigned i) const;
1339 int get_int_component(unsigned i) const;
1340 unsigned get_uint_component(unsigned i) const;
1341 /*@}*/
1343 ir_constant *get_array_element(unsigned i) const;
1345 ir_constant *get_record_field(const char *name);
1348 * Determine whether a constant has the same value as another constant
1350 bool has_value(const ir_constant *) const;
1353 * Value of the constant.
1355 * The field used to back the values supplied by the constant is determined
1356 * by the type associated with the \c ir_instruction. Constants may be
1357 * scalars, vectors, or matrices.
1359 union ir_constant_data value;
1361 /* Array elements */
1362 ir_constant **array_elements;
1364 /* Structure fields */
1365 exec_list components;
1367 private:
1369 * Parameterless constructor only used by the clone method
1371 ir_constant(void);
1374 void
1375 visit_exec_list(exec_list *list, ir_visitor *visitor);
1377 void validate_ir_tree(exec_list *instructions);
1380 * Make a clone of each IR instruction in a list
1382 * \param in List of IR instructions that are to be cloned
1383 * \param out List to hold the cloned instructions
1385 void
1386 clone_ir_list(void *mem_ctx, exec_list *out, const exec_list *in);
1388 extern void
1389 _mesa_glsl_initialize_variables(exec_list *instructions,
1390 struct _mesa_glsl_parse_state *state);
1392 extern void
1393 _mesa_glsl_initialize_functions(exec_list *instructions,
1394 struct _mesa_glsl_parse_state *state);
1396 extern void
1397 _mesa_glsl_release_functions(void);
1399 extern void
1400 reparent_ir(exec_list *list, void *mem_ctx);
1402 struct glsl_symbol_table;
1404 extern void
1405 import_prototypes(const exec_list *source, exec_list *dest,
1406 struct glsl_symbol_table *symbols, void *mem_ctx);
1408 extern bool
1409 ir_has_call(ir_instruction *ir);
1411 extern void
1412 do_set_program_inouts(exec_list *instructions, struct gl_program *prog);
1414 #endif /* IR_H */