2bde585914a05f47bd33b2830a3347043a5ae492
[mesa.git] / src / glsl / ir_clone.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 #include <string.h>
25 #include "ir.h"
26 #include "glsl_types.h"
27 extern "C" {
28 #include "hash_table.h"
29 }
30
31 /**
32 * Duplicate an IR variable
33 *
34 * \note
35 * This will probably be made \c virtual and moved to the base class
36 * eventually.
37 */
38 ir_variable *
39 ir_variable::clone(struct hash_table *ht) const
40 {
41 void *ctx = talloc_parent(this);
42 ir_variable *var = new(ctx) ir_variable(type, name);
43
44 var->max_array_access = this->max_array_access;
45 var->read_only = this->read_only;
46 var->centroid = this->centroid;
47 var->invariant = this->invariant;
48 var->shader_in = this->shader_in;
49 var->shader_out = this->shader_out;
50 var->mode = this->mode;
51 var->interpolation = this->interpolation;
52 var->array_lvalue = this->array_lvalue;
53 var->location = this->location;
54 var->warn_extension = this->warn_extension;
55
56 if (this->constant_value)
57 var->constant_value = this->constant_value->clone(ht);
58
59 if (ht) {
60 hash_table_insert(ht, var, (void *)const_cast<ir_variable *>(this));
61 }
62
63 return var;
64 }
65
66 ir_swizzle *
67 ir_swizzle::clone(struct hash_table *ht) const
68 {
69 void *ctx = talloc_parent(this);
70 return new(ctx) ir_swizzle((ir_rvalue *)this->val->clone(ht), this->mask);
71 }
72
73 ir_return *
74 ir_return::clone(struct hash_table *ht) const
75 {
76 void *ctx = talloc_parent(this);
77 ir_rvalue *new_value = NULL;
78
79 if (this->value)
80 new_value = (ir_rvalue *)this->value->clone(ht);
81
82 return new(ctx) ir_return(new_value);
83 }
84
85 ir_discard *
86 ir_discard::clone(struct hash_table *ht) const
87 {
88 void *ctx = talloc_parent(this);
89 ir_rvalue *new_condition = NULL;
90
91 if (this->condition != NULL)
92 new_condition = (ir_rvalue *) this->condition->clone(ht);
93
94 return new(ctx) ir_discard(new_condition);
95 }
96
97 ir_loop_jump *
98 ir_loop_jump::clone(struct hash_table *ht) const
99 {
100 void *ctx = talloc_parent(this);
101 (void)ht;
102
103 return new(ctx) ir_loop_jump(this->mode);
104 }
105
106 ir_if *
107 ir_if::clone(struct hash_table *ht) const
108 {
109 void *ctx = talloc_parent(this);
110 ir_if *new_if = new(ctx) ir_if((ir_rvalue *)this->condition->clone(ht));
111
112 foreach_iter(exec_list_iterator, iter, this->then_instructions) {
113 ir_instruction *ir = (ir_instruction *)iter.get();
114 new_if->then_instructions.push_tail(ir->clone(ht));
115 }
116
117 foreach_iter(exec_list_iterator, iter, this->else_instructions) {
118 ir_instruction *ir = (ir_instruction *)iter.get();
119 new_if->else_instructions.push_tail(ir->clone(ht));
120 }
121
122 return new_if;
123 }
124
125 ir_loop *
126 ir_loop::clone(struct hash_table *ht) const
127 {
128 void *ctx = talloc_parent(this);
129 ir_loop *new_loop = new(ctx) ir_loop();
130
131 if (this->from)
132 new_loop->from = (ir_rvalue *)this->from->clone(ht);
133 if (this->to)
134 new_loop->to = (ir_rvalue *)this->to->clone(ht);
135 if (this->increment)
136 new_loop->increment = (ir_rvalue *)this->increment->clone(ht);
137 new_loop->counter = counter;
138
139 foreach_iter(exec_list_iterator, iter, this->body_instructions) {
140 ir_instruction *ir = (ir_instruction *)iter.get();
141 new_loop->body_instructions.push_tail(ir->clone(ht));
142 }
143
144 return new_loop;
145 }
146
147 ir_call *
148 ir_call::clone(struct hash_table *ht) const
149 {
150 void *ctx = talloc_parent(this);
151 exec_list new_parameters;
152
153 foreach_iter(exec_list_iterator, iter, this->actual_parameters) {
154 ir_instruction *ir = (ir_instruction *)iter.get();
155 new_parameters.push_tail(ir->clone(ht));
156 }
157
158 return new(ctx) ir_call(this->callee, &new_parameters);
159 }
160
161 ir_expression *
162 ir_expression::clone(struct hash_table *ht) const
163 {
164 void *ctx = talloc_parent(this);
165 ir_rvalue *op[2] = {NULL, NULL};
166 unsigned int i;
167
168 for (i = 0; i < get_num_operands(); i++) {
169 op[i] = (ir_rvalue *)this->operands[i]->clone(ht);
170 }
171
172 return new(ctx) ir_expression(this->operation, this->type, op[0], op[1]);
173 }
174
175 ir_dereference_variable *
176 ir_dereference_variable::clone(struct hash_table *ht) const
177 {
178 void *ctx = talloc_parent(this);
179 ir_variable *new_var;
180
181 if (ht) {
182 new_var = (ir_variable *)hash_table_find(ht, this->var);
183 if (!new_var)
184 new_var = this->var;
185 } else {
186 new_var = this->var;
187 }
188
189 return new(ctx) ir_dereference_variable(new_var);
190 }
191
192 ir_dereference_array *
193 ir_dereference_array::clone(struct hash_table *ht) const
194 {
195 void *ctx = talloc_parent(this);
196 return new(ctx) ir_dereference_array((ir_rvalue *)this->array->clone(ht),
197 (ir_rvalue *)this->array_index->clone(ht));
198 }
199
200 ir_dereference_record *
201 ir_dereference_record::clone(struct hash_table *ht) const
202 {
203 void *ctx = talloc_parent(this);
204 return new(ctx) ir_dereference_record((ir_rvalue *)this->record->clone(ht),
205 this->field);
206 }
207
208 ir_texture *
209 ir_texture::clone(struct hash_table *ht) const
210 {
211 void *ctx = talloc_parent(this);
212 ir_texture *new_tex = new(ctx) ir_texture(this->op);
213
214 new_tex->sampler = (ir_dereference *)this->sampler->clone(ht);
215 new_tex->coordinate = (ir_rvalue *)this->coordinate->clone(ht);
216 if (this->projector)
217 new_tex->projector = (ir_rvalue *)this->projector->clone(ht);
218 if (this->shadow_comparitor) {
219 new_tex->shadow_comparitor =
220 (ir_rvalue *)this->shadow_comparitor->clone(ht);
221 }
222
223 for (int i = 0; i < 3; i++)
224 new_tex->offsets[i] = this->offsets[i];
225
226 switch (this->op) {
227 case ir_tex:
228 break;
229 case ir_txb:
230 new_tex->lod_info.bias = (ir_rvalue *)this->lod_info.bias->clone(ht);
231 break;
232 case ir_txl:
233 case ir_txf:
234 new_tex->lod_info.lod = (ir_rvalue *)this->lod_info.lod->clone(ht);
235 break;
236 case ir_txd:
237 new_tex->lod_info.grad.dPdx =
238 (ir_rvalue *)this->lod_info.grad.dPdx->clone(ht);
239 new_tex->lod_info.grad.dPdy =
240 (ir_rvalue *)this->lod_info.grad.dPdy->clone(ht);
241 break;
242 }
243
244 return new_tex;
245 }
246
247 ir_assignment *
248 ir_assignment::clone(struct hash_table *ht) const
249 {
250 ir_rvalue *new_condition = NULL;
251
252 if (this->condition)
253 new_condition = (ir_rvalue *)this->condition->clone(ht);
254
255 void *ctx = talloc_parent(this);
256 return new(ctx) ir_assignment((ir_rvalue *)this->lhs->clone(ht),
257 (ir_rvalue *)this->rhs->clone(ht),
258 new_condition);
259 }
260
261 ir_function *
262 ir_function::clone(struct hash_table *ht) const
263 {
264 void *mem_ctx = talloc_parent(this);
265 ir_function *copy = new(mem_ctx) ir_function(this->name);
266
267 foreach_list_const(node, &this->signatures) {
268 const ir_function_signature *const sig =
269 (const ir_function_signature *const) node;
270
271 ir_function_signature *sig_copy = sig->clone(ht);
272 copy->add_signature(sig_copy);
273
274 if (ht != NULL)
275 hash_table_insert(ht, sig_copy,
276 (void *)const_cast<ir_function_signature *>(sig));
277 }
278
279 return copy;
280 }
281
282 ir_function_signature *
283 ir_function_signature::clone(struct hash_table *ht) const
284 {
285 void *mem_ctx = talloc_parent(this);
286 ir_function_signature *copy =
287 new(mem_ctx) ir_function_signature(this->return_type);
288
289 copy->is_defined = this->is_defined;
290
291 /* Clone the parameter list.
292 */
293 foreach_list_const(node, &this->parameters) {
294 const ir_variable *const param = (const ir_variable *) node;
295
296 assert(const_cast<ir_variable *>(param)->as_variable() != NULL);
297
298 ir_variable *const param_copy = param->clone(ht);
299 copy->parameters.push_tail(param_copy);
300 }
301
302 /* Clone the instruction list.
303 */
304 foreach_list_const(node, &this->body) {
305 const ir_instruction *const inst = (const ir_instruction *) node;
306
307 ir_instruction *const inst_copy = inst->clone(ht);
308 copy->body.push_tail(inst_copy);
309 }
310
311 return copy;
312 }
313
314 ir_constant *
315 ir_constant::clone(struct hash_table *ht) const
316 {
317 void *ctx = talloc_parent(this);
318 (void)ht;
319
320 switch (this->type->base_type) {
321 case GLSL_TYPE_UINT:
322 case GLSL_TYPE_INT:
323 case GLSL_TYPE_FLOAT:
324 case GLSL_TYPE_BOOL:
325 return new(ctx) ir_constant(this->type, &this->value);
326
327 case GLSL_TYPE_STRUCT: {
328 ir_constant *c = new(ctx) ir_constant;
329
330 c->type = this->type;
331 for (exec_node *node = this->components.head
332 ; !node->is_tail_sentinal()
333 ; node = node->next) {
334 ir_constant *const orig = (ir_constant *) node;
335
336 c->components.push_tail(orig->clone(NULL));
337 }
338
339 return c;
340 }
341
342 default:
343 assert(!"Should not get here."); break;
344 return NULL;
345 }
346 }