eabdc240ad34a3b4dbae7c75a67e3b1e55f7d53b
[mesa.git] / ir_constant_folding.cpp
1 /*
2 * Copyright © 2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 /**
25 * \file ir_constant_folding.cpp
26 * Replace constant-valued expressions with references to constant values.
27 */
28
29 #define NULL 0
30 #include "ir.h"
31 #include "ir_visitor.h"
32 #include "ir_constant_folding.h"
33 #include "glsl_types.h"
34
35 /**
36 * Visitor class for replacing expressions with ir_constant values.
37 */
38
39 void
40 ir_constant_folding_visitor::visit(ir_variable *ir)
41 {
42 (void) ir;
43 }
44
45
46 void
47 ir_constant_folding_visitor::visit(ir_label *ir)
48 {
49 (void) ir;
50 }
51
52
53 void
54 ir_constant_folding_visitor::visit(ir_function_signature *ir)
55 {
56 (void) ir;
57 }
58
59
60 void
61 ir_constant_folding_visitor::visit(ir_function *ir)
62 {
63 (void) ir;
64 }
65
66 void
67 ir_constant_folding_visitor::visit(ir_expression *ir)
68 {
69 ir_constant *op[2];
70 unsigned int operand;
71
72 for (operand = 0; operand < ir->get_num_operands(); operand++) {
73 op[operand] = ir->operands[operand]->constant_expression_value();
74 if (op[operand]) {
75 ir->operands[operand] = op[operand];
76 } else {
77 ir->operands[operand]->accept(this);
78 }
79 }
80 }
81
82
83 void
84 ir_constant_folding_visitor::visit(ir_swizzle *ir)
85 {
86 ir->val->accept(this);
87 }
88
89
90 void
91 ir_constant_folding_visitor::visit(ir_dereference *ir)
92 {
93 if (ir->mode == ir_dereference::ir_reference_array) {
94 ir_constant *const_val = ir->selector.array_index->constant_expression_value();
95 if (const_val)
96 ir->selector.array_index = const_val;
97 else
98 ir->selector.array_index->accept(this);
99 }
100 ir->var->accept(this);
101 }
102
103
104 void
105 ir_constant_folding_visitor::visit(ir_assignment *ir)
106 {
107 ir_constant *const_val = ir->rhs->constant_expression_value();
108 if (const_val)
109 ir->rhs = const_val;
110 else
111 ir->rhs->accept(this);
112 }
113
114
115 void
116 ir_constant_folding_visitor::visit(ir_constant *ir)
117 {
118 (void) ir;
119 }
120
121
122 void
123 ir_constant_folding_visitor::visit(ir_call *ir)
124 {
125 (void) ir;
126 }
127
128
129 void
130 ir_constant_folding_visitor::visit(ir_return *ir)
131 {
132 (void) ir;
133 }
134
135
136 void
137 ir_constant_folding_visitor::visit(ir_if *ir)
138 {
139 ir_constant *const_val = ir->condition->constant_expression_value();
140 if (const_val)
141 ir->condition = const_val;
142 else
143 ir->condition->accept(this);
144 }