glsl: add ARB_bindless_texture operations
[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/set.h"
40 #include "compiler/glsl_types.h"
41
42 namespace {
43
44 class ir_validate : public ir_hierarchical_visitor {
45 public:
46 ir_validate()
47 {
48 this->ir_set = _mesa_set_create(NULL, _mesa_hash_pointer,
49 _mesa_key_pointer_equal);
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()) {
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 switch (ir->operation) {
240 case ir_unop_bit_not:
241 assert(ir->operands[0]->type == ir->type);
242 break;
243 case ir_unop_logic_not:
244 assert(ir->type->is_boolean());
245 assert(ir->operands[0]->type->is_boolean());
246 break;
247
248 case ir_unop_neg:
249 assert(ir->type == ir->operands[0]->type);
250 break;
251
252 case ir_unop_abs:
253 case ir_unop_sign:
254 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT ||
255 ir->operands[0]->type->is_float() ||
256 ir->operands[0]->type->is_double() ||
257 ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
258 assert(ir->type == ir->operands[0]->type);
259 break;
260
261 case ir_unop_rcp:
262 case ir_unop_rsq:
263 case ir_unop_sqrt:
264 assert(ir->type->is_float() ||
265 ir->type->is_double());
266 assert(ir->type == ir->operands[0]->type);
267 break;
268
269 case ir_unop_exp:
270 case ir_unop_log:
271 case ir_unop_exp2:
272 case ir_unop_log2:
273 case ir_unop_saturate:
274 assert(ir->operands[0]->type->is_float());
275 assert(ir->type == ir->operands[0]->type);
276 break;
277
278 case ir_unop_f2i:
279 assert(ir->operands[0]->type->is_float());
280 assert(ir->type->base_type == GLSL_TYPE_INT);
281 break;
282 case ir_unop_f2u:
283 assert(ir->operands[0]->type->is_float());
284 assert(ir->type->base_type == GLSL_TYPE_UINT);
285 break;
286 case ir_unop_i2f:
287 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
288 assert(ir->type->is_float());
289 break;
290 case ir_unop_f2b:
291 assert(ir->operands[0]->type->is_float());
292 assert(ir->type->is_boolean());
293 break;
294 case ir_unop_b2f:
295 assert(ir->operands[0]->type->is_boolean());
296 assert(ir->type->is_float());
297 break;
298 case ir_unop_i2b:
299 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
300 assert(ir->type->is_boolean());
301 break;
302 case ir_unop_b2i:
303 assert(ir->operands[0]->type->is_boolean());
304 assert(ir->type->base_type == GLSL_TYPE_INT);
305 break;
306 case ir_unop_u2f:
307 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
308 assert(ir->type->is_float());
309 break;
310 case ir_unop_i2u:
311 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
312 assert(ir->type->base_type == GLSL_TYPE_UINT);
313 break;
314 case ir_unop_u2i:
315 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
316 assert(ir->type->base_type == GLSL_TYPE_INT);
317 break;
318 case ir_unop_bitcast_i2f:
319 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
320 assert(ir->type->is_float());
321 break;
322 case ir_unop_bitcast_f2i:
323 assert(ir->operands[0]->type->is_float());
324 assert(ir->type->base_type == GLSL_TYPE_INT);
325 break;
326 case ir_unop_bitcast_u2f:
327 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
328 assert(ir->type->is_float());
329 break;
330 case ir_unop_bitcast_f2u:
331 assert(ir->operands[0]->type->is_float());
332 assert(ir->type->base_type == GLSL_TYPE_UINT);
333 break;
334
335 case ir_unop_bitcast_u642d:
336 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
337 assert(ir->type->is_double());
338 break;
339 case ir_unop_bitcast_i642d:
340 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
341 assert(ir->type->is_double());
342 break;
343 case ir_unop_bitcast_d2u64:
344 assert(ir->operands[0]->type->is_double());
345 assert(ir->type->base_type == GLSL_TYPE_UINT64);
346 break;
347 case ir_unop_bitcast_d2i64:
348 assert(ir->operands[0]->type->is_double());
349 assert(ir->type->base_type == GLSL_TYPE_INT64);
350 break;
351 case ir_unop_i642i:
352 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
353 assert(ir->type->base_type == GLSL_TYPE_INT);
354 break;
355 case ir_unop_u642i:
356 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
357 assert(ir->type->base_type == GLSL_TYPE_INT);
358 break;
359 case ir_unop_i642u:
360 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
361 assert(ir->type->base_type == GLSL_TYPE_UINT);
362 break;
363 case ir_unop_u642u:
364 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
365 assert(ir->type->base_type == GLSL_TYPE_UINT);
366 break;
367 case ir_unop_i642b:
368 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
369 assert(ir->type->is_boolean());
370 break;
371 case ir_unop_i642f:
372 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
373 assert(ir->type->is_float());
374 break;
375 case ir_unop_u642f:
376 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
377 assert(ir->type->is_float());
378 break;
379 case ir_unop_i642d:
380 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
381 assert(ir->type->is_double());
382 break;
383 case ir_unop_u642d:
384 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
385 assert(ir->type->is_double());
386 break;
387 case ir_unop_i2i64:
388 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
389 assert(ir->type->base_type == GLSL_TYPE_INT64);
390 break;
391 case ir_unop_u2i64:
392 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
393 assert(ir->type->base_type == GLSL_TYPE_INT64);
394 break;
395 case ir_unop_b2i64:
396 assert(ir->operands[0]->type->is_boolean());
397 assert(ir->type->base_type == GLSL_TYPE_INT64);
398 break;
399 case ir_unop_f2i64:
400 assert(ir->operands[0]->type->is_float());
401 assert(ir->type->base_type == GLSL_TYPE_INT64);
402 break;
403 case ir_unop_d2i64:
404 assert(ir->operands[0]->type->is_double());
405 assert(ir->type->base_type == GLSL_TYPE_INT64);
406 break;
407 case ir_unop_i2u64:
408 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
409 assert(ir->type->base_type == GLSL_TYPE_UINT64);
410 break;
411 case ir_unop_u2u64:
412 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
413 assert(ir->type->base_type == GLSL_TYPE_UINT64);
414 break;
415 case ir_unop_f2u64:
416 assert(ir->operands[0]->type->is_float());
417 assert(ir->type->base_type == GLSL_TYPE_UINT64);
418 break;
419 case ir_unop_d2u64:
420 assert(ir->operands[0]->type->is_double());
421 assert(ir->type->base_type == GLSL_TYPE_UINT64);
422 break;
423 case ir_unop_u642i64:
424 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT64);
425 assert(ir->type->base_type == GLSL_TYPE_INT64);
426 break;
427 case ir_unop_i642u64:
428 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT64);
429 assert(ir->type->base_type == GLSL_TYPE_UINT64);
430 break;
431 case ir_unop_trunc:
432 case ir_unop_round_even:
433 case ir_unop_ceil:
434 case ir_unop_floor:
435 case ir_unop_fract:
436 assert(ir->operands[0]->type->is_float() ||
437 ir->operands[0]->type->is_double());
438 assert(ir->operands[0]->type == ir->type);
439 break;
440 case ir_unop_sin:
441 case ir_unop_cos:
442 case ir_unop_dFdx:
443 case ir_unop_dFdx_coarse:
444 case ir_unop_dFdx_fine:
445 case ir_unop_dFdy:
446 case ir_unop_dFdy_coarse:
447 case ir_unop_dFdy_fine:
448 assert(ir->operands[0]->type->is_float());
449 assert(ir->operands[0]->type == ir->type);
450 break;
451
452 case ir_unop_pack_snorm_2x16:
453 case ir_unop_pack_unorm_2x16:
454 case ir_unop_pack_half_2x16:
455 assert(ir->type == glsl_type::uint_type);
456 assert(ir->operands[0]->type == glsl_type::vec2_type);
457 break;
458
459 case ir_unop_pack_snorm_4x8:
460 case ir_unop_pack_unorm_4x8:
461 assert(ir->type == glsl_type::uint_type);
462 assert(ir->operands[0]->type == glsl_type::vec4_type);
463 break;
464
465 case ir_unop_pack_double_2x32:
466 assert(ir->type == glsl_type::double_type);
467 assert(ir->operands[0]->type == glsl_type::uvec2_type);
468 break;
469
470 case ir_unop_pack_int_2x32:
471 assert(ir->type == glsl_type::int64_t_type);
472 assert(ir->operands[0]->type == glsl_type::ivec2_type);
473 break;
474
475 case ir_unop_pack_uint_2x32:
476 assert(ir->type == glsl_type::uint64_t_type);
477 assert(ir->operands[0]->type == glsl_type::uvec2_type);
478 break;
479
480 case ir_unop_pack_sampler_2x32:
481 assert(ir->type->is_sampler());
482 assert(ir->operands[0]->type == glsl_type::uvec2_type);
483 break;
484
485 case ir_unop_pack_image_2x32:
486 assert(ir->type->is_image());
487 assert(ir->operands[0]->type == glsl_type::uvec2_type);
488 break;
489
490 case ir_unop_unpack_snorm_2x16:
491 case ir_unop_unpack_unorm_2x16:
492 case ir_unop_unpack_half_2x16:
493 assert(ir->type == glsl_type::vec2_type);
494 assert(ir->operands[0]->type == glsl_type::uint_type);
495 break;
496
497 case ir_unop_unpack_snorm_4x8:
498 case ir_unop_unpack_unorm_4x8:
499 assert(ir->type == glsl_type::vec4_type);
500 assert(ir->operands[0]->type == glsl_type::uint_type);
501 break;
502
503 case ir_unop_unpack_double_2x32:
504 assert(ir->type == glsl_type::uvec2_type);
505 assert(ir->operands[0]->type == glsl_type::double_type);
506 break;
507
508 case ir_unop_unpack_int_2x32:
509 assert(ir->type == glsl_type::ivec2_type);
510 assert(ir->operands[0]->type == glsl_type::int64_t_type);
511 break;
512
513 case ir_unop_unpack_uint_2x32:
514 assert(ir->type == glsl_type::uvec2_type);
515 assert(ir->operands[0]->type == glsl_type::uint64_t_type);
516 break;
517
518 case ir_unop_unpack_sampler_2x32:
519 assert(ir->type == glsl_type::uvec2_type);
520 assert(ir->operands[0]->type->is_sampler());
521 break;
522
523 case ir_unop_unpack_image_2x32:
524 assert(ir->type == glsl_type::uvec2_type);
525 assert(ir->operands[0]->type->is_image());
526 break;
527
528 case ir_unop_bitfield_reverse:
529 assert(ir->operands[0]->type == ir->type);
530 assert(ir->type->is_integer());
531 break;
532
533 case ir_unop_bit_count:
534 case ir_unop_find_msb:
535 case ir_unop_find_lsb:
536 assert(ir->operands[0]->type->vector_elements == ir->type->vector_elements);
537 assert(ir->operands[0]->type->is_integer());
538 assert(ir->type->base_type == GLSL_TYPE_INT);
539 break;
540
541 case ir_unop_noise:
542 /* XXX what can we assert here? */
543 break;
544
545 case ir_unop_interpolate_at_centroid:
546 assert(ir->operands[0]->type == ir->type);
547 assert(ir->operands[0]->type->is_float());
548 break;
549
550 case ir_unop_get_buffer_size:
551 assert(ir->type == glsl_type::int_type);
552 assert(ir->operands[0]->type == glsl_type::uint_type);
553 break;
554
555 case ir_unop_ssbo_unsized_array_length:
556 assert(ir->type == glsl_type::int_type);
557 assert(ir->operands[0]->type->is_array());
558 assert(ir->operands[0]->type->is_unsized_array());
559 break;
560
561 case ir_unop_d2f:
562 assert(ir->operands[0]->type->is_double());
563 assert(ir->type->is_float());
564 break;
565 case ir_unop_f2d:
566 assert(ir->operands[0]->type->is_float());
567 assert(ir->type->is_double());
568 break;
569 case ir_unop_d2i:
570 assert(ir->operands[0]->type->is_double());
571 assert(ir->type->base_type == GLSL_TYPE_INT);
572 break;
573 case ir_unop_i2d:
574 assert(ir->operands[0]->type->base_type == GLSL_TYPE_INT);
575 assert(ir->type->is_double());
576 break;
577 case ir_unop_d2u:
578 assert(ir->operands[0]->type->is_double());
579 assert(ir->type->base_type == GLSL_TYPE_UINT);
580 break;
581 case ir_unop_u2d:
582 assert(ir->operands[0]->type->base_type == GLSL_TYPE_UINT);
583 assert(ir->type->is_double());
584 break;
585 case ir_unop_d2b:
586 assert(ir->operands[0]->type->is_double());
587 assert(ir->type->is_boolean());
588 break;
589
590 case ir_unop_frexp_sig:
591 assert(ir->operands[0]->type->is_float() ||
592 ir->operands[0]->type->is_double());
593 assert(ir->type->is_double());
594 break;
595 case ir_unop_frexp_exp:
596 assert(ir->operands[0]->type->is_float() ||
597 ir->operands[0]->type->is_double());
598 assert(ir->type->base_type == GLSL_TYPE_INT);
599 break;
600 case ir_unop_subroutine_to_int:
601 assert(ir->operands[0]->type->base_type == GLSL_TYPE_SUBROUTINE);
602 assert(ir->type->base_type == GLSL_TYPE_INT);
603 break;
604
605 case ir_binop_add:
606 case ir_binop_sub:
607 case ir_binop_mul:
608 case ir_binop_div:
609 case ir_binop_mod:
610 case ir_binop_min:
611 case ir_binop_max:
612 case ir_binop_pow:
613 assert(ir->operands[0]->type->base_type ==
614 ir->operands[1]->type->base_type);
615
616 if (ir->operands[0]->type->is_scalar())
617 assert(ir->operands[1]->type == ir->type);
618 else if (ir->operands[1]->type->is_scalar())
619 assert(ir->operands[0]->type == ir->type);
620 else if (ir->operands[0]->type->is_vector() &&
621 ir->operands[1]->type->is_vector()) {
622 assert(ir->operands[0]->type == ir->operands[1]->type);
623 assert(ir->operands[0]->type == ir->type);
624 }
625 break;
626
627 case ir_binop_imul_high:
628 assert(ir->type == ir->operands[0]->type);
629 assert(ir->type == ir->operands[1]->type);
630 assert(ir->type->is_integer());
631 break;
632
633 case ir_binop_carry:
634 case ir_binop_borrow:
635 assert(ir->type == ir->operands[0]->type);
636 assert(ir->type == ir->operands[1]->type);
637 assert(ir->type->base_type == GLSL_TYPE_UINT);
638 break;
639
640 case ir_binop_less:
641 case ir_binop_greater:
642 case ir_binop_lequal:
643 case ir_binop_gequal:
644 case ir_binop_equal:
645 case ir_binop_nequal:
646 /* The semantics of the IR operators differ from the GLSL <, >, <=, >=,
647 * ==, and != operators. The IR operators perform a component-wise
648 * comparison on scalar or vector types and return a boolean scalar or
649 * vector type of the same size.
650 */
651 assert(ir->type->is_boolean());
652 assert(ir->operands[0]->type == ir->operands[1]->type);
653 assert(ir->operands[0]->type->is_vector()
654 || ir->operands[0]->type->is_scalar());
655 assert(ir->operands[0]->type->vector_elements
656 == ir->type->vector_elements);
657 break;
658
659 case ir_binop_all_equal:
660 case ir_binop_any_nequal:
661 /* GLSL == and != operate on scalars, vectors, matrices and arrays, and
662 * return a scalar boolean. The IR matches that.
663 */
664 assert(ir->type == glsl_type::bool_type);
665 assert(ir->operands[0]->type == ir->operands[1]->type);
666 break;
667
668 case ir_binop_lshift:
669 case ir_binop_rshift:
670 assert(ir->operands[0]->type->is_integer_32_64() &&
671 ir->operands[1]->type->is_integer());
672 if (ir->operands[0]->type->is_scalar()) {
673 assert(ir->operands[1]->type->is_scalar());
674 }
675 if (ir->operands[0]->type->is_vector() &&
676 ir->operands[1]->type->is_vector()) {
677 assert(ir->operands[0]->type->components() ==
678 ir->operands[1]->type->components());
679 }
680 assert(ir->type == ir->operands[0]->type);
681 break;
682
683 case ir_binop_bit_and:
684 case ir_binop_bit_xor:
685 case ir_binop_bit_or:
686 assert(ir->operands[0]->type->base_type ==
687 ir->operands[1]->type->base_type);
688 assert(ir->type->is_integer_32_64());
689 if (ir->operands[0]->type->is_vector() &&
690 ir->operands[1]->type->is_vector()) {
691 assert(ir->operands[0]->type->vector_elements ==
692 ir->operands[1]->type->vector_elements);
693 }
694 break;
695
696 case ir_binop_logic_and:
697 case ir_binop_logic_xor:
698 case ir_binop_logic_or:
699 assert(ir->type->is_boolean());
700 assert(ir->operands[0]->type->is_boolean());
701 assert(ir->operands[1]->type->is_boolean());
702 break;
703
704 case ir_binop_dot:
705 assert(ir->type == glsl_type::float_type ||
706 ir->type == glsl_type::double_type);
707 assert(ir->operands[0]->type->is_float() ||
708 ir->operands[0]->type->is_double());
709 assert(ir->operands[0]->type->is_vector());
710 assert(ir->operands[0]->type == ir->operands[1]->type);
711 break;
712
713 case ir_binop_ubo_load:
714 assert(ir->operands[0]->type == glsl_type::uint_type);
715
716 assert(ir->operands[1]->type == glsl_type::uint_type);
717 break;
718
719 case ir_binop_ldexp:
720 assert(ir->operands[0]->type == ir->type);
721 assert(ir->operands[0]->type->is_float() ||
722 ir->operands[0]->type->is_double());
723 assert(ir->operands[1]->type->base_type == GLSL_TYPE_INT);
724 assert(ir->operands[0]->type->components() ==
725 ir->operands[1]->type->components());
726 break;
727
728 case ir_binop_vector_extract:
729 assert(ir->operands[0]->type->is_vector());
730 assert(ir->operands[1]->type->is_scalar()
731 && ir->operands[1]->type->is_integer());
732 break;
733
734 case ir_binop_interpolate_at_offset:
735 assert(ir->operands[0]->type == ir->type);
736 assert(ir->operands[0]->type->is_float());
737 assert(ir->operands[1]->type->components() == 2);
738 assert(ir->operands[1]->type->is_float());
739 break;
740
741 case ir_binop_interpolate_at_sample:
742 assert(ir->operands[0]->type == ir->type);
743 assert(ir->operands[0]->type->is_float());
744 assert(ir->operands[1]->type == glsl_type::int_type);
745 break;
746
747 case ir_triop_fma:
748 assert(ir->type->is_float() ||
749 ir->type->is_double());
750 assert(ir->type == ir->operands[0]->type);
751 assert(ir->type == ir->operands[1]->type);
752 assert(ir->type == ir->operands[2]->type);
753 break;
754
755 case ir_triop_lrp:
756 assert(ir->operands[0]->type->is_float() ||
757 ir->operands[0]->type->is_double());
758 assert(ir->operands[0]->type == ir->operands[1]->type);
759 assert(ir->operands[2]->type == ir->operands[0]->type ||
760 ir->operands[2]->type == glsl_type::float_type ||
761 ir->operands[2]->type == glsl_type::double_type);
762 break;
763
764 case ir_triop_csel:
765 assert(ir->operands[0]->type->is_boolean());
766 assert(ir->type->vector_elements == ir->operands[0]->type->vector_elements);
767 assert(ir->type == ir->operands[1]->type);
768 assert(ir->type == ir->operands[2]->type);
769 break;
770
771 case ir_triop_bitfield_extract:
772 assert(ir->type->is_integer());
773 assert(ir->operands[0]->type == ir->type);
774 assert(ir->operands[1]->type == ir->type);
775 assert(ir->operands[2]->type == ir->type);
776 break;
777
778 case ir_triop_vector_insert:
779 assert(ir->operands[0]->type->is_vector());
780 assert(ir->operands[1]->type->is_scalar());
781 assert(ir->operands[0]->type->base_type == ir->operands[1]->type->base_type);
782 assert(ir->operands[2]->type->is_scalar()
783 && ir->operands[2]->type->is_integer());
784 assert(ir->type == ir->operands[0]->type);
785 break;
786
787 case ir_quadop_bitfield_insert:
788 assert(ir->type->is_integer());
789 assert(ir->operands[0]->type == ir->type);
790 assert(ir->operands[1]->type == ir->type);
791 assert(ir->operands[2]->type == ir->type);
792 assert(ir->operands[3]->type == ir->type);
793 break;
794
795 case ir_quadop_vector:
796 /* The vector operator collects some number of scalars and generates a
797 * vector from them.
798 *
799 * - All of the operands must be scalar.
800 * - Number of operands must matche the size of the resulting vector.
801 * - Base type of the operands must match the base type of the result.
802 */
803 assert(ir->type->is_vector());
804 switch (ir->type->vector_elements) {
805 case 2:
806 assert(ir->operands[0]->type->is_scalar());
807 assert(ir->operands[0]->type->base_type == ir->type->base_type);
808 assert(ir->operands[1]->type->is_scalar());
809 assert(ir->operands[1]->type->base_type == ir->type->base_type);
810 assert(ir->operands[2] == NULL);
811 assert(ir->operands[3] == NULL);
812 break;
813 case 3:
814 assert(ir->operands[0]->type->is_scalar());
815 assert(ir->operands[0]->type->base_type == ir->type->base_type);
816 assert(ir->operands[1]->type->is_scalar());
817 assert(ir->operands[1]->type->base_type == ir->type->base_type);
818 assert(ir->operands[2]->type->is_scalar());
819 assert(ir->operands[2]->type->base_type == ir->type->base_type);
820 assert(ir->operands[3] == NULL);
821 break;
822 case 4:
823 assert(ir->operands[0]->type->is_scalar());
824 assert(ir->operands[0]->type->base_type == ir->type->base_type);
825 assert(ir->operands[1]->type->is_scalar());
826 assert(ir->operands[1]->type->base_type == ir->type->base_type);
827 assert(ir->operands[2]->type->is_scalar());
828 assert(ir->operands[2]->type->base_type == ir->type->base_type);
829 assert(ir->operands[3]->type->is_scalar());
830 assert(ir->operands[3]->type->base_type == ir->type->base_type);
831 break;
832 default:
833 /* The is_vector assertion above should prevent execution from ever
834 * getting here.
835 */
836 assert(!"Should not get here.");
837 break;
838 }
839 }
840
841 return visit_continue;
842 }
843
844 ir_visitor_status
845 ir_validate::visit_leave(ir_swizzle *ir)
846 {
847 unsigned int chans[4] = {ir->mask.x, ir->mask.y, ir->mask.z, ir->mask.w};
848
849 for (unsigned int i = 0; i < ir->type->vector_elements; i++) {
850 if (chans[i] >= ir->val->type->vector_elements) {
851 printf("ir_swizzle @ %p specifies a channel not present "
852 "in the value.\n", (void *) ir);
853 ir->print();
854 abort();
855 }
856 }
857
858 return visit_continue;
859 }
860
861 ir_visitor_status
862 ir_validate::visit(ir_variable *ir)
863 {
864 /* An ir_variable is the one thing that can (and will) appear multiple times
865 * in an IR tree. It is added to the hashtable so that it can be used
866 * in the ir_dereference_variable handler to ensure that a variable is
867 * declared before it is dereferenced.
868 */
869 if (ir->name && ir->is_name_ralloced())
870 assert(ralloc_parent(ir->name) == ir);
871
872 _mesa_set_add(ir_set, ir);
873
874 /* If a variable is an array, verify that the maximum array index is in
875 * bounds. There was once an error in AST-to-HIR conversion that set this
876 * to be out of bounds.
877 */
878 if (ir->type->array_size() > 0) {
879 if (ir->data.max_array_access >= (int)ir->type->length) {
880 printf("ir_variable has maximum access out of bounds (%d vs %d)\n",
881 ir->data.max_array_access, ir->type->length - 1);
882 ir->print();
883 abort();
884 }
885 }
886
887 /* If a variable is an interface block (or an array of interface blocks),
888 * verify that the maximum array index for each interface member is in
889 * bounds.
890 */
891 if (ir->is_interface_instance()) {
892 const glsl_struct_field *fields =
893 ir->get_interface_type()->fields.structure;
894 for (unsigned i = 0; i < ir->get_interface_type()->length; i++) {
895 if (fields[i].type->array_size() > 0 &&
896 !fields[i].implicit_sized_array) {
897 const int *const max_ifc_array_access =
898 ir->get_max_ifc_array_access();
899
900 assert(max_ifc_array_access != NULL);
901
902 if (max_ifc_array_access[i] >= (int)fields[i].type->length) {
903 printf("ir_variable has maximum access out of bounds for "
904 "field %s (%d vs %d)\n", fields[i].name,
905 max_ifc_array_access[i], fields[i].type->length);
906 ir->print();
907 abort();
908 }
909 }
910 }
911 }
912
913 if (ir->constant_initializer != NULL && !ir->data.has_initializer) {
914 printf("ir_variable didn't have an initializer, but has a constant "
915 "initializer value.\n");
916 ir->print();
917 abort();
918 }
919
920 if (ir->data.mode == ir_var_uniform
921 && is_gl_identifier(ir->name)
922 && ir->get_state_slots() == NULL) {
923 printf("built-in uniform has no state\n");
924 ir->print();
925 abort();
926 }
927
928 return visit_continue;
929 }
930
931 ir_visitor_status
932 ir_validate::visit_enter(ir_assignment *ir)
933 {
934 const ir_dereference *const lhs = ir->lhs;
935 if (lhs->type->is_scalar() || lhs->type->is_vector()) {
936 if (ir->write_mask == 0) {
937 printf("Assignment LHS is %s, but write mask is 0:\n",
938 lhs->type->is_scalar() ? "scalar" : "vector");
939 ir->print();
940 abort();
941 }
942
943 int lhs_components = 0;
944 for (int i = 0; i < 4; i++) {
945 if (ir->write_mask & (1 << i))
946 lhs_components++;
947 }
948
949 if (lhs_components != ir->rhs->type->vector_elements) {
950 printf("Assignment count of LHS write mask channels enabled not\n"
951 "matching RHS vector size (%d LHS, %d RHS).\n",
952 lhs_components, ir->rhs->type->vector_elements);
953 ir->print();
954 abort();
955 }
956 }
957
958 this->validate_ir(ir, this->data_enter);
959
960 return visit_continue;
961 }
962
963 ir_visitor_status
964 ir_validate::visit_enter(ir_call *ir)
965 {
966 ir_function_signature *const callee = ir->callee;
967
968 if (callee->ir_type != ir_type_function_signature) {
969 printf("IR called by ir_call is not ir_function_signature!\n");
970 abort();
971 }
972
973 if (ir->return_deref) {
974 if (ir->return_deref->type != callee->return_type) {
975 printf("callee type %s does not match return storage type %s\n",
976 callee->return_type->name, ir->return_deref->type->name);
977 abort();
978 }
979 } else if (callee->return_type != glsl_type::void_type) {
980 printf("ir_call has non-void callee but no return storage\n");
981 abort();
982 }
983
984 const exec_node *formal_param_node = callee->parameters.get_head_raw();
985 const exec_node *actual_param_node = ir->actual_parameters.get_head_raw();
986 while (true) {
987 if (formal_param_node->is_tail_sentinel()
988 != actual_param_node->is_tail_sentinel()) {
989 printf("ir_call has the wrong number of parameters:\n");
990 goto dump_ir;
991 }
992 if (formal_param_node->is_tail_sentinel()) {
993 break;
994 }
995 const ir_variable *formal_param
996 = (const ir_variable *) formal_param_node;
997 const ir_rvalue *actual_param
998 = (const ir_rvalue *) actual_param_node;
999 if (formal_param->type != actual_param->type) {
1000 printf("ir_call parameter type mismatch:\n");
1001 goto dump_ir;
1002 }
1003 if (formal_param->data.mode == ir_var_function_out
1004 || formal_param->data.mode == ir_var_function_inout) {
1005 if (!actual_param->is_lvalue()) {
1006 printf("ir_call out/inout parameters must be lvalues:\n");
1007 goto dump_ir;
1008 }
1009 }
1010 formal_param_node = formal_param_node->next;
1011 actual_param_node = actual_param_node->next;
1012 }
1013
1014 return visit_continue;
1015
1016 dump_ir:
1017 ir->print();
1018 printf("callee:\n");
1019 callee->print();
1020 abort();
1021 return visit_stop;
1022 }
1023
1024 void
1025 ir_validate::validate_ir(ir_instruction *ir, void *data)
1026 {
1027 struct set *ir_set = (struct set *) data;
1028
1029 if (_mesa_set_search(ir_set, ir)) {
1030 printf("Instruction node present twice in ir tree:\n");
1031 ir->print();
1032 printf("\n");
1033 abort();
1034 }
1035 _mesa_set_add(ir_set, ir);
1036 }
1037
1038 void
1039 check_node_type(ir_instruction *ir, void *data)
1040 {
1041 (void) data;
1042
1043 if (ir->ir_type >= ir_type_max) {
1044 printf("Instruction node with unset type\n");
1045 ir->print(); printf("\n");
1046 }
1047 ir_rvalue *value = ir->as_rvalue();
1048 if (value != NULL)
1049 assert(value->type != glsl_type::error_type);
1050 }
1051
1052 void
1053 validate_ir_tree(exec_list *instructions)
1054 {
1055 /* We shouldn't have any reason to validate IR in a release build,
1056 * and it's half composed of assert()s anyway which wouldn't do
1057 * anything.
1058 */
1059 #ifdef DEBUG
1060 ir_validate v;
1061
1062 v.run(instructions);
1063
1064 foreach_in_list(ir_instruction, ir, instructions) {
1065 visit_tree(ir, check_node_type, NULL);
1066 }
1067 #endif
1068 }