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