glsl: Add new expressions for INTEL_shader_integer_functions2
[mesa.git] / src / compiler / glsl / ir_validate.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_validate.cpp
26 *
27 * Attempts to verify that various invariants of the IR tree are true.
28 *
29 * In particular, at the moment it makes sure that no single
30 * ir_instruction node except for ir_variable appears multiple times
31 * in the ir tree. ir_variable does appear multiple times: Once as a
32 * declaration in an exec_list, and multiple times as the endpoint of
33 * a dereference chain.
34 */
35
36 #include "ir.h"
37 #include "ir_hierarchical_visitor.h"
38 #include "util/hash_table.h"
39 #include "util/macros.h"
40 #include "util/set.h"
41 #include "compiler/glsl_types.h"
42
43 namespace {
44
45 class ir_validate : public ir_hierarchical_visitor {
46 public:
47 ir_validate()
48 {
49 this->ir_set = _mesa_pointer_set_create(NULL);
50
51 this->current_function = NULL;
52
53 this->callback_enter = ir_validate::validate_ir;
54 this->data_enter = ir_set;
55 }
56
57 ~ir_validate()
58 {
59 _mesa_set_destroy(this->ir_set, NULL);
60 }
61
62 virtual ir_visitor_status visit(ir_variable *v);
63 virtual ir_visitor_status visit(ir_dereference_variable *ir);
64
65 virtual ir_visitor_status visit_enter(ir_discard *ir);
66 virtual ir_visitor_status visit_enter(ir_if *ir);
67
68 virtual ir_visitor_status visit_enter(ir_function *ir);
69 virtual ir_visitor_status visit_leave(ir_function *ir);
70 virtual ir_visitor_status visit_enter(ir_function_signature *ir);
71
72 virtual ir_visitor_status visit_leave(ir_expression *ir);
73 virtual ir_visitor_status visit_leave(ir_swizzle *ir);
74
75 virtual ir_visitor_status visit_enter(class ir_dereference_array *);
76
77 virtual ir_visitor_status visit_enter(ir_assignment *ir);
78 virtual ir_visitor_status visit_enter(ir_call *ir);
79
80 static void validate_ir(ir_instruction *ir, void *data);
81
82 ir_function *current_function;
83
84 struct set *ir_set;
85 };
86
87 } /* anonymous namespace */
88
89 ir_visitor_status
90 ir_validate::visit(ir_dereference_variable *ir)
91 {
92 if ((ir->var == NULL) || (ir->var->as_variable() == NULL)) {
93 printf("ir_dereference_variable @ %p does not specify a variable %p\n",
94 (void *) ir, (void *) ir->var);
95 abort();
96 }
97
98 if (_mesa_set_search(ir_set, ir->var) == NULL) {
99 printf("ir_dereference_variable @ %p specifies undeclared variable "
100 "`%s' @ %p\n",
101 (void *) ir, ir->var->name, (void *) ir->var);
102 abort();
103 }
104
105 this->validate_ir(ir, this->data_enter);
106
107 return visit_continue;
108 }
109
110 ir_visitor_status
111 ir_validate::visit_enter(class ir_dereference_array *ir)
112 {
113 if (!ir->array->type->is_array() && !ir->array->type->is_matrix() &&
114 !ir->array->type->is_vector()) {
115 printf("ir_dereference_array @ %p does not specify an array, a vector "
116 "or a matrix\n",
117 (void *) ir);
118 ir->print();
119 printf("\n");
120 abort();
121 }
122
123 if (!ir->array_index->type->is_scalar()) {
124 printf("ir_dereference_array @ %p does not have scalar index: %s\n",
125 (void *) ir, ir->array_index->type->name);
126 abort();
127 }
128
129 if (!ir->array_index->type->is_integer_32()) {
130 printf("ir_dereference_array @ %p does not have integer index: %s\n",
131 (void *) ir, ir->array_index->type->name);
132 abort();
133 }
134
135 return visit_continue;
136 }
137
138 ir_visitor_status
139 ir_validate::visit_enter(ir_discard *ir)
140 {
141 if (ir->condition && ir->condition->type != glsl_type::bool_type) {
142 printf("ir_discard condition %s type instead of bool.\n",
143 ir->condition->type->name);
144 ir->print();
145 printf("\n");
146 abort();
147 }
148
149 return visit_continue;
150 }
151
152 ir_visitor_status
153 ir_validate::visit_enter(ir_if *ir)
154 {
155 if (ir->condition->type != glsl_type::bool_type) {
156 printf("ir_if condition %s type instead of bool.\n",
157 ir->condition->type->name);
158 ir->print();
159 printf("\n");
160 abort();
161 }
162
163 return visit_continue;
164 }
165
166
167 ir_visitor_status
168 ir_validate::visit_enter(ir_function *ir)
169 {
170 /* Function definitions cannot be nested.
171 */
172 if (this->current_function != NULL) {
173 printf("Function definition nested inside another function "
174 "definition:\n");
175 printf("%s %p inside %s %p\n",
176 ir->name, (void *) ir,
177 this->current_function->name, (void *) this->current_function);
178 abort();
179 }
180
181 /* Store the current function hierarchy being traversed. This is used
182 * by the function signature visitor to ensure that the signatures are
183 * linked with the correct functions.
184 */
185 this->current_function = ir;
186
187 this->validate_ir(ir, this->data_enter);
188
189 /* Verify that all of the things stored in the list of signatures are,
190 * in fact, function signatures.
191 */
192 foreach_in_list(ir_instruction, sig, &ir->signatures) {
193 if (sig->ir_type != ir_type_function_signature) {
194 printf("Non-signature in signature list of function `%s'\n",
195 ir->name);
196 abort();
197 }
198 }
199
200 return visit_continue;
201 }
202
203 ir_visitor_status
204 ir_validate::visit_leave(ir_function *ir)
205 {
206 assert(ralloc_parent(ir->name) == ir);
207
208 this->current_function = NULL;
209 return visit_continue;
210 }
211
212 ir_visitor_status
213 ir_validate::visit_enter(ir_function_signature *ir)
214 {
215 if (this->current_function != ir->function()) {
216 printf("Function signature nested inside wrong function "
217 "definition:\n");
218 printf("%p inside %s %p instead of %s %p\n",
219 (void *) ir,
220 this->current_function->name, (void *) this->current_function,
221 ir->function_name(), (void *) ir->function());
222 abort();
223 }
224
225 if (ir->return_type == NULL) {
226 printf("Function signature %p for function %s has NULL return type.\n",
227 (void *) ir, ir->function_name());
228 abort();
229 }
230
231 this->validate_ir(ir, this->data_enter);
232
233 return visit_continue;
234 }
235
236 ir_visitor_status
237 ir_validate::visit_leave(ir_expression *ir)
238 {
239 for (unsigned i = ir->num_operands; i < 4; i++) {
240 assert(ir->operands[i] == NULL);
241 }
242
243 for (unsigned i = 0; i < ir->num_operands; i++) {
244 assert(ir->operands[i] != NULL);
245 }
246
247 switch (ir->operation) {
248 case ir_unop_bit_not:
249 assert(ir->operands[0]->type == ir->type);
250 break;
251 case ir_unop_logic_not:
252 assert(ir->type->is_boolean());
253 assert(ir->operands[0]->type->is_boolean());
254 break;
255
256 case ir_unop_neg:
257 assert(ir->type == ir->operands[0]->type);
258 break;
259
260 case ir_unop_abs:
261 case ir_unop_sign:
262 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT ||
263 ir->operands[0]->type->is_float() ||
264 ir->operands[0]->type->is_double() ||
265 ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
266 assert(ir->type == ir->operands[0]->type);
267 break;
268
269 case ir_unop_rcp:
270 case ir_unop_rsq:
271 case ir_unop_sqrt:
272 assert(ir->type->is_float() ||
273 ir->type->is_double());
274 assert(ir->type == ir->operands[0]->type);
275 break;
276
277 case ir_unop_exp:
278 case ir_unop_log:
279 case ir_unop_exp2:
280 case ir_unop_log2:
281 case ir_unop_saturate:
282 assert(ir->operands[0]->type->is_float());
283 assert(ir->type == ir->operands[0]->type);
284 break;
285
286 case ir_unop_f2i:
287 assert(ir->operands[0]->type->is_float());
288 assert(ir->type->base_type == GLSL_TYPE_INT);
289 break;
290 case ir_unop_f2u:
291 assert(ir->operands[0]->type->is_float());
292 assert(ir->type->base_type == GLSL_TYPE_UINT);
293 break;
294 case ir_unop_i2f:
295 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
296 assert(ir->type->is_float());
297 break;
298 case ir_unop_f2b:
299 assert(ir->operands[0]->type->is_float());
300 assert(ir->type->is_boolean());
301 break;
302 case ir_unop_b2f:
303 assert(ir->operands[0]->type->is_boolean());
304 assert(ir->type->is_float());
305 break;
306 case ir_unop_i2b:
307 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
308 assert(ir->type->is_boolean());
309 break;
310 case ir_unop_b2i:
311 assert(ir->operands[0]->type->is_boolean());
312 assert(ir->type->base_type == GLSL_TYPE_INT);
313 break;
314 case ir_unop_u2f:
315 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
316 assert(ir->type->is_float());
317 break;
318 case ir_unop_i2u:
319 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
320 assert(ir->type->base_type == GLSL_TYPE_UINT);
321 break;
322 case ir_unop_u2i:
323 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
324 assert(ir->type->base_type == GLSL_TYPE_INT);
325 break;
326 case ir_unop_bitcast_i2f:
327 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
328 assert(ir->type->is_float());
329 break;
330 case ir_unop_bitcast_f2i:
331 assert(ir->operands[0]->type->is_float());
332 assert(ir->type->base_type == GLSL_TYPE_INT);
333 break;
334 case ir_unop_bitcast_u2f:
335 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
336 assert(ir->type->is_float());
337 break;
338 case ir_unop_bitcast_f2u:
339 assert(ir->operands[0]->type->is_float());
340 assert(ir->type->base_type == GLSL_TYPE_UINT);
341 break;
342
343 case ir_unop_bitcast_u642d:
344 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
345 assert(ir->type->is_double());
346 break;
347 case ir_unop_bitcast_i642d:
348 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
349 assert(ir->type->is_double());
350 break;
351 case ir_unop_bitcast_d2u64:
352 assert(ir->operands[0]->type->is_double());
353 assert(ir->type->base_type == GLSL_TYPE_UINT64);
354 break;
355 case ir_unop_bitcast_d2i64:
356 assert(ir->operands[0]->type->is_double());
357 assert(ir->type->base_type == GLSL_TYPE_INT64);
358 break;
359 case ir_unop_i642i:
360 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
361 assert(ir->type->base_type == GLSL_TYPE_INT);
362 break;
363 case ir_unop_u642i:
364 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
365 assert(ir->type->base_type == GLSL_TYPE_INT);
366 break;
367 case ir_unop_i642u:
368 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
369 assert(ir->type->base_type == GLSL_TYPE_UINT);
370 break;
371 case ir_unop_u642u:
372 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
373 assert(ir->type->base_type == GLSL_TYPE_UINT);
374 break;
375 case ir_unop_i642b:
376 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
377 assert(ir->type->is_boolean());
378 break;
379 case ir_unop_i642f:
380 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
381 assert(ir->type->is_float());
382 break;
383 case ir_unop_u642f:
384 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
385 assert(ir->type->is_float());
386 break;
387 case ir_unop_i642d:
388 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
389 assert(ir->type->is_double());
390 break;
391 case ir_unop_u642d:
392 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
393 assert(ir->type->is_double());
394 break;
395 case ir_unop_i2i64:
396 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
397 assert(ir->type->base_type == GLSL_TYPE_INT64);
398 break;
399 case ir_unop_u2i64:
400 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
401 assert(ir->type->base_type == GLSL_TYPE_INT64);
402 break;
403 case ir_unop_b2i64:
404 assert(ir->operands[0]->type->is_boolean());
405 assert(ir->type->base_type == GLSL_TYPE_INT64);
406 break;
407 case ir_unop_f2i64:
408 assert(ir->operands[0]->type->is_float());
409 assert(ir->type->base_type == GLSL_TYPE_INT64);
410 break;
411 case ir_unop_d2i64:
412 assert(ir->operands[0]->type->is_double());
413 assert(ir->type->base_type == GLSL_TYPE_INT64);
414 break;
415 case ir_unop_i2u64:
416 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
417 assert(ir->type->base_type == GLSL_TYPE_UINT64);
418 break;
419 case ir_unop_u2u64:
420 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
421 assert(ir->type->base_type == GLSL_TYPE_UINT64);
422 break;
423 case ir_unop_f2u64:
424 assert(ir->operands[0]->type->is_float());
425 assert(ir->type->base_type == GLSL_TYPE_UINT64);
426 break;
427 case ir_unop_d2u64:
428 assert(ir->operands[0]->type->is_double());
429 assert(ir->type->base_type == GLSL_TYPE_UINT64);
430 break;
431 case ir_unop_u642i64:
432 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
433 assert(ir->type->base_type == GLSL_TYPE_INT64);
434 break;
435 case ir_unop_i642u64:
436 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
437 assert(ir->type->base_type == GLSL_TYPE_UINT64);
438 break;
439 case ir_unop_trunc:
440 case ir_unop_round_even:
441 case ir_unop_ceil:
442 case ir_unop_floor:
443 case ir_unop_fract:
444 assert(ir->operands[0]->type->is_float() ||
445 ir->operands[0]->type->is_double());
446 assert(ir->operands[0]->type == ir->type);
447 break;
448 case ir_unop_sin:
449 case ir_unop_cos:
450 case ir_unop_dFdx:
451 case ir_unop_dFdx_coarse:
452 case ir_unop_dFdx_fine:
453 case ir_unop_dFdy:
454 case ir_unop_dFdy_coarse:
455 case ir_unop_dFdy_fine:
456 assert(ir->operands[0]->type->is_float());
457 assert(ir->operands[0]->type == ir->type);
458 break;
459
460 case ir_unop_pack_snorm_2x16:
461 case ir_unop_pack_unorm_2x16:
462 case ir_unop_pack_half_2x16:
463 assert(ir->type == glsl_type::uint_type);
464 assert(ir->operands[0]->type == glsl_type::vec2_type);
465 break;
466
467 case ir_unop_pack_snorm_4x8:
468 case ir_unop_pack_unorm_4x8:
469 assert(ir->type == glsl_type::uint_type);
470 assert(ir->operands[0]->type == glsl_type::vec4_type);
471 break;
472
473 case ir_unop_pack_double_2x32:
474 assert(ir->type == glsl_type::double_type);
475 assert(ir->operands[0]->type == glsl_type::uvec2_type);
476 break;
477
478 case ir_unop_pack_int_2x32:
479 assert(ir->type == glsl_type::int64_t_type);
480 assert(ir->operands[0]->type == glsl_type::ivec2_type);
481 break;
482
483 case ir_unop_pack_uint_2x32:
484 assert(ir->type == glsl_type::uint64_t_type);
485 assert(ir->operands[0]->type == glsl_type::uvec2_type);
486 break;
487
488 case ir_unop_pack_sampler_2x32:
489 assert(ir->type->is_sampler());
490 assert(ir->operands[0]->type == glsl_type::uvec2_type);
491 break;
492
493 case ir_unop_pack_image_2x32:
494 assert(ir->type->is_image());
495 assert(ir->operands[0]->type == glsl_type::uvec2_type);
496 break;
497
498 case ir_unop_unpack_snorm_2x16:
499 case ir_unop_unpack_unorm_2x16:
500 case ir_unop_unpack_half_2x16:
501 assert(ir->type == glsl_type::vec2_type);
502 assert(ir->operands[0]->type == glsl_type::uint_type);
503 break;
504
505 case ir_unop_unpack_snorm_4x8:
506 case ir_unop_unpack_unorm_4x8:
507 assert(ir->type == glsl_type::vec4_type);
508 assert(ir->operands[0]->type == glsl_type::uint_type);
509 break;
510
511 case ir_unop_unpack_double_2x32:
512 assert(ir->type == glsl_type::uvec2_type);
513 assert(ir->operands[0]->type == glsl_type::double_type);
514 break;
515
516 case ir_unop_unpack_int_2x32:
517 assert(ir->type == glsl_type::ivec2_type);
518 assert(ir->operands[0]->type == glsl_type::int64_t_type);
519 break;
520
521 case ir_unop_unpack_uint_2x32:
522 assert(ir->type == glsl_type::uvec2_type);
523 assert(ir->operands[0]->type == glsl_type::uint64_t_type);
524 break;
525
526 case ir_unop_unpack_sampler_2x32:
527 assert(ir->type == glsl_type::uvec2_type);
528 assert(ir->operands[0]->type->is_sampler());
529 break;
530
531 case ir_unop_unpack_image_2x32:
532 assert(ir->type == glsl_type::uvec2_type);
533 assert(ir->operands[0]->type->is_image());
534 break;
535
536 case ir_unop_bitfield_reverse:
537 assert(ir->operands[0]->type == ir->type);
538 assert(ir->type->is_integer_32());
539 break;
540
541 case ir_unop_bit_count:
542 case ir_unop_find_msb:
543 case ir_unop_find_lsb:
544 assert(ir->operands[0]->type->vector_elements == ir->type->vector_elements);
545 assert(ir->operands[0]->type->is_integer_32());
546 assert(ir->type->base_type == GLSL_TYPE_INT);
547 break;
548
549 case ir_unop_clz:
550 assert(ir->operands[0]->type == ir->type);
551 assert(ir->type->base_type == GLSL_TYPE_UINT);
552 break;
553
554 case ir_unop_noise:
555 /* XXX what can we assert here? */
556 break;
557
558 case ir_unop_interpolate_at_centroid:
559 assert(ir->operands[0]->type == ir->type);
560 assert(ir->operands[0]->type->is_float());
561 break;
562
563 case ir_unop_get_buffer_size:
564 assert(ir->type == glsl_type::int_type);
565 assert(ir->operands[0]->type == glsl_type::uint_type);
566 break;
567
568 case ir_unop_ssbo_unsized_array_length:
569 assert(ir->type == glsl_type::int_type);
570 assert(ir->operands[0]->type->is_array());
571 assert(ir->operands[0]->type->is_unsized_array());
572 break;
573
574 case ir_unop_d2f:
575 assert(ir->operands[0]->type->is_double());
576 assert(ir->type->is_float());
577 break;
578 case ir_unop_f2d:
579 assert(ir->operands[0]->type->is_float());
580 assert(ir->type->is_double());
581 break;
582 case ir_unop_d2i:
583 assert(ir->operands[0]->type->is_double());
584 assert(ir->type->base_type == GLSL_TYPE_INT);
585 break;
586 case ir_unop_i2d:
587 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
588 assert(ir->type->is_double());
589 break;
590 case ir_unop_d2u:
591 assert(ir->operands[0]->type->is_double());
592 assert(ir->type->base_type == GLSL_TYPE_UINT);
593 break;
594 case ir_unop_u2d:
595 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
596 assert(ir->type->is_double());
597 break;
598 case ir_unop_d2b:
599 assert(ir->operands[0]->type->is_double());
600 assert(ir->type->is_boolean());
601 break;
602
603 case ir_unop_frexp_sig:
604 assert(ir->operands[0]->type->is_float() ||
605 ir->operands[0]->type->is_double());
606 assert(ir->type->is_double());
607 break;
608 case ir_unop_frexp_exp:
609 assert(ir->operands[0]->type->is_float() ||
610 ir->operands[0]->type->is_double());
611 assert(ir->type->base_type == GLSL_TYPE_INT);
612 break;
613 case ir_unop_subroutine_to_int:
614 assert(ir->operands[0]->type->base_type == GLSL_TYPE_SUBROUTINE);
615 assert(ir->type->base_type == GLSL_TYPE_INT);
616 break;
617
618 case ir_unop_atan:
619 assert(ir->operands[0]->type->is_float() ||
620 ir->operands[0]->type->is_double());
621 assert(ir->type == ir->operands[0]->type);
622 break;
623
624 case ir_binop_add:
625 case ir_binop_sub:
626 case ir_binop_mul:
627 case ir_binop_div:
628 case ir_binop_mod:
629 case ir_binop_min:
630 case ir_binop_max:
631 case ir_binop_pow:
632 assert(ir->operands[0]->type->base_type ==
633 ir->operands[1]->type->base_type);
634
635 if (ir->operation == ir_binop_mul &&
636 (ir->type->base_type == GLSL_TYPE_UINT64 ||
637 ir->type->base_type == GLSL_TYPE_INT64) &&
638 (ir->operands[0]->type->base_type == GLSL_TYPE_INT ||
639 ir->operands[1]->type->base_type == GLSL_TYPE_INT ||
640 ir->operands[0]->type->base_type == GLSL_TYPE_UINT ||
641 ir->operands[1]->type->base_type == GLSL_TYPE_UINT)) {
642 assert(ir->operands[0]->type == ir->operands[1]->type);
643 break;
644 }
645
646 if (ir->operands[0]->type->is_scalar())
647 assert(ir->operands[1]->type == ir->type);
648 else if (ir->operands[1]->type->is_scalar())
649 assert(ir->operands[0]->type == ir->type);
650 else if (ir->operands[0]->type->is_vector() &&
651 ir->operands[1]->type->is_vector()) {
652 assert(ir->operands[0]->type == ir->operands[1]->type);
653 assert(ir->operands[0]->type == ir->type);
654 }
655 break;
656
657 case ir_binop_abs_sub:
658 assert(ir->operands[0]->type == ir->operands[1]->type);
659 assert(ir->operands[0]->type->is_integer_32_64());
660 assert(ir->operands[0]->type->vector_elements ==
661 ir->type->vector_elements);
662 assert(ir->type->base_type == GLSL_TYPE_UINT ||
663 ir->type->base_type == GLSL_TYPE_UINT64);
664 break;
665
666 case ir_binop_add_sat:
667 case ir_binop_sub_sat:
668 case ir_binop_avg:
669 case ir_binop_avg_round:
670 assert(ir->type == ir->operands[0]->type);
671 assert(ir->type == ir->operands[1]->type);
672 assert(ir->type->is_integer_32_64());
673 break;
674
675 case ir_binop_mul_32x16:
676 case ir_binop_imul_high:
677 assert(ir->type == ir->operands[0]->type);
678 assert(ir->type == ir->operands[1]->type);
679 assert(ir->type->is_integer_32());
680 break;
681
682 case ir_binop_carry:
683 case ir_binop_borrow:
684 assert(ir->type == ir->operands[0]->type);
685 assert(ir->type == ir->operands[1]->type);
686 assert(ir->type->base_type == GLSL_TYPE_UINT);
687 break;
688
689 case ir_binop_less:
690 case ir_binop_gequal:
691 case ir_binop_equal:
692 case ir_binop_nequal:
693 /* The semantics of the IR operators differ from the GLSL <, >, <=, >=,
694 * ==, and != operators. The IR operators perform a component-wise
695 * comparison on scalar or vector types and return a boolean scalar or
696 * vector type of the same size.
697 */
698 assert(ir->type->is_boolean());
699 assert(ir->operands[0]->type == ir->operands[1]->type);
700 assert(ir->operands[0]->type->is_vector()
701 || ir->operands[0]->type->is_scalar());
702 assert(ir->operands[0]->type->vector_elements
703 == ir->type->vector_elements);
704 break;
705
706 case ir_binop_all_equal:
707 case ir_binop_any_nequal:
708 /* GLSL == and != operate on scalars, vectors, matrices and arrays, and
709 * return a scalar boolean. The IR matches that.
710 */
711 assert(ir->type == glsl_type::bool_type);
712 assert(ir->operands[0]->type == ir->operands[1]->type);
713 break;
714
715 case ir_binop_lshift:
716 case ir_binop_rshift:
717 assert(ir->operands[0]->type->is_integer_32_64() &&
718 ir->operands[1]->type->is_integer_32());
719 if (ir->operands[0]->type->is_scalar()) {
720 assert(ir->operands[1]->type->is_scalar());
721 }
722 if (ir->operands[0]->type->is_vector() &&
723 ir->operands[1]->type->is_vector()) {
724 assert(ir->operands[0]->type->components() ==
725 ir->operands[1]->type->components());
726 }
727 assert(ir->type == ir->operands[0]->type);
728 break;
729
730 case ir_binop_bit_and:
731 case ir_binop_bit_xor:
732 case ir_binop_bit_or:
733 assert(ir->operands[0]->type->base_type ==
734 ir->operands[1]->type->base_type);
735 assert(ir->type->is_integer_32_64());
736 if (ir->operands[0]->type->is_vector() &&
737 ir->operands[1]->type->is_vector()) {
738 assert(ir->operands[0]->type->vector_elements ==
739 ir->operands[1]->type->vector_elements);
740 }
741 break;
742
743 case ir_binop_logic_and:
744 case ir_binop_logic_xor:
745 case ir_binop_logic_or:
746 assert(ir->type->is_boolean());
747 assert(ir->operands[0]->type->is_boolean());
748 assert(ir->operands[1]->type->is_boolean());
749 break;
750
751 case ir_binop_dot:
752 assert(ir->type == glsl_type::float_type ||
753 ir->type == glsl_type::double_type);
754 assert(ir->operands[0]->type->is_float() ||
755 ir->operands[0]->type->is_double());
756 assert(ir->operands[0]->type->is_vector());
757 assert(ir->operands[0]->type == ir->operands[1]->type);
758 break;
759
760 case ir_binop_ubo_load:
761 assert(ir->operands[0]->type == glsl_type::uint_type);
762
763 assert(ir->operands[1]->type == glsl_type::uint_type);
764 break;
765
766 case ir_binop_ldexp:
767 assert(ir->operands[0]->type == ir->type);
768 assert(ir->operands[0]->type->is_float() ||
769 ir->operands[0]->type->is_double());
770 assert(ir->operands[1]->type->base_type == GLSL_TYPE_INT);
771 assert(ir->operands[0]->type->components() ==
772 ir->operands[1]->type->components());
773 break;
774
775 case ir_binop_vector_extract:
776 assert(ir->operands[0]->type->is_vector());
777 assert(ir->operands[1]->type->is_scalar()
778 && ir->operands[1]->type->is_integer_32());
779 break;
780
781 case ir_binop_interpolate_at_offset:
782 assert(ir->operands[0]->type == ir->type);
783 assert(ir->operands[0]->type->is_float());
784 assert(ir->operands[1]->type->components() == 2);
785 assert(ir->operands[1]->type->is_float());
786 break;
787
788 case ir_binop_interpolate_at_sample:
789 assert(ir->operands[0]->type == ir->type);
790 assert(ir->operands[0]->type->is_float());
791 assert(ir->operands[1]->type == glsl_type::int_type);
792 break;
793
794 case ir_binop_atan2:
795 assert(ir->operands[0]->type->is_float() ||
796 ir->operands[0]->type->is_double());
797 assert(ir->operands[1]->type == ir->operands[0]->type);
798 assert(ir->type == ir->operands[0]->type);
799 break;
800
801 case ir_triop_fma:
802 assert(ir->type->is_float() ||
803 ir->type->is_double());
804 assert(ir->type == ir->operands[0]->type);
805 assert(ir->type == ir->operands[1]->type);
806 assert(ir->type == ir->operands[2]->type);
807 break;
808
809 case ir_triop_lrp:
810 assert(ir->operands[0]->type->is_float() ||
811 ir->operands[0]->type->is_double());
812 assert(ir->operands[0]->type == ir->operands[1]->type);
813 assert(ir->operands[2]->type == ir->operands[0]->type ||
814 ir->operands[2]->type == glsl_type::float_type ||
815 ir->operands[2]->type == glsl_type::double_type);
816 break;
817
818 case ir_triop_csel:
819 assert(ir->operands[0]->type->is_boolean());
820 assert(ir->type->vector_elements == ir->operands[0]->type->vector_elements);
821 assert(ir->type == ir->operands[1]->type);
822 assert(ir->type == ir->operands[2]->type);
823 break;
824
825 case ir_triop_bitfield_extract:
826 assert(ir->type->is_integer_32());
827 assert(ir->operands[0]->type == ir->type);
828 assert(ir->operands[1]->type == ir->type);
829 assert(ir->operands[2]->type == ir->type);
830 break;
831
832 case ir_triop_vector_insert:
833 assert(ir->operands[0]->type->is_vector());
834 assert(ir->operands[1]->type->is_scalar());
835 assert(ir->operands[0]->type->base_type == ir->operands[1]->type->base_type);
836 assert(ir->operands[2]->type->is_scalar()
837 && ir->operands[2]->type->is_integer_32());
838 assert(ir->type == ir->operands[0]->type);
839 break;
840
841 case ir_quadop_bitfield_insert:
842 assert(ir->type->is_integer_32());
843 assert(ir->operands[0]->type == ir->type);
844 assert(ir->operands[1]->type == ir->type);
845 assert(ir->operands[2]->type == ir->type);
846 assert(ir->operands[3]->type == ir->type);
847 break;
848
849 case ir_quadop_vector:
850 /* The vector operator collects some number of scalars and generates a
851 * vector from them.
852 *
853 * - All of the operands must be scalar.
854 * - Number of operands must matche the size of the resulting vector.
855 * - Base type of the operands must match the base type of the result.
856 */
857 assert(ir->type->is_vector());
858 switch (ir->type->vector_elements) {
859 case 2:
860 assert(ir->operands[0]->type->is_scalar());
861 assert(ir->operands[0]->type->base_type == ir->type->base_type);
862 assert(ir->operands[1]->type->is_scalar());
863 assert(ir->operands[1]->type->base_type == ir->type->base_type);
864 assert(ir->operands[2] == NULL);
865 assert(ir->operands[3] == NULL);
866 break;
867 case 3:
868 assert(ir->operands[0]->type->is_scalar());
869 assert(ir->operands[0]->type->base_type == ir->type->base_type);
870 assert(ir->operands[1]->type->is_scalar());
871 assert(ir->operands[1]->type->base_type == ir->type->base_type);
872 assert(ir->operands[2]->type->is_scalar());
873 assert(ir->operands[2]->type->base_type == ir->type->base_type);
874 assert(ir->operands[3] == NULL);
875 break;
876 case 4:
877 assert(ir->operands[0]->type->is_scalar());
878 assert(ir->operands[0]->type->base_type == ir->type->base_type);
879 assert(ir->operands[1]->type->is_scalar());
880 assert(ir->operands[1]->type->base_type == ir->type->base_type);
881 assert(ir->operands[2]->type->is_scalar());
882 assert(ir->operands[2]->type->base_type == ir->type->base_type);
883 assert(ir->operands[3]->type->is_scalar());
884 assert(ir->operands[3]->type->base_type == ir->type->base_type);
885 break;
886 default:
887 /* The is_vector assertion above should prevent execution from ever
888 * getting here.
889 */
890 assert(!"Should not get here.");
891 break;
892 }
893 }
894
895 return visit_continue;
896 }
897
898 ir_visitor_status
899 ir_validate::visit_leave(ir_swizzle *ir)
900 {
901 unsigned int chans[4] = {ir->mask.x, ir->mask.y, ir->mask.z, ir->mask.w};
902
903 for (unsigned int i = 0; i < ir->type->vector_elements; i++) {
904 if (chans[i] >= ir->val->type->vector_elements) {
905 printf("ir_swizzle @ %p specifies a channel not present "
906 "in the value.\n", (void *) ir);
907 ir->print();
908 abort();
909 }
910 }
911
912 return visit_continue;
913 }
914
915 ir_visitor_status
916 ir_validate::visit(ir_variable *ir)
917 {
918 /* An ir_variable is the one thing that can (and will) appear multiple times
919 * in an IR tree. It is added to the hashtable so that it can be used
920 * in the ir_dereference_variable handler to ensure that a variable is
921 * declared before it is dereferenced.
922 */
923 if (ir->name && ir->is_name_ralloced())
924 assert(ralloc_parent(ir->name) == ir);
925
926 _mesa_set_add(ir_set, ir);
927
928 /* If a variable is an array, verify that the maximum array index is in
929 * bounds. There was once an error in AST-to-HIR conversion that set this
930 * to be out of bounds.
931 */
932 if (ir->type->array_size() > 0) {
933 if (ir->data.max_array_access >= (int)ir->type->length) {
934 printf("ir_variable has maximum access out of bounds (%d vs %d)\n",
935 ir->data.max_array_access, ir->type->length - 1);
936 ir->print();
937 abort();
938 }
939 }
940
941 /* If a variable is an interface block (or an array of interface blocks),
942 * verify that the maximum array index for each interface member is in
943 * bounds.
944 */
945 if (ir->is_interface_instance()) {
946 const glsl_struct_field *fields =
947 ir->get_interface_type()->fields.structure;
948 for (unsigned i = 0; i < ir->get_interface_type()->length; i++) {
949 if (fields[i].type->array_size() > 0 &&
950 !fields[i].implicit_sized_array) {
951 const int *const max_ifc_array_access =
952 ir->get_max_ifc_array_access();
953
954 assert(max_ifc_array_access != NULL);
955
956 if (max_ifc_array_access[i] >= (int)fields[i].type->length) {
957 printf("ir_variable has maximum access out of bounds for "
958 "field %s (%d vs %d)\n", fields[i].name,
959 max_ifc_array_access[i], fields[i].type->length);
960 ir->print();
961 abort();
962 }
963 }
964 }
965 }
966
967 if (ir->constant_initializer != NULL && !ir->data.has_initializer) {
968 printf("ir_variable didn't have an initializer, but has a constant "
969 "initializer value.\n");
970 ir->print();
971 abort();
972 }
973
974 if (ir->data.mode == ir_var_uniform
975 && is_gl_identifier(ir->name)
976 && ir->get_state_slots() == NULL) {
977 printf("built-in uniform has no state\n");
978 ir->print();
979 abort();
980 }
981
982 return visit_continue;
983 }
984
985 ir_visitor_status
986 ir_validate::visit_enter(ir_assignment *ir)
987 {
988 const ir_dereference *const lhs = ir->lhs;
989 if (lhs->type->is_scalar() || lhs->type->is_vector()) {
990 if (ir->write_mask == 0) {
991 printf("Assignment LHS is %s, but write mask is 0:\n",
992 lhs->type->is_scalar() ? "scalar" : "vector");
993 ir->print();
994 abort();
995 }
996
997 int lhs_components = 0;
998 for (int i = 0; i < 4; i++) {
999 if (ir->write_mask & (1 << i))
1000 lhs_components++;
1001 }
1002
1003 if (lhs_components != ir->rhs->type->vector_elements) {
1004 printf("Assignment count of LHS write mask channels enabled not\n"
1005 "matching RHS vector size (%d LHS, %d RHS).\n",
1006 lhs_components, ir->rhs->type->vector_elements);
1007 ir->print();
1008 abort();
1009 }
1010 }
1011
1012 this->validate_ir(ir, this->data_enter);
1013
1014 return visit_continue;
1015 }
1016
1017 ir_visitor_status
1018 ir_validate::visit_enter(ir_call *ir)
1019 {
1020 ir_function_signature *const callee = ir->callee;
1021
1022 if (callee->ir_type != ir_type_function_signature) {
1023 printf("IR called by ir_call is not ir_function_signature!\n");
1024 abort();
1025 }
1026
1027 if (ir->return_deref) {
1028 if (ir->return_deref->type != callee->return_type) {
1029 printf("callee type %s does not match return storage type %s\n",
1030 callee->return_type->name, ir->return_deref->type->name);
1031 abort();
1032 }
1033 } else if (callee->return_type != glsl_type::void_type) {
1034 printf("ir_call has non-void callee but no return storage\n");
1035 abort();
1036 }
1037
1038 const exec_node *formal_param_node = callee->parameters.get_head_raw();
1039 const exec_node *actual_param_node = ir->actual_parameters.get_head_raw();
1040 while (true) {
1041 if (formal_param_node->is_tail_sentinel()
1042 != actual_param_node->is_tail_sentinel()) {
1043 printf("ir_call has the wrong number of parameters:\n");
1044 goto dump_ir;
1045 }
1046 if (formal_param_node->is_tail_sentinel()) {
1047 break;
1048 }
1049 const ir_variable *formal_param
1050 = (const ir_variable *) formal_param_node;
1051 const ir_rvalue *actual_param
1052 = (const ir_rvalue *) actual_param_node;
1053 if (formal_param->type != actual_param->type) {
1054 printf("ir_call parameter type mismatch:\n");
1055 goto dump_ir;
1056 }
1057 if (formal_param->data.mode == ir_var_function_out
1058 || formal_param->data.mode == ir_var_function_inout) {
1059 if (!actual_param->is_lvalue()) {
1060 printf("ir_call out/inout parameters must be lvalues:\n");
1061 goto dump_ir;
1062 }
1063 }
1064 formal_param_node = formal_param_node->next;
1065 actual_param_node = actual_param_node->next;
1066 }
1067
1068 return visit_continue;
1069
1070 dump_ir:
1071 ir->print();
1072 printf("callee:\n");
1073 callee->print();
1074 abort();
1075 return visit_stop;
1076 }
1077
1078 void
1079 ir_validate::validate_ir(ir_instruction *ir, void *data)
1080 {
1081 struct set *ir_set = (struct set *) data;
1082
1083 if (_mesa_set_search(ir_set, ir)) {
1084 printf("Instruction node present twice in ir tree:\n");
1085 ir->print();
1086 printf("\n");
1087 abort();
1088 }
1089 _mesa_set_add(ir_set, ir);
1090 }
1091
1092 #ifdef DEBUG
1093 static void
1094 check_node_type(ir_instruction *ir, void *data)
1095 {
1096 (void) data;
1097
1098 if (ir->ir_type >= ir_type_max) {
1099 printf("Instruction node with unset type\n");
1100 ir->print(); printf("\n");
1101 }
1102 ir_rvalue *value = ir->as_rvalue();
1103 if (value != NULL)
1104 assert(value->type != glsl_type::error_type);
1105 }
1106 #endif
1107
1108 void
1109 validate_ir_tree(exec_list *instructions)
1110 {
1111 /* We shouldn't have any reason to validate IR in a release build,
1112 * and it's half composed of assert()s anyway which wouldn't do
1113 * anything.
1114 */
1115 #ifdef DEBUG
1116 ir_validate v;
1117
1118 v.run(instructions);
1119
1120 foreach_in_list(ir_instruction, ir, instructions) {
1121 visit_tree(ir, check_node_type, NULL);
1122 }
1123 #endif
1124 }