builtin_compiler/build: Don't use *_FOR_BUILD when not cross compiling
[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 "main/compiler.h"
26 #include "ir.h"
27 #include "glsl_types.h"
28 #include "program/hash_table.h"
29
30 ir_rvalue *
31 ir_rvalue::clone(void *mem_ctx, struct hash_table *ht) const
32 {
33 /* The only possible instantiation is the generic error value. */
34 return error_value(mem_ctx);
35 }
36
37 /**
38 * Duplicate an IR variable
39 */
40 ir_variable *
41 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const
42 {
43 ir_variable *var = new(mem_ctx) ir_variable(this->type, this->name,
44 (ir_variable_mode) this->mode);
45
46 var->max_array_access = this->max_array_access;
47 var->read_only = this->read_only;
48 var->centroid = this->centroid;
49 var->invariant = this->invariant;
50 var->interpolation = this->interpolation;
51 var->location = this->location;
52 var->index = this->index;
53 var->warn_extension = this->warn_extension;
54 var->origin_upper_left = this->origin_upper_left;
55 var->pixel_center_integer = this->pixel_center_integer;
56 var->explicit_location = this->explicit_location;
57 var->explicit_index = this->explicit_index;
58 var->has_initializer = this->has_initializer;
59 var->depth_layout = this->depth_layout;
60
61 var->num_state_slots = this->num_state_slots;
62 if (this->state_slots) {
63 /* FINISHME: This really wants to use something like talloc_reference, but
64 * FINISHME: ralloc doesn't have any similar function.
65 */
66 var->state_slots = ralloc_array(var, ir_state_slot,
67 this->num_state_slots);
68 memcpy(var->state_slots, this->state_slots,
69 sizeof(this->state_slots[0]) * var->num_state_slots);
70 }
71
72 if (this->constant_value)
73 var->constant_value = this->constant_value->clone(mem_ctx, ht);
74
75 if (this->constant_initializer)
76 var->constant_initializer =
77 this->constant_initializer->clone(mem_ctx, ht);
78
79 var->interface_type = this->interface_type;
80
81 if (ht) {
82 hash_table_insert(ht, var, (void *)const_cast<ir_variable *>(this));
83 }
84
85 return var;
86 }
87
88 ir_swizzle *
89 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const
90 {
91 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask);
92 }
93
94 ir_return *
95 ir_return::clone(void *mem_ctx, struct hash_table *ht) const
96 {
97 ir_rvalue *new_value = NULL;
98
99 if (this->value)
100 new_value = this->value->clone(mem_ctx, ht);
101
102 return new(mem_ctx) ir_return(new_value);
103 }
104
105 ir_discard *
106 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const
107 {
108 ir_rvalue *new_condition = NULL;
109
110 if (this->condition != NULL)
111 new_condition = this->condition->clone(mem_ctx, ht);
112
113 return new(mem_ctx) ir_discard(new_condition);
114 }
115
116 ir_loop_jump *
117 ir_loop_jump::clone(void *mem_ctx, struct hash_table *ht) const
118 {
119 (void)ht;
120
121 return new(mem_ctx) ir_loop_jump(this->mode);
122 }
123
124 ir_if *
125 ir_if::clone(void *mem_ctx, struct hash_table *ht) const
126 {
127 ir_if *new_if = new(mem_ctx) ir_if(this->condition->clone(mem_ctx, ht));
128
129 foreach_iter(exec_list_iterator, iter, this->then_instructions) {
130 ir_instruction *ir = (ir_instruction *)iter.get();
131 new_if->then_instructions.push_tail(ir->clone(mem_ctx, ht));
132 }
133
134 foreach_iter(exec_list_iterator, iter, this->else_instructions) {
135 ir_instruction *ir = (ir_instruction *)iter.get();
136 new_if->else_instructions.push_tail(ir->clone(mem_ctx, ht));
137 }
138
139 return new_if;
140 }
141
142 ir_loop *
143 ir_loop::clone(void *mem_ctx, struct hash_table *ht) const
144 {
145 ir_loop *new_loop = new(mem_ctx) ir_loop();
146
147 if (this->from)
148 new_loop->from = this->from->clone(mem_ctx, ht);
149 if (this->to)
150 new_loop->to = this->to->clone(mem_ctx, ht);
151 if (this->increment)
152 new_loop->increment = this->increment->clone(mem_ctx, ht);
153 new_loop->counter = counter;
154
155 foreach_iter(exec_list_iterator, iter, this->body_instructions) {
156 ir_instruction *ir = (ir_instruction *)iter.get();
157 new_loop->body_instructions.push_tail(ir->clone(mem_ctx, ht));
158 }
159
160 new_loop->cmp = this->cmp;
161 return new_loop;
162 }
163
164 ir_call *
165 ir_call::clone(void *mem_ctx, struct hash_table *ht) const
166 {
167 ir_dereference_variable *new_return_ref = NULL;
168 if (this->return_deref != NULL)
169 new_return_ref = this->return_deref->clone(mem_ctx, ht);
170
171 exec_list new_parameters;
172
173 foreach_iter(exec_list_iterator, iter, this->actual_parameters) {
174 ir_instruction *ir = (ir_instruction *)iter.get();
175 new_parameters.push_tail(ir->clone(mem_ctx, ht));
176 }
177
178 return new(mem_ctx) ir_call(this->callee, new_return_ref, &new_parameters);
179 }
180
181 ir_expression *
182 ir_expression::clone(void *mem_ctx, struct hash_table *ht) const
183 {
184 ir_rvalue *op[Elements(this->operands)] = { NULL, };
185 unsigned int i;
186
187 for (i = 0; i < get_num_operands(); i++) {
188 op[i] = this->operands[i]->clone(mem_ctx, ht);
189 }
190
191 return new(mem_ctx) ir_expression(this->operation, this->type,
192 op[0], op[1], op[2], op[3]);
193 }
194
195 ir_dereference_variable *
196 ir_dereference_variable::clone(void *mem_ctx, struct hash_table *ht) const
197 {
198 ir_variable *new_var;
199
200 if (ht) {
201 new_var = (ir_variable *)hash_table_find(ht, this->var);
202 if (!new_var)
203 new_var = this->var;
204 } else {
205 new_var = this->var;
206 }
207
208 return new(mem_ctx) ir_dereference_variable(new_var);
209 }
210
211 ir_dereference_array *
212 ir_dereference_array::clone(void *mem_ctx, struct hash_table *ht) const
213 {
214 return new(mem_ctx) ir_dereference_array(this->array->clone(mem_ctx, ht),
215 this->array_index->clone(mem_ctx,
216 ht));
217 }
218
219 ir_dereference_record *
220 ir_dereference_record::clone(void *mem_ctx, struct hash_table *ht) const
221 {
222 return new(mem_ctx) ir_dereference_record(this->record->clone(mem_ctx, ht),
223 this->field);
224 }
225
226 ir_texture *
227 ir_texture::clone(void *mem_ctx, struct hash_table *ht) const
228 {
229 ir_texture *new_tex = new(mem_ctx) ir_texture(this->op);
230 new_tex->type = this->type;
231
232 new_tex->sampler = this->sampler->clone(mem_ctx, ht);
233 if (this->coordinate)
234 new_tex->coordinate = this->coordinate->clone(mem_ctx, ht);
235 if (this->projector)
236 new_tex->projector = this->projector->clone(mem_ctx, ht);
237 if (this->shadow_comparitor) {
238 new_tex->shadow_comparitor = this->shadow_comparitor->clone(mem_ctx, ht);
239 }
240
241 if (this->offset != NULL)
242 new_tex->offset = this->offset->clone(mem_ctx, ht);
243
244 switch (this->op) {
245 case ir_tex:
246 break;
247 case ir_txb:
248 new_tex->lod_info.bias = this->lod_info.bias->clone(mem_ctx, ht);
249 break;
250 case ir_txl:
251 case ir_txf:
252 case ir_txs:
253 new_tex->lod_info.lod = this->lod_info.lod->clone(mem_ctx, ht);
254 break;
255 case ir_txd:
256 new_tex->lod_info.grad.dPdx = this->lod_info.grad.dPdx->clone(mem_ctx, ht);
257 new_tex->lod_info.grad.dPdy = this->lod_info.grad.dPdy->clone(mem_ctx, ht);
258 break;
259 }
260
261 return new_tex;
262 }
263
264 ir_assignment *
265 ir_assignment::clone(void *mem_ctx, struct hash_table *ht) const
266 {
267 ir_rvalue *new_condition = NULL;
268
269 if (this->condition)
270 new_condition = this->condition->clone(mem_ctx, ht);
271
272 return new(mem_ctx) ir_assignment(this->lhs->clone(mem_ctx, ht),
273 this->rhs->clone(mem_ctx, ht),
274 new_condition,
275 this->write_mask);
276 }
277
278 ir_function *
279 ir_function::clone(void *mem_ctx, struct hash_table *ht) const
280 {
281 ir_function *copy = new(mem_ctx) ir_function(this->name);
282
283 foreach_list_const(node, &this->signatures) {
284 const ir_function_signature *const sig =
285 (const ir_function_signature *const) node;
286
287 ir_function_signature *sig_copy = sig->clone(mem_ctx, ht);
288 copy->add_signature(sig_copy);
289
290 if (ht != NULL)
291 hash_table_insert(ht, sig_copy,
292 (void *)const_cast<ir_function_signature *>(sig));
293 }
294
295 return copy;
296 }
297
298 ir_function_signature *
299 ir_function_signature::clone(void *mem_ctx, struct hash_table *ht) const
300 {
301 ir_function_signature *copy = this->clone_prototype(mem_ctx, ht);
302
303 copy->is_defined = this->is_defined;
304
305 /* Clone the instruction list.
306 */
307 foreach_list_const(node, &this->body) {
308 const ir_instruction *const inst = (const ir_instruction *) node;
309
310 ir_instruction *const inst_copy = inst->clone(mem_ctx, ht);
311 copy->body.push_tail(inst_copy);
312 }
313
314 return copy;
315 }
316
317 ir_function_signature *
318 ir_function_signature::clone_prototype(void *mem_ctx, struct hash_table *ht) const
319 {
320 ir_function_signature *copy =
321 new(mem_ctx) ir_function_signature(this->return_type);
322
323 copy->is_defined = false;
324 copy->is_builtin = this->is_builtin;
325 copy->origin = this;
326
327 /* Clone the parameter list, but NOT the body.
328 */
329 foreach_list_const(node, &this->parameters) {
330 const ir_variable *const param = (const ir_variable *) node;
331
332 assert(const_cast<ir_variable *>(param)->as_variable() != NULL);
333
334 ir_variable *const param_copy = param->clone(mem_ctx, ht);
335 copy->parameters.push_tail(param_copy);
336 }
337
338 return copy;
339 }
340
341 ir_constant *
342 ir_constant::clone(void *mem_ctx, struct hash_table *ht) const
343 {
344 (void)ht;
345
346 switch (this->type->base_type) {
347 case GLSL_TYPE_UINT:
348 case GLSL_TYPE_INT:
349 case GLSL_TYPE_FLOAT:
350 case GLSL_TYPE_BOOL:
351 return new(mem_ctx) ir_constant(this->type, &this->value);
352
353 case GLSL_TYPE_STRUCT: {
354 ir_constant *c = new(mem_ctx) ir_constant;
355
356 c->type = this->type;
357 for (exec_node *node = this->components.head
358 ; !node->is_tail_sentinel()
359 ; node = node->next) {
360 ir_constant *const orig = (ir_constant *) node;
361
362 c->components.push_tail(orig->clone(mem_ctx, NULL));
363 }
364
365 return c;
366 }
367
368 case GLSL_TYPE_ARRAY: {
369 ir_constant *c = new(mem_ctx) ir_constant;
370
371 c->type = this->type;
372 c->array_elements = ralloc_array(c, ir_constant *, this->type->length);
373 for (unsigned i = 0; i < this->type->length; i++) {
374 c->array_elements[i] = this->array_elements[i]->clone(mem_ctx, NULL);
375 }
376 return c;
377 }
378
379 case GLSL_TYPE_SAMPLER:
380 case GLSL_TYPE_VOID:
381 case GLSL_TYPE_ERROR:
382 case GLSL_TYPE_INTERFACE:
383 assert(!"Should not get here.");
384 break;
385 }
386
387 return NULL;
388 }
389
390
391 class fixup_ir_call_visitor : public ir_hierarchical_visitor {
392 public:
393 fixup_ir_call_visitor(struct hash_table *ht)
394 {
395 this->ht = ht;
396 }
397
398 virtual ir_visitor_status visit_enter(ir_call *ir)
399 {
400 /* Try to find the function signature referenced by the ir_call in the
401 * table. If it is found, replace it with the value from the table.
402 */
403 ir_function_signature *sig =
404 (ir_function_signature *) hash_table_find(this->ht, ir->callee);
405 if (sig != NULL)
406 ir->callee = sig;
407
408 /* Since this may be used before function call parameters are flattened,
409 * the children also need to be processed.
410 */
411 return visit_continue;
412 }
413
414 private:
415 struct hash_table *ht;
416 };
417
418
419 static void
420 fixup_function_calls(struct hash_table *ht, exec_list *instructions)
421 {
422 fixup_ir_call_visitor v(ht);
423 v.run(instructions);
424 }
425
426
427 void
428 clone_ir_list(void *mem_ctx, exec_list *out, const exec_list *in)
429 {
430 struct hash_table *ht =
431 hash_table_ctor(0, hash_table_pointer_hash, hash_table_pointer_compare);
432
433 foreach_list_const(node, in) {
434 const ir_instruction *const original = (ir_instruction *) node;
435 ir_instruction *copy = original->clone(mem_ctx, ht);
436
437 out->push_tail(copy);
438 }
439
440 /* Make a pass over the cloned tree to fix up ir_call nodes to point to the
441 * cloned ir_function_signature nodes. This cannot be done automatically
442 * during cloning because the ir_call might be a forward reference (i.e.,
443 * the function signature that it references may not have been cloned yet).
444 */
445 fixup_function_calls(ht, out);
446
447 hash_table_dtor(ht);
448 }