nir: add legal bit_sizes to intrinsics
[mesa.git] / src / compiler / nir / nir_validate.c
1 /*
2 * Copyright © 2014 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 DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Connor Abbott (cwabbott0@gmail.com)
25 *
26 */
27
28 #include "nir.h"
29 #include <assert.h>
30
31 /*
32 * This file checks for invalid IR indicating a bug somewhere in the compiler.
33 */
34
35 /* Since this file is just a pile of asserts, don't bother compiling it if
36 * we're not building a debug build.
37 */
38 #ifndef NDEBUG
39
40 /*
41 * Per-register validation state.
42 */
43
44 typedef struct {
45 /*
46 * equivalent to the uses and defs in nir_register, but built up by the
47 * validator. At the end, we verify that the sets have the same entries.
48 */
49 struct set *uses, *if_uses, *defs;
50 nir_function_impl *where_defined; /* NULL for global registers */
51 } reg_validate_state;
52
53 typedef struct {
54 /*
55 * equivalent to the uses in nir_ssa_def, but built up by the validator.
56 * At the end, we verify that the sets have the same entries.
57 */
58 struct set *uses, *if_uses;
59 nir_function_impl *where_defined;
60 } ssa_def_validate_state;
61
62 typedef struct {
63 /* map of register -> validation state (struct above) */
64 struct hash_table *regs;
65
66 /* the current shader being validated */
67 nir_shader *shader;
68
69 /* the current instruction being validated */
70 nir_instr *instr;
71
72 /* the current variable being validated */
73 nir_variable *var;
74
75 /* the current basic block being validated */
76 nir_block *block;
77
78 /* the current if statement being validated */
79 nir_if *if_stmt;
80
81 /* the current loop being visited */
82 nir_loop *loop;
83
84 /* the parent of the current cf node being visited */
85 nir_cf_node *parent_node;
86
87 /* the current function implementation being validated */
88 nir_function_impl *impl;
89
90 /* map of SSA value -> function implementation where it is defined */
91 struct hash_table *ssa_defs;
92
93 /* bitset of ssa definitions we have found; used to check uniqueness */
94 BITSET_WORD *ssa_defs_found;
95
96 /* bitset of registers we have currently found; used to check uniqueness */
97 BITSET_WORD *regs_found;
98
99 /* map of variable -> function implementation where it is defined or NULL
100 * if it is a global variable
101 */
102 struct hash_table *var_defs;
103
104 /* map of instruction/var/etc to failed assert string */
105 struct hash_table *errors;
106 } validate_state;
107
108 static void
109 log_error(validate_state *state, const char *cond, const char *file, int line)
110 {
111 const void *obj;
112
113 if (state->instr)
114 obj = state->instr;
115 else if (state->var)
116 obj = state->var;
117 else
118 obj = cond;
119
120 char *msg = ralloc_asprintf(state->errors, "error: %s (%s:%d)",
121 cond, file, line);
122
123 _mesa_hash_table_insert(state->errors, obj, msg);
124 }
125
126 #define validate_assert(state, cond) do { \
127 if (!(cond)) \
128 log_error(state, #cond, __FILE__, __LINE__); \
129 } while (0)
130
131 static void validate_src(nir_src *src, validate_state *state,
132 unsigned bit_sizes, unsigned num_components);
133
134 static void
135 validate_reg_src(nir_src *src, validate_state *state,
136 unsigned bit_sizes, unsigned num_components)
137 {
138 validate_assert(state, src->reg.reg != NULL);
139
140 struct hash_entry *entry;
141 entry = _mesa_hash_table_search(state->regs, src->reg.reg);
142 validate_assert(state, entry);
143
144 reg_validate_state *reg_state = (reg_validate_state *) entry->data;
145
146 if (state->instr) {
147 _mesa_set_add(reg_state->uses, src);
148 } else {
149 validate_assert(state, state->if_stmt);
150 _mesa_set_add(reg_state->if_uses, src);
151 }
152
153 if (!src->reg.reg->is_global) {
154 validate_assert(state, reg_state->where_defined == state->impl &&
155 "using a register declared in a different function");
156 }
157
158 if (!src->reg.reg->is_packed) {
159 if (bit_sizes)
160 validate_assert(state, src->reg.reg->bit_size & bit_sizes);
161 if (num_components)
162 validate_assert(state, src->reg.reg->num_components == num_components);
163 }
164
165 validate_assert(state, (src->reg.reg->num_array_elems == 0 ||
166 src->reg.base_offset < src->reg.reg->num_array_elems) &&
167 "definitely out-of-bounds array access");
168
169 if (src->reg.indirect) {
170 validate_assert(state, src->reg.reg->num_array_elems != 0);
171 validate_assert(state, (src->reg.indirect->is_ssa ||
172 src->reg.indirect->reg.indirect == NULL) &&
173 "only one level of indirection allowed");
174 validate_src(src->reg.indirect, state, 32, 1);
175 }
176 }
177
178 static void
179 validate_ssa_src(nir_src *src, validate_state *state,
180 unsigned bit_sizes, unsigned num_components)
181 {
182 validate_assert(state, src->ssa != NULL);
183
184 struct hash_entry *entry = _mesa_hash_table_search(state->ssa_defs, src->ssa);
185
186 validate_assert(state, entry);
187
188 if (!entry)
189 return;
190
191 ssa_def_validate_state *def_state = (ssa_def_validate_state *)entry->data;
192
193 validate_assert(state, def_state->where_defined == state->impl &&
194 "using an SSA value defined in a different function");
195
196 if (state->instr) {
197 _mesa_set_add(def_state->uses, src);
198 } else {
199 validate_assert(state, state->if_stmt);
200 _mesa_set_add(def_state->if_uses, src);
201 }
202
203 if (bit_sizes)
204 validate_assert(state, src->ssa->bit_size & bit_sizes);
205 if (num_components)
206 validate_assert(state, src->ssa->num_components == num_components);
207
208 /* TODO validate that the use is dominated by the definition */
209 }
210
211 static void
212 validate_src(nir_src *src, validate_state *state,
213 unsigned bit_sizes, unsigned num_components)
214 {
215 if (state->instr)
216 validate_assert(state, src->parent_instr == state->instr);
217 else
218 validate_assert(state, src->parent_if == state->if_stmt);
219
220 if (src->is_ssa)
221 validate_ssa_src(src, state, bit_sizes, num_components);
222 else
223 validate_reg_src(src, state, bit_sizes, num_components);
224 }
225
226 static void
227 validate_alu_src(nir_alu_instr *instr, unsigned index, validate_state *state)
228 {
229 nir_alu_src *src = &instr->src[index];
230
231 unsigned num_components = nir_src_num_components(src->src);
232 if (!src->src.is_ssa && src->src.reg.reg->is_packed)
233 num_components = NIR_MAX_VEC_COMPONENTS; /* can't check anything */
234 for (unsigned i = 0; i < NIR_MAX_VEC_COMPONENTS; i++) {
235 validate_assert(state, src->swizzle[i] < NIR_MAX_VEC_COMPONENTS);
236
237 if (nir_alu_instr_channel_used(instr, index, i))
238 validate_assert(state, src->swizzle[i] < num_components);
239 }
240
241 validate_src(&src->src, state, 0, 0);
242 }
243
244 static void
245 validate_reg_dest(nir_reg_dest *dest, validate_state *state,
246 unsigned bit_sizes, unsigned num_components)
247 {
248 validate_assert(state, dest->reg != NULL);
249
250 validate_assert(state, dest->parent_instr == state->instr);
251
252 struct hash_entry *entry2;
253 entry2 = _mesa_hash_table_search(state->regs, dest->reg);
254
255 validate_assert(state, entry2);
256
257 reg_validate_state *reg_state = (reg_validate_state *) entry2->data;
258 _mesa_set_add(reg_state->defs, dest);
259
260 if (!dest->reg->is_global) {
261 validate_assert(state, reg_state->where_defined == state->impl &&
262 "writing to a register declared in a different function");
263 }
264
265 if (!dest->reg->is_packed) {
266 if (bit_sizes)
267 validate_assert(state, dest->reg->bit_size & bit_sizes);
268 if (num_components)
269 validate_assert(state, dest->reg->num_components == num_components);
270 }
271
272 validate_assert(state, (dest->reg->num_array_elems == 0 ||
273 dest->base_offset < dest->reg->num_array_elems) &&
274 "definitely out-of-bounds array access");
275
276 if (dest->indirect) {
277 validate_assert(state, dest->reg->num_array_elems != 0);
278 validate_assert(state, (dest->indirect->is_ssa || dest->indirect->reg.indirect == NULL) &&
279 "only one level of indirection allowed");
280 validate_src(dest->indirect, state, 32, 1);
281 }
282 }
283
284 static void
285 validate_ssa_def(nir_ssa_def *def, validate_state *state)
286 {
287 validate_assert(state, def->index < state->impl->ssa_alloc);
288 validate_assert(state, !BITSET_TEST(state->ssa_defs_found, def->index));
289 BITSET_SET(state->ssa_defs_found, def->index);
290
291 validate_assert(state, def->parent_instr == state->instr);
292
293 validate_assert(state, (def->num_components <= 4) ||
294 (def->num_components == 8) ||
295 (def->num_components == 16));
296
297 list_validate(&def->uses);
298 list_validate(&def->if_uses);
299
300 ssa_def_validate_state *def_state = ralloc(state->ssa_defs,
301 ssa_def_validate_state);
302 def_state->where_defined = state->impl;
303 def_state->uses = _mesa_pointer_set_create(def_state);
304 def_state->if_uses = _mesa_pointer_set_create(def_state);
305 _mesa_hash_table_insert(state->ssa_defs, def, def_state);
306 }
307
308 static void
309 validate_dest(nir_dest *dest, validate_state *state,
310 unsigned bit_sizes, unsigned num_components)
311 {
312 if (dest->is_ssa) {
313 if (bit_sizes)
314 validate_assert(state, dest->ssa.bit_size & bit_sizes);
315 if (num_components)
316 validate_assert(state, dest->ssa.num_components == num_components);
317 validate_ssa_def(&dest->ssa, state);
318 } else {
319 validate_reg_dest(&dest->reg, state, bit_sizes, num_components);
320 }
321 }
322
323 static void
324 validate_alu_dest(nir_alu_instr *instr, validate_state *state)
325 {
326 nir_alu_dest *dest = &instr->dest;
327
328 unsigned dest_size = nir_dest_num_components(dest->dest);
329 bool is_packed = !dest->dest.is_ssa && dest->dest.reg.reg->is_packed;
330 /*
331 * validate that the instruction doesn't write to components not in the
332 * register/SSA value
333 */
334 validate_assert(state, is_packed || !(dest->write_mask & ~((1 << dest_size) - 1)));
335
336 /* validate that saturate is only ever used on instructions with
337 * destinations of type float
338 */
339 nir_alu_instr *alu = nir_instr_as_alu(state->instr);
340 validate_assert(state,
341 (nir_alu_type_get_base_type(nir_op_infos[alu->op].output_type) ==
342 nir_type_float) ||
343 !dest->saturate);
344
345 validate_dest(&dest->dest, state, 0, 0);
346 }
347
348 static void
349 validate_alu_instr(nir_alu_instr *instr, validate_state *state)
350 {
351 validate_assert(state, instr->op < nir_num_opcodes);
352
353 unsigned instr_bit_size = 0;
354 for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++) {
355 nir_alu_type src_type = nir_op_infos[instr->op].input_types[i];
356 unsigned src_bit_size = nir_src_bit_size(instr->src[i].src);
357 if (nir_alu_type_get_type_size(src_type)) {
358 validate_assert(state, src_bit_size == nir_alu_type_get_type_size(src_type));
359 } else if (instr_bit_size) {
360 validate_assert(state, src_bit_size == instr_bit_size);
361 } else {
362 instr_bit_size = src_bit_size;
363 }
364
365 if (nir_alu_type_get_base_type(src_type) == nir_type_float) {
366 /* 8-bit float isn't a thing */
367 validate_assert(state, src_bit_size == 16 || src_bit_size == 32 ||
368 src_bit_size == 64);
369 }
370
371 validate_alu_src(instr, i, state);
372 }
373
374 nir_alu_type dest_type = nir_op_infos[instr->op].output_type;
375 unsigned dest_bit_size = nir_dest_bit_size(instr->dest.dest);
376 if (nir_alu_type_get_type_size(dest_type)) {
377 validate_assert(state, dest_bit_size == nir_alu_type_get_type_size(dest_type));
378 } else if (instr_bit_size) {
379 validate_assert(state, dest_bit_size == instr_bit_size);
380 } else {
381 /* The only unsized thing is the destination so it's vacuously valid */
382 }
383
384 if (nir_alu_type_get_base_type(dest_type) == nir_type_float) {
385 /* 8-bit float isn't a thing */
386 validate_assert(state, dest_bit_size == 16 || dest_bit_size == 32 ||
387 dest_bit_size == 64);
388 }
389
390 validate_alu_dest(instr, state);
391 }
392
393 static void
394 validate_var_use(nir_variable *var, validate_state *state)
395 {
396 struct hash_entry *entry = _mesa_hash_table_search(state->var_defs, var);
397 validate_assert(state, entry);
398 if (var->data.mode == nir_var_function_temp)
399 validate_assert(state, (nir_function_impl *) entry->data == state->impl);
400 }
401
402 static void
403 validate_deref_instr(nir_deref_instr *instr, validate_state *state)
404 {
405 if (instr->deref_type == nir_deref_type_var) {
406 /* Variable dereferences are stupid simple. */
407 validate_assert(state, instr->mode == instr->var->data.mode);
408 validate_assert(state, instr->type == instr->var->type);
409 validate_var_use(instr->var, state);
410 } else if (instr->deref_type == nir_deref_type_cast) {
411 /* For cast, we simply have to trust the instruction. It's up to
412 * lowering passes and front/back-ends to make them sane.
413 */
414 validate_src(&instr->parent, state, 0, 0);
415
416 /* We just validate that the type and mode are there */
417 validate_assert(state, instr->mode);
418 validate_assert(state, instr->type);
419 } else {
420 /* We require the parent to be SSA. This may be lifted in the future */
421 validate_assert(state, instr->parent.is_ssa);
422
423 /* The parent pointer value must have the same number of components
424 * as the destination.
425 */
426 validate_src(&instr->parent, state, nir_dest_bit_size(instr->dest),
427 nir_dest_num_components(instr->dest));
428
429 nir_instr *parent_instr = instr->parent.ssa->parent_instr;
430
431 /* The parent must come from another deref instruction */
432 validate_assert(state, parent_instr->type == nir_instr_type_deref);
433
434 nir_deref_instr *parent = nir_instr_as_deref(parent_instr);
435
436 validate_assert(state, instr->mode == parent->mode);
437
438 switch (instr->deref_type) {
439 case nir_deref_type_struct:
440 validate_assert(state, glsl_type_is_struct(parent->type));
441 validate_assert(state,
442 instr->strct.index < glsl_get_length(parent->type));
443 validate_assert(state, instr->type ==
444 glsl_get_struct_field(parent->type, instr->strct.index));
445 break;
446
447 case nir_deref_type_array:
448 case nir_deref_type_array_wildcard:
449 if (instr->mode == nir_var_mem_ubo ||
450 instr->mode == nir_var_mem_ssbo ||
451 instr->mode == nir_var_mem_shared) {
452 /* Shared variables and UBO/SSBOs have a bit more relaxed rules
453 * because we need to be able to handle array derefs on vectors.
454 * Fortunately, nir_lower_io handles these just fine.
455 */
456 validate_assert(state, glsl_type_is_array(parent->type) ||
457 glsl_type_is_matrix(parent->type) ||
458 glsl_type_is_vector(parent->type));
459 } else {
460 /* Most of NIR cannot handle array derefs on vectors */
461 validate_assert(state, glsl_type_is_array(parent->type) ||
462 glsl_type_is_matrix(parent->type));
463 }
464 validate_assert(state,
465 instr->type == glsl_get_array_element(parent->type));
466
467 if (instr->deref_type == nir_deref_type_array) {
468 validate_src(&instr->arr.index, state,
469 nir_dest_bit_size(instr->dest), 1);
470 }
471 break;
472
473 case nir_deref_type_ptr_as_array:
474 /* ptr_as_array derefs must have a parent that is either an array,
475 * ptr_as_array, or cast. If the parent is a cast, we get the stride
476 * information (if any) from the cast deref.
477 */
478 validate_assert(state,
479 parent->deref_type == nir_deref_type_array ||
480 parent->deref_type == nir_deref_type_ptr_as_array ||
481 parent->deref_type == nir_deref_type_cast);
482 validate_src(&instr->arr.index, state,
483 nir_dest_bit_size(instr->dest), 1);
484 break;
485
486 default:
487 unreachable("Invalid deref instruction type");
488 }
489 }
490
491 /* We intentionally don't validate the size of the destination because we
492 * want to let other compiler components such as SPIR-V decide how big
493 * pointers should be.
494 */
495 validate_dest(&instr->dest, state, 0, 0);
496
497 /* Deref instructions as if conditions don't make sense because if
498 * conditions expect well-formed Booleans. If you want to compare with
499 * NULL, an explicit comparison operation should be used.
500 */
501 validate_assert(state, list_empty(&instr->dest.ssa.if_uses));
502 }
503
504 static void
505 validate_intrinsic_instr(nir_intrinsic_instr *instr, validate_state *state)
506 {
507 unsigned dest_bit_size = 0;
508 unsigned src_bit_sizes[NIR_INTRINSIC_MAX_INPUTS] = { 0, };
509 switch (instr->intrinsic) {
510 case nir_intrinsic_load_param: {
511 unsigned param_idx = nir_intrinsic_param_idx(instr);
512 validate_assert(state, param_idx < state->impl->function->num_params);
513 nir_parameter *param = &state->impl->function->params[param_idx];
514 validate_assert(state, instr->num_components == param->num_components);
515 dest_bit_size = param->bit_size;
516 break;
517 }
518
519 case nir_intrinsic_load_deref: {
520 nir_deref_instr *src = nir_src_as_deref(instr->src[0]);
521 validate_assert(state, glsl_type_is_vector_or_scalar(src->type) ||
522 (src->mode == nir_var_uniform &&
523 glsl_get_base_type(src->type) == GLSL_TYPE_SUBROUTINE));
524 validate_assert(state, instr->num_components ==
525 glsl_get_vector_elements(src->type));
526 dest_bit_size = glsl_get_bit_size(src->type);
527 break;
528 }
529
530 case nir_intrinsic_store_deref: {
531 nir_deref_instr *dst = nir_src_as_deref(instr->src[0]);
532 validate_assert(state, glsl_type_is_vector_or_scalar(dst->type));
533 validate_assert(state, instr->num_components ==
534 glsl_get_vector_elements(dst->type));
535 src_bit_sizes[1] = glsl_get_bit_size(dst->type);
536 validate_assert(state, (dst->mode & (nir_var_shader_in |
537 nir_var_uniform)) == 0);
538 validate_assert(state, (nir_intrinsic_write_mask(instr) & ~((1 << instr->num_components) - 1)) == 0);
539 break;
540 }
541
542 case nir_intrinsic_copy_deref: {
543 nir_deref_instr *dst = nir_src_as_deref(instr->src[0]);
544 nir_deref_instr *src = nir_src_as_deref(instr->src[1]);
545 validate_assert(state, dst->type == src->type);
546 validate_assert(state, (dst->mode & (nir_var_shader_in |
547 nir_var_uniform)) == 0);
548 break;
549 }
550
551 default:
552 break;
553 }
554
555 unsigned num_srcs = nir_intrinsic_infos[instr->intrinsic].num_srcs;
556 for (unsigned i = 0; i < num_srcs; i++) {
557 unsigned components_read = nir_intrinsic_src_components(instr, i);
558
559 validate_assert(state, components_read > 0);
560
561 validate_src(&instr->src[i], state, src_bit_sizes[i], components_read);
562 }
563
564 if (nir_intrinsic_infos[instr->intrinsic].has_dest) {
565 unsigned components_written = nir_intrinsic_dest_components(instr);
566 unsigned bit_sizes = nir_intrinsic_infos[instr->intrinsic].dest_bit_sizes;
567
568 validate_assert(state, components_written > 0);
569
570 if (dest_bit_size && bit_sizes)
571 validate_assert(state, dest_bit_size & bit_sizes);
572 else
573 dest_bit_size = dest_bit_size ? dest_bit_size : bit_sizes;
574
575 validate_dest(&instr->dest, state, dest_bit_size, components_written);
576 }
577 }
578
579 static void
580 validate_tex_instr(nir_tex_instr *instr, validate_state *state)
581 {
582 bool src_type_seen[nir_num_tex_src_types];
583 for (unsigned i = 0; i < nir_num_tex_src_types; i++)
584 src_type_seen[i] = false;
585
586 for (unsigned i = 0; i < instr->num_srcs; i++) {
587 validate_assert(state, !src_type_seen[instr->src[i].src_type]);
588 src_type_seen[instr->src[i].src_type] = true;
589 validate_src(&instr->src[i].src, state,
590 0, nir_tex_instr_src_size(instr, i));
591 }
592
593 validate_dest(&instr->dest, state, 0, nir_tex_instr_dest_size(instr));
594 }
595
596 static void
597 validate_call_instr(nir_call_instr *instr, validate_state *state)
598 {
599 validate_assert(state, instr->num_params == instr->callee->num_params);
600
601 for (unsigned i = 0; i < instr->num_params; i++) {
602 validate_src(&instr->params[i], state,
603 instr->callee->params[i].bit_size,
604 instr->callee->params[i].num_components);
605 }
606 }
607
608 static void
609 validate_load_const_instr(nir_load_const_instr *instr, validate_state *state)
610 {
611 validate_ssa_def(&instr->def, state);
612 }
613
614 static void
615 validate_ssa_undef_instr(nir_ssa_undef_instr *instr, validate_state *state)
616 {
617 validate_ssa_def(&instr->def, state);
618 }
619
620 static void
621 validate_phi_instr(nir_phi_instr *instr, validate_state *state)
622 {
623 /*
624 * don't validate the sources until we get to them from their predecessor
625 * basic blocks, to avoid validating an SSA use before its definition.
626 */
627
628 validate_dest(&instr->dest, state, 0, 0);
629
630 exec_list_validate(&instr->srcs);
631 validate_assert(state, exec_list_length(&instr->srcs) ==
632 state->block->predecessors->entries);
633 }
634
635 static void
636 validate_instr(nir_instr *instr, validate_state *state)
637 {
638 validate_assert(state, instr->block == state->block);
639
640 state->instr = instr;
641
642 switch (instr->type) {
643 case nir_instr_type_alu:
644 validate_alu_instr(nir_instr_as_alu(instr), state);
645 break;
646
647 case nir_instr_type_deref:
648 validate_deref_instr(nir_instr_as_deref(instr), state);
649 break;
650
651 case nir_instr_type_call:
652 validate_call_instr(nir_instr_as_call(instr), state);
653 break;
654
655 case nir_instr_type_intrinsic:
656 validate_intrinsic_instr(nir_instr_as_intrinsic(instr), state);
657 break;
658
659 case nir_instr_type_tex:
660 validate_tex_instr(nir_instr_as_tex(instr), state);
661 break;
662
663 case nir_instr_type_load_const:
664 validate_load_const_instr(nir_instr_as_load_const(instr), state);
665 break;
666
667 case nir_instr_type_phi:
668 validate_phi_instr(nir_instr_as_phi(instr), state);
669 break;
670
671 case nir_instr_type_ssa_undef:
672 validate_ssa_undef_instr(nir_instr_as_ssa_undef(instr), state);
673 break;
674
675 case nir_instr_type_jump:
676 break;
677
678 default:
679 validate_assert(state, !"Invalid ALU instruction type");
680 break;
681 }
682
683 state->instr = NULL;
684 }
685
686 static void
687 validate_phi_src(nir_phi_instr *instr, nir_block *pred, validate_state *state)
688 {
689 state->instr = &instr->instr;
690
691 validate_assert(state, instr->dest.is_ssa);
692
693 exec_list_validate(&instr->srcs);
694 nir_foreach_phi_src(src, instr) {
695 if (src->pred == pred) {
696 validate_assert(state, src->src.is_ssa);
697 validate_src(&src->src, state, instr->dest.ssa.bit_size,
698 instr->dest.ssa.num_components);
699 state->instr = NULL;
700 return;
701 }
702 }
703
704 abort();
705 }
706
707 static void
708 validate_phi_srcs(nir_block *block, nir_block *succ, validate_state *state)
709 {
710 nir_foreach_instr(instr, succ) {
711 if (instr->type != nir_instr_type_phi)
712 break;
713
714 validate_phi_src(nir_instr_as_phi(instr), block, state);
715 }
716 }
717
718 static void validate_cf_node(nir_cf_node *node, validate_state *state);
719
720 static void
721 validate_block(nir_block *block, validate_state *state)
722 {
723 validate_assert(state, block->cf_node.parent == state->parent_node);
724
725 state->block = block;
726
727 exec_list_validate(&block->instr_list);
728 nir_foreach_instr(instr, block) {
729 if (instr->type == nir_instr_type_phi) {
730 validate_assert(state, instr == nir_block_first_instr(block) ||
731 nir_instr_prev(instr)->type == nir_instr_type_phi);
732 }
733
734 if (instr->type == nir_instr_type_jump) {
735 validate_assert(state, instr == nir_block_last_instr(block));
736 }
737
738 validate_instr(instr, state);
739 }
740
741 validate_assert(state, block->successors[0] != NULL);
742 validate_assert(state, block->successors[0] != block->successors[1]);
743
744 for (unsigned i = 0; i < 2; i++) {
745 if (block->successors[i] != NULL) {
746 struct set_entry *entry =
747 _mesa_set_search(block->successors[i]->predecessors, block);
748 validate_assert(state, entry);
749
750 validate_phi_srcs(block, block->successors[i], state);
751 }
752 }
753
754 set_foreach(block->predecessors, entry) {
755 const nir_block *pred = entry->key;
756 validate_assert(state, pred->successors[0] == block ||
757 pred->successors[1] == block);
758 }
759
760 if (!exec_list_is_empty(&block->instr_list) &&
761 nir_block_last_instr(block)->type == nir_instr_type_jump) {
762 validate_assert(state, block->successors[1] == NULL);
763 nir_jump_instr *jump = nir_instr_as_jump(nir_block_last_instr(block));
764 switch (jump->type) {
765 case nir_jump_break: {
766 nir_block *after =
767 nir_cf_node_as_block(nir_cf_node_next(&state->loop->cf_node));
768 validate_assert(state, block->successors[0] == after);
769 break;
770 }
771
772 case nir_jump_continue: {
773 nir_block *first = nir_loop_first_block(state->loop);
774 validate_assert(state, block->successors[0] == first);
775 break;
776 }
777
778 case nir_jump_return:
779 validate_assert(state, block->successors[0] == state->impl->end_block);
780 break;
781
782 default:
783 unreachable("bad jump type");
784 }
785 } else {
786 nir_cf_node *next = nir_cf_node_next(&block->cf_node);
787 if (next == NULL) {
788 switch (state->parent_node->type) {
789 case nir_cf_node_loop: {
790 nir_block *first = nir_loop_first_block(state->loop);
791 validate_assert(state, block->successors[0] == first);
792 /* due to the hack for infinite loops, block->successors[1] may
793 * point to the block after the loop.
794 */
795 break;
796 }
797
798 case nir_cf_node_if: {
799 nir_block *after =
800 nir_cf_node_as_block(nir_cf_node_next(state->parent_node));
801 validate_assert(state, block->successors[0] == after);
802 validate_assert(state, block->successors[1] == NULL);
803 break;
804 }
805
806 case nir_cf_node_function:
807 validate_assert(state, block->successors[0] == state->impl->end_block);
808 validate_assert(state, block->successors[1] == NULL);
809 break;
810
811 default:
812 unreachable("unknown control flow node type");
813 }
814 } else {
815 if (next->type == nir_cf_node_if) {
816 nir_if *if_stmt = nir_cf_node_as_if(next);
817 validate_assert(state, block->successors[0] ==
818 nir_if_first_then_block(if_stmt));
819 validate_assert(state, block->successors[1] ==
820 nir_if_first_else_block(if_stmt));
821 } else {
822 validate_assert(state, next->type == nir_cf_node_loop);
823 nir_loop *loop = nir_cf_node_as_loop(next);
824 validate_assert(state, block->successors[0] ==
825 nir_loop_first_block(loop));
826 validate_assert(state, block->successors[1] == NULL);
827 }
828 }
829 }
830 }
831
832 static void
833 validate_if(nir_if *if_stmt, validate_state *state)
834 {
835 state->if_stmt = if_stmt;
836
837 validate_assert(state, !exec_node_is_head_sentinel(if_stmt->cf_node.node.prev));
838 nir_cf_node *prev_node = nir_cf_node_prev(&if_stmt->cf_node);
839 validate_assert(state, prev_node->type == nir_cf_node_block);
840
841 validate_assert(state, !exec_node_is_tail_sentinel(if_stmt->cf_node.node.next));
842 nir_cf_node *next_node = nir_cf_node_next(&if_stmt->cf_node);
843 validate_assert(state, next_node->type == nir_cf_node_block);
844
845 validate_src(&if_stmt->condition, state, 0, 1);
846
847 validate_assert(state, !exec_list_is_empty(&if_stmt->then_list));
848 validate_assert(state, !exec_list_is_empty(&if_stmt->else_list));
849
850 nir_cf_node *old_parent = state->parent_node;
851 state->parent_node = &if_stmt->cf_node;
852
853 exec_list_validate(&if_stmt->then_list);
854 foreach_list_typed(nir_cf_node, cf_node, node, &if_stmt->then_list) {
855 validate_cf_node(cf_node, state);
856 }
857
858 exec_list_validate(&if_stmt->else_list);
859 foreach_list_typed(nir_cf_node, cf_node, node, &if_stmt->else_list) {
860 validate_cf_node(cf_node, state);
861 }
862
863 state->parent_node = old_parent;
864 state->if_stmt = NULL;
865 }
866
867 static void
868 validate_loop(nir_loop *loop, validate_state *state)
869 {
870 validate_assert(state, !exec_node_is_head_sentinel(loop->cf_node.node.prev));
871 nir_cf_node *prev_node = nir_cf_node_prev(&loop->cf_node);
872 validate_assert(state, prev_node->type == nir_cf_node_block);
873
874 validate_assert(state, !exec_node_is_tail_sentinel(loop->cf_node.node.next));
875 nir_cf_node *next_node = nir_cf_node_next(&loop->cf_node);
876 validate_assert(state, next_node->type == nir_cf_node_block);
877
878 validate_assert(state, !exec_list_is_empty(&loop->body));
879
880 nir_cf_node *old_parent = state->parent_node;
881 state->parent_node = &loop->cf_node;
882 nir_loop *old_loop = state->loop;
883 state->loop = loop;
884
885 exec_list_validate(&loop->body);
886 foreach_list_typed(nir_cf_node, cf_node, node, &loop->body) {
887 validate_cf_node(cf_node, state);
888 }
889
890 state->parent_node = old_parent;
891 state->loop = old_loop;
892 }
893
894 static void
895 validate_cf_node(nir_cf_node *node, validate_state *state)
896 {
897 validate_assert(state, node->parent == state->parent_node);
898
899 switch (node->type) {
900 case nir_cf_node_block:
901 validate_block(nir_cf_node_as_block(node), state);
902 break;
903
904 case nir_cf_node_if:
905 validate_if(nir_cf_node_as_if(node), state);
906 break;
907
908 case nir_cf_node_loop:
909 validate_loop(nir_cf_node_as_loop(node), state);
910 break;
911
912 default:
913 unreachable("Invalid CF node type");
914 }
915 }
916
917 static void
918 prevalidate_reg_decl(nir_register *reg, bool is_global, validate_state *state)
919 {
920 validate_assert(state, reg->is_global == is_global);
921
922 if (is_global)
923 validate_assert(state, reg->index < state->shader->reg_alloc);
924 else
925 validate_assert(state, reg->index < state->impl->reg_alloc);
926 validate_assert(state, !BITSET_TEST(state->regs_found, reg->index));
927 BITSET_SET(state->regs_found, reg->index);
928
929 list_validate(&reg->uses);
930 list_validate(&reg->defs);
931 list_validate(&reg->if_uses);
932
933 reg_validate_state *reg_state = ralloc(state->regs, reg_validate_state);
934 reg_state->uses = _mesa_pointer_set_create(reg_state);
935 reg_state->if_uses = _mesa_pointer_set_create(reg_state);
936 reg_state->defs = _mesa_pointer_set_create(reg_state);
937
938 reg_state->where_defined = is_global ? NULL : state->impl;
939
940 _mesa_hash_table_insert(state->regs, reg, reg_state);
941 }
942
943 static void
944 postvalidate_reg_decl(nir_register *reg, validate_state *state)
945 {
946 struct hash_entry *entry = _mesa_hash_table_search(state->regs, reg);
947
948 assume(entry);
949 reg_validate_state *reg_state = (reg_validate_state *) entry->data;
950
951 nir_foreach_use(src, reg) {
952 struct set_entry *entry = _mesa_set_search(reg_state->uses, src);
953 validate_assert(state, entry);
954 _mesa_set_remove(reg_state->uses, entry);
955 }
956
957 if (reg_state->uses->entries != 0) {
958 printf("extra entries in register uses:\n");
959 set_foreach(reg_state->uses, entry)
960 printf("%p\n", entry->key);
961
962 abort();
963 }
964
965 nir_foreach_if_use(src, reg) {
966 struct set_entry *entry = _mesa_set_search(reg_state->if_uses, src);
967 validate_assert(state, entry);
968 _mesa_set_remove(reg_state->if_uses, entry);
969 }
970
971 if (reg_state->if_uses->entries != 0) {
972 printf("extra entries in register if_uses:\n");
973 set_foreach(reg_state->if_uses, entry)
974 printf("%p\n", entry->key);
975
976 abort();
977 }
978
979 nir_foreach_def(src, reg) {
980 struct set_entry *entry = _mesa_set_search(reg_state->defs, src);
981 validate_assert(state, entry);
982 _mesa_set_remove(reg_state->defs, entry);
983 }
984
985 if (reg_state->defs->entries != 0) {
986 printf("extra entries in register defs:\n");
987 set_foreach(reg_state->defs, entry)
988 printf("%p\n", entry->key);
989
990 abort();
991 }
992 }
993
994 static void
995 validate_var_decl(nir_variable *var, bool is_global, validate_state *state)
996 {
997 state->var = var;
998
999 validate_assert(state, is_global == nir_variable_is_global(var));
1000
1001 /* Must have exactly one mode set */
1002 validate_assert(state, util_is_power_of_two_nonzero(var->data.mode));
1003
1004 if (var->data.compact) {
1005 /* The "compact" flag is only valid on arrays of scalars. */
1006 assert(glsl_type_is_array(var->type));
1007
1008 const struct glsl_type *type = glsl_get_array_element(var->type);
1009 if (nir_is_per_vertex_io(var, state->shader->info.stage)) {
1010 assert(glsl_type_is_array(type));
1011 assert(glsl_type_is_scalar(glsl_get_array_element(type)));
1012 } else {
1013 assert(glsl_type_is_scalar(type));
1014 }
1015 }
1016
1017 if (var->num_members > 0) {
1018 const struct glsl_type *without_array = glsl_without_array(var->type);
1019 validate_assert(state, glsl_type_is_struct(without_array));
1020 validate_assert(state, var->num_members == glsl_get_length(without_array));
1021 validate_assert(state, var->members != NULL);
1022 }
1023
1024 /*
1025 * TODO validate some things ir_validate.cpp does (requires more GLSL type
1026 * support)
1027 */
1028
1029 _mesa_hash_table_insert(state->var_defs, var,
1030 is_global ? NULL : state->impl);
1031
1032 state->var = NULL;
1033 }
1034
1035 static bool
1036 postvalidate_ssa_def(nir_ssa_def *def, void *void_state)
1037 {
1038 validate_state *state = void_state;
1039
1040 struct hash_entry *entry = _mesa_hash_table_search(state->ssa_defs, def);
1041
1042 assume(entry);
1043 ssa_def_validate_state *def_state = (ssa_def_validate_state *)entry->data;
1044
1045 nir_foreach_use(src, def) {
1046 struct set_entry *entry = _mesa_set_search(def_state->uses, src);
1047 validate_assert(state, entry);
1048 _mesa_set_remove(def_state->uses, entry);
1049 }
1050
1051 if (def_state->uses->entries != 0) {
1052 printf("extra entries in SSA def uses:\n");
1053 set_foreach(def_state->uses, entry)
1054 printf("%p\n", entry->key);
1055
1056 abort();
1057 }
1058
1059 nir_foreach_if_use(src, def) {
1060 struct set_entry *entry = _mesa_set_search(def_state->if_uses, src);
1061 validate_assert(state, entry);
1062 _mesa_set_remove(def_state->if_uses, entry);
1063 }
1064
1065 if (def_state->if_uses->entries != 0) {
1066 printf("extra entries in SSA def uses:\n");
1067 set_foreach(def_state->if_uses, entry)
1068 printf("%p\n", entry->key);
1069
1070 abort();
1071 }
1072
1073 return true;
1074 }
1075
1076 static void
1077 validate_function_impl(nir_function_impl *impl, validate_state *state)
1078 {
1079 validate_assert(state, impl->function->impl == impl);
1080 validate_assert(state, impl->cf_node.parent == NULL);
1081
1082 validate_assert(state, exec_list_is_empty(&impl->end_block->instr_list));
1083 validate_assert(state, impl->end_block->successors[0] == NULL);
1084 validate_assert(state, impl->end_block->successors[1] == NULL);
1085
1086 state->impl = impl;
1087 state->parent_node = &impl->cf_node;
1088
1089 exec_list_validate(&impl->locals);
1090 nir_foreach_variable(var, &impl->locals) {
1091 validate_var_decl(var, false, state);
1092 }
1093
1094 state->regs_found = realloc(state->regs_found,
1095 BITSET_WORDS(impl->reg_alloc) *
1096 sizeof(BITSET_WORD));
1097 memset(state->regs_found, 0, BITSET_WORDS(impl->reg_alloc) *
1098 sizeof(BITSET_WORD));
1099 exec_list_validate(&impl->registers);
1100 foreach_list_typed(nir_register, reg, node, &impl->registers) {
1101 prevalidate_reg_decl(reg, false, state);
1102 }
1103
1104 state->ssa_defs_found = realloc(state->ssa_defs_found,
1105 BITSET_WORDS(impl->ssa_alloc) *
1106 sizeof(BITSET_WORD));
1107 memset(state->ssa_defs_found, 0, BITSET_WORDS(impl->ssa_alloc) *
1108 sizeof(BITSET_WORD));
1109 exec_list_validate(&impl->body);
1110 foreach_list_typed(nir_cf_node, node, node, &impl->body) {
1111 validate_cf_node(node, state);
1112 }
1113
1114 foreach_list_typed(nir_register, reg, node, &impl->registers) {
1115 postvalidate_reg_decl(reg, state);
1116 }
1117
1118 nir_foreach_block(block, impl) {
1119 nir_foreach_instr(instr, block)
1120 nir_foreach_ssa_def(instr, postvalidate_ssa_def, state);
1121 }
1122 }
1123
1124 static void
1125 validate_function(nir_function *func, validate_state *state)
1126 {
1127 if (func->impl != NULL) {
1128 validate_assert(state, func->impl->function == func);
1129 validate_function_impl(func->impl, state);
1130 }
1131 }
1132
1133 static void
1134 init_validate_state(validate_state *state)
1135 {
1136 state->regs = _mesa_pointer_hash_table_create(NULL);
1137 state->ssa_defs = _mesa_pointer_hash_table_create(NULL);
1138 state->ssa_defs_found = NULL;
1139 state->regs_found = NULL;
1140 state->var_defs = _mesa_pointer_hash_table_create(NULL);
1141 state->errors = _mesa_pointer_hash_table_create(NULL);
1142
1143 state->loop = NULL;
1144 state->instr = NULL;
1145 state->var = NULL;
1146 }
1147
1148 static void
1149 destroy_validate_state(validate_state *state)
1150 {
1151 _mesa_hash_table_destroy(state->regs, NULL);
1152 _mesa_hash_table_destroy(state->ssa_defs, NULL);
1153 free(state->ssa_defs_found);
1154 free(state->regs_found);
1155 _mesa_hash_table_destroy(state->var_defs, NULL);
1156 _mesa_hash_table_destroy(state->errors, NULL);
1157 }
1158
1159 static void
1160 dump_errors(validate_state *state, const char *when)
1161 {
1162 struct hash_table *errors = state->errors;
1163
1164 if (when) {
1165 fprintf(stderr, "NIR validation failed %s\n", when);
1166 fprintf(stderr, "%d errors:\n", _mesa_hash_table_num_entries(errors));
1167 } else {
1168 fprintf(stderr, "NIR validation failed with %d errors:\n",
1169 _mesa_hash_table_num_entries(errors));
1170 }
1171
1172 nir_print_shader_annotated(state->shader, stderr, errors);
1173
1174 if (_mesa_hash_table_num_entries(errors) > 0) {
1175 fprintf(stderr, "%d additional errors:\n",
1176 _mesa_hash_table_num_entries(errors));
1177 hash_table_foreach(errors, entry) {
1178 fprintf(stderr, "%s\n", (char *)entry->data);
1179 }
1180 }
1181
1182 abort();
1183 }
1184
1185 void
1186 nir_validate_shader(nir_shader *shader, const char *when)
1187 {
1188 static int should_validate = -1;
1189 if (should_validate < 0)
1190 should_validate = env_var_as_boolean("NIR_VALIDATE", true);
1191 if (!should_validate)
1192 return;
1193
1194 validate_state state;
1195 init_validate_state(&state);
1196
1197 state.shader = shader;
1198
1199 exec_list_validate(&shader->uniforms);
1200 nir_foreach_variable(var, &shader->uniforms) {
1201 validate_var_decl(var, true, &state);
1202 }
1203
1204 exec_list_validate(&shader->inputs);
1205 nir_foreach_variable(var, &shader->inputs) {
1206 validate_var_decl(var, true, &state);
1207 }
1208
1209 exec_list_validate(&shader->outputs);
1210 nir_foreach_variable(var, &shader->outputs) {
1211 validate_var_decl(var, true, &state);
1212 }
1213
1214 exec_list_validate(&shader->shared);
1215 nir_foreach_variable(var, &shader->shared) {
1216 validate_var_decl(var, true, &state);
1217 }
1218
1219 exec_list_validate(&shader->globals);
1220 nir_foreach_variable(var, &shader->globals) {
1221 validate_var_decl(var, true, &state);
1222 }
1223
1224 exec_list_validate(&shader->system_values);
1225 nir_foreach_variable(var, &shader->system_values) {
1226 validate_var_decl(var, true, &state);
1227 }
1228
1229 state.regs_found = realloc(state.regs_found,
1230 BITSET_WORDS(shader->reg_alloc) *
1231 sizeof(BITSET_WORD));
1232 memset(state.regs_found, 0, BITSET_WORDS(shader->reg_alloc) *
1233 sizeof(BITSET_WORD));
1234 exec_list_validate(&shader->registers);
1235 foreach_list_typed(nir_register, reg, node, &shader->registers) {
1236 prevalidate_reg_decl(reg, true, &state);
1237 }
1238
1239 exec_list_validate(&shader->functions);
1240 foreach_list_typed(nir_function, func, node, &shader->functions) {
1241 validate_function(func, &state);
1242 }
1243
1244 foreach_list_typed(nir_register, reg, node, &shader->registers) {
1245 postvalidate_reg_decl(reg, &state);
1246 }
1247
1248 if (_mesa_hash_table_num_entries(state.errors) > 0)
1249 dump_errors(&state, when);
1250
1251 destroy_validate_state(&state);
1252 }
1253
1254 #endif /* NDEBUG */