bbbc2089db3f21960f49440fa014be07475afd53
[mesa.git] / src / compiler / nir / nir.h
1 /*
2 * Copyright © 2014 Connor Abbott
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 #pragma once
29
30 #include "util/hash_table.h"
31 #include "compiler/glsl/list.h"
32 #include "GL/gl.h" /* GLenum */
33 #include "util/list.h"
34 #include "util/ralloc.h"
35 #include "util/set.h"
36 #include "util/bitset.h"
37 #include "compiler/nir_types.h"
38 #include "compiler/shader_enums.h"
39 #include <stdio.h>
40
41 #include "nir_opcodes.h"
42
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46
47 struct gl_program;
48 struct gl_shader_program;
49
50 #define NIR_FALSE 0u
51 #define NIR_TRUE (~0u)
52
53 /** Defines a cast function
54 *
55 * This macro defines a cast function from in_type to out_type where
56 * out_type is some structure type that contains a field of type out_type.
57 *
58 * Note that you have to be a bit careful as the generated cast function
59 * destroys constness.
60 */
61 #define NIR_DEFINE_CAST(name, in_type, out_type, field) \
62 static inline out_type * \
63 name(const in_type *parent) \
64 { \
65 return exec_node_data(out_type, parent, field); \
66 }
67
68 struct nir_function;
69 struct nir_shader;
70 struct nir_instr;
71
72
73 /**
74 * Description of built-in state associated with a uniform
75 *
76 * \sa nir_variable::state_slots
77 */
78 typedef struct {
79 int tokens[5];
80 int swizzle;
81 } nir_state_slot;
82
83 typedef enum {
84 nir_var_shader_in = (1 << 0),
85 nir_var_shader_out = (1 << 1),
86 nir_var_global = (1 << 2),
87 nir_var_local = (1 << 3),
88 nir_var_uniform = (1 << 4),
89 nir_var_shader_storage = (1 << 5),
90 nir_var_system_value = (1 << 6),
91 nir_var_param = (1 << 7),
92 nir_var_shared = (1 << 8),
93 nir_var_all = ~0,
94 } nir_variable_mode;
95
96 /**
97 * Data stored in an nir_constant
98 */
99 union nir_constant_data {
100 unsigned u[16];
101 int i[16];
102 float f[16];
103 bool b[16];
104 double d[16];
105 };
106
107 typedef struct nir_constant {
108 /**
109 * Value of the constant.
110 *
111 * The field used to back the values supplied by the constant is determined
112 * by the type associated with the \c nir_variable. Constants may be
113 * scalars, vectors, or matrices.
114 */
115 union nir_constant_data value;
116
117 /* we could get this from the var->type but makes clone *much* easier to
118 * not have to care about the type.
119 */
120 unsigned num_elements;
121
122 /* Array elements / Structure Fields */
123 struct nir_constant **elements;
124 } nir_constant;
125
126 /**
127 * \brief Layout qualifiers for gl_FragDepth.
128 *
129 * The AMD/ARB_conservative_depth extensions allow gl_FragDepth to be redeclared
130 * with a layout qualifier.
131 */
132 typedef enum {
133 nir_depth_layout_none, /**< No depth layout is specified. */
134 nir_depth_layout_any,
135 nir_depth_layout_greater,
136 nir_depth_layout_less,
137 nir_depth_layout_unchanged
138 } nir_depth_layout;
139
140 /**
141 * Either a uniform, global variable, shader input, or shader output. Based on
142 * ir_variable - it should be easy to translate between the two.
143 */
144
145 typedef struct nir_variable {
146 struct exec_node node;
147
148 /**
149 * Declared type of the variable
150 */
151 const struct glsl_type *type;
152
153 /**
154 * Declared name of the variable
155 */
156 char *name;
157
158 struct nir_variable_data {
159 /**
160 * Storage class of the variable.
161 *
162 * \sa nir_variable_mode
163 */
164 nir_variable_mode mode;
165
166 /**
167 * Is the variable read-only?
168 *
169 * This is set for variables declared as \c const, shader inputs,
170 * and uniforms.
171 */
172 unsigned read_only:1;
173 unsigned centroid:1;
174 unsigned sample:1;
175 unsigned patch:1;
176 unsigned invariant:1;
177
178 /**
179 * Interpolation mode for shader inputs / outputs
180 *
181 * \sa glsl_interp_qualifier
182 */
183 unsigned interpolation:2;
184
185 /**
186 * \name ARB_fragment_coord_conventions
187 * @{
188 */
189 unsigned origin_upper_left:1;
190 unsigned pixel_center_integer:1;
191 /*@}*/
192
193 /**
194 * Was the location explicitly set in the shader?
195 *
196 * If the location is explicitly set in the shader, it \b cannot be changed
197 * by the linker or by the API (e.g., calls to \c glBindAttribLocation have
198 * no effect).
199 */
200 unsigned explicit_location:1;
201 unsigned explicit_index:1;
202
203 /**
204 * Was an initial binding explicitly set in the shader?
205 *
206 * If so, constant_initializer contains an integer nir_constant
207 * representing the initial binding point.
208 */
209 unsigned explicit_binding:1;
210
211 /**
212 * Does this variable have an initializer?
213 *
214 * This is used by the linker to cross-validiate initializers of global
215 * variables.
216 */
217 unsigned has_initializer:1;
218
219 /**
220 * If non-zero, then this variable may be packed along with other variables
221 * into a single varying slot, so this offset should be applied when
222 * accessing components. For example, an offset of 1 means that the x
223 * component of this variable is actually stored in component y of the
224 * location specified by \c location.
225 */
226 unsigned location_frac:2;
227
228 /**
229 * \brief Layout qualifier for gl_FragDepth.
230 *
231 * This is not equal to \c ir_depth_layout_none if and only if this
232 * variable is \c gl_FragDepth and a layout qualifier is specified.
233 */
234 nir_depth_layout depth_layout;
235
236 /**
237 * Storage location of the base of this variable
238 *
239 * The precise meaning of this field depends on the nature of the variable.
240 *
241 * - Vertex shader input: one of the values from \c gl_vert_attrib.
242 * - Vertex shader output: one of the values from \c gl_varying_slot.
243 * - Geometry shader input: one of the values from \c gl_varying_slot.
244 * - Geometry shader output: one of the values from \c gl_varying_slot.
245 * - Fragment shader input: one of the values from \c gl_varying_slot.
246 * - Fragment shader output: one of the values from \c gl_frag_result.
247 * - Uniforms: Per-stage uniform slot number for default uniform block.
248 * - Uniforms: Index within the uniform block definition for UBO members.
249 * - Non-UBO Uniforms: uniform slot number.
250 * - Other: This field is not currently used.
251 *
252 * If the variable is a uniform, shader input, or shader output, and the
253 * slot has not been assigned, the value will be -1.
254 */
255 int location;
256
257 /**
258 * The actual location of the variable in the IR. Only valid for inputs
259 * and outputs.
260 */
261 unsigned int driver_location;
262
263 /**
264 * output index for dual source blending.
265 */
266 int index;
267
268 /**
269 * Descriptor set binding for sampler or UBO.
270 */
271 int descriptor_set;
272
273 /**
274 * Initial binding point for a sampler or UBO.
275 *
276 * For array types, this represents the binding point for the first element.
277 */
278 int binding;
279
280 /**
281 * Location an atomic counter is stored at.
282 */
283 unsigned offset;
284
285 /**
286 * ARB_shader_image_load_store qualifiers.
287 */
288 struct {
289 bool read_only; /**< "readonly" qualifier. */
290 bool write_only; /**< "writeonly" qualifier. */
291 bool coherent;
292 bool _volatile;
293 bool restrict_flag;
294
295 /** Image internal format if specified explicitly, otherwise GL_NONE. */
296 GLenum format;
297 } image;
298
299 /**
300 * Highest element accessed with a constant expression array index
301 *
302 * Not used for non-array variables.
303 */
304 unsigned max_array_access;
305
306 } data;
307
308 /**
309 * Built-in state that backs this uniform
310 *
311 * Once set at variable creation, \c state_slots must remain invariant.
312 * This is because, ideally, this array would be shared by all clones of
313 * this variable in the IR tree. In other words, we'd really like for it
314 * to be a fly-weight.
315 *
316 * If the variable is not a uniform, \c num_state_slots will be zero and
317 * \c state_slots will be \c NULL.
318 */
319 /*@{*/
320 unsigned num_state_slots; /**< Number of state slots used */
321 nir_state_slot *state_slots; /**< State descriptors. */
322 /*@}*/
323
324 /**
325 * Constant expression assigned in the initializer of the variable
326 */
327 nir_constant *constant_initializer;
328
329 /**
330 * For variables that are in an interface block or are an instance of an
331 * interface block, this is the \c GLSL_TYPE_INTERFACE type for that block.
332 *
333 * \sa ir_variable::location
334 */
335 const struct glsl_type *interface_type;
336 } nir_variable;
337
338 #define nir_foreach_variable(var, var_list) \
339 foreach_list_typed(nir_variable, var, node, var_list)
340
341 #define nir_foreach_variable_safe(var, var_list) \
342 foreach_list_typed_safe(nir_variable, var, node, var_list)
343
344 static inline bool
345 nir_variable_is_global(const nir_variable *var)
346 {
347 return var->data.mode != nir_var_local && var->data.mode != nir_var_param;
348 }
349
350 typedef struct nir_register {
351 struct exec_node node;
352
353 unsigned num_components; /** < number of vector components */
354 unsigned num_array_elems; /** < size of array (0 for no array) */
355
356 /* The bit-size of each channel; must be one of 8, 16, 32, or 64 */
357 uint8_t bit_size;
358
359 /** generic register index. */
360 unsigned index;
361
362 /** only for debug purposes, can be NULL */
363 const char *name;
364
365 /** whether this register is local (per-function) or global (per-shader) */
366 bool is_global;
367
368 /**
369 * If this flag is set to true, then accessing channels >= num_components
370 * is well-defined, and simply spills over to the next array element. This
371 * is useful for backends that can do per-component accessing, in
372 * particular scalar backends. By setting this flag and making
373 * num_components equal to 1, structures can be packed tightly into
374 * registers and then registers can be accessed per-component to get to
375 * each structure member, even if it crosses vec4 boundaries.
376 */
377 bool is_packed;
378
379 /** set of nir_src's where this register is used (read from) */
380 struct list_head uses;
381
382 /** set of nir_dest's where this register is defined (written to) */
383 struct list_head defs;
384
385 /** set of nir_if's where this register is used as a condition */
386 struct list_head if_uses;
387 } nir_register;
388
389 typedef enum {
390 nir_instr_type_alu,
391 nir_instr_type_call,
392 nir_instr_type_tex,
393 nir_instr_type_intrinsic,
394 nir_instr_type_load_const,
395 nir_instr_type_jump,
396 nir_instr_type_ssa_undef,
397 nir_instr_type_phi,
398 nir_instr_type_parallel_copy,
399 } nir_instr_type;
400
401 typedef struct nir_instr {
402 struct exec_node node;
403 nir_instr_type type;
404 struct nir_block *block;
405
406 /** generic instruction index. */
407 unsigned index;
408
409 /* A temporary for optimization and analysis passes to use for storing
410 * flags. For instance, DCE uses this to store the "dead/live" info.
411 */
412 uint8_t pass_flags;
413 } nir_instr;
414
415 static inline nir_instr *
416 nir_instr_next(nir_instr *instr)
417 {
418 struct exec_node *next = exec_node_get_next(&instr->node);
419 if (exec_node_is_tail_sentinel(next))
420 return NULL;
421 else
422 return exec_node_data(nir_instr, next, node);
423 }
424
425 static inline nir_instr *
426 nir_instr_prev(nir_instr *instr)
427 {
428 struct exec_node *prev = exec_node_get_prev(&instr->node);
429 if (exec_node_is_head_sentinel(prev))
430 return NULL;
431 else
432 return exec_node_data(nir_instr, prev, node);
433 }
434
435 static inline bool
436 nir_instr_is_first(nir_instr *instr)
437 {
438 return exec_node_is_head_sentinel(exec_node_get_prev(&instr->node));
439 }
440
441 static inline bool
442 nir_instr_is_last(nir_instr *instr)
443 {
444 return exec_node_is_tail_sentinel(exec_node_get_next(&instr->node));
445 }
446
447 typedef struct nir_ssa_def {
448 /** for debugging only, can be NULL */
449 const char* name;
450
451 /** generic SSA definition index. */
452 unsigned index;
453
454 /** Index into the live_in and live_out bitfields */
455 unsigned live_index;
456
457 nir_instr *parent_instr;
458
459 /** set of nir_instr's where this register is used (read from) */
460 struct list_head uses;
461
462 /** set of nir_if's where this register is used as a condition */
463 struct list_head if_uses;
464
465 uint8_t num_components;
466
467 /* The bit-size of each channel; must be one of 8, 16, 32, or 64 */
468 uint8_t bit_size;
469 } nir_ssa_def;
470
471 struct nir_src;
472
473 typedef struct {
474 nir_register *reg;
475 struct nir_src *indirect; /** < NULL for no indirect offset */
476 unsigned base_offset;
477
478 /* TODO use-def chain goes here */
479 } nir_reg_src;
480
481 typedef struct {
482 nir_instr *parent_instr;
483 struct list_head def_link;
484
485 nir_register *reg;
486 struct nir_src *indirect; /** < NULL for no indirect offset */
487 unsigned base_offset;
488
489 /* TODO def-use chain goes here */
490 } nir_reg_dest;
491
492 struct nir_if;
493
494 typedef struct nir_src {
495 union {
496 nir_instr *parent_instr;
497 struct nir_if *parent_if;
498 };
499
500 struct list_head use_link;
501
502 union {
503 nir_reg_src reg;
504 nir_ssa_def *ssa;
505 };
506
507 bool is_ssa;
508 } nir_src;
509
510 static inline nir_src
511 nir_src_init(void)
512 {
513 nir_src src = { { NULL } };
514 return src;
515 }
516
517 #define NIR_SRC_INIT nir_src_init()
518
519 #define nir_foreach_use(reg_or_ssa_def, src) \
520 list_for_each_entry(nir_src, src, &(reg_or_ssa_def)->uses, use_link)
521
522 #define nir_foreach_use_safe(reg_or_ssa_def, src) \
523 list_for_each_entry_safe(nir_src, src, &(reg_or_ssa_def)->uses, use_link)
524
525 #define nir_foreach_if_use(reg_or_ssa_def, src) \
526 list_for_each_entry(nir_src, src, &(reg_or_ssa_def)->if_uses, use_link)
527
528 #define nir_foreach_if_use_safe(reg_or_ssa_def, src) \
529 list_for_each_entry_safe(nir_src, src, &(reg_or_ssa_def)->if_uses, use_link)
530
531 typedef struct {
532 union {
533 nir_reg_dest reg;
534 nir_ssa_def ssa;
535 };
536
537 bool is_ssa;
538 } nir_dest;
539
540 static inline nir_dest
541 nir_dest_init(void)
542 {
543 nir_dest dest = { { { NULL } } };
544 return dest;
545 }
546
547 #define NIR_DEST_INIT nir_dest_init()
548
549 #define nir_foreach_def(reg, dest) \
550 list_for_each_entry(nir_dest, dest, &(reg)->defs, reg.def_link)
551
552 #define nir_foreach_def_safe(reg, dest) \
553 list_for_each_entry_safe(nir_dest, dest, &(reg)->defs, reg.def_link)
554
555 static inline nir_src
556 nir_src_for_ssa(nir_ssa_def *def)
557 {
558 nir_src src = NIR_SRC_INIT;
559
560 src.is_ssa = true;
561 src.ssa = def;
562
563 return src;
564 }
565
566 static inline nir_src
567 nir_src_for_reg(nir_register *reg)
568 {
569 nir_src src = NIR_SRC_INIT;
570
571 src.is_ssa = false;
572 src.reg.reg = reg;
573 src.reg.indirect = NULL;
574 src.reg.base_offset = 0;
575
576 return src;
577 }
578
579 static inline nir_dest
580 nir_dest_for_reg(nir_register *reg)
581 {
582 nir_dest dest = NIR_DEST_INIT;
583
584 dest.reg.reg = reg;
585
586 return dest;
587 }
588
589 static inline unsigned
590 nir_src_bit_size(nir_src src)
591 {
592 return src.is_ssa ? src.ssa->bit_size : src.reg.reg->bit_size;
593 }
594
595 static inline unsigned
596 nir_dest_bit_size(nir_dest dest)
597 {
598 return dest.is_ssa ? dest.ssa.bit_size : dest.reg.reg->bit_size;
599 }
600
601 void nir_src_copy(nir_src *dest, const nir_src *src, void *instr_or_if);
602 void nir_dest_copy(nir_dest *dest, const nir_dest *src, nir_instr *instr);
603
604 typedef struct {
605 nir_src src;
606
607 /**
608 * \name input modifiers
609 */
610 /*@{*/
611 /**
612 * For inputs interpreted as floating point, flips the sign bit. For
613 * inputs interpreted as integers, performs the two's complement negation.
614 */
615 bool negate;
616
617 /**
618 * Clears the sign bit for floating point values, and computes the integer
619 * absolute value for integers. Note that the negate modifier acts after
620 * the absolute value modifier, therefore if both are set then all inputs
621 * will become negative.
622 */
623 bool abs;
624 /*@}*/
625
626 /**
627 * For each input component, says which component of the register it is
628 * chosen from. Note that which elements of the swizzle are used and which
629 * are ignored are based on the write mask for most opcodes - for example,
630 * a statement like "foo.xzw = bar.zyx" would have a writemask of 1101b and
631 * a swizzle of {2, x, 1, 0} where x means "don't care."
632 */
633 uint8_t swizzle[4];
634 } nir_alu_src;
635
636 typedef struct {
637 nir_dest dest;
638
639 /**
640 * \name saturate output modifier
641 *
642 * Only valid for opcodes that output floating-point numbers. Clamps the
643 * output to between 0.0 and 1.0 inclusive.
644 */
645
646 bool saturate;
647
648 unsigned write_mask : 4; /* ignored if dest.is_ssa is true */
649 } nir_alu_dest;
650
651 typedef enum {
652 nir_type_invalid = 0, /* Not a valid type */
653 nir_type_float,
654 nir_type_int,
655 nir_type_uint,
656 nir_type_bool,
657 nir_type_bool32 = 32 | nir_type_bool,
658 nir_type_int8 = 8 | nir_type_int,
659 nir_type_int16 = 16 | nir_type_int,
660 nir_type_int32 = 32 | nir_type_int,
661 nir_type_int64 = 64 | nir_type_int,
662 nir_type_uint8 = 8 | nir_type_uint,
663 nir_type_uint16 = 16 | nir_type_uint,
664 nir_type_uint32 = 32 | nir_type_uint,
665 nir_type_uint64 = 64 | nir_type_uint,
666 nir_type_float16 = 16 | nir_type_float,
667 nir_type_float32 = 32 | nir_type_float,
668 nir_type_float64 = 64 | nir_type_float,
669 } nir_alu_type;
670
671 #define NIR_ALU_TYPE_SIZE_MASK 0xfffffff8
672 #define NIR_ALU_TYPE_BASE_TYPE_MASK 0x00000007
673
674 static inline unsigned
675 nir_alu_type_get_type_size(nir_alu_type type)
676 {
677 return type & NIR_ALU_TYPE_SIZE_MASK;
678 }
679
680 static inline unsigned
681 nir_alu_type_get_base_type(nir_alu_type type)
682 {
683 return type & NIR_ALU_TYPE_BASE_TYPE_MASK;
684 }
685
686 typedef enum {
687 NIR_OP_IS_COMMUTATIVE = (1 << 0),
688 NIR_OP_IS_ASSOCIATIVE = (1 << 1),
689 } nir_op_algebraic_property;
690
691 typedef struct {
692 const char *name;
693
694 unsigned num_inputs;
695
696 /**
697 * The number of components in the output
698 *
699 * If non-zero, this is the size of the output and input sizes are
700 * explicitly given; swizzle and writemask are still in effect, but if
701 * the output component is masked out, then the input component may
702 * still be in use.
703 *
704 * If zero, the opcode acts in the standard, per-component manner; the
705 * operation is performed on each component (except the ones that are
706 * masked out) with the input being taken from the input swizzle for
707 * that component.
708 *
709 * The size of some of the inputs may be given (i.e. non-zero) even
710 * though output_size is zero; in that case, the inputs with a zero
711 * size act per-component, while the inputs with non-zero size don't.
712 */
713 unsigned output_size;
714
715 /**
716 * The type of vector that the instruction outputs. Note that the
717 * staurate modifier is only allowed on outputs with the float type.
718 */
719
720 nir_alu_type output_type;
721
722 /**
723 * The number of components in each input
724 */
725 unsigned input_sizes[4];
726
727 /**
728 * The type of vector that each input takes. Note that negate and
729 * absolute value are only allowed on inputs with int or float type and
730 * behave differently on the two.
731 */
732 nir_alu_type input_types[4];
733
734 nir_op_algebraic_property algebraic_properties;
735 } nir_op_info;
736
737 extern const nir_op_info nir_op_infos[nir_num_opcodes];
738
739 typedef struct nir_alu_instr {
740 nir_instr instr;
741 nir_op op;
742
743 /** Indicates that this ALU instruction generates an exact value
744 *
745 * This is kind of a mixture of GLSL "precise" and "invariant" and not
746 * really equivalent to either. This indicates that the value generated by
747 * this operation is high-precision and any code transformations that touch
748 * it must ensure that the resulting value is bit-for-bit identical to the
749 * original.
750 */
751 bool exact;
752
753 nir_alu_dest dest;
754 nir_alu_src src[];
755 } nir_alu_instr;
756
757 void nir_alu_src_copy(nir_alu_src *dest, const nir_alu_src *src,
758 nir_alu_instr *instr);
759 void nir_alu_dest_copy(nir_alu_dest *dest, const nir_alu_dest *src,
760 nir_alu_instr *instr);
761
762 /* is this source channel used? */
763 static inline bool
764 nir_alu_instr_channel_used(nir_alu_instr *instr, unsigned src, unsigned channel)
765 {
766 if (nir_op_infos[instr->op].input_sizes[src] > 0)
767 return channel < nir_op_infos[instr->op].input_sizes[src];
768
769 return (instr->dest.write_mask >> channel) & 1;
770 }
771
772 /*
773 * For instructions whose destinations are SSA, get the number of channels
774 * used for a source
775 */
776 static inline unsigned
777 nir_ssa_alu_instr_src_components(const nir_alu_instr *instr, unsigned src)
778 {
779 assert(instr->dest.dest.is_ssa);
780
781 if (nir_op_infos[instr->op].input_sizes[src] > 0)
782 return nir_op_infos[instr->op].input_sizes[src];
783
784 return instr->dest.dest.ssa.num_components;
785 }
786
787 typedef enum {
788 nir_deref_type_var,
789 nir_deref_type_array,
790 nir_deref_type_struct
791 } nir_deref_type;
792
793 typedef struct nir_deref {
794 nir_deref_type deref_type;
795 struct nir_deref *child;
796 const struct glsl_type *type;
797 } nir_deref;
798
799 typedef struct {
800 nir_deref deref;
801
802 nir_variable *var;
803 } nir_deref_var;
804
805 /* This enum describes how the array is referenced. If the deref is
806 * direct then the base_offset is used. If the deref is indirect then then
807 * offset is given by base_offset + indirect. If the deref is a wildcard
808 * then the deref refers to all of the elements of the array at the same
809 * time. Wildcard dereferences are only ever allowed in copy_var
810 * intrinsics and the source and destination derefs must have matching
811 * wildcards.
812 */
813 typedef enum {
814 nir_deref_array_type_direct,
815 nir_deref_array_type_indirect,
816 nir_deref_array_type_wildcard,
817 } nir_deref_array_type;
818
819 typedef struct {
820 nir_deref deref;
821
822 nir_deref_array_type deref_array_type;
823 unsigned base_offset;
824 nir_src indirect;
825 } nir_deref_array;
826
827 typedef struct {
828 nir_deref deref;
829
830 unsigned index;
831 } nir_deref_struct;
832
833 NIR_DEFINE_CAST(nir_deref_as_var, nir_deref, nir_deref_var, deref)
834 NIR_DEFINE_CAST(nir_deref_as_array, nir_deref, nir_deref_array, deref)
835 NIR_DEFINE_CAST(nir_deref_as_struct, nir_deref, nir_deref_struct, deref)
836
837 /* Returns the last deref in the chain. */
838 static inline nir_deref *
839 nir_deref_tail(nir_deref *deref)
840 {
841 while (deref->child)
842 deref = deref->child;
843 return deref;
844 }
845
846 typedef struct {
847 nir_instr instr;
848
849 unsigned num_params;
850 nir_deref_var **params;
851 nir_deref_var *return_deref;
852
853 struct nir_function *callee;
854 } nir_call_instr;
855
856 #define INTRINSIC(name, num_srcs, src_components, has_dest, dest_components, \
857 num_variables, num_indices, idx0, idx1, idx2, flags) \
858 nir_intrinsic_##name,
859
860 #define LAST_INTRINSIC(name) nir_last_intrinsic = nir_intrinsic_##name,
861
862 typedef enum {
863 #include "nir_intrinsics.h"
864 nir_num_intrinsics = nir_last_intrinsic + 1
865 } nir_intrinsic_op;
866
867 #undef INTRINSIC
868 #undef LAST_INTRINSIC
869
870 #define NIR_INTRINSIC_MAX_CONST_INDEX 3
871
872 /** Represents an intrinsic
873 *
874 * An intrinsic is an instruction type for handling things that are
875 * more-or-less regular operations but don't just consume and produce SSA
876 * values like ALU operations do. Intrinsics are not for things that have
877 * special semantic meaning such as phi nodes and parallel copies.
878 * Examples of intrinsics include variable load/store operations, system
879 * value loads, and the like. Even though texturing more-or-less falls
880 * under this category, texturing is its own instruction type because
881 * trying to represent texturing with intrinsics would lead to a
882 * combinatorial explosion of intrinsic opcodes.
883 *
884 * By having a single instruction type for handling a lot of different
885 * cases, optimization passes can look for intrinsics and, for the most
886 * part, completely ignore them. Each intrinsic type also has a few
887 * possible flags that govern whether or not they can be reordered or
888 * eliminated. That way passes like dead code elimination can still work
889 * on intrisics without understanding the meaning of each.
890 *
891 * Each intrinsic has some number of constant indices, some number of
892 * variables, and some number of sources. What these sources, variables,
893 * and indices mean depends on the intrinsic and is documented with the
894 * intrinsic declaration in nir_intrinsics.h. Intrinsics and texture
895 * instructions are the only types of instruction that can operate on
896 * variables.
897 */
898 typedef struct {
899 nir_instr instr;
900
901 nir_intrinsic_op intrinsic;
902
903 nir_dest dest;
904
905 /** number of components if this is a vectorized intrinsic
906 *
907 * Similarly to ALU operations, some intrinsics are vectorized.
908 * An intrinsic is vectorized if nir_intrinsic_infos.dest_components == 0.
909 * For vectorized intrinsics, the num_components field specifies the
910 * number of destination components and the number of source components
911 * for all sources with nir_intrinsic_infos.src_components[i] == 0.
912 */
913 uint8_t num_components;
914
915 int const_index[NIR_INTRINSIC_MAX_CONST_INDEX];
916
917 nir_deref_var *variables[2];
918
919 nir_src src[];
920 } nir_intrinsic_instr;
921
922 /**
923 * \name NIR intrinsics semantic flags
924 *
925 * information about what the compiler can do with the intrinsics.
926 *
927 * \sa nir_intrinsic_info::flags
928 */
929 typedef enum {
930 /**
931 * whether the intrinsic can be safely eliminated if none of its output
932 * value is not being used.
933 */
934 NIR_INTRINSIC_CAN_ELIMINATE = (1 << 0),
935
936 /**
937 * Whether the intrinsic can be reordered with respect to any other
938 * intrinsic, i.e. whether the only reordering dependencies of the
939 * intrinsic are due to the register reads/writes.
940 */
941 NIR_INTRINSIC_CAN_REORDER = (1 << 1),
942 } nir_intrinsic_semantic_flag;
943
944 /**
945 * \name NIR intrinsics const-index flag
946 *
947 * Indicates the usage of a const_index slot.
948 *
949 * \sa nir_intrinsic_info::index_map
950 */
951 typedef enum {
952 /**
953 * Generally instructions that take a offset src argument, can encode
954 * a constant 'base' value which is added to the offset.
955 */
956 NIR_INTRINSIC_BASE = 1,
957
958 /**
959 * For store instructions, a writemask for the store.
960 */
961 NIR_INTRINSIC_WRMASK = 2,
962
963 /**
964 * The stream-id for GS emit_vertex/end_primitive intrinsics.
965 */
966 NIR_INTRINSIC_STREAM_ID = 3,
967
968 /**
969 * The clip-plane id for load_user_clip_plane intrinsic.
970 */
971 NIR_INTRINSIC_UCP_ID = 4,
972
973 /**
974 * The amount of data, starting from BASE, that this instruction may
975 * access. This is used to provide bounds if the offset is not constant.
976 */
977 NIR_INTRINSIC_RANGE = 5,
978
979 /**
980 * The Vulkan descriptor set for vulkan_resource_index intrinsic.
981 */
982 NIR_INTRINSIC_DESC_SET = 6,
983
984 /**
985 * The Vulkan descriptor set binding for vulkan_resource_index intrinsic.
986 */
987 NIR_INTRINSIC_BINDING = 7,
988
989 NIR_INTRINSIC_NUM_INDEX_FLAGS,
990
991 } nir_intrinsic_index_flag;
992
993 #define NIR_INTRINSIC_MAX_INPUTS 4
994
995 typedef struct {
996 const char *name;
997
998 unsigned num_srcs; /** < number of register/SSA inputs */
999
1000 /** number of components of each input register
1001 *
1002 * If this value is 0, the number of components is given by the
1003 * num_components field of nir_intrinsic_instr.
1004 */
1005 unsigned src_components[NIR_INTRINSIC_MAX_INPUTS];
1006
1007 bool has_dest;
1008
1009 /** number of components of the output register
1010 *
1011 * If this value is 0, the number of components is given by the
1012 * num_components field of nir_intrinsic_instr.
1013 */
1014 unsigned dest_components;
1015
1016 /** the number of inputs/outputs that are variables */
1017 unsigned num_variables;
1018
1019 /** the number of constant indices used by the intrinsic */
1020 unsigned num_indices;
1021
1022 /** indicates the usage of intr->const_index[n] */
1023 unsigned index_map[NIR_INTRINSIC_NUM_INDEX_FLAGS];
1024
1025 /** semantic flags for calls to this intrinsic */
1026 nir_intrinsic_semantic_flag flags;
1027 } nir_intrinsic_info;
1028
1029 extern const nir_intrinsic_info nir_intrinsic_infos[nir_num_intrinsics];
1030
1031
1032 #define INTRINSIC_IDX_ACCESSORS(name, flag, type) \
1033 static inline type \
1034 nir_intrinsic_##name(nir_intrinsic_instr *instr) \
1035 { \
1036 const nir_intrinsic_info *info = &nir_intrinsic_infos[instr->intrinsic]; \
1037 assert(info->index_map[NIR_INTRINSIC_##flag] > 0); \
1038 return instr->const_index[info->index_map[NIR_INTRINSIC_##flag] - 1]; \
1039 } \
1040 static inline void \
1041 nir_intrinsic_set_##name(nir_intrinsic_instr *instr, type val) \
1042 { \
1043 const nir_intrinsic_info *info = &nir_intrinsic_infos[instr->intrinsic]; \
1044 assert(info->index_map[NIR_INTRINSIC_##flag] > 0); \
1045 instr->const_index[info->index_map[NIR_INTRINSIC_##flag] - 1] = val; \
1046 }
1047
1048 INTRINSIC_IDX_ACCESSORS(write_mask, WRMASK, unsigned)
1049 INTRINSIC_IDX_ACCESSORS(base, BASE, int)
1050 INTRINSIC_IDX_ACCESSORS(stream_id, STREAM_ID, unsigned)
1051 INTRINSIC_IDX_ACCESSORS(ucp_id, UCP_ID, unsigned)
1052 INTRINSIC_IDX_ACCESSORS(range, RANGE, unsigned)
1053 INTRINSIC_IDX_ACCESSORS(desc_set, DESC_SET, unsigned)
1054 INTRINSIC_IDX_ACCESSORS(binding, BINDING, unsigned)
1055
1056 /**
1057 * \group texture information
1058 *
1059 * This gives semantic information about textures which is useful to the
1060 * frontend, the backend, and lowering passes, but not the optimizer.
1061 */
1062
1063 typedef enum {
1064 nir_tex_src_coord,
1065 nir_tex_src_projector,
1066 nir_tex_src_comparitor, /* shadow comparitor */
1067 nir_tex_src_offset,
1068 nir_tex_src_bias,
1069 nir_tex_src_lod,
1070 nir_tex_src_ms_index, /* MSAA sample index */
1071 nir_tex_src_ddx,
1072 nir_tex_src_ddy,
1073 nir_tex_src_texture_offset, /* < dynamically uniform indirect offset */
1074 nir_tex_src_sampler_offset, /* < dynamically uniform indirect offset */
1075 nir_num_tex_src_types
1076 } nir_tex_src_type;
1077
1078 typedef struct {
1079 nir_src src;
1080 nir_tex_src_type src_type;
1081 } nir_tex_src;
1082
1083 typedef enum {
1084 nir_texop_tex, /**< Regular texture look-up */
1085 nir_texop_txb, /**< Texture look-up with LOD bias */
1086 nir_texop_txl, /**< Texture look-up with explicit LOD */
1087 nir_texop_txd, /**< Texture look-up with partial derivatvies */
1088 nir_texop_txf, /**< Texel fetch with explicit LOD */
1089 nir_texop_txf_ms, /**< Multisample texture fetch */
1090 nir_texop_txs, /**< Texture size */
1091 nir_texop_lod, /**< Texture lod query */
1092 nir_texop_tg4, /**< Texture gather */
1093 nir_texop_query_levels, /**< Texture levels query */
1094 nir_texop_texture_samples, /**< Texture samples query */
1095 nir_texop_samples_identical, /**< Query whether all samples are definitely
1096 * identical.
1097 */
1098 } nir_texop;
1099
1100 typedef struct {
1101 nir_instr instr;
1102
1103 enum glsl_sampler_dim sampler_dim;
1104 nir_alu_type dest_type;
1105
1106 nir_texop op;
1107 nir_dest dest;
1108 nir_tex_src *src;
1109 unsigned num_srcs, coord_components;
1110 bool is_array, is_shadow;
1111
1112 /**
1113 * If is_shadow is true, whether this is the old-style shadow that outputs 4
1114 * components or the new-style shadow that outputs 1 component.
1115 */
1116 bool is_new_style_shadow;
1117
1118 /* gather component selector */
1119 unsigned component : 2;
1120
1121 /** The texture index
1122 *
1123 * If this texture instruction has a nir_tex_src_texture_offset source,
1124 * then the texture index is given by texture_index + texture_offset.
1125 */
1126 unsigned texture_index;
1127
1128 /** The size of the texture array or 0 if it's not an array */
1129 unsigned texture_array_size;
1130
1131 /** The texture deref
1132 *
1133 * If this is null, use texture_index instead.
1134 */
1135 nir_deref_var *texture;
1136
1137 /** The sampler index
1138 *
1139 * The following operations do not require a sampler and, as such, this
1140 * field should be ignored:
1141 * - nir_texop_txf
1142 * - nir_texop_txf_ms
1143 * - nir_texop_txs
1144 * - nir_texop_lod
1145 * - nir_texop_tg4
1146 * - nir_texop_query_levels
1147 * - nir_texop_texture_samples
1148 * - nir_texop_samples_identical
1149 *
1150 * If this texture instruction has a nir_tex_src_sampler_offset source,
1151 * then the sampler index is given by sampler_index + sampler_offset.
1152 */
1153 unsigned sampler_index;
1154
1155 /** The sampler deref
1156 *
1157 * If this is null, use sampler_index instead.
1158 */
1159 nir_deref_var *sampler;
1160 } nir_tex_instr;
1161
1162 static inline unsigned
1163 nir_tex_instr_dest_size(nir_tex_instr *instr)
1164 {
1165 switch (instr->op) {
1166 case nir_texop_txs: {
1167 unsigned ret;
1168 switch (instr->sampler_dim) {
1169 case GLSL_SAMPLER_DIM_1D:
1170 case GLSL_SAMPLER_DIM_BUF:
1171 ret = 1;
1172 break;
1173 case GLSL_SAMPLER_DIM_2D:
1174 case GLSL_SAMPLER_DIM_CUBE:
1175 case GLSL_SAMPLER_DIM_MS:
1176 case GLSL_SAMPLER_DIM_RECT:
1177 case GLSL_SAMPLER_DIM_EXTERNAL:
1178 ret = 2;
1179 break;
1180 case GLSL_SAMPLER_DIM_3D:
1181 ret = 3;
1182 break;
1183 default:
1184 unreachable("not reached");
1185 }
1186 if (instr->is_array)
1187 ret++;
1188 return ret;
1189 }
1190
1191 case nir_texop_lod:
1192 return 2;
1193
1194 case nir_texop_texture_samples:
1195 case nir_texop_query_levels:
1196 case nir_texop_samples_identical:
1197 return 1;
1198
1199 default:
1200 if (instr->is_shadow && instr->is_new_style_shadow)
1201 return 1;
1202
1203 return 4;
1204 }
1205 }
1206
1207 /* Returns true if this texture operation queries something about the texture
1208 * rather than actually sampling it.
1209 */
1210 static inline bool
1211 nir_tex_instr_is_query(nir_tex_instr *instr)
1212 {
1213 switch (instr->op) {
1214 case nir_texop_txs:
1215 case nir_texop_lod:
1216 case nir_texop_texture_samples:
1217 case nir_texop_query_levels:
1218 return true;
1219 case nir_texop_tex:
1220 case nir_texop_txb:
1221 case nir_texop_txl:
1222 case nir_texop_txd:
1223 case nir_texop_txf:
1224 case nir_texop_txf_ms:
1225 case nir_texop_tg4:
1226 return false;
1227 default:
1228 unreachable("Invalid texture opcode");
1229 }
1230 }
1231
1232 static inline unsigned
1233 nir_tex_instr_src_size(nir_tex_instr *instr, unsigned src)
1234 {
1235 if (instr->src[src].src_type == nir_tex_src_coord)
1236 return instr->coord_components;
1237
1238
1239 if (instr->src[src].src_type == nir_tex_src_offset ||
1240 instr->src[src].src_type == nir_tex_src_ddx ||
1241 instr->src[src].src_type == nir_tex_src_ddy) {
1242 if (instr->is_array)
1243 return instr->coord_components - 1;
1244 else
1245 return instr->coord_components;
1246 }
1247
1248 return 1;
1249 }
1250
1251 static inline int
1252 nir_tex_instr_src_index(nir_tex_instr *instr, nir_tex_src_type type)
1253 {
1254 for (unsigned i = 0; i < instr->num_srcs; i++)
1255 if (instr->src[i].src_type == type)
1256 return (int) i;
1257
1258 return -1;
1259 }
1260
1261 typedef struct {
1262 union {
1263 float f32[4];
1264 double f64[4];
1265 int32_t i32[4];
1266 uint32_t u32[4];
1267 int64_t i64[4];
1268 uint64_t u64[4];
1269 };
1270 } nir_const_value;
1271
1272 typedef struct {
1273 nir_instr instr;
1274
1275 nir_const_value value;
1276
1277 nir_ssa_def def;
1278 } nir_load_const_instr;
1279
1280 typedef enum {
1281 nir_jump_return,
1282 nir_jump_break,
1283 nir_jump_continue,
1284 } nir_jump_type;
1285
1286 typedef struct {
1287 nir_instr instr;
1288 nir_jump_type type;
1289 } nir_jump_instr;
1290
1291 /* creates a new SSA variable in an undefined state */
1292
1293 typedef struct {
1294 nir_instr instr;
1295 nir_ssa_def def;
1296 } nir_ssa_undef_instr;
1297
1298 typedef struct {
1299 struct exec_node node;
1300
1301 /* The predecessor block corresponding to this source */
1302 struct nir_block *pred;
1303
1304 nir_src src;
1305 } nir_phi_src;
1306
1307 #define nir_foreach_phi_src(phi, entry) \
1308 foreach_list_typed(nir_phi_src, entry, node, &(phi)->srcs)
1309 #define nir_foreach_phi_src_safe(phi, entry) \
1310 foreach_list_typed_safe(nir_phi_src, entry, node, &(phi)->srcs)
1311
1312 typedef struct {
1313 nir_instr instr;
1314
1315 struct exec_list srcs; /** < list of nir_phi_src */
1316
1317 nir_dest dest;
1318 } nir_phi_instr;
1319
1320 typedef struct {
1321 struct exec_node node;
1322 nir_src src;
1323 nir_dest dest;
1324 } nir_parallel_copy_entry;
1325
1326 #define nir_foreach_parallel_copy_entry(pcopy, entry) \
1327 foreach_list_typed(nir_parallel_copy_entry, entry, node, &(pcopy)->entries)
1328
1329 typedef struct {
1330 nir_instr instr;
1331
1332 /* A list of nir_parallel_copy_entry's. The sources of all of the
1333 * entries are copied to the corresponding destinations "in parallel".
1334 * In other words, if we have two entries: a -> b and b -> a, the values
1335 * get swapped.
1336 */
1337 struct exec_list entries;
1338 } nir_parallel_copy_instr;
1339
1340 NIR_DEFINE_CAST(nir_instr_as_alu, nir_instr, nir_alu_instr, instr)
1341 NIR_DEFINE_CAST(nir_instr_as_call, nir_instr, nir_call_instr, instr)
1342 NIR_DEFINE_CAST(nir_instr_as_jump, nir_instr, nir_jump_instr, instr)
1343 NIR_DEFINE_CAST(nir_instr_as_tex, nir_instr, nir_tex_instr, instr)
1344 NIR_DEFINE_CAST(nir_instr_as_intrinsic, nir_instr, nir_intrinsic_instr, instr)
1345 NIR_DEFINE_CAST(nir_instr_as_load_const, nir_instr, nir_load_const_instr, instr)
1346 NIR_DEFINE_CAST(nir_instr_as_ssa_undef, nir_instr, nir_ssa_undef_instr, instr)
1347 NIR_DEFINE_CAST(nir_instr_as_phi, nir_instr, nir_phi_instr, instr)
1348 NIR_DEFINE_CAST(nir_instr_as_parallel_copy, nir_instr,
1349 nir_parallel_copy_instr, instr)
1350
1351 /*
1352 * Control flow
1353 *
1354 * Control flow consists of a tree of control flow nodes, which include
1355 * if-statements and loops. The leaves of the tree are basic blocks, lists of
1356 * instructions that always run start-to-finish. Each basic block also keeps
1357 * track of its successors (blocks which may run immediately after the current
1358 * block) and predecessors (blocks which could have run immediately before the
1359 * current block). Each function also has a start block and an end block which
1360 * all return statements point to (which is always empty). Together, all the
1361 * blocks with their predecessors and successors make up the control flow
1362 * graph (CFG) of the function. There are helpers that modify the tree of
1363 * control flow nodes while modifying the CFG appropriately; these should be
1364 * used instead of modifying the tree directly.
1365 */
1366
1367 typedef enum {
1368 nir_cf_node_block,
1369 nir_cf_node_if,
1370 nir_cf_node_loop,
1371 nir_cf_node_function
1372 } nir_cf_node_type;
1373
1374 typedef struct nir_cf_node {
1375 struct exec_node node;
1376 nir_cf_node_type type;
1377 struct nir_cf_node *parent;
1378 } nir_cf_node;
1379
1380 typedef struct nir_block {
1381 nir_cf_node cf_node;
1382
1383 struct exec_list instr_list; /** < list of nir_instr */
1384
1385 /** generic block index; generated by nir_index_blocks */
1386 unsigned index;
1387
1388 /*
1389 * Each block can only have up to 2 successors, so we put them in a simple
1390 * array - no need for anything more complicated.
1391 */
1392 struct nir_block *successors[2];
1393
1394 /* Set of nir_block predecessors in the CFG */
1395 struct set *predecessors;
1396
1397 /*
1398 * this node's immediate dominator in the dominance tree - set to NULL for
1399 * the start block.
1400 */
1401 struct nir_block *imm_dom;
1402
1403 /* This node's children in the dominance tree */
1404 unsigned num_dom_children;
1405 struct nir_block **dom_children;
1406
1407 /* Set of nir_block's on the dominance frontier of this block */
1408 struct set *dom_frontier;
1409
1410 /*
1411 * These two indices have the property that dom_{pre,post}_index for each
1412 * child of this block in the dominance tree will always be between
1413 * dom_pre_index and dom_post_index for this block, which makes testing if
1414 * a given block is dominated by another block an O(1) operation.
1415 */
1416 unsigned dom_pre_index, dom_post_index;
1417
1418 /* live in and out for this block; used for liveness analysis */
1419 BITSET_WORD *live_in;
1420 BITSET_WORD *live_out;
1421 } nir_block;
1422
1423 static inline nir_instr *
1424 nir_block_first_instr(nir_block *block)
1425 {
1426 struct exec_node *head = exec_list_get_head(&block->instr_list);
1427 return exec_node_data(nir_instr, head, node);
1428 }
1429
1430 static inline nir_instr *
1431 nir_block_last_instr(nir_block *block)
1432 {
1433 struct exec_node *tail = exec_list_get_tail(&block->instr_list);
1434 return exec_node_data(nir_instr, tail, node);
1435 }
1436
1437 #define nir_foreach_instr(block, instr) \
1438 foreach_list_typed(nir_instr, instr, node, &(block)->instr_list)
1439 #define nir_foreach_instr_reverse(block, instr) \
1440 foreach_list_typed_reverse(nir_instr, instr, node, &(block)->instr_list)
1441 #define nir_foreach_instr_safe(block, instr) \
1442 foreach_list_typed_safe(nir_instr, instr, node, &(block)->instr_list)
1443 #define nir_foreach_instr_reverse_safe(block, instr) \
1444 foreach_list_typed_reverse_safe(nir_instr, instr, node, &(block)->instr_list)
1445
1446 typedef struct nir_if {
1447 nir_cf_node cf_node;
1448 nir_src condition;
1449
1450 struct exec_list then_list; /** < list of nir_cf_node */
1451 struct exec_list else_list; /** < list of nir_cf_node */
1452 } nir_if;
1453
1454 static inline nir_cf_node *
1455 nir_if_first_then_node(nir_if *if_stmt)
1456 {
1457 struct exec_node *head = exec_list_get_head(&if_stmt->then_list);
1458 return exec_node_data(nir_cf_node, head, node);
1459 }
1460
1461 static inline nir_cf_node *
1462 nir_if_last_then_node(nir_if *if_stmt)
1463 {
1464 struct exec_node *tail = exec_list_get_tail(&if_stmt->then_list);
1465 return exec_node_data(nir_cf_node, tail, node);
1466 }
1467
1468 static inline nir_cf_node *
1469 nir_if_first_else_node(nir_if *if_stmt)
1470 {
1471 struct exec_node *head = exec_list_get_head(&if_stmt->else_list);
1472 return exec_node_data(nir_cf_node, head, node);
1473 }
1474
1475 static inline nir_cf_node *
1476 nir_if_last_else_node(nir_if *if_stmt)
1477 {
1478 struct exec_node *tail = exec_list_get_tail(&if_stmt->else_list);
1479 return exec_node_data(nir_cf_node, tail, node);
1480 }
1481
1482 typedef struct {
1483 nir_cf_node cf_node;
1484
1485 struct exec_list body; /** < list of nir_cf_node */
1486 } nir_loop;
1487
1488 static inline nir_cf_node *
1489 nir_loop_first_cf_node(nir_loop *loop)
1490 {
1491 return exec_node_data(nir_cf_node, exec_list_get_head(&loop->body), node);
1492 }
1493
1494 static inline nir_cf_node *
1495 nir_loop_last_cf_node(nir_loop *loop)
1496 {
1497 return exec_node_data(nir_cf_node, exec_list_get_tail(&loop->body), node);
1498 }
1499
1500 /**
1501 * Various bits of metadata that can may be created or required by
1502 * optimization and analysis passes
1503 */
1504 typedef enum {
1505 nir_metadata_none = 0x0,
1506 nir_metadata_block_index = 0x1,
1507 nir_metadata_dominance = 0x2,
1508 nir_metadata_live_ssa_defs = 0x4,
1509 nir_metadata_not_properly_reset = 0x8,
1510 } nir_metadata;
1511
1512 typedef struct {
1513 nir_cf_node cf_node;
1514
1515 /** pointer to the function of which this is an implementation */
1516 struct nir_function *function;
1517
1518 struct exec_list body; /** < list of nir_cf_node */
1519
1520 nir_block *end_block;
1521
1522 /** list for all local variables in the function */
1523 struct exec_list locals;
1524
1525 /** array of variables used as parameters */
1526 unsigned num_params;
1527 nir_variable **params;
1528
1529 /** variable used to hold the result of the function */
1530 nir_variable *return_var;
1531
1532 /** list of local registers in the function */
1533 struct exec_list registers;
1534
1535 /** next available local register index */
1536 unsigned reg_alloc;
1537
1538 /** next available SSA value index */
1539 unsigned ssa_alloc;
1540
1541 /* total number of basic blocks, only valid when block_index_dirty = false */
1542 unsigned num_blocks;
1543
1544 nir_metadata valid_metadata;
1545 } nir_function_impl;
1546
1547 static inline nir_block *
1548 nir_start_block(nir_function_impl *impl)
1549 {
1550 return (nir_block *) exec_list_get_head(&impl->body);
1551 }
1552
1553 static inline nir_cf_node *
1554 nir_cf_node_next(nir_cf_node *node)
1555 {
1556 struct exec_node *next = exec_node_get_next(&node->node);
1557 if (exec_node_is_tail_sentinel(next))
1558 return NULL;
1559 else
1560 return exec_node_data(nir_cf_node, next, node);
1561 }
1562
1563 static inline nir_cf_node *
1564 nir_cf_node_prev(nir_cf_node *node)
1565 {
1566 struct exec_node *prev = exec_node_get_prev(&node->node);
1567 if (exec_node_is_head_sentinel(prev))
1568 return NULL;
1569 else
1570 return exec_node_data(nir_cf_node, prev, node);
1571 }
1572
1573 static inline bool
1574 nir_cf_node_is_first(const nir_cf_node *node)
1575 {
1576 return exec_node_is_head_sentinel(node->node.prev);
1577 }
1578
1579 static inline bool
1580 nir_cf_node_is_last(const nir_cf_node *node)
1581 {
1582 return exec_node_is_tail_sentinel(node->node.next);
1583 }
1584
1585 NIR_DEFINE_CAST(nir_cf_node_as_block, nir_cf_node, nir_block, cf_node)
1586 NIR_DEFINE_CAST(nir_cf_node_as_if, nir_cf_node, nir_if, cf_node)
1587 NIR_DEFINE_CAST(nir_cf_node_as_loop, nir_cf_node, nir_loop, cf_node)
1588 NIR_DEFINE_CAST(nir_cf_node_as_function, nir_cf_node, nir_function_impl, cf_node)
1589
1590 typedef enum {
1591 nir_parameter_in,
1592 nir_parameter_out,
1593 nir_parameter_inout,
1594 } nir_parameter_type;
1595
1596 typedef struct {
1597 nir_parameter_type param_type;
1598 const struct glsl_type *type;
1599 } nir_parameter;
1600
1601 typedef struct nir_function {
1602 struct exec_node node;
1603
1604 const char *name;
1605 struct nir_shader *shader;
1606
1607 unsigned num_params;
1608 nir_parameter *params;
1609 const struct glsl_type *return_type;
1610
1611 /** The implementation of this function.
1612 *
1613 * If the function is only declared and not implemented, this is NULL.
1614 */
1615 nir_function_impl *impl;
1616 } nir_function;
1617
1618 typedef struct nir_shader_compiler_options {
1619 bool lower_fdiv;
1620 bool lower_ffma;
1621 bool lower_flrp;
1622 bool lower_fpow;
1623 bool lower_fsat;
1624 bool lower_fsqrt;
1625 bool lower_fmod;
1626 bool lower_bitfield_extract;
1627 bool lower_bitfield_insert;
1628 bool lower_uadd_carry;
1629 bool lower_usub_borrow;
1630 /** lowers fneg and ineg to fsub and isub. */
1631 bool lower_negate;
1632 /** lowers fsub and isub to fadd+fneg and iadd+ineg. */
1633 bool lower_sub;
1634
1635 /* lower {slt,sge,seq,sne} to {flt,fge,feq,fne} + b2f: */
1636 bool lower_scmp;
1637
1638 /* Does the native fdot instruction replicate its result for four
1639 * components? If so, then opt_algebraic_late will turn all fdotN
1640 * instructions into fdot_replicatedN instructions.
1641 */
1642 bool fdot_replicates;
1643
1644 /** lowers ffract to fsub+ffloor: */
1645 bool lower_ffract;
1646
1647 bool lower_pack_half_2x16;
1648 bool lower_pack_unorm_2x16;
1649 bool lower_pack_snorm_2x16;
1650 bool lower_pack_unorm_4x8;
1651 bool lower_pack_snorm_4x8;
1652 bool lower_unpack_half_2x16;
1653 bool lower_unpack_unorm_2x16;
1654 bool lower_unpack_snorm_2x16;
1655 bool lower_unpack_unorm_4x8;
1656 bool lower_unpack_snorm_4x8;
1657
1658 bool lower_extract_byte;
1659 bool lower_extract_word;
1660
1661 /**
1662 * Does the driver support real 32-bit integers? (Otherwise, integers
1663 * are simulated by floats.)
1664 */
1665 bool native_integers;
1666
1667 /* Indicates that the driver only has zero-based vertex id */
1668 bool vertex_id_zero_based;
1669 } nir_shader_compiler_options;
1670
1671 typedef struct nir_shader_info {
1672 const char *name;
1673
1674 /* Descriptive name provided by the client; may be NULL */
1675 const char *label;
1676
1677 /* Number of textures used by this shader */
1678 unsigned num_textures;
1679 /* Number of uniform buffers used by this shader */
1680 unsigned num_ubos;
1681 /* Number of atomic buffers used by this shader */
1682 unsigned num_abos;
1683 /* Number of shader storage buffers used by this shader */
1684 unsigned num_ssbos;
1685 /* Number of images used by this shader */
1686 unsigned num_images;
1687
1688 /* Which inputs are actually read */
1689 uint64_t inputs_read;
1690 /* Which outputs are actually written */
1691 uint64_t outputs_written;
1692 /* Which system values are actually read */
1693 uint64_t system_values_read;
1694
1695 /* Which patch inputs are actually read */
1696 uint32_t patch_inputs_read;
1697 /* Which patch outputs are actually written */
1698 uint32_t patch_outputs_written;
1699
1700 /* Whether or not this shader ever uses textureGather() */
1701 bool uses_texture_gather;
1702
1703 /* Whether or not this shader uses the gl_ClipDistance output */
1704 bool uses_clip_distance_out;
1705
1706 /* Whether or not separate shader objects were used */
1707 bool separate_shader;
1708
1709 /** Was this shader linked with any transform feedback varyings? */
1710 bool has_transform_feedback_varyings;
1711
1712 union {
1713 struct {
1714 /** The number of vertices recieves per input primitive */
1715 unsigned vertices_in;
1716
1717 /** The output primitive type (GL enum value) */
1718 unsigned output_primitive;
1719
1720 /** The maximum number of vertices the geometry shader might write. */
1721 unsigned vertices_out;
1722
1723 /** 1 .. MAX_GEOMETRY_SHADER_INVOCATIONS */
1724 unsigned invocations;
1725
1726 /** Whether or not this shader uses EndPrimitive */
1727 bool uses_end_primitive;
1728
1729 /** Whether or not this shader uses non-zero streams */
1730 bool uses_streams;
1731 } gs;
1732
1733 struct {
1734 bool uses_discard;
1735
1736 /**
1737 * Whether early fragment tests are enabled as defined by
1738 * ARB_shader_image_load_store.
1739 */
1740 bool early_fragment_tests;
1741
1742 /** gl_FragDepth layout for ARB_conservative_depth. */
1743 enum gl_frag_depth_layout depth_layout;
1744 } fs;
1745
1746 struct {
1747 unsigned local_size[3];
1748 } cs;
1749
1750 struct {
1751 /** The number of vertices in the TCS output patch. */
1752 unsigned vertices_out;
1753 } tcs;
1754 };
1755 } nir_shader_info;
1756
1757 typedef struct nir_shader {
1758 /** list of uniforms (nir_variable) */
1759 struct exec_list uniforms;
1760
1761 /** list of inputs (nir_variable) */
1762 struct exec_list inputs;
1763
1764 /** list of outputs (nir_variable) */
1765 struct exec_list outputs;
1766
1767 /** list of shared compute variables (nir_variable) */
1768 struct exec_list shared;
1769
1770 /** Set of driver-specific options for the shader.
1771 *
1772 * The memory for the options is expected to be kept in a single static
1773 * copy by the driver.
1774 */
1775 const struct nir_shader_compiler_options *options;
1776
1777 /** Various bits of compile-time information about a given shader */
1778 struct nir_shader_info info;
1779
1780 /** list of global variables in the shader (nir_variable) */
1781 struct exec_list globals;
1782
1783 /** list of system value variables in the shader (nir_variable) */
1784 struct exec_list system_values;
1785
1786 struct exec_list functions; /** < list of nir_function */
1787
1788 /** list of global register in the shader */
1789 struct exec_list registers;
1790
1791 /** next available global register index */
1792 unsigned reg_alloc;
1793
1794 /**
1795 * the highest index a load_input_*, load_uniform_*, etc. intrinsic can
1796 * access plus one
1797 */
1798 unsigned num_inputs, num_uniforms, num_outputs, num_shared;
1799
1800 /** The shader stage, such as MESA_SHADER_VERTEX. */
1801 gl_shader_stage stage;
1802 } nir_shader;
1803
1804 static inline nir_function *
1805 nir_shader_get_entrypoint(nir_shader *shader)
1806 {
1807 assert(exec_list_length(&shader->functions) == 1);
1808 struct exec_node *func_node = exec_list_get_head(&shader->functions);
1809 nir_function *func = exec_node_data(nir_function, func_node, node);
1810 assert(func->return_type == glsl_void_type());
1811 assert(func->num_params == 0);
1812 return func;
1813 }
1814
1815 #define nir_foreach_function(shader, func) \
1816 foreach_list_typed(nir_function, func, node, &(shader)->functions)
1817
1818 nir_shader *nir_shader_create(void *mem_ctx,
1819 gl_shader_stage stage,
1820 const nir_shader_compiler_options *options);
1821
1822 /** creates a register, including assigning it an index and adding it to the list */
1823 nir_register *nir_global_reg_create(nir_shader *shader);
1824
1825 nir_register *nir_local_reg_create(nir_function_impl *impl);
1826
1827 void nir_reg_remove(nir_register *reg);
1828
1829 /** Adds a variable to the appropreate list in nir_shader */
1830 void nir_shader_add_variable(nir_shader *shader, nir_variable *var);
1831
1832 static inline void
1833 nir_function_impl_add_variable(nir_function_impl *impl, nir_variable *var)
1834 {
1835 assert(var->data.mode == nir_var_local);
1836 exec_list_push_tail(&impl->locals, &var->node);
1837 }
1838
1839 /** creates a variable, sets a few defaults, and adds it to the list */
1840 nir_variable *nir_variable_create(nir_shader *shader,
1841 nir_variable_mode mode,
1842 const struct glsl_type *type,
1843 const char *name);
1844 /** creates a local variable and adds it to the list */
1845 nir_variable *nir_local_variable_create(nir_function_impl *impl,
1846 const struct glsl_type *type,
1847 const char *name);
1848
1849 /** creates a function and adds it to the shader's list of functions */
1850 nir_function *nir_function_create(nir_shader *shader, const char *name);
1851
1852 nir_function_impl *nir_function_impl_create(nir_function *func);
1853 /** creates a function_impl that isn't tied to any particular function */
1854 nir_function_impl *nir_function_impl_create_bare(nir_shader *shader);
1855
1856 nir_block *nir_block_create(nir_shader *shader);
1857 nir_if *nir_if_create(nir_shader *shader);
1858 nir_loop *nir_loop_create(nir_shader *shader);
1859
1860 nir_function_impl *nir_cf_node_get_function(nir_cf_node *node);
1861
1862 /** requests that the given pieces of metadata be generated */
1863 void nir_metadata_require(nir_function_impl *impl, nir_metadata required);
1864 /** dirties all but the preserved metadata */
1865 void nir_metadata_preserve(nir_function_impl *impl, nir_metadata preserved);
1866
1867 /** creates an instruction with default swizzle/writemask/etc. with NULL registers */
1868 nir_alu_instr *nir_alu_instr_create(nir_shader *shader, nir_op op);
1869
1870 nir_jump_instr *nir_jump_instr_create(nir_shader *shader, nir_jump_type type);
1871
1872 nir_load_const_instr *nir_load_const_instr_create(nir_shader *shader,
1873 unsigned num_components,
1874 unsigned bit_size);
1875
1876 nir_intrinsic_instr *nir_intrinsic_instr_create(nir_shader *shader,
1877 nir_intrinsic_op op);
1878
1879 nir_call_instr *nir_call_instr_create(nir_shader *shader,
1880 nir_function *callee);
1881
1882 nir_tex_instr *nir_tex_instr_create(nir_shader *shader, unsigned num_srcs);
1883
1884 nir_phi_instr *nir_phi_instr_create(nir_shader *shader);
1885
1886 nir_parallel_copy_instr *nir_parallel_copy_instr_create(nir_shader *shader);
1887
1888 nir_ssa_undef_instr *nir_ssa_undef_instr_create(nir_shader *shader,
1889 unsigned num_components,
1890 unsigned bit_size);
1891
1892 nir_deref_var *nir_deref_var_create(void *mem_ctx, nir_variable *var);
1893 nir_deref_array *nir_deref_array_create(void *mem_ctx);
1894 nir_deref_struct *nir_deref_struct_create(void *mem_ctx, unsigned field_index);
1895
1896 nir_deref *nir_copy_deref(void *mem_ctx, nir_deref *deref);
1897
1898 nir_load_const_instr *
1899 nir_deref_get_const_initializer_load(nir_shader *shader, nir_deref_var *deref);
1900
1901 /**
1902 * NIR Cursors and Instruction Insertion API
1903 * @{
1904 *
1905 * A tiny struct representing a point to insert/extract instructions or
1906 * control flow nodes. Helps reduce the combinatorial explosion of possible
1907 * points to insert/extract.
1908 *
1909 * \sa nir_control_flow.h
1910 */
1911 typedef enum {
1912 nir_cursor_before_block,
1913 nir_cursor_after_block,
1914 nir_cursor_before_instr,
1915 nir_cursor_after_instr,
1916 } nir_cursor_option;
1917
1918 typedef struct {
1919 nir_cursor_option option;
1920 union {
1921 nir_block *block;
1922 nir_instr *instr;
1923 };
1924 } nir_cursor;
1925
1926 static inline nir_block *
1927 nir_cursor_current_block(nir_cursor cursor)
1928 {
1929 if (cursor.option == nir_cursor_before_instr ||
1930 cursor.option == nir_cursor_after_instr) {
1931 return cursor.instr->block;
1932 } else {
1933 return cursor.block;
1934 }
1935 }
1936
1937 bool nir_cursors_equal(nir_cursor a, nir_cursor b);
1938
1939 static inline nir_cursor
1940 nir_before_block(nir_block *block)
1941 {
1942 nir_cursor cursor;
1943 cursor.option = nir_cursor_before_block;
1944 cursor.block = block;
1945 return cursor;
1946 }
1947
1948 static inline nir_cursor
1949 nir_after_block(nir_block *block)
1950 {
1951 nir_cursor cursor;
1952 cursor.option = nir_cursor_after_block;
1953 cursor.block = block;
1954 return cursor;
1955 }
1956
1957 static inline nir_cursor
1958 nir_before_instr(nir_instr *instr)
1959 {
1960 nir_cursor cursor;
1961 cursor.option = nir_cursor_before_instr;
1962 cursor.instr = instr;
1963 return cursor;
1964 }
1965
1966 static inline nir_cursor
1967 nir_after_instr(nir_instr *instr)
1968 {
1969 nir_cursor cursor;
1970 cursor.option = nir_cursor_after_instr;
1971 cursor.instr = instr;
1972 return cursor;
1973 }
1974
1975 static inline nir_cursor
1976 nir_after_block_before_jump(nir_block *block)
1977 {
1978 nir_instr *last_instr = nir_block_last_instr(block);
1979 if (last_instr && last_instr->type == nir_instr_type_jump) {
1980 return nir_before_instr(last_instr);
1981 } else {
1982 return nir_after_block(block);
1983 }
1984 }
1985
1986 static inline nir_cursor
1987 nir_before_cf_node(nir_cf_node *node)
1988 {
1989 if (node->type == nir_cf_node_block)
1990 return nir_before_block(nir_cf_node_as_block(node));
1991
1992 return nir_after_block(nir_cf_node_as_block(nir_cf_node_prev(node)));
1993 }
1994
1995 static inline nir_cursor
1996 nir_after_cf_node(nir_cf_node *node)
1997 {
1998 if (node->type == nir_cf_node_block)
1999 return nir_after_block(nir_cf_node_as_block(node));
2000
2001 return nir_before_block(nir_cf_node_as_block(nir_cf_node_next(node)));
2002 }
2003
2004 static inline nir_cursor
2005 nir_after_cf_node_and_phis(nir_cf_node *node)
2006 {
2007 if (node->type == nir_cf_node_block)
2008 return nir_after_block(nir_cf_node_as_block(node));
2009
2010 nir_block *block = nir_cf_node_as_block(nir_cf_node_next(node));
2011 assert(block->cf_node.type == nir_cf_node_block);
2012
2013 nir_foreach_instr(block, instr) {
2014 if (instr->type != nir_instr_type_phi)
2015 return nir_before_instr(instr);
2016 }
2017 return nir_after_block(block);
2018 }
2019
2020 static inline nir_cursor
2021 nir_before_cf_list(struct exec_list *cf_list)
2022 {
2023 nir_cf_node *first_node = exec_node_data(nir_cf_node,
2024 exec_list_get_head(cf_list), node);
2025 return nir_before_cf_node(first_node);
2026 }
2027
2028 static inline nir_cursor
2029 nir_after_cf_list(struct exec_list *cf_list)
2030 {
2031 nir_cf_node *last_node = exec_node_data(nir_cf_node,
2032 exec_list_get_tail(cf_list), node);
2033 return nir_after_cf_node(last_node);
2034 }
2035
2036 /**
2037 * Insert a NIR instruction at the given cursor.
2038 *
2039 * Note: This does not update the cursor.
2040 */
2041 void nir_instr_insert(nir_cursor cursor, nir_instr *instr);
2042
2043 static inline void
2044 nir_instr_insert_before(nir_instr *instr, nir_instr *before)
2045 {
2046 nir_instr_insert(nir_before_instr(instr), before);
2047 }
2048
2049 static inline void
2050 nir_instr_insert_after(nir_instr *instr, nir_instr *after)
2051 {
2052 nir_instr_insert(nir_after_instr(instr), after);
2053 }
2054
2055 static inline void
2056 nir_instr_insert_before_block(nir_block *block, nir_instr *before)
2057 {
2058 nir_instr_insert(nir_before_block(block), before);
2059 }
2060
2061 static inline void
2062 nir_instr_insert_after_block(nir_block *block, nir_instr *after)
2063 {
2064 nir_instr_insert(nir_after_block(block), after);
2065 }
2066
2067 static inline void
2068 nir_instr_insert_before_cf(nir_cf_node *node, nir_instr *before)
2069 {
2070 nir_instr_insert(nir_before_cf_node(node), before);
2071 }
2072
2073 static inline void
2074 nir_instr_insert_after_cf(nir_cf_node *node, nir_instr *after)
2075 {
2076 nir_instr_insert(nir_after_cf_node(node), after);
2077 }
2078
2079 static inline void
2080 nir_instr_insert_before_cf_list(struct exec_list *list, nir_instr *before)
2081 {
2082 nir_instr_insert(nir_before_cf_list(list), before);
2083 }
2084
2085 static inline void
2086 nir_instr_insert_after_cf_list(struct exec_list *list, nir_instr *after)
2087 {
2088 nir_instr_insert(nir_after_cf_list(list), after);
2089 }
2090
2091 void nir_instr_remove(nir_instr *instr);
2092
2093 /** @} */
2094
2095 typedef bool (*nir_foreach_ssa_def_cb)(nir_ssa_def *def, void *state);
2096 typedef bool (*nir_foreach_dest_cb)(nir_dest *dest, void *state);
2097 typedef bool (*nir_foreach_src_cb)(nir_src *src, void *state);
2098 bool nir_foreach_ssa_def(nir_instr *instr, nir_foreach_ssa_def_cb cb,
2099 void *state);
2100 bool nir_foreach_dest(nir_instr *instr, nir_foreach_dest_cb cb, void *state);
2101 bool nir_foreach_src(nir_instr *instr, nir_foreach_src_cb cb, void *state);
2102
2103 nir_const_value *nir_src_as_const_value(nir_src src);
2104 bool nir_src_is_dynamically_uniform(nir_src src);
2105 bool nir_srcs_equal(nir_src src1, nir_src src2);
2106 void nir_instr_rewrite_src(nir_instr *instr, nir_src *src, nir_src new_src);
2107 void nir_instr_move_src(nir_instr *dest_instr, nir_src *dest, nir_src *src);
2108 void nir_if_rewrite_condition(nir_if *if_stmt, nir_src new_src);
2109 void nir_instr_rewrite_dest(nir_instr *instr, nir_dest *dest,
2110 nir_dest new_dest);
2111
2112 void nir_ssa_dest_init(nir_instr *instr, nir_dest *dest,
2113 unsigned num_components, unsigned bit_size,
2114 const char *name);
2115 void nir_ssa_def_init(nir_instr *instr, nir_ssa_def *def,
2116 unsigned num_components, unsigned bit_size,
2117 const char *name);
2118 void nir_ssa_def_rewrite_uses(nir_ssa_def *def, nir_src new_src);
2119 void nir_ssa_def_rewrite_uses_after(nir_ssa_def *def, nir_src new_src,
2120 nir_instr *after_me);
2121
2122 /* visits basic blocks in source-code order */
2123 typedef bool (*nir_foreach_block_cb)(nir_block *block, void *state);
2124 bool nir_foreach_block(nir_function_impl *impl, nir_foreach_block_cb cb,
2125 void *state);
2126 bool nir_foreach_block_reverse(nir_function_impl *impl, nir_foreach_block_cb cb,
2127 void *state);
2128 bool nir_foreach_block_in_cf_node(nir_cf_node *node, nir_foreach_block_cb cb,
2129 void *state);
2130
2131 /* If the following CF node is an if, this function returns that if.
2132 * Otherwise, it returns NULL.
2133 */
2134 nir_if *nir_block_get_following_if(nir_block *block);
2135
2136 nir_loop *nir_block_get_following_loop(nir_block *block);
2137
2138 void nir_index_local_regs(nir_function_impl *impl);
2139 void nir_index_global_regs(nir_shader *shader);
2140 void nir_index_ssa_defs(nir_function_impl *impl);
2141 unsigned nir_index_instrs(nir_function_impl *impl);
2142
2143 void nir_index_blocks(nir_function_impl *impl);
2144
2145 void nir_print_shader(nir_shader *shader, FILE *fp);
2146 void nir_print_instr(const nir_instr *instr, FILE *fp);
2147
2148 nir_shader *nir_shader_clone(void *mem_ctx, const nir_shader *s);
2149 nir_function_impl *nir_function_impl_clone(const nir_function_impl *fi);
2150 nir_constant *nir_constant_clone(const nir_constant *c, nir_variable *var);
2151 nir_variable *nir_variable_clone(const nir_variable *c, nir_shader *shader);
2152
2153 #ifdef DEBUG
2154 void nir_validate_shader(nir_shader *shader);
2155 void nir_metadata_set_validation_flag(nir_shader *shader);
2156 void nir_metadata_check_validation_flag(nir_shader *shader);
2157
2158 #include "util/debug.h"
2159 static inline bool
2160 should_clone_nir(void)
2161 {
2162 static int should_clone = -1;
2163 if (should_clone < 0)
2164 should_clone = env_var_as_boolean("NIR_TEST_CLONE", false);
2165
2166 return should_clone;
2167 }
2168 #else
2169 static inline void nir_validate_shader(nir_shader *shader) { (void) shader; }
2170 static inline void nir_metadata_set_validation_flag(nir_shader *shader) { (void) shader; }
2171 static inline void nir_metadata_check_validation_flag(nir_shader *shader) { (void) shader; }
2172 static inline bool should_clone_nir(void) { return false; }
2173 #endif /* DEBUG */
2174
2175 #define _PASS(nir, do_pass) do { \
2176 do_pass \
2177 nir_validate_shader(nir); \
2178 if (should_clone_nir()) { \
2179 nir_shader *clone = nir_shader_clone(ralloc_parent(nir), nir); \
2180 ralloc_free(nir); \
2181 nir = clone; \
2182 } \
2183 } while (0)
2184
2185 #define NIR_PASS(progress, nir, pass, ...) _PASS(nir, \
2186 nir_metadata_set_validation_flag(nir); \
2187 if (pass(nir, ##__VA_ARGS__)) { \
2188 progress = true; \
2189 nir_metadata_check_validation_flag(nir); \
2190 } \
2191 )
2192
2193 #define NIR_PASS_V(nir, pass, ...) _PASS(nir, \
2194 pass(nir, ##__VA_ARGS__); \
2195 )
2196
2197 void nir_calc_dominance_impl(nir_function_impl *impl);
2198 void nir_calc_dominance(nir_shader *shader);
2199
2200 nir_block *nir_dominance_lca(nir_block *b1, nir_block *b2);
2201 bool nir_block_dominates(nir_block *parent, nir_block *child);
2202
2203 void nir_dump_dom_tree_impl(nir_function_impl *impl, FILE *fp);
2204 void nir_dump_dom_tree(nir_shader *shader, FILE *fp);
2205
2206 void nir_dump_dom_frontier_impl(nir_function_impl *impl, FILE *fp);
2207 void nir_dump_dom_frontier(nir_shader *shader, FILE *fp);
2208
2209 void nir_dump_cfg_impl(nir_function_impl *impl, FILE *fp);
2210 void nir_dump_cfg(nir_shader *shader, FILE *fp);
2211
2212 int nir_gs_count_vertices(const nir_shader *shader);
2213
2214 bool nir_split_var_copies(nir_shader *shader);
2215
2216 bool nir_lower_returns_impl(nir_function_impl *impl);
2217 bool nir_lower_returns(nir_shader *shader);
2218
2219 bool nir_inline_functions(nir_shader *shader);
2220
2221 void nir_lower_var_copy_instr(nir_intrinsic_instr *copy, void *mem_ctx);
2222 void nir_lower_var_copies(nir_shader *shader);
2223
2224 bool nir_lower_global_vars_to_local(nir_shader *shader);
2225
2226 bool nir_lower_indirect_derefs(nir_shader *shader, nir_variable_mode modes);
2227
2228 bool nir_lower_locals_to_regs(nir_shader *shader);
2229
2230 void nir_lower_outputs_to_temporaries(nir_shader *shader,
2231 nir_function *entrypoint);
2232 void nir_shader_gather_info(nir_shader *shader, nir_function_impl *entrypoint);
2233
2234 void nir_assign_var_locations(struct exec_list *var_list,
2235 unsigned *size,
2236 int (*type_size)(const struct glsl_type *));
2237
2238 void nir_lower_io(nir_shader *shader,
2239 nir_variable_mode modes,
2240 int (*type_size)(const struct glsl_type *));
2241 nir_src *nir_get_io_offset_src(nir_intrinsic_instr *instr);
2242 nir_src *nir_get_io_vertex_index_src(nir_intrinsic_instr *instr);
2243
2244 void nir_lower_vars_to_ssa(nir_shader *shader);
2245
2246 bool nir_remove_dead_variables(nir_shader *shader, nir_variable_mode modes);
2247
2248 void nir_move_vec_src_uses_to_dest(nir_shader *shader);
2249 bool nir_lower_vec_to_movs(nir_shader *shader);
2250 void nir_lower_alu_to_scalar(nir_shader *shader);
2251 void nir_lower_load_const_to_scalar(nir_shader *shader);
2252
2253 void nir_lower_phis_to_scalar(nir_shader *shader);
2254
2255 void nir_lower_samplers(nir_shader *shader,
2256 const struct gl_shader_program *shader_program);
2257
2258 bool nir_lower_system_values(nir_shader *shader);
2259
2260 typedef struct nir_lower_tex_options {
2261 /**
2262 * bitmask of (1 << GLSL_SAMPLER_DIM_x) to control for which
2263 * sampler types a texture projector is lowered.
2264 */
2265 unsigned lower_txp;
2266
2267 /**
2268 * If true, lower rect textures to 2D, using txs to fetch the
2269 * texture dimensions and dividing the texture coords by the
2270 * texture dims to normalize.
2271 */
2272 bool lower_rect;
2273
2274 /**
2275 * To emulate certain texture wrap modes, this can be used
2276 * to saturate the specified tex coord to [0.0, 1.0]. The
2277 * bits are according to sampler #, ie. if, for example:
2278 *
2279 * (conf->saturate_s & (1 << n))
2280 *
2281 * is true, then the s coord for sampler n is saturated.
2282 *
2283 * Note that clamping must happen *after* projector lowering
2284 * so any projected texture sample instruction with a clamped
2285 * coordinate gets automatically lowered, regardless of the
2286 * 'lower_txp' setting.
2287 */
2288 unsigned saturate_s;
2289 unsigned saturate_t;
2290 unsigned saturate_r;
2291
2292 /* Bitmask of textures that need swizzling.
2293 *
2294 * If (swizzle_result & (1 << texture_index)), then the swizzle in
2295 * swizzles[texture_index] is applied to the result of the texturing
2296 * operation.
2297 */
2298 unsigned swizzle_result;
2299
2300 /* A swizzle for each texture. Values 0-3 represent x, y, z, or w swizzles
2301 * while 4 and 5 represent 0 and 1 respectively.
2302 */
2303 uint8_t swizzles[32][4];
2304 } nir_lower_tex_options;
2305
2306 bool nir_lower_tex(nir_shader *shader,
2307 const nir_lower_tex_options *options);
2308
2309 void nir_lower_idiv(nir_shader *shader);
2310
2311 void nir_lower_clip_vs(nir_shader *shader, unsigned ucp_enables);
2312 void nir_lower_clip_fs(nir_shader *shader, unsigned ucp_enables);
2313
2314 void nir_lower_two_sided_color(nir_shader *shader);
2315
2316 void nir_lower_atomics(nir_shader *shader,
2317 const struct gl_shader_program *shader_program);
2318 void nir_lower_to_source_mods(nir_shader *shader);
2319
2320 bool nir_lower_gs_intrinsics(nir_shader *shader);
2321
2322 void nir_lower_double_pack(nir_shader *shader);
2323
2324 bool nir_normalize_cubemap_coords(nir_shader *shader);
2325
2326 void nir_live_ssa_defs_impl(nir_function_impl *impl);
2327 bool nir_ssa_defs_interfere(nir_ssa_def *a, nir_ssa_def *b);
2328
2329 void nir_convert_to_ssa_impl(nir_function_impl *impl);
2330 void nir_convert_to_ssa(nir_shader *shader);
2331
2332 bool nir_repair_ssa_impl(nir_function_impl *impl);
2333 bool nir_repair_ssa(nir_shader *shader);
2334
2335 /* If phi_webs_only is true, only convert SSA values involved in phi nodes to
2336 * registers. If false, convert all values (even those not involved in a phi
2337 * node) to registers.
2338 */
2339 void nir_convert_from_ssa(nir_shader *shader, bool phi_webs_only);
2340
2341 bool nir_opt_algebraic(nir_shader *shader);
2342 bool nir_opt_algebraic_late(nir_shader *shader);
2343 bool nir_opt_constant_folding(nir_shader *shader);
2344
2345 bool nir_opt_global_to_local(nir_shader *shader);
2346
2347 bool nir_copy_prop(nir_shader *shader);
2348
2349 bool nir_opt_cse(nir_shader *shader);
2350
2351 bool nir_opt_dce(nir_shader *shader);
2352
2353 bool nir_opt_dead_cf(nir_shader *shader);
2354
2355 void nir_opt_gcm(nir_shader *shader);
2356
2357 bool nir_opt_peephole_select(nir_shader *shader);
2358
2359 bool nir_opt_remove_phis(nir_shader *shader);
2360
2361 bool nir_opt_undef(nir_shader *shader);
2362
2363 void nir_sweep(nir_shader *shader);
2364
2365 nir_intrinsic_op nir_intrinsic_from_system_value(gl_system_value val);
2366 gl_system_value nir_system_value_from_intrinsic(nir_intrinsic_op intrin);
2367
2368 #ifdef __cplusplus
2369 } /* extern "C" */
2370 #endif