glsl/types: Rename is_integer to is_integer_32
[mesa.git] / src / compiler / glsl / ir_constant_expression.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_expression.cpp
26 * Evaluate and process constant valued expressions
27 *
28 * In GLSL, constant valued expressions are used in several places. These
29 * must be processed and evaluated very early in the compilation process.
30 *
31 * * Sizes of arrays
32 * * Initializers for uniforms
33 * * Initializers for \c const variables
34 */
35
36 #include <math.h>
37 #include "util/rounding.h" /* for _mesa_roundeven */
38 #include "util/half_float.h"
39 #include "ir.h"
40 #include "compiler/glsl_types.h"
41 #include "util/hash_table.h"
42 #include "util/u_math.h"
43
44 static float
45 dot_f(ir_constant *op0, ir_constant *op1)
46 {
47 assert(op0->type->is_float() && op1->type->is_float());
48
49 float result = 0;
50 for (unsigned c = 0; c < op0->type->components(); c++)
51 result += op0->value.f[c] * op1->value.f[c];
52
53 return result;
54 }
55
56 static double
57 dot_d(ir_constant *op0, ir_constant *op1)
58 {
59 assert(op0->type->is_double() && op1->type->is_double());
60
61 double result = 0;
62 for (unsigned c = 0; c < op0->type->components(); c++)
63 result += op0->value.d[c] * op1->value.d[c];
64
65 return result;
66 }
67
68 /* This method is the only one supported by gcc. Unions in particular
69 * are iffy, and read-through-converted-pointer is killed by strict
70 * aliasing. OTOH, the compiler sees through the memcpy, so the
71 * resulting asm is reasonable.
72 */
73 static float
74 bitcast_u2f(unsigned int u)
75 {
76 assert(sizeof(float) == sizeof(unsigned int));
77 float f;
78 memcpy(&f, &u, sizeof(f));
79 return f;
80 }
81
82 static unsigned int
83 bitcast_f2u(float f)
84 {
85 assert(sizeof(float) == sizeof(unsigned int));
86 unsigned int u;
87 memcpy(&u, &f, sizeof(f));
88 return u;
89 }
90
91 static double
92 bitcast_u642d(uint64_t u)
93 {
94 assert(sizeof(double) == sizeof(uint64_t));
95 double d;
96 memcpy(&d, &u, sizeof(d));
97 return d;
98 }
99
100 static double
101 bitcast_i642d(int64_t i)
102 {
103 assert(sizeof(double) == sizeof(int64_t));
104 double d;
105 memcpy(&d, &i, sizeof(d));
106 return d;
107 }
108
109 static double
110 bitcast_d2u64(double d)
111 {
112 assert(sizeof(double) == sizeof(uint64_t));
113 uint64_t u;
114 memcpy(&u, &d, sizeof(d));
115 return u;
116 }
117
118 static double
119 bitcast_d2i64(double d)
120 {
121 assert(sizeof(double) == sizeof(int64_t));
122 int64_t i;
123 memcpy(&i, &d, sizeof(d));
124 return i;
125 }
126
127 /**
128 * Evaluate one component of a floating-point 4x8 unpacking function.
129 */
130 typedef uint8_t
131 (*pack_1x8_func_t)(float);
132
133 /**
134 * Evaluate one component of a floating-point 2x16 unpacking function.
135 */
136 typedef uint16_t
137 (*pack_1x16_func_t)(float);
138
139 /**
140 * Evaluate one component of a floating-point 4x8 unpacking function.
141 */
142 typedef float
143 (*unpack_1x8_func_t)(uint8_t);
144
145 /**
146 * Evaluate one component of a floating-point 2x16 unpacking function.
147 */
148 typedef float
149 (*unpack_1x16_func_t)(uint16_t);
150
151 /**
152 * Evaluate a 2x16 floating-point packing function.
153 */
154 static uint32_t
155 pack_2x16(pack_1x16_func_t pack_1x16,
156 float x, float y)
157 {
158 /* From section 8.4 of the GLSL ES 3.00 spec:
159 *
160 * packSnorm2x16
161 * -------------
162 * The first component of the vector will be written to the least
163 * significant bits of the output; the last component will be written to
164 * the most significant bits.
165 *
166 * The specifications for the other packing functions contain similar
167 * language.
168 */
169 uint32_t u = 0;
170 u |= ((uint32_t) pack_1x16(x) << 0);
171 u |= ((uint32_t) pack_1x16(y) << 16);
172 return u;
173 }
174
175 /**
176 * Evaluate a 4x8 floating-point packing function.
177 */
178 static uint32_t
179 pack_4x8(pack_1x8_func_t pack_1x8,
180 float x, float y, float z, float w)
181 {
182 /* From section 8.4 of the GLSL 4.30 spec:
183 *
184 * packSnorm4x8
185 * ------------
186 * The first component of the vector will be written to the least
187 * significant bits of the output; the last component will be written to
188 * the most significant bits.
189 *
190 * The specifications for the other packing functions contain similar
191 * language.
192 */
193 uint32_t u = 0;
194 u |= ((uint32_t) pack_1x8(x) << 0);
195 u |= ((uint32_t) pack_1x8(y) << 8);
196 u |= ((uint32_t) pack_1x8(z) << 16);
197 u |= ((uint32_t) pack_1x8(w) << 24);
198 return u;
199 }
200
201 /**
202 * Evaluate a 2x16 floating-point unpacking function.
203 */
204 static void
205 unpack_2x16(unpack_1x16_func_t unpack_1x16,
206 uint32_t u,
207 float *x, float *y)
208 {
209 /* From section 8.4 of the GLSL ES 3.00 spec:
210 *
211 * unpackSnorm2x16
212 * ---------------
213 * The first component of the returned vector will be extracted from
214 * the least significant bits of the input; the last component will be
215 * extracted from the most significant bits.
216 *
217 * The specifications for the other unpacking functions contain similar
218 * language.
219 */
220 *x = unpack_1x16((uint16_t) (u & 0xffff));
221 *y = unpack_1x16((uint16_t) (u >> 16));
222 }
223
224 /**
225 * Evaluate a 4x8 floating-point unpacking function.
226 */
227 static void
228 unpack_4x8(unpack_1x8_func_t unpack_1x8, uint32_t u,
229 float *x, float *y, float *z, float *w)
230 {
231 /* From section 8.4 of the GLSL 4.30 spec:
232 *
233 * unpackSnorm4x8
234 * --------------
235 * The first component of the returned vector will be extracted from
236 * the least significant bits of the input; the last component will be
237 * extracted from the most significant bits.
238 *
239 * The specifications for the other unpacking functions contain similar
240 * language.
241 */
242 *x = unpack_1x8((uint8_t) (u & 0xff));
243 *y = unpack_1x8((uint8_t) (u >> 8));
244 *z = unpack_1x8((uint8_t) (u >> 16));
245 *w = unpack_1x8((uint8_t) (u >> 24));
246 }
247
248 /**
249 * Evaluate one component of packSnorm4x8.
250 */
251 static uint8_t
252 pack_snorm_1x8(float x)
253 {
254 /* From section 8.4 of the GLSL 4.30 spec:
255 *
256 * packSnorm4x8
257 * ------------
258 * The conversion for component c of v to fixed point is done as
259 * follows:
260 *
261 * packSnorm4x8: round(clamp(c, -1, +1) * 127.0)
262 */
263 return (uint8_t)
264 _mesa_lroundevenf(CLAMP(x, -1.0f, +1.0f) * 127.0f);
265 }
266
267 /**
268 * Evaluate one component of packSnorm2x16.
269 */
270 static uint16_t
271 pack_snorm_1x16(float x)
272 {
273 /* From section 8.4 of the GLSL ES 3.00 spec:
274 *
275 * packSnorm2x16
276 * -------------
277 * The conversion for component c of v to fixed point is done as
278 * follows:
279 *
280 * packSnorm2x16: round(clamp(c, -1, +1) * 32767.0)
281 */
282 return (uint16_t)
283 _mesa_lroundevenf(CLAMP(x, -1.0f, +1.0f) * 32767.0f);
284 }
285
286 /**
287 * Evaluate one component of unpackSnorm4x8.
288 */
289 static float
290 unpack_snorm_1x8(uint8_t u)
291 {
292 /* From section 8.4 of the GLSL 4.30 spec:
293 *
294 * unpackSnorm4x8
295 * --------------
296 * The conversion for unpacked fixed-point value f to floating point is
297 * done as follows:
298 *
299 * unpackSnorm4x8: clamp(f / 127.0, -1, +1)
300 */
301 return CLAMP((int8_t) u / 127.0f, -1.0f, +1.0f);
302 }
303
304 /**
305 * Evaluate one component of unpackSnorm2x16.
306 */
307 static float
308 unpack_snorm_1x16(uint16_t u)
309 {
310 /* From section 8.4 of the GLSL ES 3.00 spec:
311 *
312 * unpackSnorm2x16
313 * ---------------
314 * The conversion for unpacked fixed-point value f to floating point is
315 * done as follows:
316 *
317 * unpackSnorm2x16: clamp(f / 32767.0, -1, +1)
318 */
319 return CLAMP((int16_t) u / 32767.0f, -1.0f, +1.0f);
320 }
321
322 /**
323 * Evaluate one component packUnorm4x8.
324 */
325 static uint8_t
326 pack_unorm_1x8(float x)
327 {
328 /* From section 8.4 of the GLSL 4.30 spec:
329 *
330 * packUnorm4x8
331 * ------------
332 * The conversion for component c of v to fixed point is done as
333 * follows:
334 *
335 * packUnorm4x8: round(clamp(c, 0, +1) * 255.0)
336 */
337 return (uint8_t) (int) _mesa_roundevenf(CLAMP(x, 0.0f, 1.0f) * 255.0f);
338 }
339
340 /**
341 * Evaluate one component packUnorm2x16.
342 */
343 static uint16_t
344 pack_unorm_1x16(float x)
345 {
346 /* From section 8.4 of the GLSL ES 3.00 spec:
347 *
348 * packUnorm2x16
349 * -------------
350 * The conversion for component c of v to fixed point is done as
351 * follows:
352 *
353 * packUnorm2x16: round(clamp(c, 0, +1) * 65535.0)
354 */
355 return (uint16_t) (int)
356 _mesa_roundevenf(CLAMP(x, 0.0f, 1.0f) * 65535.0f);
357 }
358
359 /**
360 * Evaluate one component of unpackUnorm4x8.
361 */
362 static float
363 unpack_unorm_1x8(uint8_t u)
364 {
365 /* From section 8.4 of the GLSL 4.30 spec:
366 *
367 * unpackUnorm4x8
368 * --------------
369 * The conversion for unpacked fixed-point value f to floating point is
370 * done as follows:
371 *
372 * unpackUnorm4x8: f / 255.0
373 */
374 return (float) u / 255.0f;
375 }
376
377 /**
378 * Evaluate one component of unpackUnorm2x16.
379 */
380 static float
381 unpack_unorm_1x16(uint16_t u)
382 {
383 /* From section 8.4 of the GLSL ES 3.00 spec:
384 *
385 * unpackUnorm2x16
386 * ---------------
387 * The conversion for unpacked fixed-point value f to floating point is
388 * done as follows:
389 *
390 * unpackUnorm2x16: f / 65535.0
391 */
392 return (float) u / 65535.0f;
393 }
394
395 /**
396 * Evaluate one component of packHalf2x16.
397 */
398 static uint16_t
399 pack_half_1x16(float x)
400 {
401 return _mesa_float_to_half(x);
402 }
403
404 /**
405 * Evaluate one component of unpackHalf2x16.
406 */
407 static float
408 unpack_half_1x16(uint16_t u)
409 {
410 return _mesa_half_to_float(u);
411 }
412
413 /**
414 * Get the constant that is ultimately referenced by an r-value, in a constant
415 * expression evaluation context.
416 *
417 * The offset is used when the reference is to a specific column of a matrix.
418 */
419 static bool
420 constant_referenced(const ir_dereference *deref,
421 struct hash_table *variable_context,
422 ir_constant *&store, int &offset)
423 {
424 store = NULL;
425 offset = 0;
426
427 if (variable_context == NULL)
428 return false;
429
430 switch (deref->ir_type) {
431 case ir_type_dereference_array: {
432 const ir_dereference_array *const da =
433 (const ir_dereference_array *) deref;
434
435 ir_constant *const index_c =
436 da->array_index->constant_expression_value(variable_context);
437
438 if (!index_c || !index_c->type->is_scalar() ||
439 !index_c->type->is_integer_32())
440 break;
441
442 const int index = index_c->type->base_type == GLSL_TYPE_INT ?
443 index_c->get_int_component(0) :
444 index_c->get_uint_component(0);
445
446 ir_constant *substore;
447 int suboffset;
448
449 const ir_dereference *const deref = da->array->as_dereference();
450 if (!deref)
451 break;
452
453 if (!constant_referenced(deref, variable_context, substore, suboffset))
454 break;
455
456 const glsl_type *const vt = da->array->type;
457 if (vt->is_array()) {
458 store = substore->get_array_element(index);
459 offset = 0;
460 } else if (vt->is_matrix()) {
461 store = substore;
462 offset = index * vt->vector_elements;
463 } else if (vt->is_vector()) {
464 store = substore;
465 offset = suboffset + index;
466 }
467
468 break;
469 }
470
471 case ir_type_dereference_record: {
472 const ir_dereference_record *const dr =
473 (const ir_dereference_record *) deref;
474
475 const ir_dereference *const deref = dr->record->as_dereference();
476 if (!deref)
477 break;
478
479 ir_constant *substore;
480 int suboffset;
481
482 if (!constant_referenced(deref, variable_context, substore, suboffset))
483 break;
484
485 /* Since we're dropping it on the floor...
486 */
487 assert(suboffset == 0);
488
489 store = substore->get_record_field(dr->field_idx);
490 break;
491 }
492
493 case ir_type_dereference_variable: {
494 const ir_dereference_variable *const dv =
495 (const ir_dereference_variable *) deref;
496
497 hash_entry *entry = _mesa_hash_table_search(variable_context, dv->var);
498 if (entry)
499 store = (ir_constant *) entry->data;
500 break;
501 }
502
503 default:
504 assert(!"Should not get here.");
505 break;
506 }
507
508 return store != NULL;
509 }
510
511
512 ir_constant *
513 ir_rvalue::constant_expression_value(void *, struct hash_table *)
514 {
515 assert(this->type->is_error());
516 return NULL;
517 }
518
519 static uint32_t
520 bitfield_reverse(uint32_t v)
521 {
522 /* http://graphics.stanford.edu/~seander/bithacks.html#BitReverseObvious */
523 uint32_t r = v; // r will be reversed bits of v; first get LSB of v
524 int s = sizeof(v) * CHAR_BIT - 1; // extra shift needed at end
525
526 for (v >>= 1; v; v >>= 1) {
527 r <<= 1;
528 r |= v & 1;
529 s--;
530 }
531 r <<= s; // shift when v's highest bits are zero
532
533 return r;
534 }
535
536 static int
537 find_msb_uint(uint32_t v)
538 {
539 int count = 0;
540
541 /* If v == 0, then the loop will terminate when count == 32. In that case
542 * 31-count will produce the -1 result required by GLSL findMSB().
543 */
544 while (((v & (1u << 31)) == 0) && count != 32) {
545 count++;
546 v <<= 1;
547 }
548
549 return 31 - count;
550 }
551
552 static int
553 find_msb_int(int32_t v)
554 {
555 /* If v is signed, findMSB() returns the position of the most significant
556 * zero bit.
557 */
558 return find_msb_uint(v < 0 ? ~v : v);
559 }
560
561 static float
562 ldexpf_flush_subnormal(float x, int exp)
563 {
564 const float result = ldexpf(x, exp);
565
566 /* Flush subnormal values to zero. */
567 return !isnormal(result) ? copysignf(0.0f, x) : result;
568 }
569
570 static double
571 ldexp_flush_subnormal(double x, int exp)
572 {
573 const double result = ldexp(x, exp);
574
575 /* Flush subnormal values to zero. */
576 return !isnormal(result) ? copysign(0.0, x) : result;
577 }
578
579 static uint32_t
580 bitfield_extract_uint(uint32_t value, int offset, int bits)
581 {
582 if (bits == 0)
583 return 0;
584 else if (offset < 0 || bits < 0)
585 return 0; /* Undefined, per spec. */
586 else if (offset + bits > 32)
587 return 0; /* Undefined, per spec. */
588 else {
589 value <<= 32 - bits - offset;
590 value >>= 32 - bits;
591 return value;
592 }
593 }
594
595 static int32_t
596 bitfield_extract_int(int32_t value, int offset, int bits)
597 {
598 if (bits == 0)
599 return 0;
600 else if (offset < 0 || bits < 0)
601 return 0; /* Undefined, per spec. */
602 else if (offset + bits > 32)
603 return 0; /* Undefined, per spec. */
604 else {
605 value <<= 32 - bits - offset;
606 value >>= 32 - bits;
607 return value;
608 }
609 }
610
611 static uint32_t
612 bitfield_insert(uint32_t base, uint32_t insert, int offset, int bits)
613 {
614 if (bits == 0)
615 return base;
616 else if (offset < 0 || bits < 0)
617 return 0; /* Undefined, per spec. */
618 else if (offset + bits > 32)
619 return 0; /* Undefined, per spec. */
620 else {
621 unsigned insert_mask = ((1ull << bits) - 1) << offset;
622
623 insert <<= offset;
624 insert &= insert_mask;
625 base &= ~insert_mask;
626
627 return base | insert;
628 }
629 }
630
631 ir_constant *
632 ir_expression::constant_expression_value(void *mem_ctx,
633 struct hash_table *variable_context)
634 {
635 assert(mem_ctx);
636
637 if (this->type->is_error())
638 return NULL;
639
640 ir_constant *op[ARRAY_SIZE(this->operands)] = { NULL, };
641 ir_constant_data data;
642
643 memset(&data, 0, sizeof(data));
644
645 for (unsigned operand = 0; operand < this->num_operands; operand++) {
646 op[operand] =
647 this->operands[operand]->constant_expression_value(mem_ctx,
648 variable_context);
649 if (!op[operand])
650 return NULL;
651 }
652
653 if (op[1] != NULL)
654 switch (this->operation) {
655 case ir_binop_lshift:
656 case ir_binop_rshift:
657 case ir_binop_ldexp:
658 case ir_binop_interpolate_at_offset:
659 case ir_binop_interpolate_at_sample:
660 case ir_binop_vector_extract:
661 case ir_triop_csel:
662 case ir_triop_bitfield_extract:
663 break;
664
665 default:
666 assert(op[0]->type->base_type == op[1]->type->base_type);
667 break;
668 }
669
670 bool op0_scalar = op[0]->type->is_scalar();
671 bool op1_scalar = op[1] != NULL && op[1]->type->is_scalar();
672
673 /* When iterating over a vector or matrix's components, we want to increase
674 * the loop counter. However, for scalars, we want to stay at 0.
675 */
676 unsigned c0_inc = op0_scalar ? 0 : 1;
677 unsigned c1_inc = op1_scalar ? 0 : 1;
678 unsigned components;
679 if (op1_scalar || !op[1]) {
680 components = op[0]->type->components();
681 } else {
682 components = op[1]->type->components();
683 }
684
685 /* Handle array operations here, rather than below. */
686 if (op[0]->type->is_array()) {
687 assert(op[1] != NULL && op[1]->type->is_array());
688 switch (this->operation) {
689 case ir_binop_all_equal:
690 return new(mem_ctx) ir_constant(op[0]->has_value(op[1]));
691 case ir_binop_any_nequal:
692 return new(mem_ctx) ir_constant(!op[0]->has_value(op[1]));
693 default:
694 break;
695 }
696 return NULL;
697 }
698
699 #include "ir_expression_operation_constant.h"
700
701 return new(mem_ctx) ir_constant(this->type, &data);
702 }
703
704
705 ir_constant *
706 ir_texture::constant_expression_value(void *, struct hash_table *)
707 {
708 /* texture lookups aren't constant expressions */
709 return NULL;
710 }
711
712
713 ir_constant *
714 ir_swizzle::constant_expression_value(void *mem_ctx,
715 struct hash_table *variable_context)
716 {
717 assert(mem_ctx);
718
719 ir_constant *v = this->val->constant_expression_value(mem_ctx,
720 variable_context);
721
722 if (v != NULL) {
723 ir_constant_data data = { { 0 } };
724
725 const unsigned swiz_idx[4] = {
726 this->mask.x, this->mask.y, this->mask.z, this->mask.w
727 };
728
729 for (unsigned i = 0; i < this->mask.num_components; i++) {
730 switch (v->type->base_type) {
731 case GLSL_TYPE_UINT:
732 case GLSL_TYPE_INT: data.u[i] = v->value.u[swiz_idx[i]]; break;
733 case GLSL_TYPE_FLOAT: data.f[i] = v->value.f[swiz_idx[i]]; break;
734 case GLSL_TYPE_BOOL: data.b[i] = v->value.b[swiz_idx[i]]; break;
735 case GLSL_TYPE_DOUBLE:data.d[i] = v->value.d[swiz_idx[i]]; break;
736 case GLSL_TYPE_UINT64:data.u64[i] = v->value.u64[swiz_idx[i]]; break;
737 case GLSL_TYPE_INT64: data.i64[i] = v->value.i64[swiz_idx[i]]; break;
738 default: assert(!"Should not get here."); break;
739 }
740 }
741
742 return new(mem_ctx) ir_constant(this->type, &data);
743 }
744 return NULL;
745 }
746
747
748 ir_constant *
749 ir_dereference_variable::constant_expression_value(void *mem_ctx,
750 struct hash_table *variable_context)
751 {
752 assert(var);
753 assert(mem_ctx);
754
755 /* Give priority to the context hashtable, if it exists */
756 if (variable_context) {
757 hash_entry *entry = _mesa_hash_table_search(variable_context, var);
758
759 if(entry)
760 return (ir_constant *) entry->data;
761 }
762
763 /* The constant_value of a uniform variable is its initializer,
764 * not the lifetime constant value of the uniform.
765 */
766 if (var->data.mode == ir_var_uniform)
767 return NULL;
768
769 if (!var->constant_value)
770 return NULL;
771
772 return var->constant_value->clone(mem_ctx, NULL);
773 }
774
775
776 ir_constant *
777 ir_dereference_array::constant_expression_value(void *mem_ctx,
778 struct hash_table *variable_context)
779 {
780 assert(mem_ctx);
781
782 ir_constant *array = this->array->constant_expression_value(mem_ctx, variable_context);
783 ir_constant *idx = this->array_index->constant_expression_value(mem_ctx, variable_context);
784
785 if ((array != NULL) && (idx != NULL)) {
786 if (array->type->is_matrix()) {
787 /* Array access of a matrix results in a vector.
788 */
789 const unsigned column = idx->value.u[0];
790
791 const glsl_type *const column_type = array->type->column_type();
792
793 /* Offset in the constant matrix to the first element of the column
794 * to be extracted.
795 */
796 const unsigned mat_idx = column * column_type->vector_elements;
797
798 ir_constant_data data = { { 0 } };
799
800 switch (column_type->base_type) {
801 case GLSL_TYPE_UINT:
802 case GLSL_TYPE_INT:
803 for (unsigned i = 0; i < column_type->vector_elements; i++)
804 data.u[i] = array->value.u[mat_idx + i];
805
806 break;
807
808 case GLSL_TYPE_FLOAT:
809 for (unsigned i = 0; i < column_type->vector_elements; i++)
810 data.f[i] = array->value.f[mat_idx + i];
811
812 break;
813
814 case GLSL_TYPE_DOUBLE:
815 for (unsigned i = 0; i < column_type->vector_elements; i++)
816 data.d[i] = array->value.d[mat_idx + i];
817
818 break;
819
820 default:
821 assert(!"Should not get here.");
822 break;
823 }
824
825 return new(mem_ctx) ir_constant(column_type, &data);
826 } else if (array->type->is_vector()) {
827 const unsigned component = idx->value.u[0];
828
829 return new(mem_ctx) ir_constant(array, component);
830 } else if (array->type->is_array()) {
831 const unsigned index = idx->value.u[0];
832 return array->get_array_element(index)->clone(mem_ctx, NULL);
833 }
834 }
835 return NULL;
836 }
837
838
839 ir_constant *
840 ir_dereference_record::constant_expression_value(void *mem_ctx,
841 struct hash_table *)
842 {
843 assert(mem_ctx);
844
845 ir_constant *v = this->record->constant_expression_value(mem_ctx);
846
847 return (v != NULL) ? v->get_record_field(this->field_idx) : NULL;
848 }
849
850
851 ir_constant *
852 ir_assignment::constant_expression_value(void *, struct hash_table *)
853 {
854 /* FINISHME: Handle CEs involving assignment (return RHS) */
855 return NULL;
856 }
857
858
859 ir_constant *
860 ir_constant::constant_expression_value(void *, struct hash_table *)
861 {
862 return this;
863 }
864
865
866 ir_constant *
867 ir_call::constant_expression_value(void *mem_ctx, struct hash_table *variable_context)
868 {
869 assert(mem_ctx);
870
871 return this->callee->constant_expression_value(mem_ctx,
872 &this->actual_parameters,
873 variable_context);
874 }
875
876
877 bool ir_function_signature::constant_expression_evaluate_expression_list(void *mem_ctx,
878 const struct exec_list &body,
879 struct hash_table *variable_context,
880 ir_constant **result)
881 {
882 assert(mem_ctx);
883
884 foreach_in_list(ir_instruction, inst, &body) {
885 switch(inst->ir_type) {
886
887 /* (declare () type symbol) */
888 case ir_type_variable: {
889 ir_variable *var = inst->as_variable();
890 _mesa_hash_table_insert(variable_context, var, ir_constant::zero(this, var->type));
891 break;
892 }
893
894 /* (assign [condition] (write-mask) (ref) (value)) */
895 case ir_type_assignment: {
896 ir_assignment *asg = inst->as_assignment();
897 if (asg->condition) {
898 ir_constant *cond =
899 asg->condition->constant_expression_value(mem_ctx,
900 variable_context);
901 if (!cond)
902 return false;
903 if (!cond->get_bool_component(0))
904 break;
905 }
906
907 ir_constant *store = NULL;
908 int offset = 0;
909
910 if (!constant_referenced(asg->lhs, variable_context, store, offset))
911 return false;
912
913 ir_constant *value =
914 asg->rhs->constant_expression_value(mem_ctx, variable_context);
915
916 if (!value)
917 return false;
918
919 store->copy_masked_offset(value, offset, asg->write_mask);
920 break;
921 }
922
923 /* (return (expression)) */
924 case ir_type_return:
925 assert (result);
926 *result =
927 inst->as_return()->value->constant_expression_value(mem_ctx,
928 variable_context);
929 return *result != NULL;
930
931 /* (call name (ref) (params))*/
932 case ir_type_call: {
933 ir_call *call = inst->as_call();
934
935 /* Just say no to void functions in constant expressions. We
936 * don't need them at that point.
937 */
938
939 if (!call->return_deref)
940 return false;
941
942 ir_constant *store = NULL;
943 int offset = 0;
944
945 if (!constant_referenced(call->return_deref, variable_context,
946 store, offset))
947 return false;
948
949 ir_constant *value =
950 call->constant_expression_value(mem_ctx, variable_context);
951
952 if(!value)
953 return false;
954
955 store->copy_offset(value, offset);
956 break;
957 }
958
959 /* (if condition (then-instructions) (else-instructions)) */
960 case ir_type_if: {
961 ir_if *iif = inst->as_if();
962
963 ir_constant *cond =
964 iif->condition->constant_expression_value(mem_ctx,
965 variable_context);
966 if (!cond || !cond->type->is_boolean())
967 return false;
968
969 exec_list &branch = cond->get_bool_component(0) ? iif->then_instructions : iif->else_instructions;
970
971 *result = NULL;
972 if (!constant_expression_evaluate_expression_list(mem_ctx, branch,
973 variable_context,
974 result))
975 return false;
976
977 /* If there was a return in the branch chosen, drop out now. */
978 if (*result)
979 return true;
980
981 break;
982 }
983
984 /* Every other expression type, we drop out. */
985 default:
986 return false;
987 }
988 }
989
990 /* Reaching the end of the block is not an error condition */
991 if (result)
992 *result = NULL;
993
994 return true;
995 }
996
997 ir_constant *
998 ir_function_signature::constant_expression_value(void *mem_ctx,
999 exec_list *actual_parameters,
1000 struct hash_table *variable_context)
1001 {
1002 assert(mem_ctx);
1003
1004 const glsl_type *type = this->return_type;
1005 if (type == glsl_type::void_type)
1006 return NULL;
1007
1008 /* From the GLSL 1.20 spec, page 23:
1009 * "Function calls to user-defined functions (non-built-in functions)
1010 * cannot be used to form constant expressions."
1011 */
1012 if (!this->is_builtin())
1013 return NULL;
1014
1015 /*
1016 * Of the builtin functions, only the texture lookups and the noise
1017 * ones must not be used in constant expressions. They all include
1018 * specific opcodes so they don't need to be special-cased at this
1019 * point.
1020 */
1021
1022 /* Initialize the table of dereferencable names with the function
1023 * parameters. Verify their const-ness on the way.
1024 *
1025 * We expect the correctness of the number of parameters to have
1026 * been checked earlier.
1027 */
1028 hash_table *deref_hash = _mesa_pointer_hash_table_create(NULL);
1029
1030 /* If "origin" is non-NULL, then the function body is there. So we
1031 * have to use the variable objects from the object with the body,
1032 * but the parameter instanciation on the current object.
1033 */
1034 const exec_node *parameter_info = origin ? origin->parameters.get_head_raw() : parameters.get_head_raw();
1035
1036 foreach_in_list(ir_rvalue, n, actual_parameters) {
1037 ir_constant *constant =
1038 n->constant_expression_value(mem_ctx, variable_context);
1039 if (constant == NULL) {
1040 _mesa_hash_table_destroy(deref_hash, NULL);
1041 return NULL;
1042 }
1043
1044
1045 ir_variable *var = (ir_variable *)parameter_info;
1046 _mesa_hash_table_insert(deref_hash, var, constant);
1047
1048 parameter_info = parameter_info->next;
1049 }
1050
1051 ir_constant *result = NULL;
1052
1053 /* Now run the builtin function until something non-constant
1054 * happens or we get the result.
1055 */
1056 if (constant_expression_evaluate_expression_list(mem_ctx, origin ? origin->body : body, deref_hash, &result) &&
1057 result)
1058 result = result->clone(mem_ctx, NULL);
1059
1060 _mesa_hash_table_destroy(deref_hash, NULL);
1061
1062 return result;
1063 }