nir: rename global/local to private/function memory
[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_size, unsigned num_components);
133
134 static void
135 validate_reg_src(nir_src *src, validate_state *state,
136 unsigned bit_size, 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_size)
160 validate_assert(state, src->reg.reg->bit_size == bit_size);
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_size, 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_size)
204 validate_assert(state, src->ssa->bit_size == bit_size);
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_size, 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_size, num_components);
222 else
223 validate_reg_src(src, state, bit_size, 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_size, 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_size)
267 validate_assert(state, dest->reg->bit_size == bit_size);
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_set_create(def_state, _mesa_hash_pointer,
304 _mesa_key_pointer_equal);
305 def_state->if_uses = _mesa_set_create(def_state, _mesa_hash_pointer,
306 _mesa_key_pointer_equal);
307 _mesa_hash_table_insert(state->ssa_defs, def, def_state);
308 }
309
310 static void
311 validate_dest(nir_dest *dest, validate_state *state,
312 unsigned bit_size, unsigned num_components)
313 {
314 if (dest->is_ssa) {
315 if (bit_size)
316 validate_assert(state, dest->ssa.bit_size == bit_size);
317 if (num_components)
318 validate_assert(state, dest->ssa.num_components == num_components);
319 validate_ssa_def(&dest->ssa, state);
320 } else {
321 validate_reg_dest(&dest->reg, state, bit_size, num_components);
322 }
323 }
324
325 static void
326 validate_alu_dest(nir_alu_instr *instr, validate_state *state)
327 {
328 nir_alu_dest *dest = &instr->dest;
329
330 unsigned dest_size = nir_dest_num_components(dest->dest);
331 bool is_packed = !dest->dest.is_ssa && dest->dest.reg.reg->is_packed;
332 /*
333 * validate that the instruction doesn't write to components not in the
334 * register/SSA value
335 */
336 validate_assert(state, is_packed || !(dest->write_mask & ~((1 << dest_size) - 1)));
337
338 /* validate that saturate is only ever used on instructions with
339 * destinations of type float
340 */
341 nir_alu_instr *alu = nir_instr_as_alu(state->instr);
342 validate_assert(state,
343 (nir_alu_type_get_base_type(nir_op_infos[alu->op].output_type) ==
344 nir_type_float) ||
345 !dest->saturate);
346
347 validate_dest(&dest->dest, state, 0, 0);
348 }
349
350 static void
351 validate_alu_instr(nir_alu_instr *instr, validate_state *state)
352 {
353 validate_assert(state, instr->op < nir_num_opcodes);
354
355 unsigned instr_bit_size = 0;
356 for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++) {
357 nir_alu_type src_type = nir_op_infos[instr->op].input_types[i];
358 unsigned src_bit_size = nir_src_bit_size(instr->src[i].src);
359 if (nir_alu_type_get_type_size(src_type)) {
360 validate_assert(state, src_bit_size == nir_alu_type_get_type_size(src_type));
361 } else if (instr_bit_size) {
362 validate_assert(state, src_bit_size == instr_bit_size);
363 } else {
364 instr_bit_size = src_bit_size;
365 }
366
367 if (nir_alu_type_get_base_type(src_type) == nir_type_float) {
368 /* 8-bit float isn't a thing */
369 validate_assert(state, src_bit_size == 16 || src_bit_size == 32 ||
370 src_bit_size == 64);
371 }
372
373 validate_alu_src(instr, i, state);
374 }
375
376 nir_alu_type dest_type = nir_op_infos[instr->op].output_type;
377 unsigned dest_bit_size = nir_dest_bit_size(instr->dest.dest);
378 if (nir_alu_type_get_type_size(dest_type)) {
379 validate_assert(state, dest_bit_size == nir_alu_type_get_type_size(dest_type));
380 } else if (instr_bit_size) {
381 validate_assert(state, dest_bit_size == instr_bit_size);
382 } else {
383 /* The only unsized thing is the destination so it's vacuously valid */
384 }
385
386 if (nir_alu_type_get_base_type(dest_type) == nir_type_float) {
387 /* 8-bit float isn't a thing */
388 validate_assert(state, dest_bit_size == 16 || dest_bit_size == 32 ||
389 dest_bit_size == 64);
390 }
391
392 validate_alu_dest(instr, state);
393 }
394
395 static void
396 validate_var_use(nir_variable *var, validate_state *state)
397 {
398 struct hash_entry *entry = _mesa_hash_table_search(state->var_defs, var);
399 validate_assert(state, entry);
400 if (var->data.mode == nir_var_function)
401 validate_assert(state, (nir_function_impl *) entry->data == state->impl);
402 }
403
404 static void
405 validate_deref_instr(nir_deref_instr *instr, validate_state *state)
406 {
407 if (instr->deref_type == nir_deref_type_var) {
408 /* Variable dereferences are stupid simple. */
409 validate_assert(state, instr->mode == instr->var->data.mode);
410 validate_assert(state, instr->type == instr->var->type);
411 validate_var_use(instr->var, state);
412 } else if (instr->deref_type == nir_deref_type_cast) {
413 /* For cast, we simply have to trust the instruction. It's up to
414 * lowering passes and front/back-ends to make them sane.
415 */
416 validate_src(&instr->parent, state, 0, 0);
417
418 /* We just validate that the type and mode are there */
419 validate_assert(state, instr->mode);
420 validate_assert(state, instr->type);
421 } else {
422 /* We require the parent to be SSA. This may be lifted in the future */
423 validate_assert(state, instr->parent.is_ssa);
424
425 /* The parent pointer value must have the same number of components
426 * as the destination.
427 */
428 validate_src(&instr->parent, state, nir_dest_bit_size(instr->dest),
429 nir_dest_num_components(instr->dest));
430
431 nir_instr *parent_instr = instr->parent.ssa->parent_instr;
432
433 /* The parent must come from another deref instruction */
434 validate_assert(state, parent_instr->type == nir_instr_type_deref);
435
436 nir_deref_instr *parent = nir_instr_as_deref(parent_instr);
437
438 validate_assert(state, instr->mode == parent->mode);
439
440 switch (instr->deref_type) {
441 case nir_deref_type_struct:
442 validate_assert(state, glsl_type_is_struct(parent->type));
443 validate_assert(state,
444 instr->strct.index < glsl_get_length(parent->type));
445 validate_assert(state, instr->type ==
446 glsl_get_struct_field(parent->type, instr->strct.index));
447 break;
448
449 case nir_deref_type_array:
450 case nir_deref_type_array_wildcard:
451 if (instr->mode == nir_var_ubo ||
452 instr->mode == nir_var_ssbo ||
453 instr->mode == nir_var_shared) {
454 /* Shared variables and UBO/SSBOs have a bit more relaxed rules
455 * because we need to be able to handle array derefs on vectors.
456 * Fortunately, nir_lower_io handles these just fine.
457 */
458 validate_assert(state, glsl_type_is_array(parent->type) ||
459 glsl_type_is_matrix(parent->type) ||
460 glsl_type_is_vector(parent->type));
461 } else {
462 /* Most of NIR cannot handle array derefs on vectors */
463 validate_assert(state, glsl_type_is_array(parent->type) ||
464 glsl_type_is_matrix(parent->type));
465 }
466 validate_assert(state,
467 instr->type == glsl_get_array_element(parent->type));
468
469 if (instr->deref_type == nir_deref_type_array) {
470 validate_src(&instr->arr.index, state,
471 nir_dest_bit_size(instr->dest), 1);
472 }
473 break;
474
475 case nir_deref_type_ptr_as_array:
476 /* ptr_as_array derefs must have a parent that is either an array,
477 * ptr_as_array, or cast. If the parent is a cast, we get the stride
478 * information (if any) from the cast deref.
479 */
480 validate_assert(state,
481 parent->deref_type == nir_deref_type_array ||
482 parent->deref_type == nir_deref_type_ptr_as_array ||
483 parent->deref_type == nir_deref_type_cast);
484 validate_src(&instr->arr.index, state,
485 nir_dest_bit_size(instr->dest), 1);
486 break;
487
488 default:
489 unreachable("Invalid deref instruction type");
490 }
491 }
492
493 /* We intentionally don't validate the size of the destination because we
494 * want to let other compiler components such as SPIR-V decide how big
495 * pointers should be.
496 */
497 validate_dest(&instr->dest, state, 0, 0);
498
499 /* Deref instructions as if conditions don't make sense because if
500 * conditions expect well-formed Booleans. If you want to compare with
501 * NULL, an explicit comparison operation should be used.
502 */
503 validate_assert(state, list_empty(&instr->dest.ssa.if_uses));
504 }
505
506 static void
507 validate_intrinsic_instr(nir_intrinsic_instr *instr, validate_state *state)
508 {
509 unsigned dest_bit_size = 0;
510 unsigned src_bit_sizes[NIR_INTRINSIC_MAX_INPUTS] = { 0, };
511 switch (instr->intrinsic) {
512 case nir_intrinsic_load_param: {
513 unsigned param_idx = nir_intrinsic_param_idx(instr);
514 validate_assert(state, param_idx < state->impl->function->num_params);
515 nir_parameter *param = &state->impl->function->params[param_idx];
516 validate_assert(state, instr->num_components == param->num_components);
517 dest_bit_size = param->bit_size;
518 break;
519 }
520
521 case nir_intrinsic_load_deref: {
522 nir_deref_instr *src = nir_src_as_deref(instr->src[0]);
523 validate_assert(state, glsl_type_is_vector_or_scalar(src->type) ||
524 (src->mode == nir_var_uniform &&
525 glsl_get_base_type(src->type) == GLSL_TYPE_SUBROUTINE));
526 validate_assert(state, instr->num_components ==
527 glsl_get_vector_elements(src->type));
528 dest_bit_size = glsl_get_bit_size(src->type);
529 break;
530 }
531
532 case nir_intrinsic_store_deref: {
533 nir_deref_instr *dst = nir_src_as_deref(instr->src[0]);
534 validate_assert(state, glsl_type_is_vector_or_scalar(dst->type));
535 validate_assert(state, instr->num_components ==
536 glsl_get_vector_elements(dst->type));
537 src_bit_sizes[1] = glsl_get_bit_size(dst->type);
538 validate_assert(state, (dst->mode & (nir_var_shader_in |
539 nir_var_uniform)) == 0);
540 validate_assert(state, (nir_intrinsic_write_mask(instr) & ~((1 << instr->num_components) - 1)) == 0);
541 break;
542 }
543
544 case nir_intrinsic_copy_deref: {
545 nir_deref_instr *dst = nir_src_as_deref(instr->src[0]);
546 nir_deref_instr *src = nir_src_as_deref(instr->src[1]);
547 validate_assert(state, dst->type == src->type);
548 validate_assert(state, (dst->mode & (nir_var_shader_in |
549 nir_var_uniform)) == 0);
550 break;
551 }
552
553 default:
554 break;
555 }
556
557 unsigned num_srcs = nir_intrinsic_infos[instr->intrinsic].num_srcs;
558 for (unsigned i = 0; i < num_srcs; i++) {
559 unsigned components_read = nir_intrinsic_src_components(instr, i);
560
561 validate_assert(state, components_read > 0);
562
563 validate_src(&instr->src[i], state, src_bit_sizes[i], components_read);
564 }
565
566 if (nir_intrinsic_infos[instr->intrinsic].has_dest) {
567 unsigned components_written = nir_intrinsic_dest_components(instr);
568
569 validate_assert(state, components_written > 0);
570
571 validate_dest(&instr->dest, state, dest_bit_size, components_written);
572 }
573 }
574
575 static void
576 validate_tex_instr(nir_tex_instr *instr, validate_state *state)
577 {
578 bool src_type_seen[nir_num_tex_src_types];
579 for (unsigned i = 0; i < nir_num_tex_src_types; i++)
580 src_type_seen[i] = false;
581
582 for (unsigned i = 0; i < instr->num_srcs; i++) {
583 validate_assert(state, !src_type_seen[instr->src[i].src_type]);
584 src_type_seen[instr->src[i].src_type] = true;
585 validate_src(&instr->src[i].src, state,
586 0, nir_tex_instr_src_size(instr, i));
587 }
588
589 validate_dest(&instr->dest, state, 0, nir_tex_instr_dest_size(instr));
590 }
591
592 static void
593 validate_call_instr(nir_call_instr *instr, validate_state *state)
594 {
595 validate_assert(state, instr->num_params == instr->callee->num_params);
596
597 for (unsigned i = 0; i < instr->num_params; i++) {
598 validate_src(&instr->params[i], state,
599 instr->callee->params[i].bit_size,
600 instr->callee->params[i].num_components);
601 }
602 }
603
604 static void
605 validate_load_const_instr(nir_load_const_instr *instr, validate_state *state)
606 {
607 validate_ssa_def(&instr->def, state);
608 }
609
610 static void
611 validate_ssa_undef_instr(nir_ssa_undef_instr *instr, validate_state *state)
612 {
613 validate_ssa_def(&instr->def, state);
614 }
615
616 static void
617 validate_phi_instr(nir_phi_instr *instr, validate_state *state)
618 {
619 /*
620 * don't validate the sources until we get to them from their predecessor
621 * basic blocks, to avoid validating an SSA use before its definition.
622 */
623
624 validate_dest(&instr->dest, state, 0, 0);
625
626 exec_list_validate(&instr->srcs);
627 validate_assert(state, exec_list_length(&instr->srcs) ==
628 state->block->predecessors->entries);
629 }
630
631 static void
632 validate_instr(nir_instr *instr, validate_state *state)
633 {
634 validate_assert(state, instr->block == state->block);
635
636 state->instr = instr;
637
638 switch (instr->type) {
639 case nir_instr_type_alu:
640 validate_alu_instr(nir_instr_as_alu(instr), state);
641 break;
642
643 case nir_instr_type_deref:
644 validate_deref_instr(nir_instr_as_deref(instr), state);
645 break;
646
647 case nir_instr_type_call:
648 validate_call_instr(nir_instr_as_call(instr), state);
649 break;
650
651 case nir_instr_type_intrinsic:
652 validate_intrinsic_instr(nir_instr_as_intrinsic(instr), state);
653 break;
654
655 case nir_instr_type_tex:
656 validate_tex_instr(nir_instr_as_tex(instr), state);
657 break;
658
659 case nir_instr_type_load_const:
660 validate_load_const_instr(nir_instr_as_load_const(instr), state);
661 break;
662
663 case nir_instr_type_phi:
664 validate_phi_instr(nir_instr_as_phi(instr), state);
665 break;
666
667 case nir_instr_type_ssa_undef:
668 validate_ssa_undef_instr(nir_instr_as_ssa_undef(instr), state);
669 break;
670
671 case nir_instr_type_jump:
672 break;
673
674 default:
675 validate_assert(state, !"Invalid ALU instruction type");
676 break;
677 }
678
679 state->instr = NULL;
680 }
681
682 static void
683 validate_phi_src(nir_phi_instr *instr, nir_block *pred, validate_state *state)
684 {
685 state->instr = &instr->instr;
686
687 validate_assert(state, instr->dest.is_ssa);
688
689 exec_list_validate(&instr->srcs);
690 nir_foreach_phi_src(src, instr) {
691 if (src->pred == pred) {
692 validate_assert(state, src->src.is_ssa);
693 validate_src(&src->src, state, instr->dest.ssa.bit_size,
694 instr->dest.ssa.num_components);
695 state->instr = NULL;
696 return;
697 }
698 }
699
700 abort();
701 }
702
703 static void
704 validate_phi_srcs(nir_block *block, nir_block *succ, validate_state *state)
705 {
706 nir_foreach_instr(instr, succ) {
707 if (instr->type != nir_instr_type_phi)
708 break;
709
710 validate_phi_src(nir_instr_as_phi(instr), block, state);
711 }
712 }
713
714 static void validate_cf_node(nir_cf_node *node, validate_state *state);
715
716 static void
717 validate_block(nir_block *block, validate_state *state)
718 {
719 validate_assert(state, block->cf_node.parent == state->parent_node);
720
721 state->block = block;
722
723 exec_list_validate(&block->instr_list);
724 nir_foreach_instr(instr, block) {
725 if (instr->type == nir_instr_type_phi) {
726 validate_assert(state, instr == nir_block_first_instr(block) ||
727 nir_instr_prev(instr)->type == nir_instr_type_phi);
728 }
729
730 if (instr->type == nir_instr_type_jump) {
731 validate_assert(state, instr == nir_block_last_instr(block));
732 }
733
734 validate_instr(instr, state);
735 }
736
737 validate_assert(state, block->successors[0] != NULL);
738 validate_assert(state, block->successors[0] != block->successors[1]);
739
740 for (unsigned i = 0; i < 2; i++) {
741 if (block->successors[i] != NULL) {
742 struct set_entry *entry =
743 _mesa_set_search(block->successors[i]->predecessors, block);
744 validate_assert(state, entry);
745
746 validate_phi_srcs(block, block->successors[i], state);
747 }
748 }
749
750 set_foreach(block->predecessors, entry) {
751 const nir_block *pred = entry->key;
752 validate_assert(state, pred->successors[0] == block ||
753 pred->successors[1] == block);
754 }
755
756 if (!exec_list_is_empty(&block->instr_list) &&
757 nir_block_last_instr(block)->type == nir_instr_type_jump) {
758 validate_assert(state, block->successors[1] == NULL);
759 nir_jump_instr *jump = nir_instr_as_jump(nir_block_last_instr(block));
760 switch (jump->type) {
761 case nir_jump_break: {
762 nir_block *after =
763 nir_cf_node_as_block(nir_cf_node_next(&state->loop->cf_node));
764 validate_assert(state, block->successors[0] == after);
765 break;
766 }
767
768 case nir_jump_continue: {
769 nir_block *first = nir_loop_first_block(state->loop);
770 validate_assert(state, block->successors[0] == first);
771 break;
772 }
773
774 case nir_jump_return:
775 validate_assert(state, block->successors[0] == state->impl->end_block);
776 break;
777
778 default:
779 unreachable("bad jump type");
780 }
781 } else {
782 nir_cf_node *next = nir_cf_node_next(&block->cf_node);
783 if (next == NULL) {
784 switch (state->parent_node->type) {
785 case nir_cf_node_loop: {
786 nir_block *first = nir_loop_first_block(state->loop);
787 validate_assert(state, block->successors[0] == first);
788 /* due to the hack for infinite loops, block->successors[1] may
789 * point to the block after the loop.
790 */
791 break;
792 }
793
794 case nir_cf_node_if: {
795 nir_block *after =
796 nir_cf_node_as_block(nir_cf_node_next(state->parent_node));
797 validate_assert(state, block->successors[0] == after);
798 validate_assert(state, block->successors[1] == NULL);
799 break;
800 }
801
802 case nir_cf_node_function:
803 validate_assert(state, block->successors[0] == state->impl->end_block);
804 validate_assert(state, block->successors[1] == NULL);
805 break;
806
807 default:
808 unreachable("unknown control flow node type");
809 }
810 } else {
811 if (next->type == nir_cf_node_if) {
812 nir_if *if_stmt = nir_cf_node_as_if(next);
813 validate_assert(state, block->successors[0] ==
814 nir_if_first_then_block(if_stmt));
815 validate_assert(state, block->successors[1] ==
816 nir_if_first_else_block(if_stmt));
817 } else {
818 validate_assert(state, next->type == nir_cf_node_loop);
819 nir_loop *loop = nir_cf_node_as_loop(next);
820 validate_assert(state, block->successors[0] ==
821 nir_loop_first_block(loop));
822 validate_assert(state, block->successors[1] == NULL);
823 }
824 }
825 }
826 }
827
828 static void
829 validate_if(nir_if *if_stmt, validate_state *state)
830 {
831 state->if_stmt = if_stmt;
832
833 validate_assert(state, !exec_node_is_head_sentinel(if_stmt->cf_node.node.prev));
834 nir_cf_node *prev_node = nir_cf_node_prev(&if_stmt->cf_node);
835 validate_assert(state, prev_node->type == nir_cf_node_block);
836
837 validate_assert(state, !exec_node_is_tail_sentinel(if_stmt->cf_node.node.next));
838 nir_cf_node *next_node = nir_cf_node_next(&if_stmt->cf_node);
839 validate_assert(state, next_node->type == nir_cf_node_block);
840
841 validate_src(&if_stmt->condition, state, 0, 1);
842
843 validate_assert(state, !exec_list_is_empty(&if_stmt->then_list));
844 validate_assert(state, !exec_list_is_empty(&if_stmt->else_list));
845
846 nir_cf_node *old_parent = state->parent_node;
847 state->parent_node = &if_stmt->cf_node;
848
849 exec_list_validate(&if_stmt->then_list);
850 foreach_list_typed(nir_cf_node, cf_node, node, &if_stmt->then_list) {
851 validate_cf_node(cf_node, state);
852 }
853
854 exec_list_validate(&if_stmt->else_list);
855 foreach_list_typed(nir_cf_node, cf_node, node, &if_stmt->else_list) {
856 validate_cf_node(cf_node, state);
857 }
858
859 state->parent_node = old_parent;
860 state->if_stmt = NULL;
861 }
862
863 static void
864 validate_loop(nir_loop *loop, validate_state *state)
865 {
866 validate_assert(state, !exec_node_is_head_sentinel(loop->cf_node.node.prev));
867 nir_cf_node *prev_node = nir_cf_node_prev(&loop->cf_node);
868 validate_assert(state, prev_node->type == nir_cf_node_block);
869
870 validate_assert(state, !exec_node_is_tail_sentinel(loop->cf_node.node.next));
871 nir_cf_node *next_node = nir_cf_node_next(&loop->cf_node);
872 validate_assert(state, next_node->type == nir_cf_node_block);
873
874 validate_assert(state, !exec_list_is_empty(&loop->body));
875
876 nir_cf_node *old_parent = state->parent_node;
877 state->parent_node = &loop->cf_node;
878 nir_loop *old_loop = state->loop;
879 state->loop = loop;
880
881 exec_list_validate(&loop->body);
882 foreach_list_typed(nir_cf_node, cf_node, node, &loop->body) {
883 validate_cf_node(cf_node, state);
884 }
885
886 state->parent_node = old_parent;
887 state->loop = old_loop;
888 }
889
890 static void
891 validate_cf_node(nir_cf_node *node, validate_state *state)
892 {
893 validate_assert(state, node->parent == state->parent_node);
894
895 switch (node->type) {
896 case nir_cf_node_block:
897 validate_block(nir_cf_node_as_block(node), state);
898 break;
899
900 case nir_cf_node_if:
901 validate_if(nir_cf_node_as_if(node), state);
902 break;
903
904 case nir_cf_node_loop:
905 validate_loop(nir_cf_node_as_loop(node), state);
906 break;
907
908 default:
909 unreachable("Invalid CF node type");
910 }
911 }
912
913 static void
914 prevalidate_reg_decl(nir_register *reg, bool is_global, validate_state *state)
915 {
916 validate_assert(state, reg->is_global == is_global);
917
918 if (is_global)
919 validate_assert(state, reg->index < state->shader->reg_alloc);
920 else
921 validate_assert(state, reg->index < state->impl->reg_alloc);
922 validate_assert(state, !BITSET_TEST(state->regs_found, reg->index));
923 BITSET_SET(state->regs_found, reg->index);
924
925 list_validate(&reg->uses);
926 list_validate(&reg->defs);
927 list_validate(&reg->if_uses);
928
929 reg_validate_state *reg_state = ralloc(state->regs, reg_validate_state);
930 reg_state->uses = _mesa_set_create(reg_state, _mesa_hash_pointer,
931 _mesa_key_pointer_equal);
932 reg_state->if_uses = _mesa_set_create(reg_state, _mesa_hash_pointer,
933 _mesa_key_pointer_equal);
934 reg_state->defs = _mesa_set_create(reg_state, _mesa_hash_pointer,
935 _mesa_key_pointer_equal);
936
937 reg_state->where_defined = is_global ? NULL : state->impl;
938
939 _mesa_hash_table_insert(state->regs, reg, reg_state);
940 }
941
942 static void
943 postvalidate_reg_decl(nir_register *reg, validate_state *state)
944 {
945 struct hash_entry *entry = _mesa_hash_table_search(state->regs, reg);
946
947 assume(entry);
948 reg_validate_state *reg_state = (reg_validate_state *) entry->data;
949
950 nir_foreach_use(src, reg) {
951 struct set_entry *entry = _mesa_set_search(reg_state->uses, src);
952 validate_assert(state, entry);
953 _mesa_set_remove(reg_state->uses, entry);
954 }
955
956 if (reg_state->uses->entries != 0) {
957 printf("extra entries in register uses:\n");
958 set_foreach(reg_state->uses, entry)
959 printf("%p\n", entry->key);
960
961 abort();
962 }
963
964 nir_foreach_if_use(src, reg) {
965 struct set_entry *entry = _mesa_set_search(reg_state->if_uses, src);
966 validate_assert(state, entry);
967 _mesa_set_remove(reg_state->if_uses, entry);
968 }
969
970 if (reg_state->if_uses->entries != 0) {
971 printf("extra entries in register if_uses:\n");
972 set_foreach(reg_state->if_uses, entry)
973 printf("%p\n", entry->key);
974
975 abort();
976 }
977
978 nir_foreach_def(src, reg) {
979 struct set_entry *entry = _mesa_set_search(reg_state->defs, src);
980 validate_assert(state, entry);
981 _mesa_set_remove(reg_state->defs, entry);
982 }
983
984 if (reg_state->defs->entries != 0) {
985 printf("extra entries in register defs:\n");
986 set_foreach(reg_state->defs, entry)
987 printf("%p\n", entry->key);
988
989 abort();
990 }
991 }
992
993 static void
994 validate_var_decl(nir_variable *var, bool is_global, validate_state *state)
995 {
996 state->var = var;
997
998 validate_assert(state, is_global == nir_variable_is_global(var));
999
1000 /* Must have exactly one mode set */
1001 validate_assert(state, util_is_power_of_two_nonzero(var->data.mode));
1002
1003 if (var->data.compact) {
1004 /* The "compact" flag is only valid on arrays of scalars. */
1005 assert(glsl_type_is_array(var->type));
1006
1007 const struct glsl_type *type = glsl_get_array_element(var->type);
1008 if (nir_is_per_vertex_io(var, state->shader->info.stage)) {
1009 assert(glsl_type_is_array(type));
1010 assert(glsl_type_is_scalar(glsl_get_array_element(type)));
1011 } else {
1012 assert(glsl_type_is_scalar(type));
1013 }
1014 }
1015
1016 if (var->num_members > 0) {
1017 const struct glsl_type *without_array = glsl_without_array(var->type);
1018 validate_assert(state, glsl_type_is_struct(without_array));
1019 validate_assert(state, var->num_members == glsl_get_length(without_array));
1020 validate_assert(state, var->members != NULL);
1021 }
1022
1023 /*
1024 * TODO validate some things ir_validate.cpp does (requires more GLSL type
1025 * support)
1026 */
1027
1028 _mesa_hash_table_insert(state->var_defs, var,
1029 is_global ? NULL : state->impl);
1030
1031 state->var = NULL;
1032 }
1033
1034 static bool
1035 postvalidate_ssa_def(nir_ssa_def *def, void *void_state)
1036 {
1037 validate_state *state = void_state;
1038
1039 struct hash_entry *entry = _mesa_hash_table_search(state->ssa_defs, def);
1040
1041 assume(entry);
1042 ssa_def_validate_state *def_state = (ssa_def_validate_state *)entry->data;
1043
1044 nir_foreach_use(src, def) {
1045 struct set_entry *entry = _mesa_set_search(def_state->uses, src);
1046 validate_assert(state, entry);
1047 _mesa_set_remove(def_state->uses, entry);
1048 }
1049
1050 if (def_state->uses->entries != 0) {
1051 printf("extra entries in SSA def uses:\n");
1052 set_foreach(def_state->uses, entry)
1053 printf("%p\n", entry->key);
1054
1055 abort();
1056 }
1057
1058 nir_foreach_if_use(src, def) {
1059 struct set_entry *entry = _mesa_set_search(def_state->if_uses, src);
1060 validate_assert(state, entry);
1061 _mesa_set_remove(def_state->if_uses, entry);
1062 }
1063
1064 if (def_state->if_uses->entries != 0) {
1065 printf("extra entries in SSA def uses:\n");
1066 set_foreach(def_state->if_uses, entry)
1067 printf("%p\n", entry->key);
1068
1069 abort();
1070 }
1071
1072 return true;
1073 }
1074
1075 static void
1076 validate_function_impl(nir_function_impl *impl, validate_state *state)
1077 {
1078 validate_assert(state, impl->function->impl == impl);
1079 validate_assert(state, impl->cf_node.parent == NULL);
1080
1081 validate_assert(state, exec_list_is_empty(&impl->end_block->instr_list));
1082 validate_assert(state, impl->end_block->successors[0] == NULL);
1083 validate_assert(state, impl->end_block->successors[1] == NULL);
1084
1085 state->impl = impl;
1086 state->parent_node = &impl->cf_node;
1087
1088 exec_list_validate(&impl->locals);
1089 nir_foreach_variable(var, &impl->locals) {
1090 validate_var_decl(var, false, state);
1091 }
1092
1093 state->regs_found = realloc(state->regs_found,
1094 BITSET_WORDS(impl->reg_alloc) *
1095 sizeof(BITSET_WORD));
1096 memset(state->regs_found, 0, BITSET_WORDS(impl->reg_alloc) *
1097 sizeof(BITSET_WORD));
1098 exec_list_validate(&impl->registers);
1099 foreach_list_typed(nir_register, reg, node, &impl->registers) {
1100 prevalidate_reg_decl(reg, false, state);
1101 }
1102
1103 state->ssa_defs_found = realloc(state->ssa_defs_found,
1104 BITSET_WORDS(impl->ssa_alloc) *
1105 sizeof(BITSET_WORD));
1106 memset(state->ssa_defs_found, 0, BITSET_WORDS(impl->ssa_alloc) *
1107 sizeof(BITSET_WORD));
1108 exec_list_validate(&impl->body);
1109 foreach_list_typed(nir_cf_node, node, node, &impl->body) {
1110 validate_cf_node(node, state);
1111 }
1112
1113 foreach_list_typed(nir_register, reg, node, &impl->registers) {
1114 postvalidate_reg_decl(reg, state);
1115 }
1116
1117 nir_foreach_block(block, impl) {
1118 nir_foreach_instr(instr, block)
1119 nir_foreach_ssa_def(instr, postvalidate_ssa_def, state);
1120 }
1121 }
1122
1123 static void
1124 validate_function(nir_function *func, validate_state *state)
1125 {
1126 if (func->impl != NULL) {
1127 validate_assert(state, func->impl->function == func);
1128 validate_function_impl(func->impl, state);
1129 }
1130 }
1131
1132 static void
1133 init_validate_state(validate_state *state)
1134 {
1135 state->regs = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
1136 _mesa_key_pointer_equal);
1137 state->ssa_defs = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
1138 _mesa_key_pointer_equal);
1139 state->ssa_defs_found = NULL;
1140 state->regs_found = NULL;
1141 state->var_defs = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
1142 _mesa_key_pointer_equal);
1143 state->errors = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
1144 _mesa_key_pointer_equal);
1145
1146 state->loop = NULL;
1147 state->instr = NULL;
1148 state->var = NULL;
1149 }
1150
1151 static void
1152 destroy_validate_state(validate_state *state)
1153 {
1154 _mesa_hash_table_destroy(state->regs, NULL);
1155 _mesa_hash_table_destroy(state->ssa_defs, NULL);
1156 free(state->ssa_defs_found);
1157 free(state->regs_found);
1158 _mesa_hash_table_destroy(state->var_defs, NULL);
1159 _mesa_hash_table_destroy(state->errors, NULL);
1160 }
1161
1162 static void
1163 dump_errors(validate_state *state, const char *when)
1164 {
1165 struct hash_table *errors = state->errors;
1166
1167 if (when) {
1168 fprintf(stderr, "NIR validation failed %s\n", when);
1169 fprintf(stderr, "%d errors:\n", _mesa_hash_table_num_entries(errors));
1170 } else {
1171 fprintf(stderr, "NIR validation failed with %d errors:\n",
1172 _mesa_hash_table_num_entries(errors));
1173 }
1174
1175 nir_print_shader_annotated(state->shader, stderr, errors);
1176
1177 if (_mesa_hash_table_num_entries(errors) > 0) {
1178 fprintf(stderr, "%d additional errors:\n",
1179 _mesa_hash_table_num_entries(errors));
1180 hash_table_foreach(errors, entry) {
1181 fprintf(stderr, "%s\n", (char *)entry->data);
1182 }
1183 }
1184
1185 abort();
1186 }
1187
1188 void
1189 nir_validate_shader(nir_shader *shader, const char *when)
1190 {
1191 static int should_validate = -1;
1192 if (should_validate < 0)
1193 should_validate = env_var_as_boolean("NIR_VALIDATE", true);
1194 if (!should_validate)
1195 return;
1196
1197 validate_state state;
1198 init_validate_state(&state);
1199
1200 state.shader = shader;
1201
1202 exec_list_validate(&shader->uniforms);
1203 nir_foreach_variable(var, &shader->uniforms) {
1204 validate_var_decl(var, true, &state);
1205 }
1206
1207 exec_list_validate(&shader->inputs);
1208 nir_foreach_variable(var, &shader->inputs) {
1209 validate_var_decl(var, true, &state);
1210 }
1211
1212 exec_list_validate(&shader->outputs);
1213 nir_foreach_variable(var, &shader->outputs) {
1214 validate_var_decl(var, true, &state);
1215 }
1216
1217 exec_list_validate(&shader->shared);
1218 nir_foreach_variable(var, &shader->shared) {
1219 validate_var_decl(var, true, &state);
1220 }
1221
1222 exec_list_validate(&shader->globals);
1223 nir_foreach_variable(var, &shader->globals) {
1224 validate_var_decl(var, true, &state);
1225 }
1226
1227 exec_list_validate(&shader->system_values);
1228 nir_foreach_variable(var, &shader->system_values) {
1229 validate_var_decl(var, true, &state);
1230 }
1231
1232 state.regs_found = realloc(state.regs_found,
1233 BITSET_WORDS(shader->reg_alloc) *
1234 sizeof(BITSET_WORD));
1235 memset(state.regs_found, 0, BITSET_WORDS(shader->reg_alloc) *
1236 sizeof(BITSET_WORD));
1237 exec_list_validate(&shader->registers);
1238 foreach_list_typed(nir_register, reg, node, &shader->registers) {
1239 prevalidate_reg_decl(reg, true, &state);
1240 }
1241
1242 exec_list_validate(&shader->functions);
1243 foreach_list_typed(nir_function, func, node, &shader->functions) {
1244 validate_function(func, &state);
1245 }
1246
1247 foreach_list_typed(nir_register, reg, node, &shader->registers) {
1248 postvalidate_reg_decl(reg, &state);
1249 }
1250
1251 if (_mesa_hash_table_num_entries(state.errors) > 0)
1252 dump_errors(&state, when);
1253
1254 destroy_validate_state(&state);
1255 }
1256
1257 #endif /* NDEBUG */