freedreno/ir3: Implement lowering passes for VS and GS
[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 #ifndef NIR_H
29 #define NIR_H
30
31 #include "util/hash_table.h"
32 #include "compiler/glsl/list.h"
33 #include "GL/gl.h" /* GLenum */
34 #include "util/list.h"
35 #include "util/ralloc.h"
36 #include "util/set.h"
37 #include "util/bitscan.h"
38 #include "util/bitset.h"
39 #include "util/macros.h"
40 #include "compiler/nir_types.h"
41 #include "compiler/shader_enums.h"
42 #include "compiler/shader_info.h"
43 #include <stdio.h>
44
45 #ifndef NDEBUG
46 #include "util/debug.h"
47 #endif /* NDEBUG */
48
49 #include "nir_opcodes.h"
50
51 #if defined(_WIN32) && !defined(snprintf)
52 #define snprintf _snprintf
53 #endif
54
55 #ifdef __cplusplus
56 extern "C" {
57 #endif
58
59 #define NIR_FALSE 0u
60 #define NIR_TRUE (~0u)
61 #define NIR_MAX_VEC_COMPONENTS 4
62 #define NIR_MAX_MATRIX_COLUMNS 4
63 typedef uint8_t nir_component_mask_t;
64
65 /** Defines a cast function
66 *
67 * This macro defines a cast function from in_type to out_type where
68 * out_type is some structure type that contains a field of type out_type.
69 *
70 * Note that you have to be a bit careful as the generated cast function
71 * destroys constness.
72 */
73 #define NIR_DEFINE_CAST(name, in_type, out_type, field, \
74 type_field, type_value) \
75 static inline out_type * \
76 name(const in_type *parent) \
77 { \
78 assert(parent && parent->type_field == type_value); \
79 return exec_node_data(out_type, parent, field); \
80 }
81
82 struct nir_function;
83 struct nir_shader;
84 struct nir_instr;
85 struct nir_builder;
86
87
88 /**
89 * Description of built-in state associated with a uniform
90 *
91 * \sa nir_variable::state_slots
92 */
93 typedef struct {
94 gl_state_index16 tokens[STATE_LENGTH];
95 int swizzle;
96 } nir_state_slot;
97
98 typedef enum {
99 nir_var_shader_in = (1 << 0),
100 nir_var_shader_out = (1 << 1),
101 nir_var_shader_temp = (1 << 2),
102 nir_var_function_temp = (1 << 3),
103 nir_var_uniform = (1 << 4),
104 nir_var_mem_ubo = (1 << 5),
105 nir_var_system_value = (1 << 6),
106 nir_var_mem_ssbo = (1 << 7),
107 nir_var_mem_shared = (1 << 8),
108 nir_var_mem_global = (1 << 9),
109 nir_var_all = ~0,
110 } nir_variable_mode;
111
112 /**
113 * Rounding modes.
114 */
115 typedef enum {
116 nir_rounding_mode_undef = 0,
117 nir_rounding_mode_rtne = 1, /* round to nearest even */
118 nir_rounding_mode_ru = 2, /* round up */
119 nir_rounding_mode_rd = 3, /* round down */
120 nir_rounding_mode_rtz = 4, /* round towards zero */
121 } nir_rounding_mode;
122
123 typedef union {
124 bool b;
125 float f32;
126 double f64;
127 int8_t i8;
128 uint8_t u8;
129 int16_t i16;
130 uint16_t u16;
131 int32_t i32;
132 uint32_t u32;
133 int64_t i64;
134 uint64_t u64;
135 } nir_const_value;
136
137 #define nir_const_value_to_array(arr, c, components, m) \
138 { \
139 for (unsigned i = 0; i < components; ++i) \
140 arr[i] = c[i].m; \
141 } while (false)
142
143 static inline nir_const_value
144 nir_const_value_for_raw_uint(uint64_t x, unsigned bit_size)
145 {
146 nir_const_value v;
147 memset(&v, 0, sizeof(v));
148
149 switch (bit_size) {
150 case 1: v.b = x; break;
151 case 8: v.u8 = x; break;
152 case 16: v.u16 = x; break;
153 case 32: v.u32 = x; break;
154 case 64: v.u64 = x; break;
155 default:
156 unreachable("Invalid bit size");
157 }
158
159 return v;
160 }
161
162 static inline nir_const_value
163 nir_const_value_for_int(int64_t i, unsigned bit_size)
164 {
165 nir_const_value v;
166 memset(&v, 0, sizeof(v));
167
168 assert(bit_size <= 64);
169 if (bit_size < 64) {
170 assert(i >= (-(1ll << (bit_size - 1))));
171 assert(i < (1ll << (bit_size - 1)));
172 }
173
174 return nir_const_value_for_raw_uint(i, bit_size);
175 }
176
177 static inline nir_const_value
178 nir_const_value_for_uint(uint64_t u, unsigned bit_size)
179 {
180 nir_const_value v;
181 memset(&v, 0, sizeof(v));
182
183 assert(bit_size <= 64);
184 if (bit_size < 64)
185 assert(u < (1ull << bit_size));
186
187 return nir_const_value_for_raw_uint(u, bit_size);
188 }
189
190 static inline nir_const_value
191 nir_const_value_for_bool(bool b, unsigned bit_size)
192 {
193 /* Booleans use a 0/-1 convention */
194 return nir_const_value_for_int(-(int)b, bit_size);
195 }
196
197 /* This one isn't inline because it requires half-float conversion */
198 nir_const_value nir_const_value_for_float(double b, unsigned bit_size);
199
200 static inline int64_t
201 nir_const_value_as_int(nir_const_value value, unsigned bit_size)
202 {
203 switch (bit_size) {
204 /* int1_t uses 0/-1 convention */
205 case 1: return -(int)value.b;
206 case 8: return value.i8;
207 case 16: return value.i16;
208 case 32: return value.i32;
209 case 64: return value.i64;
210 default:
211 unreachable("Invalid bit size");
212 }
213 }
214
215 static inline int64_t
216 nir_const_value_as_uint(nir_const_value value, unsigned bit_size)
217 {
218 switch (bit_size) {
219 case 1: return value.b;
220 case 8: return value.u8;
221 case 16: return value.u16;
222 case 32: return value.u32;
223 case 64: return value.u64;
224 default:
225 unreachable("Invalid bit size");
226 }
227 }
228
229 static inline bool
230 nir_const_value_as_bool(nir_const_value value, unsigned bit_size)
231 {
232 int64_t i = nir_const_value_as_int(value, bit_size);
233
234 /* Booleans of any size use 0/-1 convention */
235 assert(i == 0 || i == -1);
236
237 return i;
238 }
239
240 /* This one isn't inline because it requires half-float conversion */
241 double nir_const_value_as_float(nir_const_value value, unsigned bit_size);
242
243 typedef struct nir_constant {
244 /**
245 * Value of the constant.
246 *
247 * The field used to back the values supplied by the constant is determined
248 * by the type associated with the \c nir_variable. Constants may be
249 * scalars, vectors, or matrices.
250 */
251 nir_const_value values[NIR_MAX_VEC_COMPONENTS];
252
253 /* we could get this from the var->type but makes clone *much* easier to
254 * not have to care about the type.
255 */
256 unsigned num_elements;
257
258 /* Array elements / Structure Fields */
259 struct nir_constant **elements;
260 } nir_constant;
261
262 /**
263 * \brief Layout qualifiers for gl_FragDepth.
264 *
265 * The AMD/ARB_conservative_depth extensions allow gl_FragDepth to be redeclared
266 * with a layout qualifier.
267 */
268 typedef enum {
269 nir_depth_layout_none, /**< No depth layout is specified. */
270 nir_depth_layout_any,
271 nir_depth_layout_greater,
272 nir_depth_layout_less,
273 nir_depth_layout_unchanged
274 } nir_depth_layout;
275
276 /**
277 * Enum keeping track of how a variable was declared.
278 */
279 typedef enum {
280 /**
281 * Normal declaration.
282 */
283 nir_var_declared_normally = 0,
284
285 /**
286 * Variable is implicitly generated by the compiler and should not be
287 * visible via the API.
288 */
289 nir_var_hidden,
290 } nir_var_declaration_type;
291
292 /**
293 * Either a uniform, global variable, shader input, or shader output. Based on
294 * ir_variable - it should be easy to translate between the two.
295 */
296
297 typedef struct nir_variable {
298 struct exec_node node;
299
300 /**
301 * Declared type of the variable
302 */
303 const struct glsl_type *type;
304
305 /**
306 * Declared name of the variable
307 */
308 char *name;
309
310 struct nir_variable_data {
311 /**
312 * Storage class of the variable.
313 *
314 * \sa nir_variable_mode
315 */
316 nir_variable_mode mode;
317
318 /**
319 * Is the variable read-only?
320 *
321 * This is set for variables declared as \c const, shader inputs,
322 * and uniforms.
323 */
324 unsigned read_only:1;
325 unsigned centroid:1;
326 unsigned sample:1;
327 unsigned patch:1;
328 unsigned invariant:1;
329
330 /**
331 * Can this variable be coalesced with another?
332 *
333 * This is set by nir_lower_io_to_temporaries to say that any
334 * copies involving this variable should stay put. Propagating it can
335 * duplicate the resulting load/store, which is not wanted, and may
336 * result in a load/store of the variable with an indirect offset which
337 * the backend may not be able to handle.
338 */
339 unsigned cannot_coalesce:1;
340
341 /**
342 * When separate shader programs are enabled, only input/outputs between
343 * the stages of a multi-stage separate program can be safely removed
344 * from the shader interface. Other input/outputs must remains active.
345 *
346 * This is also used to make sure xfb varyings that are unused by the
347 * fragment shader are not removed.
348 */
349 unsigned always_active_io:1;
350
351 /**
352 * Interpolation mode for shader inputs / outputs
353 *
354 * \sa glsl_interp_mode
355 */
356 unsigned interpolation:2;
357
358 /**
359 * If non-zero, then this variable may be packed along with other variables
360 * into a single varying slot, so this offset should be applied when
361 * accessing components. For example, an offset of 1 means that the x
362 * component of this variable is actually stored in component y of the
363 * location specified by \c location.
364 */
365 unsigned location_frac:2;
366
367 /**
368 * If true, this variable represents an array of scalars that should
369 * be tightly packed. In other words, consecutive array elements
370 * should be stored one component apart, rather than one slot apart.
371 */
372 unsigned compact:1;
373
374 /**
375 * Whether this is a fragment shader output implicitly initialized with
376 * the previous contents of the specified render target at the
377 * framebuffer location corresponding to this shader invocation.
378 */
379 unsigned fb_fetch_output:1;
380
381 /**
382 * Non-zero if this variable is considered bindless as defined by
383 * ARB_bindless_texture.
384 */
385 unsigned bindless:1;
386
387 /**
388 * Was an explicit binding set in the shader?
389 */
390 unsigned explicit_binding:1;
391
392 /**
393 * Was a transfer feedback buffer set in the shader?
394 */
395 unsigned explicit_xfb_buffer:1;
396
397 /**
398 * Was a transfer feedback stride set in the shader?
399 */
400 unsigned explicit_xfb_stride:1;
401
402 /**
403 * Was an explicit offset set in the shader?
404 */
405 unsigned explicit_offset:1;
406
407 /**
408 * \brief Layout qualifier for gl_FragDepth.
409 *
410 * This is not equal to \c ir_depth_layout_none if and only if this
411 * variable is \c gl_FragDepth and a layout qualifier is specified.
412 */
413 nir_depth_layout depth_layout;
414
415 /**
416 * Storage location of the base of this variable
417 *
418 * The precise meaning of this field depends on the nature of the variable.
419 *
420 * - Vertex shader input: one of the values from \c gl_vert_attrib.
421 * - Vertex shader output: one of the values from \c gl_varying_slot.
422 * - Geometry shader input: one of the values from \c gl_varying_slot.
423 * - Geometry shader output: one of the values from \c gl_varying_slot.
424 * - Fragment shader input: one of the values from \c gl_varying_slot.
425 * - Fragment shader output: one of the values from \c gl_frag_result.
426 * - Uniforms: Per-stage uniform slot number for default uniform block.
427 * - Uniforms: Index within the uniform block definition for UBO members.
428 * - Non-UBO Uniforms: uniform slot number.
429 * - Other: This field is not currently used.
430 *
431 * If the variable is a uniform, shader input, or shader output, and the
432 * slot has not been assigned, the value will be -1.
433 */
434 int location;
435
436 /**
437 * The actual location of the variable in the IR. Only valid for inputs
438 * and outputs.
439 */
440 unsigned int driver_location;
441
442 /**
443 * Vertex stream output identifier.
444 *
445 * For packed outputs, bit 31 is set and bits [2*i+1,2*i] indicate the
446 * stream of the i-th component.
447 */
448 unsigned stream;
449
450 /**
451 * output index for dual source blending.
452 */
453 int index;
454
455 /**
456 * Descriptor set binding for sampler or UBO.
457 */
458 int descriptor_set;
459
460 /**
461 * Initial binding point for a sampler or UBO.
462 *
463 * For array types, this represents the binding point for the first element.
464 */
465 int binding;
466
467 /**
468 * Location an atomic counter or transform feedback is stored at.
469 */
470 unsigned offset;
471
472 /**
473 * Transform feedback buffer.
474 */
475 unsigned xfb_buffer;
476
477 /**
478 * Transform feedback stride.
479 */
480 unsigned xfb_stride;
481
482 /**
483 * How the variable was declared. See nir_var_declaration_type.
484 *
485 * This is used to detect variables generated by the compiler, so should
486 * not be visible via the API.
487 */
488 unsigned how_declared:2;
489
490 /**
491 * ARB_shader_image_load_store qualifiers.
492 */
493 struct {
494 enum gl_access_qualifier access;
495
496 /** Image internal format if specified explicitly, otherwise GL_NONE. */
497 GLenum format;
498 } image;
499 } data;
500
501 /**
502 * Built-in state that backs this uniform
503 *
504 * Once set at variable creation, \c state_slots must remain invariant.
505 * This is because, ideally, this array would be shared by all clones of
506 * this variable in the IR tree. In other words, we'd really like for it
507 * to be a fly-weight.
508 *
509 * If the variable is not a uniform, \c num_state_slots will be zero and
510 * \c state_slots will be \c NULL.
511 */
512 /*@{*/
513 unsigned num_state_slots; /**< Number of state slots used */
514 nir_state_slot *state_slots; /**< State descriptors. */
515 /*@}*/
516
517 /**
518 * Constant expression assigned in the initializer of the variable
519 *
520 * This field should only be used temporarily by creators of NIR shaders
521 * and then lower_constant_initializers can be used to get rid of them.
522 * Most of the rest of NIR ignores this field or asserts that it's NULL.
523 */
524 nir_constant *constant_initializer;
525
526 /**
527 * For variables that are in an interface block or are an instance of an
528 * interface block, this is the \c GLSL_TYPE_INTERFACE type for that block.
529 *
530 * \sa ir_variable::location
531 */
532 const struct glsl_type *interface_type;
533
534 /**
535 * Description of per-member data for per-member struct variables
536 *
537 * This is used for variables which are actually an amalgamation of
538 * multiple entities such as a struct of built-in values or a struct of
539 * inputs each with their own layout specifier. This is only allowed on
540 * variables with a struct or array of array of struct type.
541 */
542 unsigned num_members;
543 struct nir_variable_data *members;
544 } nir_variable;
545
546 #define nir_foreach_variable(var, var_list) \
547 foreach_list_typed(nir_variable, var, node, var_list)
548
549 #define nir_foreach_variable_safe(var, var_list) \
550 foreach_list_typed_safe(nir_variable, var, node, var_list)
551
552 static inline bool
553 nir_variable_is_global(const nir_variable *var)
554 {
555 return var->data.mode != nir_var_function_temp;
556 }
557
558 typedef struct nir_register {
559 struct exec_node node;
560
561 unsigned num_components; /** < number of vector components */
562 unsigned num_array_elems; /** < size of array (0 for no array) */
563
564 /* The bit-size of each channel; must be one of 8, 16, 32, or 64 */
565 uint8_t bit_size;
566
567 /** generic register index. */
568 unsigned index;
569
570 /** only for debug purposes, can be NULL */
571 const char *name;
572
573 /** set of nir_srcs where this register is used (read from) */
574 struct list_head uses;
575
576 /** set of nir_dests where this register is defined (written to) */
577 struct list_head defs;
578
579 /** set of nir_ifs where this register is used as a condition */
580 struct list_head if_uses;
581 } nir_register;
582
583 #define nir_foreach_register(reg, reg_list) \
584 foreach_list_typed(nir_register, reg, node, reg_list)
585 #define nir_foreach_register_safe(reg, reg_list) \
586 foreach_list_typed_safe(nir_register, reg, node, reg_list)
587
588 typedef enum PACKED {
589 nir_instr_type_alu,
590 nir_instr_type_deref,
591 nir_instr_type_call,
592 nir_instr_type_tex,
593 nir_instr_type_intrinsic,
594 nir_instr_type_load_const,
595 nir_instr_type_jump,
596 nir_instr_type_ssa_undef,
597 nir_instr_type_phi,
598 nir_instr_type_parallel_copy,
599 } nir_instr_type;
600
601 typedef struct nir_instr {
602 struct exec_node node;
603 struct nir_block *block;
604 nir_instr_type type;
605
606 /* A temporary for optimization and analysis passes to use for storing
607 * flags. For instance, DCE uses this to store the "dead/live" info.
608 */
609 uint8_t pass_flags;
610
611 /** generic instruction index. */
612 unsigned index;
613 } nir_instr;
614
615 static inline nir_instr *
616 nir_instr_next(nir_instr *instr)
617 {
618 struct exec_node *next = exec_node_get_next(&instr->node);
619 if (exec_node_is_tail_sentinel(next))
620 return NULL;
621 else
622 return exec_node_data(nir_instr, next, node);
623 }
624
625 static inline nir_instr *
626 nir_instr_prev(nir_instr *instr)
627 {
628 struct exec_node *prev = exec_node_get_prev(&instr->node);
629 if (exec_node_is_head_sentinel(prev))
630 return NULL;
631 else
632 return exec_node_data(nir_instr, prev, node);
633 }
634
635 static inline bool
636 nir_instr_is_first(const nir_instr *instr)
637 {
638 return exec_node_is_head_sentinel(exec_node_get_prev_const(&instr->node));
639 }
640
641 static inline bool
642 nir_instr_is_last(const nir_instr *instr)
643 {
644 return exec_node_is_tail_sentinel(exec_node_get_next_const(&instr->node));
645 }
646
647 typedef struct nir_ssa_def {
648 /** for debugging only, can be NULL */
649 const char* name;
650
651 /** generic SSA definition index. */
652 unsigned index;
653
654 /** Index into the live_in and live_out bitfields */
655 unsigned live_index;
656
657 /** Instruction which produces this SSA value. */
658 nir_instr *parent_instr;
659
660 /** set of nir_instrs where this register is used (read from) */
661 struct list_head uses;
662
663 /** set of nir_ifs where this register is used as a condition */
664 struct list_head if_uses;
665
666 uint8_t num_components;
667
668 /* The bit-size of each channel; must be one of 8, 16, 32, or 64 */
669 uint8_t bit_size;
670 } nir_ssa_def;
671
672 struct nir_src;
673
674 typedef struct {
675 nir_register *reg;
676 struct nir_src *indirect; /** < NULL for no indirect offset */
677 unsigned base_offset;
678
679 /* TODO use-def chain goes here */
680 } nir_reg_src;
681
682 typedef struct {
683 nir_instr *parent_instr;
684 struct list_head def_link;
685
686 nir_register *reg;
687 struct nir_src *indirect; /** < NULL for no indirect offset */
688 unsigned base_offset;
689
690 /* TODO def-use chain goes here */
691 } nir_reg_dest;
692
693 struct nir_if;
694
695 typedef struct nir_src {
696 union {
697 /** Instruction that consumes this value as a source. */
698 nir_instr *parent_instr;
699 struct nir_if *parent_if;
700 };
701
702 struct list_head use_link;
703
704 union {
705 nir_reg_src reg;
706 nir_ssa_def *ssa;
707 };
708
709 bool is_ssa;
710 } nir_src;
711
712 static inline nir_src
713 nir_src_init(void)
714 {
715 nir_src src = { { NULL } };
716 return src;
717 }
718
719 #define NIR_SRC_INIT nir_src_init()
720
721 #define nir_foreach_use(src, reg_or_ssa_def) \
722 list_for_each_entry(nir_src, src, &(reg_or_ssa_def)->uses, use_link)
723
724 #define nir_foreach_use_safe(src, reg_or_ssa_def) \
725 list_for_each_entry_safe(nir_src, src, &(reg_or_ssa_def)->uses, use_link)
726
727 #define nir_foreach_if_use(src, reg_or_ssa_def) \
728 list_for_each_entry(nir_src, src, &(reg_or_ssa_def)->if_uses, use_link)
729
730 #define nir_foreach_if_use_safe(src, reg_or_ssa_def) \
731 list_for_each_entry_safe(nir_src, src, &(reg_or_ssa_def)->if_uses, use_link)
732
733 typedef struct {
734 union {
735 nir_reg_dest reg;
736 nir_ssa_def ssa;
737 };
738
739 bool is_ssa;
740 } nir_dest;
741
742 static inline nir_dest
743 nir_dest_init(void)
744 {
745 nir_dest dest = { { { NULL } } };
746 return dest;
747 }
748
749 #define NIR_DEST_INIT nir_dest_init()
750
751 #define nir_foreach_def(dest, reg) \
752 list_for_each_entry(nir_dest, dest, &(reg)->defs, reg.def_link)
753
754 #define nir_foreach_def_safe(dest, reg) \
755 list_for_each_entry_safe(nir_dest, dest, &(reg)->defs, reg.def_link)
756
757 static inline nir_src
758 nir_src_for_ssa(nir_ssa_def *def)
759 {
760 nir_src src = NIR_SRC_INIT;
761
762 src.is_ssa = true;
763 src.ssa = def;
764
765 return src;
766 }
767
768 static inline nir_src
769 nir_src_for_reg(nir_register *reg)
770 {
771 nir_src src = NIR_SRC_INIT;
772
773 src.is_ssa = false;
774 src.reg.reg = reg;
775 src.reg.indirect = NULL;
776 src.reg.base_offset = 0;
777
778 return src;
779 }
780
781 static inline nir_dest
782 nir_dest_for_reg(nir_register *reg)
783 {
784 nir_dest dest = NIR_DEST_INIT;
785
786 dest.reg.reg = reg;
787
788 return dest;
789 }
790
791 static inline unsigned
792 nir_src_bit_size(nir_src src)
793 {
794 return src.is_ssa ? src.ssa->bit_size : src.reg.reg->bit_size;
795 }
796
797 static inline unsigned
798 nir_src_num_components(nir_src src)
799 {
800 return src.is_ssa ? src.ssa->num_components : src.reg.reg->num_components;
801 }
802
803 static inline bool
804 nir_src_is_const(nir_src src)
805 {
806 return src.is_ssa &&
807 src.ssa->parent_instr->type == nir_instr_type_load_const;
808 }
809
810 static inline unsigned
811 nir_dest_bit_size(nir_dest dest)
812 {
813 return dest.is_ssa ? dest.ssa.bit_size : dest.reg.reg->bit_size;
814 }
815
816 static inline unsigned
817 nir_dest_num_components(nir_dest dest)
818 {
819 return dest.is_ssa ? dest.ssa.num_components : dest.reg.reg->num_components;
820 }
821
822 void nir_src_copy(nir_src *dest, const nir_src *src, void *instr_or_if);
823 void nir_dest_copy(nir_dest *dest, const nir_dest *src, nir_instr *instr);
824
825 typedef struct {
826 nir_src src;
827
828 /**
829 * \name input modifiers
830 */
831 /*@{*/
832 /**
833 * For inputs interpreted as floating point, flips the sign bit. For
834 * inputs interpreted as integers, performs the two's complement negation.
835 */
836 bool negate;
837
838 /**
839 * Clears the sign bit for floating point values, and computes the integer
840 * absolute value for integers. Note that the negate modifier acts after
841 * the absolute value modifier, therefore if both are set then all inputs
842 * will become negative.
843 */
844 bool abs;
845 /*@}*/
846
847 /**
848 * For each input component, says which component of the register it is
849 * chosen from. Note that which elements of the swizzle are used and which
850 * are ignored are based on the write mask for most opcodes - for example,
851 * a statement like "foo.xzw = bar.zyx" would have a writemask of 1101b and
852 * a swizzle of {2, x, 1, 0} where x means "don't care."
853 */
854 uint8_t swizzle[NIR_MAX_VEC_COMPONENTS];
855 } nir_alu_src;
856
857 typedef struct {
858 nir_dest dest;
859
860 /**
861 * \name saturate output modifier
862 *
863 * Only valid for opcodes that output floating-point numbers. Clamps the
864 * output to between 0.0 and 1.0 inclusive.
865 */
866
867 bool saturate;
868
869 unsigned write_mask : NIR_MAX_VEC_COMPONENTS; /* ignored if dest.is_ssa is true */
870 } nir_alu_dest;
871
872 /** NIR sized and unsized types
873 *
874 * The values in this enum are carefully chosen so that the sized type is
875 * just the unsized type OR the number of bits.
876 */
877 typedef enum {
878 nir_type_invalid = 0, /* Not a valid type */
879 nir_type_int = 2,
880 nir_type_uint = 4,
881 nir_type_bool = 6,
882 nir_type_float = 128,
883 nir_type_bool1 = 1 | nir_type_bool,
884 nir_type_bool32 = 32 | nir_type_bool,
885 nir_type_int1 = 1 | nir_type_int,
886 nir_type_int8 = 8 | nir_type_int,
887 nir_type_int16 = 16 | nir_type_int,
888 nir_type_int32 = 32 | nir_type_int,
889 nir_type_int64 = 64 | nir_type_int,
890 nir_type_uint1 = 1 | nir_type_uint,
891 nir_type_uint8 = 8 | nir_type_uint,
892 nir_type_uint16 = 16 | nir_type_uint,
893 nir_type_uint32 = 32 | nir_type_uint,
894 nir_type_uint64 = 64 | nir_type_uint,
895 nir_type_float16 = 16 | nir_type_float,
896 nir_type_float32 = 32 | nir_type_float,
897 nir_type_float64 = 64 | nir_type_float,
898 } nir_alu_type;
899
900 #define NIR_ALU_TYPE_SIZE_MASK 0x79
901 #define NIR_ALU_TYPE_BASE_TYPE_MASK 0x86
902
903 static inline unsigned
904 nir_alu_type_get_type_size(nir_alu_type type)
905 {
906 return type & NIR_ALU_TYPE_SIZE_MASK;
907 }
908
909 static inline unsigned
910 nir_alu_type_get_base_type(nir_alu_type type)
911 {
912 return type & NIR_ALU_TYPE_BASE_TYPE_MASK;
913 }
914
915 static inline nir_alu_type
916 nir_get_nir_type_for_glsl_base_type(enum glsl_base_type base_type)
917 {
918 switch (base_type) {
919 case GLSL_TYPE_BOOL:
920 return nir_type_bool1;
921 break;
922 case GLSL_TYPE_UINT:
923 return nir_type_uint32;
924 break;
925 case GLSL_TYPE_INT:
926 return nir_type_int32;
927 break;
928 case GLSL_TYPE_UINT16:
929 return nir_type_uint16;
930 break;
931 case GLSL_TYPE_INT16:
932 return nir_type_int16;
933 break;
934 case GLSL_TYPE_UINT8:
935 return nir_type_uint8;
936 case GLSL_TYPE_INT8:
937 return nir_type_int8;
938 case GLSL_TYPE_UINT64:
939 return nir_type_uint64;
940 break;
941 case GLSL_TYPE_INT64:
942 return nir_type_int64;
943 break;
944 case GLSL_TYPE_FLOAT:
945 return nir_type_float32;
946 break;
947 case GLSL_TYPE_FLOAT16:
948 return nir_type_float16;
949 break;
950 case GLSL_TYPE_DOUBLE:
951 return nir_type_float64;
952 break;
953
954 case GLSL_TYPE_SAMPLER:
955 case GLSL_TYPE_IMAGE:
956 case GLSL_TYPE_ATOMIC_UINT:
957 case GLSL_TYPE_STRUCT:
958 case GLSL_TYPE_INTERFACE:
959 case GLSL_TYPE_ARRAY:
960 case GLSL_TYPE_VOID:
961 case GLSL_TYPE_SUBROUTINE:
962 case GLSL_TYPE_FUNCTION:
963 case GLSL_TYPE_ERROR:
964 return nir_type_invalid;
965 }
966
967 unreachable("unknown type");
968 }
969
970 static inline nir_alu_type
971 nir_get_nir_type_for_glsl_type(const struct glsl_type *type)
972 {
973 return nir_get_nir_type_for_glsl_base_type(glsl_get_base_type(type));
974 }
975
976 nir_op nir_type_conversion_op(nir_alu_type src, nir_alu_type dst,
977 nir_rounding_mode rnd);
978
979 static inline nir_op
980 nir_op_vec(unsigned components)
981 {
982 switch (components) {
983 case 1: return nir_op_mov;
984 case 2: return nir_op_vec2;
985 case 3: return nir_op_vec3;
986 case 4: return nir_op_vec4;
987 default: unreachable("bad component count");
988 }
989 }
990
991 static inline bool
992 nir_is_float_control_signed_zero_inf_nan_preserve(unsigned execution_mode, unsigned bit_size)
993 {
994 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP16) ||
995 (32 == bit_size && execution_mode & FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP32) ||
996 (64 == bit_size && execution_mode & FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP64);
997 }
998
999 static inline bool
1000 nir_is_denorm_flush_to_zero(unsigned execution_mode, unsigned bit_size)
1001 {
1002 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP16) ||
1003 (32 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP32) ||
1004 (64 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP64);
1005 }
1006
1007 static inline bool
1008 nir_is_denorm_preserve(unsigned execution_mode, unsigned bit_size)
1009 {
1010 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_PRESERVE_FP16) ||
1011 (32 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_PRESERVE_FP32) ||
1012 (64 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_PRESERVE_FP64);
1013 }
1014
1015 static inline bool
1016 nir_is_rounding_mode_rtne(unsigned execution_mode, unsigned bit_size)
1017 {
1018 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP16) ||
1019 (32 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP32) ||
1020 (64 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP64);
1021 }
1022
1023 static inline bool
1024 nir_is_rounding_mode_rtz(unsigned execution_mode, unsigned bit_size)
1025 {
1026 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP16) ||
1027 (32 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP32) ||
1028 (64 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP64);
1029 }
1030
1031 static inline bool
1032 nir_has_any_rounding_mode_rtz(unsigned execution_mode)
1033 {
1034 return (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP16) ||
1035 (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP32) ||
1036 (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP64);
1037 }
1038
1039 static inline bool
1040 nir_has_any_rounding_mode_rtne(unsigned execution_mode)
1041 {
1042 return (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP16) ||
1043 (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP32) ||
1044 (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP64);
1045 }
1046
1047 static inline nir_rounding_mode
1048 nir_get_rounding_mode_from_float_controls(unsigned execution_mode,
1049 nir_alu_type type)
1050 {
1051 if (nir_alu_type_get_base_type(type) != nir_type_float)
1052 return nir_rounding_mode_undef;
1053
1054 unsigned bit_size = nir_alu_type_get_type_size(type);
1055
1056 if (nir_is_rounding_mode_rtz(execution_mode, bit_size))
1057 return nir_rounding_mode_rtz;
1058 if (nir_is_rounding_mode_rtne(execution_mode, bit_size))
1059 return nir_rounding_mode_rtne;
1060 return nir_rounding_mode_undef;
1061 }
1062
1063 static inline bool
1064 nir_has_any_rounding_mode_enabled(unsigned execution_mode)
1065 {
1066 bool result =
1067 nir_has_any_rounding_mode_rtne(execution_mode) ||
1068 nir_has_any_rounding_mode_rtz(execution_mode);
1069 return result;
1070 }
1071
1072 typedef enum {
1073 /**
1074 * Operation where the first two sources are commutative.
1075 *
1076 * For 2-source operations, this just mathematical commutativity. Some
1077 * 3-source operations, like ffma, are only commutative in the first two
1078 * sources.
1079 */
1080 NIR_OP_IS_2SRC_COMMUTATIVE = (1 << 0),
1081 NIR_OP_IS_ASSOCIATIVE = (1 << 1),
1082 } nir_op_algebraic_property;
1083
1084 typedef struct {
1085 const char *name;
1086
1087 unsigned num_inputs;
1088
1089 /**
1090 * The number of components in the output
1091 *
1092 * If non-zero, this is the size of the output and input sizes are
1093 * explicitly given; swizzle and writemask are still in effect, but if
1094 * the output component is masked out, then the input component may
1095 * still be in use.
1096 *
1097 * If zero, the opcode acts in the standard, per-component manner; the
1098 * operation is performed on each component (except the ones that are
1099 * masked out) with the input being taken from the input swizzle for
1100 * that component.
1101 *
1102 * The size of some of the inputs may be given (i.e. non-zero) even
1103 * though output_size is zero; in that case, the inputs with a zero
1104 * size act per-component, while the inputs with non-zero size don't.
1105 */
1106 unsigned output_size;
1107
1108 /**
1109 * The type of vector that the instruction outputs. Note that the
1110 * staurate modifier is only allowed on outputs with the float type.
1111 */
1112
1113 nir_alu_type output_type;
1114
1115 /**
1116 * The number of components in each input
1117 */
1118 unsigned input_sizes[NIR_MAX_VEC_COMPONENTS];
1119
1120 /**
1121 * The type of vector that each input takes. Note that negate and
1122 * absolute value are only allowed on inputs with int or float type and
1123 * behave differently on the two.
1124 */
1125 nir_alu_type input_types[NIR_MAX_VEC_COMPONENTS];
1126
1127 nir_op_algebraic_property algebraic_properties;
1128
1129 /* Whether this represents a numeric conversion opcode */
1130 bool is_conversion;
1131 } nir_op_info;
1132
1133 extern const nir_op_info nir_op_infos[nir_num_opcodes];
1134
1135 typedef struct nir_alu_instr {
1136 nir_instr instr;
1137 nir_op op;
1138
1139 /** Indicates that this ALU instruction generates an exact value
1140 *
1141 * This is kind of a mixture of GLSL "precise" and "invariant" and not
1142 * really equivalent to either. This indicates that the value generated by
1143 * this operation is high-precision and any code transformations that touch
1144 * it must ensure that the resulting value is bit-for-bit identical to the
1145 * original.
1146 */
1147 bool exact:1;
1148
1149 /**
1150 * Indicates that this instruction do not cause wrapping to occur, in the
1151 * form of overflow or underflow.
1152 */
1153 bool no_signed_wrap:1;
1154 bool no_unsigned_wrap:1;
1155
1156 nir_alu_dest dest;
1157 nir_alu_src src[];
1158 } nir_alu_instr;
1159
1160 void nir_alu_src_copy(nir_alu_src *dest, const nir_alu_src *src,
1161 nir_alu_instr *instr);
1162 void nir_alu_dest_copy(nir_alu_dest *dest, const nir_alu_dest *src,
1163 nir_alu_instr *instr);
1164
1165 /* is this source channel used? */
1166 static inline bool
1167 nir_alu_instr_channel_used(const nir_alu_instr *instr, unsigned src,
1168 unsigned channel)
1169 {
1170 if (nir_op_infos[instr->op].input_sizes[src] > 0)
1171 return channel < nir_op_infos[instr->op].input_sizes[src];
1172
1173 return (instr->dest.write_mask >> channel) & 1;
1174 }
1175
1176 static inline nir_component_mask_t
1177 nir_alu_instr_src_read_mask(const nir_alu_instr *instr, unsigned src)
1178 {
1179 nir_component_mask_t read_mask = 0;
1180 for (unsigned c = 0; c < NIR_MAX_VEC_COMPONENTS; c++) {
1181 if (!nir_alu_instr_channel_used(instr, src, c))
1182 continue;
1183
1184 read_mask |= (1 << instr->src[src].swizzle[c]);
1185 }
1186 return read_mask;
1187 }
1188
1189 /**
1190 * Get the number of channels used for a source
1191 */
1192 static inline unsigned
1193 nir_ssa_alu_instr_src_components(const nir_alu_instr *instr, unsigned src)
1194 {
1195 if (nir_op_infos[instr->op].input_sizes[src] > 0)
1196 return nir_op_infos[instr->op].input_sizes[src];
1197
1198 return nir_dest_num_components(instr->dest.dest);
1199 }
1200
1201 static inline bool
1202 nir_alu_instr_is_comparison(const nir_alu_instr *instr)
1203 {
1204 switch (instr->op) {
1205 case nir_op_flt:
1206 case nir_op_fge:
1207 case nir_op_feq:
1208 case nir_op_fne:
1209 case nir_op_ilt:
1210 case nir_op_ult:
1211 case nir_op_ige:
1212 case nir_op_uge:
1213 case nir_op_ieq:
1214 case nir_op_ine:
1215 case nir_op_i2b1:
1216 case nir_op_f2b1:
1217 case nir_op_inot:
1218 return true;
1219 default:
1220 return false;
1221 }
1222 }
1223
1224 bool nir_const_value_negative_equal(nir_const_value c1, nir_const_value c2,
1225 nir_alu_type full_type);
1226
1227 bool nir_alu_srcs_equal(const nir_alu_instr *alu1, const nir_alu_instr *alu2,
1228 unsigned src1, unsigned src2);
1229
1230 bool nir_alu_srcs_negative_equal(const nir_alu_instr *alu1,
1231 const nir_alu_instr *alu2,
1232 unsigned src1, unsigned src2);
1233
1234 typedef enum {
1235 nir_deref_type_var,
1236 nir_deref_type_array,
1237 nir_deref_type_array_wildcard,
1238 nir_deref_type_ptr_as_array,
1239 nir_deref_type_struct,
1240 nir_deref_type_cast,
1241 } nir_deref_type;
1242
1243 typedef struct {
1244 nir_instr instr;
1245
1246 /** The type of this deref instruction */
1247 nir_deref_type deref_type;
1248
1249 /** The mode of the underlying variable */
1250 nir_variable_mode mode;
1251
1252 /** The dereferenced type of the resulting pointer value */
1253 const struct glsl_type *type;
1254
1255 union {
1256 /** Variable being dereferenced if deref_type is a deref_var */
1257 nir_variable *var;
1258
1259 /** Parent deref if deref_type is not deref_var */
1260 nir_src parent;
1261 };
1262
1263 /** Additional deref parameters */
1264 union {
1265 struct {
1266 nir_src index;
1267 } arr;
1268
1269 struct {
1270 unsigned index;
1271 } strct;
1272
1273 struct {
1274 unsigned ptr_stride;
1275 } cast;
1276 };
1277
1278 /** Destination to store the resulting "pointer" */
1279 nir_dest dest;
1280 } nir_deref_instr;
1281
1282 static inline nir_deref_instr *nir_src_as_deref(nir_src src);
1283
1284 static inline nir_deref_instr *
1285 nir_deref_instr_parent(const nir_deref_instr *instr)
1286 {
1287 if (instr->deref_type == nir_deref_type_var)
1288 return NULL;
1289 else
1290 return nir_src_as_deref(instr->parent);
1291 }
1292
1293 static inline nir_variable *
1294 nir_deref_instr_get_variable(const nir_deref_instr *instr)
1295 {
1296 while (instr->deref_type != nir_deref_type_var) {
1297 if (instr->deref_type == nir_deref_type_cast)
1298 return NULL;
1299
1300 instr = nir_deref_instr_parent(instr);
1301 }
1302
1303 return instr->var;
1304 }
1305
1306 bool nir_deref_instr_has_indirect(nir_deref_instr *instr);
1307 bool nir_deref_instr_is_known_out_of_bounds(nir_deref_instr *instr);
1308 bool nir_deref_instr_has_complex_use(nir_deref_instr *instr);
1309
1310 bool nir_deref_instr_remove_if_unused(nir_deref_instr *instr);
1311
1312 unsigned nir_deref_instr_ptr_as_array_stride(nir_deref_instr *instr);
1313
1314 typedef struct {
1315 nir_instr instr;
1316
1317 struct nir_function *callee;
1318
1319 unsigned num_params;
1320 nir_src params[];
1321 } nir_call_instr;
1322
1323 #include "nir_intrinsics.h"
1324
1325 #define NIR_INTRINSIC_MAX_CONST_INDEX 4
1326
1327 /** Represents an intrinsic
1328 *
1329 * An intrinsic is an instruction type for handling things that are
1330 * more-or-less regular operations but don't just consume and produce SSA
1331 * values like ALU operations do. Intrinsics are not for things that have
1332 * special semantic meaning such as phi nodes and parallel copies.
1333 * Examples of intrinsics include variable load/store operations, system
1334 * value loads, and the like. Even though texturing more-or-less falls
1335 * under this category, texturing is its own instruction type because
1336 * trying to represent texturing with intrinsics would lead to a
1337 * combinatorial explosion of intrinsic opcodes.
1338 *
1339 * By having a single instruction type for handling a lot of different
1340 * cases, optimization passes can look for intrinsics and, for the most
1341 * part, completely ignore them. Each intrinsic type also has a few
1342 * possible flags that govern whether or not they can be reordered or
1343 * eliminated. That way passes like dead code elimination can still work
1344 * on intrisics without understanding the meaning of each.
1345 *
1346 * Each intrinsic has some number of constant indices, some number of
1347 * variables, and some number of sources. What these sources, variables,
1348 * and indices mean depends on the intrinsic and is documented with the
1349 * intrinsic declaration in nir_intrinsics.h. Intrinsics and texture
1350 * instructions are the only types of instruction that can operate on
1351 * variables.
1352 */
1353 typedef struct {
1354 nir_instr instr;
1355
1356 nir_intrinsic_op intrinsic;
1357
1358 nir_dest dest;
1359
1360 /** number of components if this is a vectorized intrinsic
1361 *
1362 * Similarly to ALU operations, some intrinsics are vectorized.
1363 * An intrinsic is vectorized if nir_intrinsic_infos.dest_components == 0.
1364 * For vectorized intrinsics, the num_components field specifies the
1365 * number of destination components and the number of source components
1366 * for all sources with nir_intrinsic_infos.src_components[i] == 0.
1367 */
1368 uint8_t num_components;
1369
1370 int const_index[NIR_INTRINSIC_MAX_CONST_INDEX];
1371
1372 nir_src src[];
1373 } nir_intrinsic_instr;
1374
1375 static inline nir_variable *
1376 nir_intrinsic_get_var(nir_intrinsic_instr *intrin, unsigned i)
1377 {
1378 return nir_deref_instr_get_variable(nir_src_as_deref(intrin->src[i]));
1379 }
1380
1381 /**
1382 * \name NIR intrinsics semantic flags
1383 *
1384 * information about what the compiler can do with the intrinsics.
1385 *
1386 * \sa nir_intrinsic_info::flags
1387 */
1388 typedef enum {
1389 /**
1390 * whether the intrinsic can be safely eliminated if none of its output
1391 * value is not being used.
1392 */
1393 NIR_INTRINSIC_CAN_ELIMINATE = (1 << 0),
1394
1395 /**
1396 * Whether the intrinsic can be reordered with respect to any other
1397 * intrinsic, i.e. whether the only reordering dependencies of the
1398 * intrinsic are due to the register reads/writes.
1399 */
1400 NIR_INTRINSIC_CAN_REORDER = (1 << 1),
1401 } nir_intrinsic_semantic_flag;
1402
1403 /**
1404 * \name NIR intrinsics const-index flag
1405 *
1406 * Indicates the usage of a const_index slot.
1407 *
1408 * \sa nir_intrinsic_info::index_map
1409 */
1410 typedef enum {
1411 /**
1412 * Generally instructions that take a offset src argument, can encode
1413 * a constant 'base' value which is added to the offset.
1414 */
1415 NIR_INTRINSIC_BASE = 1,
1416
1417 /**
1418 * For store instructions, a writemask for the store.
1419 */
1420 NIR_INTRINSIC_WRMASK,
1421
1422 /**
1423 * The stream-id for GS emit_vertex/end_primitive intrinsics.
1424 */
1425 NIR_INTRINSIC_STREAM_ID,
1426
1427 /**
1428 * The clip-plane id for load_user_clip_plane intrinsic.
1429 */
1430 NIR_INTRINSIC_UCP_ID,
1431
1432 /**
1433 * The amount of data, starting from BASE, that this instruction may
1434 * access. This is used to provide bounds if the offset is not constant.
1435 */
1436 NIR_INTRINSIC_RANGE,
1437
1438 /**
1439 * The Vulkan descriptor set for vulkan_resource_index intrinsic.
1440 */
1441 NIR_INTRINSIC_DESC_SET,
1442
1443 /**
1444 * The Vulkan descriptor set binding for vulkan_resource_index intrinsic.
1445 */
1446 NIR_INTRINSIC_BINDING,
1447
1448 /**
1449 * Component offset.
1450 */
1451 NIR_INTRINSIC_COMPONENT,
1452
1453 /**
1454 * Interpolation mode (only meaningful for FS inputs).
1455 */
1456 NIR_INTRINSIC_INTERP_MODE,
1457
1458 /**
1459 * A binary nir_op to use when performing a reduction or scan operation
1460 */
1461 NIR_INTRINSIC_REDUCTION_OP,
1462
1463 /**
1464 * Cluster size for reduction operations
1465 */
1466 NIR_INTRINSIC_CLUSTER_SIZE,
1467
1468 /**
1469 * Parameter index for a load_param intrinsic
1470 */
1471 NIR_INTRINSIC_PARAM_IDX,
1472
1473 /**
1474 * Image dimensionality for image intrinsics
1475 *
1476 * One of GLSL_SAMPLER_DIM_*
1477 */
1478 NIR_INTRINSIC_IMAGE_DIM,
1479
1480 /**
1481 * Non-zero if we are accessing an array image
1482 */
1483 NIR_INTRINSIC_IMAGE_ARRAY,
1484
1485 /**
1486 * Image format for image intrinsics
1487 */
1488 NIR_INTRINSIC_FORMAT,
1489
1490 /**
1491 * Access qualifiers for image and memory access intrinsics
1492 */
1493 NIR_INTRINSIC_ACCESS,
1494
1495 /**
1496 * Alignment for offsets and addresses
1497 *
1498 * These two parameters, specify an alignment in terms of a multiplier and
1499 * an offset. The offset or address parameter X of the intrinsic is
1500 * guaranteed to satisfy the following:
1501 *
1502 * (X - align_offset) % align_mul == 0
1503 */
1504 NIR_INTRINSIC_ALIGN_MUL,
1505 NIR_INTRINSIC_ALIGN_OFFSET,
1506
1507 /**
1508 * The Vulkan descriptor type for a vulkan_resource_[re]index intrinsic.
1509 */
1510 NIR_INTRINSIC_DESC_TYPE,
1511
1512 /**
1513 * The nir_alu_type of a uniform/input/output
1514 */
1515 NIR_INTRINSIC_TYPE,
1516
1517 /**
1518 * The swizzle mask for the instructions
1519 * SwizzleInvocationsAMD and SwizzleInvocationsMaskedAMD
1520 */
1521 NIR_INTRINSIC_SWIZZLE_MASK,
1522
1523 /* Separate source/dest access flags for copies */
1524 NIR_INTRINSIC_SRC_ACCESS,
1525 NIR_INTRINSIC_DST_ACCESS,
1526
1527 /* Driver location for nir_load_patch_location_ir3 */
1528 NIR_INTRINSIC_DRIVER_LOCATION,
1529
1530 NIR_INTRINSIC_NUM_INDEX_FLAGS,
1531
1532 } nir_intrinsic_index_flag;
1533
1534 #define NIR_INTRINSIC_MAX_INPUTS 5
1535
1536 typedef struct {
1537 const char *name;
1538
1539 unsigned num_srcs; /** < number of register/SSA inputs */
1540
1541 /** number of components of each input register
1542 *
1543 * If this value is 0, the number of components is given by the
1544 * num_components field of nir_intrinsic_instr. If this value is -1, the
1545 * intrinsic consumes however many components are provided and it is not
1546 * validated at all.
1547 */
1548 int src_components[NIR_INTRINSIC_MAX_INPUTS];
1549
1550 bool has_dest;
1551
1552 /** number of components of the output register
1553 *
1554 * If this value is 0, the number of components is given by the
1555 * num_components field of nir_intrinsic_instr.
1556 */
1557 unsigned dest_components;
1558
1559 /** bitfield of legal bit sizes */
1560 unsigned dest_bit_sizes;
1561
1562 /** the number of constant indices used by the intrinsic */
1563 unsigned num_indices;
1564
1565 /** indicates the usage of intr->const_index[n] */
1566 unsigned index_map[NIR_INTRINSIC_NUM_INDEX_FLAGS];
1567
1568 /** semantic flags for calls to this intrinsic */
1569 nir_intrinsic_semantic_flag flags;
1570 } nir_intrinsic_info;
1571
1572 extern const nir_intrinsic_info nir_intrinsic_infos[nir_num_intrinsics];
1573
1574 static inline unsigned
1575 nir_intrinsic_src_components(nir_intrinsic_instr *intr, unsigned srcn)
1576 {
1577 const nir_intrinsic_info *info = &nir_intrinsic_infos[intr->intrinsic];
1578 assert(srcn < info->num_srcs);
1579 if (info->src_components[srcn] > 0)
1580 return info->src_components[srcn];
1581 else if (info->src_components[srcn] == 0)
1582 return intr->num_components;
1583 else
1584 return nir_src_num_components(intr->src[srcn]);
1585 }
1586
1587 static inline unsigned
1588 nir_intrinsic_dest_components(nir_intrinsic_instr *intr)
1589 {
1590 const nir_intrinsic_info *info = &nir_intrinsic_infos[intr->intrinsic];
1591 if (!info->has_dest)
1592 return 0;
1593 else if (info->dest_components)
1594 return info->dest_components;
1595 else
1596 return intr->num_components;
1597 }
1598
1599 #define INTRINSIC_IDX_ACCESSORS(name, flag, type) \
1600 static inline type \
1601 nir_intrinsic_##name(const nir_intrinsic_instr *instr) \
1602 { \
1603 const nir_intrinsic_info *info = &nir_intrinsic_infos[instr->intrinsic]; \
1604 assert(info->index_map[NIR_INTRINSIC_##flag] > 0); \
1605 return (type)instr->const_index[info->index_map[NIR_INTRINSIC_##flag] - 1]; \
1606 } \
1607 static inline void \
1608 nir_intrinsic_set_##name(nir_intrinsic_instr *instr, type val) \
1609 { \
1610 const nir_intrinsic_info *info = &nir_intrinsic_infos[instr->intrinsic]; \
1611 assert(info->index_map[NIR_INTRINSIC_##flag] > 0); \
1612 instr->const_index[info->index_map[NIR_INTRINSIC_##flag] - 1] = val; \
1613 }
1614
1615 INTRINSIC_IDX_ACCESSORS(write_mask, WRMASK, unsigned)
1616 INTRINSIC_IDX_ACCESSORS(base, BASE, int)
1617 INTRINSIC_IDX_ACCESSORS(stream_id, STREAM_ID, unsigned)
1618 INTRINSIC_IDX_ACCESSORS(ucp_id, UCP_ID, unsigned)
1619 INTRINSIC_IDX_ACCESSORS(range, RANGE, unsigned)
1620 INTRINSIC_IDX_ACCESSORS(desc_set, DESC_SET, unsigned)
1621 INTRINSIC_IDX_ACCESSORS(binding, BINDING, unsigned)
1622 INTRINSIC_IDX_ACCESSORS(component, COMPONENT, unsigned)
1623 INTRINSIC_IDX_ACCESSORS(interp_mode, INTERP_MODE, unsigned)
1624 INTRINSIC_IDX_ACCESSORS(reduction_op, REDUCTION_OP, unsigned)
1625 INTRINSIC_IDX_ACCESSORS(cluster_size, CLUSTER_SIZE, unsigned)
1626 INTRINSIC_IDX_ACCESSORS(param_idx, PARAM_IDX, unsigned)
1627 INTRINSIC_IDX_ACCESSORS(image_dim, IMAGE_DIM, enum glsl_sampler_dim)
1628 INTRINSIC_IDX_ACCESSORS(image_array, IMAGE_ARRAY, bool)
1629 INTRINSIC_IDX_ACCESSORS(access, ACCESS, enum gl_access_qualifier)
1630 INTRINSIC_IDX_ACCESSORS(src_access, SRC_ACCESS, enum gl_access_qualifier)
1631 INTRINSIC_IDX_ACCESSORS(dst_access, DST_ACCESS, enum gl_access_qualifier)
1632 INTRINSIC_IDX_ACCESSORS(format, FORMAT, unsigned)
1633 INTRINSIC_IDX_ACCESSORS(align_mul, ALIGN_MUL, unsigned)
1634 INTRINSIC_IDX_ACCESSORS(align_offset, ALIGN_OFFSET, unsigned)
1635 INTRINSIC_IDX_ACCESSORS(desc_type, DESC_TYPE, unsigned)
1636 INTRINSIC_IDX_ACCESSORS(type, TYPE, nir_alu_type)
1637 INTRINSIC_IDX_ACCESSORS(swizzle_mask, SWIZZLE_MASK, unsigned)
1638 INTRINSIC_IDX_ACCESSORS(driver_location, DRIVER_LOCATION, unsigned)
1639
1640 static inline void
1641 nir_intrinsic_set_align(nir_intrinsic_instr *intrin,
1642 unsigned align_mul, unsigned align_offset)
1643 {
1644 assert(util_is_power_of_two_nonzero(align_mul));
1645 assert(align_offset < align_mul);
1646 nir_intrinsic_set_align_mul(intrin, align_mul);
1647 nir_intrinsic_set_align_offset(intrin, align_offset);
1648 }
1649
1650 /** Returns a simple alignment for a load/store intrinsic offset
1651 *
1652 * Instead of the full mul+offset alignment scheme provided by the ALIGN_MUL
1653 * and ALIGN_OFFSET parameters, this helper takes both into account and
1654 * provides a single simple alignment parameter. The offset X is guaranteed
1655 * to satisfy X % align == 0.
1656 */
1657 static inline unsigned
1658 nir_intrinsic_align(const nir_intrinsic_instr *intrin)
1659 {
1660 const unsigned align_mul = nir_intrinsic_align_mul(intrin);
1661 const unsigned align_offset = nir_intrinsic_align_offset(intrin);
1662 assert(align_offset < align_mul);
1663 return align_offset ? 1 << (ffs(align_offset) - 1) : align_mul;
1664 }
1665
1666 /* Converts a image_deref_* intrinsic into a image_* one */
1667 void nir_rewrite_image_intrinsic(nir_intrinsic_instr *instr,
1668 nir_ssa_def *handle, bool bindless);
1669
1670 /* Determine if an intrinsic can be arbitrarily reordered and eliminated. */
1671 static inline bool
1672 nir_intrinsic_can_reorder(nir_intrinsic_instr *instr)
1673 {
1674 if (instr->intrinsic == nir_intrinsic_load_deref ||
1675 instr->intrinsic == nir_intrinsic_load_ssbo ||
1676 instr->intrinsic == nir_intrinsic_bindless_image_load ||
1677 instr->intrinsic == nir_intrinsic_image_deref_load ||
1678 instr->intrinsic == nir_intrinsic_image_load) {
1679 return nir_intrinsic_access(instr) & ACCESS_CAN_REORDER;
1680 } else {
1681 const nir_intrinsic_info *info =
1682 &nir_intrinsic_infos[instr->intrinsic];
1683 return (info->flags & NIR_INTRINSIC_CAN_ELIMINATE) &&
1684 (info->flags & NIR_INTRINSIC_CAN_REORDER);
1685 }
1686 }
1687
1688 /**
1689 * \group texture information
1690 *
1691 * This gives semantic information about textures which is useful to the
1692 * frontend, the backend, and lowering passes, but not the optimizer.
1693 */
1694
1695 typedef enum {
1696 nir_tex_src_coord,
1697 nir_tex_src_projector,
1698 nir_tex_src_comparator, /* shadow comparator */
1699 nir_tex_src_offset,
1700 nir_tex_src_bias,
1701 nir_tex_src_lod,
1702 nir_tex_src_min_lod,
1703 nir_tex_src_ms_index, /* MSAA sample index */
1704 nir_tex_src_ms_mcs, /* MSAA compression value */
1705 nir_tex_src_ddx,
1706 nir_tex_src_ddy,
1707 nir_tex_src_texture_deref, /* < deref pointing to the texture */
1708 nir_tex_src_sampler_deref, /* < deref pointing to the sampler */
1709 nir_tex_src_texture_offset, /* < dynamically uniform indirect offset */
1710 nir_tex_src_sampler_offset, /* < dynamically uniform indirect offset */
1711 nir_tex_src_texture_handle, /* < bindless texture handle */
1712 nir_tex_src_sampler_handle, /* < bindless sampler handle */
1713 nir_tex_src_plane, /* < selects plane for planar textures */
1714 nir_num_tex_src_types
1715 } nir_tex_src_type;
1716
1717 typedef struct {
1718 nir_src src;
1719 nir_tex_src_type src_type;
1720 } nir_tex_src;
1721
1722 typedef enum {
1723 nir_texop_tex, /**< Regular texture look-up */
1724 nir_texop_txb, /**< Texture look-up with LOD bias */
1725 nir_texop_txl, /**< Texture look-up with explicit LOD */
1726 nir_texop_txd, /**< Texture look-up with partial derivatives */
1727 nir_texop_txf, /**< Texel fetch with explicit LOD */
1728 nir_texop_txf_ms, /**< Multisample texture fetch */
1729 nir_texop_txf_ms_fb, /**< Multisample texture fetch from framebuffer */
1730 nir_texop_txf_ms_mcs, /**< Multisample compression value fetch */
1731 nir_texop_txs, /**< Texture size */
1732 nir_texop_lod, /**< Texture lod query */
1733 nir_texop_tg4, /**< Texture gather */
1734 nir_texop_query_levels, /**< Texture levels query */
1735 nir_texop_texture_samples, /**< Texture samples query */
1736 nir_texop_samples_identical, /**< Query whether all samples are definitely
1737 * identical.
1738 */
1739 } nir_texop;
1740
1741 typedef struct {
1742 nir_instr instr;
1743
1744 enum glsl_sampler_dim sampler_dim;
1745 nir_alu_type dest_type;
1746
1747 nir_texop op;
1748 nir_dest dest;
1749 nir_tex_src *src;
1750 unsigned num_srcs, coord_components;
1751 bool is_array, is_shadow;
1752
1753 /**
1754 * If is_shadow is true, whether this is the old-style shadow that outputs 4
1755 * components or the new-style shadow that outputs 1 component.
1756 */
1757 bool is_new_style_shadow;
1758
1759 /* gather component selector */
1760 unsigned component : 2;
1761
1762 /* gather offsets */
1763 int8_t tg4_offsets[4][2];
1764
1765 /* True if the texture index or handle is not dynamically uniform */
1766 bool texture_non_uniform;
1767
1768 /* True if the sampler index or handle is not dynamically uniform */
1769 bool sampler_non_uniform;
1770
1771 /** The texture index
1772 *
1773 * If this texture instruction has a nir_tex_src_texture_offset source,
1774 * then the texture index is given by texture_index + texture_offset.
1775 */
1776 unsigned texture_index;
1777
1778 /** The size of the texture array or 0 if it's not an array */
1779 unsigned texture_array_size;
1780
1781 /** The sampler index
1782 *
1783 * The following operations do not require a sampler and, as such, this
1784 * field should be ignored:
1785 * - nir_texop_txf
1786 * - nir_texop_txf_ms
1787 * - nir_texop_txs
1788 * - nir_texop_lod
1789 * - nir_texop_query_levels
1790 * - nir_texop_texture_samples
1791 * - nir_texop_samples_identical
1792 *
1793 * If this texture instruction has a nir_tex_src_sampler_offset source,
1794 * then the sampler index is given by sampler_index + sampler_offset.
1795 */
1796 unsigned sampler_index;
1797 } nir_tex_instr;
1798
1799 static inline unsigned
1800 nir_tex_instr_dest_size(const nir_tex_instr *instr)
1801 {
1802 switch (instr->op) {
1803 case nir_texop_txs: {
1804 unsigned ret;
1805 switch (instr->sampler_dim) {
1806 case GLSL_SAMPLER_DIM_1D:
1807 case GLSL_SAMPLER_DIM_BUF:
1808 ret = 1;
1809 break;
1810 case GLSL_SAMPLER_DIM_2D:
1811 case GLSL_SAMPLER_DIM_CUBE:
1812 case GLSL_SAMPLER_DIM_MS:
1813 case GLSL_SAMPLER_DIM_RECT:
1814 case GLSL_SAMPLER_DIM_EXTERNAL:
1815 case GLSL_SAMPLER_DIM_SUBPASS:
1816 ret = 2;
1817 break;
1818 case GLSL_SAMPLER_DIM_3D:
1819 ret = 3;
1820 break;
1821 default:
1822 unreachable("not reached");
1823 }
1824 if (instr->is_array)
1825 ret++;
1826 return ret;
1827 }
1828
1829 case nir_texop_lod:
1830 return 2;
1831
1832 case nir_texop_texture_samples:
1833 case nir_texop_query_levels:
1834 case nir_texop_samples_identical:
1835 return 1;
1836
1837 default:
1838 if (instr->is_shadow && instr->is_new_style_shadow)
1839 return 1;
1840
1841 return 4;
1842 }
1843 }
1844
1845 /* Returns true if this texture operation queries something about the texture
1846 * rather than actually sampling it.
1847 */
1848 static inline bool
1849 nir_tex_instr_is_query(const nir_tex_instr *instr)
1850 {
1851 switch (instr->op) {
1852 case nir_texop_txs:
1853 case nir_texop_lod:
1854 case nir_texop_texture_samples:
1855 case nir_texop_query_levels:
1856 case nir_texop_txf_ms_mcs:
1857 return true;
1858 case nir_texop_tex:
1859 case nir_texop_txb:
1860 case nir_texop_txl:
1861 case nir_texop_txd:
1862 case nir_texop_txf:
1863 case nir_texop_txf_ms:
1864 case nir_texop_txf_ms_fb:
1865 case nir_texop_tg4:
1866 return false;
1867 default:
1868 unreachable("Invalid texture opcode");
1869 }
1870 }
1871
1872 static inline bool
1873 nir_tex_instr_has_implicit_derivative(const nir_tex_instr *instr)
1874 {
1875 switch (instr->op) {
1876 case nir_texop_tex:
1877 case nir_texop_txb:
1878 case nir_texop_lod:
1879 return true;
1880 default:
1881 return false;
1882 }
1883 }
1884
1885 static inline nir_alu_type
1886 nir_tex_instr_src_type(const nir_tex_instr *instr, unsigned src)
1887 {
1888 switch (instr->src[src].src_type) {
1889 case nir_tex_src_coord:
1890 switch (instr->op) {
1891 case nir_texop_txf:
1892 case nir_texop_txf_ms:
1893 case nir_texop_txf_ms_fb:
1894 case nir_texop_txf_ms_mcs:
1895 case nir_texop_samples_identical:
1896 return nir_type_int;
1897
1898 default:
1899 return nir_type_float;
1900 }
1901
1902 case nir_tex_src_lod:
1903 switch (instr->op) {
1904 case nir_texop_txs:
1905 case nir_texop_txf:
1906 return nir_type_int;
1907
1908 default:
1909 return nir_type_float;
1910 }
1911
1912 case nir_tex_src_projector:
1913 case nir_tex_src_comparator:
1914 case nir_tex_src_bias:
1915 case nir_tex_src_min_lod:
1916 case nir_tex_src_ddx:
1917 case nir_tex_src_ddy:
1918 return nir_type_float;
1919
1920 case nir_tex_src_offset:
1921 case nir_tex_src_ms_index:
1922 case nir_tex_src_plane:
1923 return nir_type_int;
1924
1925 case nir_tex_src_ms_mcs:
1926 case nir_tex_src_texture_deref:
1927 case nir_tex_src_sampler_deref:
1928 case nir_tex_src_texture_offset:
1929 case nir_tex_src_sampler_offset:
1930 case nir_tex_src_texture_handle:
1931 case nir_tex_src_sampler_handle:
1932 return nir_type_uint;
1933
1934 case nir_num_tex_src_types:
1935 unreachable("nir_num_tex_src_types is not a valid source type");
1936 }
1937
1938 unreachable("Invalid texture source type");
1939 }
1940
1941 static inline unsigned
1942 nir_tex_instr_src_size(const nir_tex_instr *instr, unsigned src)
1943 {
1944 if (instr->src[src].src_type == nir_tex_src_coord)
1945 return instr->coord_components;
1946
1947 /* The MCS value is expected to be a vec4 returned by a txf_ms_mcs */
1948 if (instr->src[src].src_type == nir_tex_src_ms_mcs)
1949 return 4;
1950
1951 if (instr->src[src].src_type == nir_tex_src_ddx ||
1952 instr->src[src].src_type == nir_tex_src_ddy) {
1953 if (instr->is_array)
1954 return instr->coord_components - 1;
1955 else
1956 return instr->coord_components;
1957 }
1958
1959 /* Usual APIs don't allow cube + offset, but we allow it, with 2 coords for
1960 * the offset, since a cube maps to a single face.
1961 */
1962 if (instr->src[src].src_type == nir_tex_src_offset) {
1963 if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE)
1964 return 2;
1965 else if (instr->is_array)
1966 return instr->coord_components - 1;
1967 else
1968 return instr->coord_components;
1969 }
1970
1971 return 1;
1972 }
1973
1974 static inline int
1975 nir_tex_instr_src_index(const nir_tex_instr *instr, nir_tex_src_type type)
1976 {
1977 for (unsigned i = 0; i < instr->num_srcs; i++)
1978 if (instr->src[i].src_type == type)
1979 return (int) i;
1980
1981 return -1;
1982 }
1983
1984 void nir_tex_instr_add_src(nir_tex_instr *tex,
1985 nir_tex_src_type src_type,
1986 nir_src src);
1987
1988 void nir_tex_instr_remove_src(nir_tex_instr *tex, unsigned src_idx);
1989
1990 bool nir_tex_instr_has_explicit_tg4_offsets(nir_tex_instr *tex);
1991
1992 typedef struct {
1993 nir_instr instr;
1994
1995 nir_ssa_def def;
1996
1997 nir_const_value value[];
1998 } nir_load_const_instr;
1999
2000 typedef enum {
2001 nir_jump_return,
2002 nir_jump_break,
2003 nir_jump_continue,
2004 } nir_jump_type;
2005
2006 typedef struct {
2007 nir_instr instr;
2008 nir_jump_type type;
2009 } nir_jump_instr;
2010
2011 /* creates a new SSA variable in an undefined state */
2012
2013 typedef struct {
2014 nir_instr instr;
2015 nir_ssa_def def;
2016 } nir_ssa_undef_instr;
2017
2018 typedef struct {
2019 struct exec_node node;
2020
2021 /* The predecessor block corresponding to this source */
2022 struct nir_block *pred;
2023
2024 nir_src src;
2025 } nir_phi_src;
2026
2027 #define nir_foreach_phi_src(phi_src, phi) \
2028 foreach_list_typed(nir_phi_src, phi_src, node, &(phi)->srcs)
2029 #define nir_foreach_phi_src_safe(phi_src, phi) \
2030 foreach_list_typed_safe(nir_phi_src, phi_src, node, &(phi)->srcs)
2031
2032 typedef struct {
2033 nir_instr instr;
2034
2035 struct exec_list srcs; /** < list of nir_phi_src */
2036
2037 nir_dest dest;
2038 } nir_phi_instr;
2039
2040 typedef struct {
2041 struct exec_node node;
2042 nir_src src;
2043 nir_dest dest;
2044 } nir_parallel_copy_entry;
2045
2046 #define nir_foreach_parallel_copy_entry(entry, pcopy) \
2047 foreach_list_typed(nir_parallel_copy_entry, entry, node, &(pcopy)->entries)
2048
2049 typedef struct {
2050 nir_instr instr;
2051
2052 /* A list of nir_parallel_copy_entrys. The sources of all of the
2053 * entries are copied to the corresponding destinations "in parallel".
2054 * In other words, if we have two entries: a -> b and b -> a, the values
2055 * get swapped.
2056 */
2057 struct exec_list entries;
2058 } nir_parallel_copy_instr;
2059
2060 NIR_DEFINE_CAST(nir_instr_as_alu, nir_instr, nir_alu_instr, instr,
2061 type, nir_instr_type_alu)
2062 NIR_DEFINE_CAST(nir_instr_as_deref, nir_instr, nir_deref_instr, instr,
2063 type, nir_instr_type_deref)
2064 NIR_DEFINE_CAST(nir_instr_as_call, nir_instr, nir_call_instr, instr,
2065 type, nir_instr_type_call)
2066 NIR_DEFINE_CAST(nir_instr_as_jump, nir_instr, nir_jump_instr, instr,
2067 type, nir_instr_type_jump)
2068 NIR_DEFINE_CAST(nir_instr_as_tex, nir_instr, nir_tex_instr, instr,
2069 type, nir_instr_type_tex)
2070 NIR_DEFINE_CAST(nir_instr_as_intrinsic, nir_instr, nir_intrinsic_instr, instr,
2071 type, nir_instr_type_intrinsic)
2072 NIR_DEFINE_CAST(nir_instr_as_load_const, nir_instr, nir_load_const_instr, instr,
2073 type, nir_instr_type_load_const)
2074 NIR_DEFINE_CAST(nir_instr_as_ssa_undef, nir_instr, nir_ssa_undef_instr, instr,
2075 type, nir_instr_type_ssa_undef)
2076 NIR_DEFINE_CAST(nir_instr_as_phi, nir_instr, nir_phi_instr, instr,
2077 type, nir_instr_type_phi)
2078 NIR_DEFINE_CAST(nir_instr_as_parallel_copy, nir_instr,
2079 nir_parallel_copy_instr, instr,
2080 type, nir_instr_type_parallel_copy)
2081
2082
2083 #define NIR_DEFINE_SRC_AS_CONST(type, suffix) \
2084 static inline type \
2085 nir_src_comp_as_##suffix(nir_src src, unsigned comp) \
2086 { \
2087 assert(nir_src_is_const(src)); \
2088 nir_load_const_instr *load = \
2089 nir_instr_as_load_const(src.ssa->parent_instr); \
2090 assert(comp < load->def.num_components); \
2091 return nir_const_value_as_##suffix(load->value[comp], \
2092 load->def.bit_size); \
2093 } \
2094 \
2095 static inline type \
2096 nir_src_as_##suffix(nir_src src) \
2097 { \
2098 assert(nir_src_num_components(src) == 1); \
2099 return nir_src_comp_as_##suffix(src, 0); \
2100 }
2101
2102 NIR_DEFINE_SRC_AS_CONST(int64_t, int)
2103 NIR_DEFINE_SRC_AS_CONST(uint64_t, uint)
2104 NIR_DEFINE_SRC_AS_CONST(bool, bool)
2105 NIR_DEFINE_SRC_AS_CONST(double, float)
2106
2107 #undef NIR_DEFINE_SRC_AS_CONST
2108
2109
2110 typedef struct {
2111 nir_ssa_def *def;
2112 unsigned comp;
2113 } nir_ssa_scalar;
2114
2115 static inline bool
2116 nir_ssa_scalar_is_const(nir_ssa_scalar s)
2117 {
2118 return s.def->parent_instr->type == nir_instr_type_load_const;
2119 }
2120
2121 static inline nir_const_value
2122 nir_ssa_scalar_as_const_value(nir_ssa_scalar s)
2123 {
2124 assert(s.comp < s.def->num_components);
2125 nir_load_const_instr *load = nir_instr_as_load_const(s.def->parent_instr);
2126 return load->value[s.comp];
2127 }
2128
2129 #define NIR_DEFINE_SCALAR_AS_CONST(type, suffix) \
2130 static inline type \
2131 nir_ssa_scalar_as_##suffix(nir_ssa_scalar s) \
2132 { \
2133 return nir_const_value_as_##suffix( \
2134 nir_ssa_scalar_as_const_value(s), s.def->bit_size); \
2135 }
2136
2137 NIR_DEFINE_SCALAR_AS_CONST(int64_t, int)
2138 NIR_DEFINE_SCALAR_AS_CONST(uint64_t, uint)
2139 NIR_DEFINE_SCALAR_AS_CONST(bool, bool)
2140 NIR_DEFINE_SCALAR_AS_CONST(double, float)
2141
2142 #undef NIR_DEFINE_SCALAR_AS_CONST
2143
2144 static inline bool
2145 nir_ssa_scalar_is_alu(nir_ssa_scalar s)
2146 {
2147 return s.def->parent_instr->type == nir_instr_type_alu;
2148 }
2149
2150 static inline nir_op
2151 nir_ssa_scalar_alu_op(nir_ssa_scalar s)
2152 {
2153 return nir_instr_as_alu(s.def->parent_instr)->op;
2154 }
2155
2156 static inline nir_ssa_scalar
2157 nir_ssa_scalar_chase_alu_src(nir_ssa_scalar s, unsigned alu_src_idx)
2158 {
2159 nir_ssa_scalar out = { NULL, 0 };
2160
2161 nir_alu_instr *alu = nir_instr_as_alu(s.def->parent_instr);
2162 assert(alu_src_idx < nir_op_infos[alu->op].num_inputs);
2163
2164 /* Our component must be written */
2165 assert(s.comp < s.def->num_components);
2166 assert(alu->dest.write_mask & (1u << s.comp));
2167
2168 assert(alu->src[alu_src_idx].src.is_ssa);
2169 out.def = alu->src[alu_src_idx].src.ssa;
2170
2171 if (nir_op_infos[alu->op].input_sizes[alu_src_idx] == 0) {
2172 /* The ALU src is unsized so the source component follows the
2173 * destination component.
2174 */
2175 out.comp = alu->src[alu_src_idx].swizzle[s.comp];
2176 } else {
2177 /* This is a sized source so all source components work together to
2178 * produce all the destination components. Since we need to return a
2179 * scalar, this only works if the source is a scalar.
2180 */
2181 assert(nir_op_infos[alu->op].input_sizes[alu_src_idx] == 1);
2182 out.comp = alu->src[alu_src_idx].swizzle[0];
2183 }
2184 assert(out.comp < out.def->num_components);
2185
2186 return out;
2187 }
2188
2189
2190 /*
2191 * Control flow
2192 *
2193 * Control flow consists of a tree of control flow nodes, which include
2194 * if-statements and loops. The leaves of the tree are basic blocks, lists of
2195 * instructions that always run start-to-finish. Each basic block also keeps
2196 * track of its successors (blocks which may run immediately after the current
2197 * block) and predecessors (blocks which could have run immediately before the
2198 * current block). Each function also has a start block and an end block which
2199 * all return statements point to (which is always empty). Together, all the
2200 * blocks with their predecessors and successors make up the control flow
2201 * graph (CFG) of the function. There are helpers that modify the tree of
2202 * control flow nodes while modifying the CFG appropriately; these should be
2203 * used instead of modifying the tree directly.
2204 */
2205
2206 typedef enum {
2207 nir_cf_node_block,
2208 nir_cf_node_if,
2209 nir_cf_node_loop,
2210 nir_cf_node_function
2211 } nir_cf_node_type;
2212
2213 typedef struct nir_cf_node {
2214 struct exec_node node;
2215 nir_cf_node_type type;
2216 struct nir_cf_node *parent;
2217 } nir_cf_node;
2218
2219 typedef struct nir_block {
2220 nir_cf_node cf_node;
2221
2222 struct exec_list instr_list; /** < list of nir_instr */
2223
2224 /** generic block index; generated by nir_index_blocks */
2225 unsigned index;
2226
2227 /*
2228 * Each block can only have up to 2 successors, so we put them in a simple
2229 * array - no need for anything more complicated.
2230 */
2231 struct nir_block *successors[2];
2232
2233 /* Set of nir_block predecessors in the CFG */
2234 struct set *predecessors;
2235
2236 /*
2237 * this node's immediate dominator in the dominance tree - set to NULL for
2238 * the start block.
2239 */
2240 struct nir_block *imm_dom;
2241
2242 /* This node's children in the dominance tree */
2243 unsigned num_dom_children;
2244 struct nir_block **dom_children;
2245
2246 /* Set of nir_blocks on the dominance frontier of this block */
2247 struct set *dom_frontier;
2248
2249 /*
2250 * These two indices have the property that dom_{pre,post}_index for each
2251 * child of this block in the dominance tree will always be between
2252 * dom_pre_index and dom_post_index for this block, which makes testing if
2253 * a given block is dominated by another block an O(1) operation.
2254 */
2255 unsigned dom_pre_index, dom_post_index;
2256
2257 /* live in and out for this block; used for liveness analysis */
2258 BITSET_WORD *live_in;
2259 BITSET_WORD *live_out;
2260 } nir_block;
2261
2262 static inline nir_instr *
2263 nir_block_first_instr(nir_block *block)
2264 {
2265 struct exec_node *head = exec_list_get_head(&block->instr_list);
2266 return exec_node_data(nir_instr, head, node);
2267 }
2268
2269 static inline nir_instr *
2270 nir_block_last_instr(nir_block *block)
2271 {
2272 struct exec_node *tail = exec_list_get_tail(&block->instr_list);
2273 return exec_node_data(nir_instr, tail, node);
2274 }
2275
2276 static inline bool
2277 nir_block_ends_in_jump(nir_block *block)
2278 {
2279 return !exec_list_is_empty(&block->instr_list) &&
2280 nir_block_last_instr(block)->type == nir_instr_type_jump;
2281 }
2282
2283 #define nir_foreach_instr(instr, block) \
2284 foreach_list_typed(nir_instr, instr, node, &(block)->instr_list)
2285 #define nir_foreach_instr_reverse(instr, block) \
2286 foreach_list_typed_reverse(nir_instr, instr, node, &(block)->instr_list)
2287 #define nir_foreach_instr_safe(instr, block) \
2288 foreach_list_typed_safe(nir_instr, instr, node, &(block)->instr_list)
2289 #define nir_foreach_instr_reverse_safe(instr, block) \
2290 foreach_list_typed_reverse_safe(nir_instr, instr, node, &(block)->instr_list)
2291
2292 typedef enum {
2293 nir_selection_control_none = 0x0,
2294 nir_selection_control_flatten = 0x1,
2295 nir_selection_control_dont_flatten = 0x2,
2296 } nir_selection_control;
2297
2298 typedef struct nir_if {
2299 nir_cf_node cf_node;
2300 nir_src condition;
2301 nir_selection_control control;
2302
2303 struct exec_list then_list; /** < list of nir_cf_node */
2304 struct exec_list else_list; /** < list of nir_cf_node */
2305 } nir_if;
2306
2307 typedef struct {
2308 nir_if *nif;
2309
2310 /** Instruction that generates nif::condition. */
2311 nir_instr *conditional_instr;
2312
2313 /** Block within ::nif that has the break instruction. */
2314 nir_block *break_block;
2315
2316 /** Last block for the then- or else-path that does not contain the break. */
2317 nir_block *continue_from_block;
2318
2319 /** True when ::break_block is in the else-path of ::nif. */
2320 bool continue_from_then;
2321 bool induction_rhs;
2322
2323 /* This is true if the terminators exact trip count is unknown. For
2324 * example:
2325 *
2326 * for (int i = 0; i < imin(x, 4); i++)
2327 * ...
2328 *
2329 * Here loop analysis would have set a max_trip_count of 4 however we dont
2330 * know for sure that this is the exact trip count.
2331 */
2332 bool exact_trip_count_unknown;
2333
2334 struct list_head loop_terminator_link;
2335 } nir_loop_terminator;
2336
2337 typedef struct {
2338 /* Estimated cost (in number of instructions) of the loop */
2339 unsigned instr_cost;
2340
2341 /* Guessed trip count based on array indexing */
2342 unsigned guessed_trip_count;
2343
2344 /* Maximum number of times the loop is run (if known) */
2345 unsigned max_trip_count;
2346
2347 /* Do we know the exact number of times the loop will be run */
2348 bool exact_trip_count_known;
2349
2350 /* Unroll the loop regardless of its size */
2351 bool force_unroll;
2352
2353 /* Does the loop contain complex loop terminators, continues or other
2354 * complex behaviours? If this is true we can't rely on
2355 * loop_terminator_list to be complete or accurate.
2356 */
2357 bool complex_loop;
2358
2359 nir_loop_terminator *limiting_terminator;
2360
2361 /* A list of loop_terminators terminating this loop. */
2362 struct list_head loop_terminator_list;
2363 } nir_loop_info;
2364
2365 typedef enum {
2366 nir_loop_control_none = 0x0,
2367 nir_loop_control_unroll = 0x1,
2368 nir_loop_control_dont_unroll = 0x2,
2369 } nir_loop_control;
2370
2371 typedef struct {
2372 nir_cf_node cf_node;
2373
2374 struct exec_list body; /** < list of nir_cf_node */
2375
2376 nir_loop_info *info;
2377 nir_loop_control control;
2378 bool partially_unrolled;
2379 } nir_loop;
2380
2381 /**
2382 * Various bits of metadata that can may be created or required by
2383 * optimization and analysis passes
2384 */
2385 typedef enum {
2386 nir_metadata_none = 0x0,
2387 nir_metadata_block_index = 0x1,
2388 nir_metadata_dominance = 0x2,
2389 nir_metadata_live_ssa_defs = 0x4,
2390 nir_metadata_not_properly_reset = 0x8,
2391 nir_metadata_loop_analysis = 0x10,
2392 } nir_metadata;
2393
2394 typedef struct {
2395 nir_cf_node cf_node;
2396
2397 /** pointer to the function of which this is an implementation */
2398 struct nir_function *function;
2399
2400 struct exec_list body; /** < list of nir_cf_node */
2401
2402 nir_block *end_block;
2403
2404 /** list for all local variables in the function */
2405 struct exec_list locals;
2406
2407 /** list of local registers in the function */
2408 struct exec_list registers;
2409
2410 /** next available local register index */
2411 unsigned reg_alloc;
2412
2413 /** next available SSA value index */
2414 unsigned ssa_alloc;
2415
2416 /* total number of basic blocks, only valid when block_index_dirty = false */
2417 unsigned num_blocks;
2418
2419 nir_metadata valid_metadata;
2420 } nir_function_impl;
2421
2422 ATTRIBUTE_RETURNS_NONNULL static inline nir_block *
2423 nir_start_block(nir_function_impl *impl)
2424 {
2425 return (nir_block *) impl->body.head_sentinel.next;
2426 }
2427
2428 ATTRIBUTE_RETURNS_NONNULL static inline nir_block *
2429 nir_impl_last_block(nir_function_impl *impl)
2430 {
2431 return (nir_block *) impl->body.tail_sentinel.prev;
2432 }
2433
2434 static inline nir_cf_node *
2435 nir_cf_node_next(nir_cf_node *node)
2436 {
2437 struct exec_node *next = exec_node_get_next(&node->node);
2438 if (exec_node_is_tail_sentinel(next))
2439 return NULL;
2440 else
2441 return exec_node_data(nir_cf_node, next, node);
2442 }
2443
2444 static inline nir_cf_node *
2445 nir_cf_node_prev(nir_cf_node *node)
2446 {
2447 struct exec_node *prev = exec_node_get_prev(&node->node);
2448 if (exec_node_is_head_sentinel(prev))
2449 return NULL;
2450 else
2451 return exec_node_data(nir_cf_node, prev, node);
2452 }
2453
2454 static inline bool
2455 nir_cf_node_is_first(const nir_cf_node *node)
2456 {
2457 return exec_node_is_head_sentinel(node->node.prev);
2458 }
2459
2460 static inline bool
2461 nir_cf_node_is_last(const nir_cf_node *node)
2462 {
2463 return exec_node_is_tail_sentinel(node->node.next);
2464 }
2465
2466 NIR_DEFINE_CAST(nir_cf_node_as_block, nir_cf_node, nir_block, cf_node,
2467 type, nir_cf_node_block)
2468 NIR_DEFINE_CAST(nir_cf_node_as_if, nir_cf_node, nir_if, cf_node,
2469 type, nir_cf_node_if)
2470 NIR_DEFINE_CAST(nir_cf_node_as_loop, nir_cf_node, nir_loop, cf_node,
2471 type, nir_cf_node_loop)
2472 NIR_DEFINE_CAST(nir_cf_node_as_function, nir_cf_node,
2473 nir_function_impl, cf_node, type, nir_cf_node_function)
2474
2475 static inline nir_block *
2476 nir_if_first_then_block(nir_if *if_stmt)
2477 {
2478 struct exec_node *head = exec_list_get_head(&if_stmt->then_list);
2479 return nir_cf_node_as_block(exec_node_data(nir_cf_node, head, node));
2480 }
2481
2482 static inline nir_block *
2483 nir_if_last_then_block(nir_if *if_stmt)
2484 {
2485 struct exec_node *tail = exec_list_get_tail(&if_stmt->then_list);
2486 return nir_cf_node_as_block(exec_node_data(nir_cf_node, tail, node));
2487 }
2488
2489 static inline nir_block *
2490 nir_if_first_else_block(nir_if *if_stmt)
2491 {
2492 struct exec_node *head = exec_list_get_head(&if_stmt->else_list);
2493 return nir_cf_node_as_block(exec_node_data(nir_cf_node, head, node));
2494 }
2495
2496 static inline nir_block *
2497 nir_if_last_else_block(nir_if *if_stmt)
2498 {
2499 struct exec_node *tail = exec_list_get_tail(&if_stmt->else_list);
2500 return nir_cf_node_as_block(exec_node_data(nir_cf_node, tail, node));
2501 }
2502
2503 static inline nir_block *
2504 nir_loop_first_block(nir_loop *loop)
2505 {
2506 struct exec_node *head = exec_list_get_head(&loop->body);
2507 return nir_cf_node_as_block(exec_node_data(nir_cf_node, head, node));
2508 }
2509
2510 static inline nir_block *
2511 nir_loop_last_block(nir_loop *loop)
2512 {
2513 struct exec_node *tail = exec_list_get_tail(&loop->body);
2514 return nir_cf_node_as_block(exec_node_data(nir_cf_node, tail, node));
2515 }
2516
2517 /**
2518 * Return true if this list of cf_nodes contains a single empty block.
2519 */
2520 static inline bool
2521 nir_cf_list_is_empty_block(struct exec_list *cf_list)
2522 {
2523 if (exec_list_is_singular(cf_list)) {
2524 struct exec_node *head = exec_list_get_head(cf_list);
2525 nir_block *block =
2526 nir_cf_node_as_block(exec_node_data(nir_cf_node, head, node));
2527 return exec_list_is_empty(&block->instr_list);
2528 }
2529 return false;
2530 }
2531
2532 typedef struct {
2533 uint8_t num_components;
2534 uint8_t bit_size;
2535 } nir_parameter;
2536
2537 typedef struct nir_function {
2538 struct exec_node node;
2539
2540 const char *name;
2541 struct nir_shader *shader;
2542
2543 unsigned num_params;
2544 nir_parameter *params;
2545
2546 /** The implementation of this function.
2547 *
2548 * If the function is only declared and not implemented, this is NULL.
2549 */
2550 nir_function_impl *impl;
2551
2552 bool is_entrypoint;
2553 } nir_function;
2554
2555 typedef enum {
2556 nir_lower_imul64 = (1 << 0),
2557 nir_lower_isign64 = (1 << 1),
2558 /** Lower all int64 modulus and division opcodes */
2559 nir_lower_divmod64 = (1 << 2),
2560 /** Lower all 64-bit umul_high and imul_high opcodes */
2561 nir_lower_imul_high64 = (1 << 3),
2562 nir_lower_mov64 = (1 << 4),
2563 nir_lower_icmp64 = (1 << 5),
2564 nir_lower_iadd64 = (1 << 6),
2565 nir_lower_iabs64 = (1 << 7),
2566 nir_lower_ineg64 = (1 << 8),
2567 nir_lower_logic64 = (1 << 9),
2568 nir_lower_minmax64 = (1 << 10),
2569 nir_lower_shift64 = (1 << 11),
2570 nir_lower_imul_2x32_64 = (1 << 12),
2571 nir_lower_extract64 = (1 << 13),
2572 } nir_lower_int64_options;
2573
2574 typedef enum {
2575 nir_lower_drcp = (1 << 0),
2576 nir_lower_dsqrt = (1 << 1),
2577 nir_lower_drsq = (1 << 2),
2578 nir_lower_dtrunc = (1 << 3),
2579 nir_lower_dfloor = (1 << 4),
2580 nir_lower_dceil = (1 << 5),
2581 nir_lower_dfract = (1 << 6),
2582 nir_lower_dround_even = (1 << 7),
2583 nir_lower_dmod = (1 << 8),
2584 nir_lower_dsub = (1 << 9),
2585 nir_lower_ddiv = (1 << 10),
2586 nir_lower_fp64_full_software = (1 << 11),
2587 } nir_lower_doubles_options;
2588
2589 typedef enum {
2590 nir_divergence_single_prim_per_subgroup = (1 << 0),
2591 nir_divergence_single_patch_per_tcs_subgroup = (1 << 1),
2592 nir_divergence_single_patch_per_tes_subgroup = (1 << 2),
2593 nir_divergence_view_index_uniform = (1 << 3),
2594 } nir_divergence_options;
2595
2596 typedef struct nir_shader_compiler_options {
2597 bool lower_fdiv;
2598 bool lower_ffma;
2599 bool fuse_ffma;
2600 bool lower_flrp16;
2601 bool lower_flrp32;
2602 /** Lowers flrp when it does not support doubles */
2603 bool lower_flrp64;
2604 bool lower_fpow;
2605 bool lower_fsat;
2606 bool lower_fsqrt;
2607 bool lower_sincos;
2608 bool lower_fmod;
2609 /** Lowers ibitfield_extract/ubitfield_extract to ibfe/ubfe. */
2610 bool lower_bitfield_extract;
2611 /** Lowers ibitfield_extract/ubitfield_extract to compares, shifts. */
2612 bool lower_bitfield_extract_to_shifts;
2613 /** Lowers bitfield_insert to bfi/bfm */
2614 bool lower_bitfield_insert;
2615 /** Lowers bitfield_insert to compares, and shifts. */
2616 bool lower_bitfield_insert_to_shifts;
2617 /** Lowers bitfield_insert to bfm/bitfield_select. */
2618 bool lower_bitfield_insert_to_bitfield_select;
2619 /** Lowers bitfield_reverse to shifts. */
2620 bool lower_bitfield_reverse;
2621 /** Lowers bit_count to shifts. */
2622 bool lower_bit_count;
2623 /** Lowers ifind_msb to compare and ufind_msb */
2624 bool lower_ifind_msb;
2625 /** Lowers find_lsb to ufind_msb and logic ops */
2626 bool lower_find_lsb;
2627 bool lower_uadd_carry;
2628 bool lower_usub_borrow;
2629 /** Lowers imul_high/umul_high to 16-bit multiplies and carry operations. */
2630 bool lower_mul_high;
2631 /** lowers fneg and ineg to fsub and isub. */
2632 bool lower_negate;
2633 /** lowers fsub and isub to fadd+fneg and iadd+ineg. */
2634 bool lower_sub;
2635
2636 /* lower {slt,sge,seq,sne} to {flt,fge,feq,fne} + b2f: */
2637 bool lower_scmp;
2638
2639 /* lower fall_equalN/fany_nequalN (ex:fany_nequal4 to sne+fdot4+fsat) */
2640 bool lower_vector_cmp;
2641
2642 /** enables rules to lower idiv by power-of-two: */
2643 bool lower_idiv;
2644
2645 /** enable rules to avoid bit ops */
2646 bool lower_bitops;
2647
2648 /** enables rules to lower isign to imin+imax */
2649 bool lower_isign;
2650
2651 /** enables rules to lower fsign to fsub and flt */
2652 bool lower_fsign;
2653
2654 /* lower fdph to fdot4 */
2655 bool lower_fdph;
2656
2657 /** lower fdot to fmul and fsum/fadd. */
2658 bool lower_fdot;
2659
2660 /* Does the native fdot instruction replicate its result for four
2661 * components? If so, then opt_algebraic_late will turn all fdotN
2662 * instructions into fdot_replicatedN instructions.
2663 */
2664 bool fdot_replicates;
2665
2666 /** lowers ffloor to fsub+ffract: */
2667 bool lower_ffloor;
2668
2669 /** lowers ffract to fsub+ffloor: */
2670 bool lower_ffract;
2671
2672 /** lowers fceil to fneg+ffloor+fneg: */
2673 bool lower_fceil;
2674
2675 bool lower_ftrunc;
2676
2677 bool lower_ldexp;
2678
2679 bool lower_pack_half_2x16;
2680 bool lower_pack_unorm_2x16;
2681 bool lower_pack_snorm_2x16;
2682 bool lower_pack_unorm_4x8;
2683 bool lower_pack_snorm_4x8;
2684 bool lower_unpack_half_2x16;
2685 bool lower_unpack_unorm_2x16;
2686 bool lower_unpack_snorm_2x16;
2687 bool lower_unpack_unorm_4x8;
2688 bool lower_unpack_snorm_4x8;
2689
2690 bool lower_extract_byte;
2691 bool lower_extract_word;
2692
2693 bool lower_all_io_to_temps;
2694 bool lower_all_io_to_elements;
2695
2696 /* Indicates that the driver only has zero-based vertex id */
2697 bool vertex_id_zero_based;
2698
2699 /**
2700 * If enabled, gl_BaseVertex will be lowered as:
2701 * is_indexed_draw (~0/0) & firstvertex
2702 */
2703 bool lower_base_vertex;
2704
2705 /**
2706 * If enabled, gl_HelperInvocation will be lowered as:
2707 *
2708 * !((1 << sample_id) & sample_mask_in))
2709 *
2710 * This depends on some possibly hw implementation details, which may
2711 * not be true for all hw. In particular that the FS is only executed
2712 * for covered samples or for helper invocations. So, do not blindly
2713 * enable this option.
2714 *
2715 * Note: See also issue #22 in ARB_shader_image_load_store
2716 */
2717 bool lower_helper_invocation;
2718
2719 /**
2720 * Convert gl_SampleMaskIn to gl_HelperInvocation as follows:
2721 *
2722 * gl_SampleMaskIn == 0 ---> gl_HelperInvocation
2723 * gl_SampleMaskIn != 0 ---> !gl_HelperInvocation
2724 */
2725 bool optimize_sample_mask_in;
2726
2727 bool lower_cs_local_index_from_id;
2728 bool lower_cs_local_id_from_index;
2729
2730 bool lower_device_index_to_zero;
2731
2732 /* Set if nir_lower_wpos_ytransform() should also invert gl_PointCoord. */
2733 bool lower_wpos_pntc;
2734
2735 bool lower_hadd;
2736 bool lower_add_sat;
2737
2738 /**
2739 * Should IO be re-vectorized? Some scalar ISAs still operate on vec4's
2740 * for IO purposes and would prefer loads/stores be vectorized.
2741 */
2742 bool vectorize_io;
2743 bool lower_to_scalar;
2744
2745 /**
2746 * Should nir_lower_io() create load_interpolated_input intrinsics?
2747 *
2748 * If not, it generates regular load_input intrinsics and interpolation
2749 * information must be inferred from the list of input nir_variables.
2750 */
2751 bool use_interpolated_input_intrinsics;
2752
2753 /* Lowers when 32x32->64 bit multiplication is not supported */
2754 bool lower_mul_2x32_64;
2755
2756 /* Lowers when rotate instruction is not supported */
2757 bool lower_rotate;
2758
2759 /**
2760 * Is this the Intel vec4 backend?
2761 *
2762 * Used to inhibit algebraic optimizations that are known to be harmful on
2763 * the Intel vec4 backend. This is generally applicable to any
2764 * optimization that might cause more immediate values to be used in
2765 * 3-source (e.g., ffma and flrp) instructions.
2766 */
2767 bool intel_vec4;
2768
2769 unsigned max_unroll_iterations;
2770
2771 nir_lower_int64_options lower_int64_options;
2772 nir_lower_doubles_options lower_doubles_options;
2773 } nir_shader_compiler_options;
2774
2775 typedef struct nir_shader {
2776 /** list of uniforms (nir_variable) */
2777 struct exec_list uniforms;
2778
2779 /** list of inputs (nir_variable) */
2780 struct exec_list inputs;
2781
2782 /** list of outputs (nir_variable) */
2783 struct exec_list outputs;
2784
2785 /** list of shared compute variables (nir_variable) */
2786 struct exec_list shared;
2787
2788 /** Set of driver-specific options for the shader.
2789 *
2790 * The memory for the options is expected to be kept in a single static
2791 * copy by the driver.
2792 */
2793 const struct nir_shader_compiler_options *options;
2794
2795 /** Various bits of compile-time information about a given shader */
2796 struct shader_info info;
2797
2798 /** list of global variables in the shader (nir_variable) */
2799 struct exec_list globals;
2800
2801 /** list of system value variables in the shader (nir_variable) */
2802 struct exec_list system_values;
2803
2804 struct exec_list functions; /** < list of nir_function */
2805
2806 /**
2807 * the highest index a load_input_*, load_uniform_*, etc. intrinsic can
2808 * access plus one
2809 */
2810 unsigned num_inputs, num_uniforms, num_outputs, num_shared;
2811
2812 /** Size in bytes of required scratch space */
2813 unsigned scratch_size;
2814
2815 /** Constant data associated with this shader.
2816 *
2817 * Constant data is loaded through load_constant intrinsics. See also
2818 * nir_opt_large_constants.
2819 */
2820 void *constant_data;
2821 unsigned constant_data_size;
2822 } nir_shader;
2823
2824 #define nir_foreach_function(func, shader) \
2825 foreach_list_typed(nir_function, func, node, &(shader)->functions)
2826
2827 static inline nir_function_impl *
2828 nir_shader_get_entrypoint(nir_shader *shader)
2829 {
2830 nir_function *func = NULL;
2831
2832 nir_foreach_function(function, shader) {
2833 assert(func == NULL);
2834 if (function->is_entrypoint) {
2835 func = function;
2836 #ifndef NDEBUG
2837 break;
2838 #endif
2839 }
2840 }
2841
2842 if (!func)
2843 return NULL;
2844
2845 assert(func->num_params == 0);
2846 assert(func->impl);
2847 return func->impl;
2848 }
2849
2850 nir_shader *nir_shader_create(void *mem_ctx,
2851 gl_shader_stage stage,
2852 const nir_shader_compiler_options *options,
2853 shader_info *si);
2854
2855 nir_register *nir_local_reg_create(nir_function_impl *impl);
2856
2857 void nir_reg_remove(nir_register *reg);
2858
2859 /** Adds a variable to the appropriate list in nir_shader */
2860 void nir_shader_add_variable(nir_shader *shader, nir_variable *var);
2861
2862 static inline void
2863 nir_function_impl_add_variable(nir_function_impl *impl, nir_variable *var)
2864 {
2865 assert(var->data.mode == nir_var_function_temp);
2866 exec_list_push_tail(&impl->locals, &var->node);
2867 }
2868
2869 /** creates a variable, sets a few defaults, and adds it to the list */
2870 nir_variable *nir_variable_create(nir_shader *shader,
2871 nir_variable_mode mode,
2872 const struct glsl_type *type,
2873 const char *name);
2874 /** creates a local variable and adds it to the list */
2875 nir_variable *nir_local_variable_create(nir_function_impl *impl,
2876 const struct glsl_type *type,
2877 const char *name);
2878
2879 /** creates a function and adds it to the shader's list of functions */
2880 nir_function *nir_function_create(nir_shader *shader, const char *name);
2881
2882 nir_function_impl *nir_function_impl_create(nir_function *func);
2883 /** creates a function_impl that isn't tied to any particular function */
2884 nir_function_impl *nir_function_impl_create_bare(nir_shader *shader);
2885
2886 nir_block *nir_block_create(nir_shader *shader);
2887 nir_if *nir_if_create(nir_shader *shader);
2888 nir_loop *nir_loop_create(nir_shader *shader);
2889
2890 nir_function_impl *nir_cf_node_get_function(nir_cf_node *node);
2891
2892 /** requests that the given pieces of metadata be generated */
2893 void nir_metadata_require(nir_function_impl *impl, nir_metadata required, ...);
2894 /** dirties all but the preserved metadata */
2895 void nir_metadata_preserve(nir_function_impl *impl, nir_metadata preserved);
2896
2897 /** creates an instruction with default swizzle/writemask/etc. with NULL registers */
2898 nir_alu_instr *nir_alu_instr_create(nir_shader *shader, nir_op op);
2899
2900 nir_deref_instr *nir_deref_instr_create(nir_shader *shader,
2901 nir_deref_type deref_type);
2902
2903 nir_jump_instr *nir_jump_instr_create(nir_shader *shader, nir_jump_type type);
2904
2905 nir_load_const_instr *nir_load_const_instr_create(nir_shader *shader,
2906 unsigned num_components,
2907 unsigned bit_size);
2908
2909 nir_intrinsic_instr *nir_intrinsic_instr_create(nir_shader *shader,
2910 nir_intrinsic_op op);
2911
2912 nir_call_instr *nir_call_instr_create(nir_shader *shader,
2913 nir_function *callee);
2914
2915 nir_tex_instr *nir_tex_instr_create(nir_shader *shader, unsigned num_srcs);
2916
2917 nir_phi_instr *nir_phi_instr_create(nir_shader *shader);
2918
2919 nir_parallel_copy_instr *nir_parallel_copy_instr_create(nir_shader *shader);
2920
2921 nir_ssa_undef_instr *nir_ssa_undef_instr_create(nir_shader *shader,
2922 unsigned num_components,
2923 unsigned bit_size);
2924
2925 nir_const_value nir_alu_binop_identity(nir_op binop, unsigned bit_size);
2926
2927 /**
2928 * NIR Cursors and Instruction Insertion API
2929 * @{
2930 *
2931 * A tiny struct representing a point to insert/extract instructions or
2932 * control flow nodes. Helps reduce the combinatorial explosion of possible
2933 * points to insert/extract.
2934 *
2935 * \sa nir_control_flow.h
2936 */
2937 typedef enum {
2938 nir_cursor_before_block,
2939 nir_cursor_after_block,
2940 nir_cursor_before_instr,
2941 nir_cursor_after_instr,
2942 } nir_cursor_option;
2943
2944 typedef struct {
2945 nir_cursor_option option;
2946 union {
2947 nir_block *block;
2948 nir_instr *instr;
2949 };
2950 } nir_cursor;
2951
2952 static inline nir_block *
2953 nir_cursor_current_block(nir_cursor cursor)
2954 {
2955 if (cursor.option == nir_cursor_before_instr ||
2956 cursor.option == nir_cursor_after_instr) {
2957 return cursor.instr->block;
2958 } else {
2959 return cursor.block;
2960 }
2961 }
2962
2963 bool nir_cursors_equal(nir_cursor a, nir_cursor b);
2964
2965 static inline nir_cursor
2966 nir_before_block(nir_block *block)
2967 {
2968 nir_cursor cursor;
2969 cursor.option = nir_cursor_before_block;
2970 cursor.block = block;
2971 return cursor;
2972 }
2973
2974 static inline nir_cursor
2975 nir_after_block(nir_block *block)
2976 {
2977 nir_cursor cursor;
2978 cursor.option = nir_cursor_after_block;
2979 cursor.block = block;
2980 return cursor;
2981 }
2982
2983 static inline nir_cursor
2984 nir_before_instr(nir_instr *instr)
2985 {
2986 nir_cursor cursor;
2987 cursor.option = nir_cursor_before_instr;
2988 cursor.instr = instr;
2989 return cursor;
2990 }
2991
2992 static inline nir_cursor
2993 nir_after_instr(nir_instr *instr)
2994 {
2995 nir_cursor cursor;
2996 cursor.option = nir_cursor_after_instr;
2997 cursor.instr = instr;
2998 return cursor;
2999 }
3000
3001 static inline nir_cursor
3002 nir_after_block_before_jump(nir_block *block)
3003 {
3004 nir_instr *last_instr = nir_block_last_instr(block);
3005 if (last_instr && last_instr->type == nir_instr_type_jump) {
3006 return nir_before_instr(last_instr);
3007 } else {
3008 return nir_after_block(block);
3009 }
3010 }
3011
3012 static inline nir_cursor
3013 nir_before_src(nir_src *src, bool is_if_condition)
3014 {
3015 if (is_if_condition) {
3016 nir_block *prev_block =
3017 nir_cf_node_as_block(nir_cf_node_prev(&src->parent_if->cf_node));
3018 assert(!nir_block_ends_in_jump(prev_block));
3019 return nir_after_block(prev_block);
3020 } else if (src->parent_instr->type == nir_instr_type_phi) {
3021 #ifndef NDEBUG
3022 nir_phi_instr *cond_phi = nir_instr_as_phi(src->parent_instr);
3023 bool found = false;
3024 nir_foreach_phi_src(phi_src, cond_phi) {
3025 if (phi_src->src.ssa == src->ssa) {
3026 found = true;
3027 break;
3028 }
3029 }
3030 assert(found);
3031 #endif
3032 /* The LIST_ENTRY macro is a generic container-of macro, it just happens
3033 * to have a more specific name.
3034 */
3035 nir_phi_src *phi_src = LIST_ENTRY(nir_phi_src, src, src);
3036 return nir_after_block_before_jump(phi_src->pred);
3037 } else {
3038 return nir_before_instr(src->parent_instr);
3039 }
3040 }
3041
3042 static inline nir_cursor
3043 nir_before_cf_node(nir_cf_node *node)
3044 {
3045 if (node->type == nir_cf_node_block)
3046 return nir_before_block(nir_cf_node_as_block(node));
3047
3048 return nir_after_block(nir_cf_node_as_block(nir_cf_node_prev(node)));
3049 }
3050
3051 static inline nir_cursor
3052 nir_after_cf_node(nir_cf_node *node)
3053 {
3054 if (node->type == nir_cf_node_block)
3055 return nir_after_block(nir_cf_node_as_block(node));
3056
3057 return nir_before_block(nir_cf_node_as_block(nir_cf_node_next(node)));
3058 }
3059
3060 static inline nir_cursor
3061 nir_after_phis(nir_block *block)
3062 {
3063 nir_foreach_instr(instr, block) {
3064 if (instr->type != nir_instr_type_phi)
3065 return nir_before_instr(instr);
3066 }
3067 return nir_after_block(block);
3068 }
3069
3070 static inline nir_cursor
3071 nir_after_cf_node_and_phis(nir_cf_node *node)
3072 {
3073 if (node->type == nir_cf_node_block)
3074 return nir_after_block(nir_cf_node_as_block(node));
3075
3076 nir_block *block = nir_cf_node_as_block(nir_cf_node_next(node));
3077
3078 return nir_after_phis(block);
3079 }
3080
3081 static inline nir_cursor
3082 nir_before_cf_list(struct exec_list *cf_list)
3083 {
3084 nir_cf_node *first_node = exec_node_data(nir_cf_node,
3085 exec_list_get_head(cf_list), node);
3086 return nir_before_cf_node(first_node);
3087 }
3088
3089 static inline nir_cursor
3090 nir_after_cf_list(struct exec_list *cf_list)
3091 {
3092 nir_cf_node *last_node = exec_node_data(nir_cf_node,
3093 exec_list_get_tail(cf_list), node);
3094 return nir_after_cf_node(last_node);
3095 }
3096
3097 /**
3098 * Insert a NIR instruction at the given cursor.
3099 *
3100 * Note: This does not update the cursor.
3101 */
3102 void nir_instr_insert(nir_cursor cursor, nir_instr *instr);
3103
3104 static inline void
3105 nir_instr_insert_before(nir_instr *instr, nir_instr *before)
3106 {
3107 nir_instr_insert(nir_before_instr(instr), before);
3108 }
3109
3110 static inline void
3111 nir_instr_insert_after(nir_instr *instr, nir_instr *after)
3112 {
3113 nir_instr_insert(nir_after_instr(instr), after);
3114 }
3115
3116 static inline void
3117 nir_instr_insert_before_block(nir_block *block, nir_instr *before)
3118 {
3119 nir_instr_insert(nir_before_block(block), before);
3120 }
3121
3122 static inline void
3123 nir_instr_insert_after_block(nir_block *block, nir_instr *after)
3124 {
3125 nir_instr_insert(nir_after_block(block), after);
3126 }
3127
3128 static inline void
3129 nir_instr_insert_before_cf(nir_cf_node *node, nir_instr *before)
3130 {
3131 nir_instr_insert(nir_before_cf_node(node), before);
3132 }
3133
3134 static inline void
3135 nir_instr_insert_after_cf(nir_cf_node *node, nir_instr *after)
3136 {
3137 nir_instr_insert(nir_after_cf_node(node), after);
3138 }
3139
3140 static inline void
3141 nir_instr_insert_before_cf_list(struct exec_list *list, nir_instr *before)
3142 {
3143 nir_instr_insert(nir_before_cf_list(list), before);
3144 }
3145
3146 static inline void
3147 nir_instr_insert_after_cf_list(struct exec_list *list, nir_instr *after)
3148 {
3149 nir_instr_insert(nir_after_cf_list(list), after);
3150 }
3151
3152 void nir_instr_remove_v(nir_instr *instr);
3153
3154 static inline nir_cursor
3155 nir_instr_remove(nir_instr *instr)
3156 {
3157 nir_cursor cursor;
3158 nir_instr *prev = nir_instr_prev(instr);
3159 if (prev) {
3160 cursor = nir_after_instr(prev);
3161 } else {
3162 cursor = nir_before_block(instr->block);
3163 }
3164 nir_instr_remove_v(instr);
3165 return cursor;
3166 }
3167
3168 /** @} */
3169
3170 nir_ssa_def *nir_instr_ssa_def(nir_instr *instr);
3171
3172 typedef bool (*nir_foreach_ssa_def_cb)(nir_ssa_def *def, void *state);
3173 typedef bool (*nir_foreach_dest_cb)(nir_dest *dest, void *state);
3174 typedef bool (*nir_foreach_src_cb)(nir_src *src, void *state);
3175 bool nir_foreach_ssa_def(nir_instr *instr, nir_foreach_ssa_def_cb cb,
3176 void *state);
3177 bool nir_foreach_dest(nir_instr *instr, nir_foreach_dest_cb cb, void *state);
3178 bool nir_foreach_src(nir_instr *instr, nir_foreach_src_cb cb, void *state);
3179
3180 nir_const_value *nir_src_as_const_value(nir_src src);
3181
3182 #define NIR_SRC_AS_(name, c_type, type_enum, cast_macro) \
3183 static inline c_type * \
3184 nir_src_as_ ## name (nir_src src) \
3185 { \
3186 return src.is_ssa && src.ssa->parent_instr->type == type_enum \
3187 ? cast_macro(src.ssa->parent_instr) : NULL; \
3188 }
3189
3190 NIR_SRC_AS_(alu_instr, nir_alu_instr, nir_instr_type_alu, nir_instr_as_alu)
3191 NIR_SRC_AS_(intrinsic, nir_intrinsic_instr,
3192 nir_instr_type_intrinsic, nir_instr_as_intrinsic)
3193 NIR_SRC_AS_(deref, nir_deref_instr, nir_instr_type_deref, nir_instr_as_deref)
3194
3195 bool nir_src_is_dynamically_uniform(nir_src src);
3196 bool nir_srcs_equal(nir_src src1, nir_src src2);
3197 bool nir_instrs_equal(const nir_instr *instr1, const nir_instr *instr2);
3198 void nir_instr_rewrite_src(nir_instr *instr, nir_src *src, nir_src new_src);
3199 void nir_instr_move_src(nir_instr *dest_instr, nir_src *dest, nir_src *src);
3200 void nir_if_rewrite_condition(nir_if *if_stmt, nir_src new_src);
3201 void nir_instr_rewrite_dest(nir_instr *instr, nir_dest *dest,
3202 nir_dest new_dest);
3203
3204 void nir_ssa_dest_init(nir_instr *instr, nir_dest *dest,
3205 unsigned num_components, unsigned bit_size,
3206 const char *name);
3207 void nir_ssa_def_init(nir_instr *instr, nir_ssa_def *def,
3208 unsigned num_components, unsigned bit_size,
3209 const char *name);
3210 static inline void
3211 nir_ssa_dest_init_for_type(nir_instr *instr, nir_dest *dest,
3212 const struct glsl_type *type,
3213 const char *name)
3214 {
3215 assert(glsl_type_is_vector_or_scalar(type));
3216 nir_ssa_dest_init(instr, dest, glsl_get_components(type),
3217 glsl_get_bit_size(type), name);
3218 }
3219 void nir_ssa_def_rewrite_uses(nir_ssa_def *def, nir_src new_src);
3220 void nir_ssa_def_rewrite_uses_after(nir_ssa_def *def, nir_src new_src,
3221 nir_instr *after_me);
3222
3223 nir_component_mask_t nir_ssa_def_components_read(const nir_ssa_def *def);
3224
3225 /*
3226 * finds the next basic block in source-code order, returns NULL if there is
3227 * none
3228 */
3229
3230 nir_block *nir_block_cf_tree_next(nir_block *block);
3231
3232 /* Performs the opposite of nir_block_cf_tree_next() */
3233
3234 nir_block *nir_block_cf_tree_prev(nir_block *block);
3235
3236 /* Gets the first block in a CF node in source-code order */
3237
3238 nir_block *nir_cf_node_cf_tree_first(nir_cf_node *node);
3239
3240 /* Gets the last block in a CF node in source-code order */
3241
3242 nir_block *nir_cf_node_cf_tree_last(nir_cf_node *node);
3243
3244 /* Gets the next block after a CF node in source-code order */
3245
3246 nir_block *nir_cf_node_cf_tree_next(nir_cf_node *node);
3247
3248 /* Macros for loops that visit blocks in source-code order */
3249
3250 #define nir_foreach_block(block, impl) \
3251 for (nir_block *block = nir_start_block(impl); block != NULL; \
3252 block = nir_block_cf_tree_next(block))
3253
3254 #define nir_foreach_block_safe(block, impl) \
3255 for (nir_block *block = nir_start_block(impl), \
3256 *next = nir_block_cf_tree_next(block); \
3257 block != NULL; \
3258 block = next, next = nir_block_cf_tree_next(block))
3259
3260 #define nir_foreach_block_reverse(block, impl) \
3261 for (nir_block *block = nir_impl_last_block(impl); block != NULL; \
3262 block = nir_block_cf_tree_prev(block))
3263
3264 #define nir_foreach_block_reverse_safe(block, impl) \
3265 for (nir_block *block = nir_impl_last_block(impl), \
3266 *prev = nir_block_cf_tree_prev(block); \
3267 block != NULL; \
3268 block = prev, prev = nir_block_cf_tree_prev(block))
3269
3270 #define nir_foreach_block_in_cf_node(block, node) \
3271 for (nir_block *block = nir_cf_node_cf_tree_first(node); \
3272 block != nir_cf_node_cf_tree_next(node); \
3273 block = nir_block_cf_tree_next(block))
3274
3275 /* If the following CF node is an if, this function returns that if.
3276 * Otherwise, it returns NULL.
3277 */
3278 nir_if *nir_block_get_following_if(nir_block *block);
3279
3280 nir_loop *nir_block_get_following_loop(nir_block *block);
3281
3282 void nir_index_local_regs(nir_function_impl *impl);
3283 void nir_index_ssa_defs(nir_function_impl *impl);
3284 unsigned nir_index_instrs(nir_function_impl *impl);
3285
3286 void nir_index_blocks(nir_function_impl *impl);
3287
3288 void nir_print_shader(nir_shader *shader, FILE *fp);
3289 void nir_print_shader_annotated(nir_shader *shader, FILE *fp, struct hash_table *errors);
3290 void nir_print_instr(const nir_instr *instr, FILE *fp);
3291 void nir_print_deref(const nir_deref_instr *deref, FILE *fp);
3292
3293 /** Shallow clone of a single ALU instruction. */
3294 nir_alu_instr *nir_alu_instr_clone(nir_shader *s, const nir_alu_instr *orig);
3295
3296 nir_shader *nir_shader_clone(void *mem_ctx, const nir_shader *s);
3297 nir_function_impl *nir_function_impl_clone(nir_shader *shader,
3298 const nir_function_impl *fi);
3299 nir_constant *nir_constant_clone(const nir_constant *c, nir_variable *var);
3300 nir_variable *nir_variable_clone(const nir_variable *c, nir_shader *shader);
3301
3302 void nir_shader_replace(nir_shader *dest, nir_shader *src);
3303
3304 void nir_shader_serialize_deserialize(nir_shader *s);
3305
3306 #ifndef NDEBUG
3307 void nir_validate_shader(nir_shader *shader, const char *when);
3308 void nir_metadata_set_validation_flag(nir_shader *shader);
3309 void nir_metadata_check_validation_flag(nir_shader *shader);
3310
3311 static inline bool
3312 should_skip_nir(const char *name)
3313 {
3314 static const char *list = NULL;
3315 if (!list) {
3316 /* Comma separated list of names to skip. */
3317 list = getenv("NIR_SKIP");
3318 if (!list)
3319 list = "";
3320 }
3321
3322 if (!list[0])
3323 return false;
3324
3325 return comma_separated_list_contains(list, name);
3326 }
3327
3328 static inline bool
3329 should_clone_nir(void)
3330 {
3331 static int should_clone = -1;
3332 if (should_clone < 0)
3333 should_clone = env_var_as_boolean("NIR_TEST_CLONE", false);
3334
3335 return should_clone;
3336 }
3337
3338 static inline bool
3339 should_serialize_deserialize_nir(void)
3340 {
3341 static int test_serialize = -1;
3342 if (test_serialize < 0)
3343 test_serialize = env_var_as_boolean("NIR_TEST_SERIALIZE", false);
3344
3345 return test_serialize;
3346 }
3347
3348 static inline bool
3349 should_print_nir(void)
3350 {
3351 static int should_print = -1;
3352 if (should_print < 0)
3353 should_print = env_var_as_boolean("NIR_PRINT", false);
3354
3355 return should_print;
3356 }
3357 #else
3358 static inline void nir_validate_shader(nir_shader *shader, const char *when) { (void) shader; (void)when; }
3359 static inline void nir_metadata_set_validation_flag(nir_shader *shader) { (void) shader; }
3360 static inline void nir_metadata_check_validation_flag(nir_shader *shader) { (void) shader; }
3361 static inline bool should_skip_nir(UNUSED const char *pass_name) { return false; }
3362 static inline bool should_clone_nir(void) { return false; }
3363 static inline bool should_serialize_deserialize_nir(void) { return false; }
3364 static inline bool should_print_nir(void) { return false; }
3365 #endif /* NDEBUG */
3366
3367 #define _PASS(pass, nir, do_pass) do { \
3368 if (should_skip_nir(#pass)) { \
3369 printf("skipping %s\n", #pass); \
3370 break; \
3371 } \
3372 do_pass \
3373 nir_validate_shader(nir, "after " #pass); \
3374 if (should_clone_nir()) { \
3375 nir_shader *clone = nir_shader_clone(ralloc_parent(nir), nir); \
3376 nir_shader_replace(nir, clone); \
3377 } \
3378 if (should_serialize_deserialize_nir()) { \
3379 nir_shader_serialize_deserialize(nir); \
3380 } \
3381 } while (0)
3382
3383 #define NIR_PASS(progress, nir, pass, ...) _PASS(pass, nir, \
3384 nir_metadata_set_validation_flag(nir); \
3385 if (should_print_nir()) \
3386 printf("%s\n", #pass); \
3387 if (pass(nir, ##__VA_ARGS__)) { \
3388 progress = true; \
3389 if (should_print_nir()) \
3390 nir_print_shader(nir, stdout); \
3391 nir_metadata_check_validation_flag(nir); \
3392 } \
3393 )
3394
3395 #define NIR_PASS_V(nir, pass, ...) _PASS(pass, nir, \
3396 if (should_print_nir()) \
3397 printf("%s\n", #pass); \
3398 pass(nir, ##__VA_ARGS__); \
3399 if (should_print_nir()) \
3400 nir_print_shader(nir, stdout); \
3401 )
3402
3403 #define NIR_SKIP(name) should_skip_nir(#name)
3404
3405 /** An instruction filtering callback
3406 *
3407 * Returns true if the instruction should be processed and false otherwise.
3408 */
3409 typedef bool (*nir_instr_filter_cb)(const nir_instr *, const void *);
3410
3411 /** A simple instruction lowering callback
3412 *
3413 * Many instruction lowering passes can be written as a simple function which
3414 * takes an instruction as its input and returns a sequence of instructions
3415 * that implement the consumed instruction. This function type represents
3416 * such a lowering function. When called, a function with this prototype
3417 * should either return NULL indicating that no lowering needs to be done or
3418 * emit a sequence of instructions using the provided builder (whose cursor
3419 * will already be placed after the instruction to be lowered) and return the
3420 * resulting nir_ssa_def.
3421 */
3422 typedef nir_ssa_def *(*nir_lower_instr_cb)(struct nir_builder *,
3423 nir_instr *, void *);
3424
3425 /**
3426 * Special return value for nir_lower_instr_cb when some progress occurred
3427 * (like changing an input to the instr) that didn't result in a replacement
3428 * SSA def being generated.
3429 */
3430 #define NIR_LOWER_INSTR_PROGRESS ((nir_ssa_def *)(uintptr_t)1)
3431
3432 /** Iterate over all the instructions in a nir_function_impl and lower them
3433 * using the provided callbacks
3434 *
3435 * This function implements the guts of a standard lowering pass for you. It
3436 * iterates over all of the instructions in a nir_function_impl and calls the
3437 * filter callback on each one. If the filter callback returns true, it then
3438 * calls the lowering call back on the instruction. (Splitting it this way
3439 * allows us to avoid some save/restore work for instructions we know won't be
3440 * lowered.) If the instruction is dead after the lowering is complete, it
3441 * will be removed. If new instructions are added, the lowering callback will
3442 * also be called on them in case multiple lowerings are required.
3443 *
3444 * The metadata for the nir_function_impl will also be updated. If any blocks
3445 * are added (they cannot be removed), dominance and block indices will be
3446 * invalidated.
3447 */
3448 bool nir_function_impl_lower_instructions(nir_function_impl *impl,
3449 nir_instr_filter_cb filter,
3450 nir_lower_instr_cb lower,
3451 void *cb_data);
3452 bool nir_shader_lower_instructions(nir_shader *shader,
3453 nir_instr_filter_cb filter,
3454 nir_lower_instr_cb lower,
3455 void *cb_data);
3456
3457 void nir_calc_dominance_impl(nir_function_impl *impl);
3458 void nir_calc_dominance(nir_shader *shader);
3459
3460 nir_block *nir_dominance_lca(nir_block *b1, nir_block *b2);
3461 bool nir_block_dominates(nir_block *parent, nir_block *child);
3462 bool nir_block_is_unreachable(nir_block *block);
3463
3464 void nir_dump_dom_tree_impl(nir_function_impl *impl, FILE *fp);
3465 void nir_dump_dom_tree(nir_shader *shader, FILE *fp);
3466
3467 void nir_dump_dom_frontier_impl(nir_function_impl *impl, FILE *fp);
3468 void nir_dump_dom_frontier(nir_shader *shader, FILE *fp);
3469
3470 void nir_dump_cfg_impl(nir_function_impl *impl, FILE *fp);
3471 void nir_dump_cfg(nir_shader *shader, FILE *fp);
3472
3473 int nir_gs_count_vertices(const nir_shader *shader);
3474
3475 bool nir_shrink_vec_array_vars(nir_shader *shader, nir_variable_mode modes);
3476 bool nir_split_array_vars(nir_shader *shader, nir_variable_mode modes);
3477 bool nir_split_var_copies(nir_shader *shader);
3478 bool nir_split_per_member_structs(nir_shader *shader);
3479 bool nir_split_struct_vars(nir_shader *shader, nir_variable_mode modes);
3480
3481 bool nir_lower_returns_impl(nir_function_impl *impl);
3482 bool nir_lower_returns(nir_shader *shader);
3483
3484 void nir_inline_function_impl(struct nir_builder *b,
3485 const nir_function_impl *impl,
3486 nir_ssa_def **params);
3487 bool nir_inline_functions(nir_shader *shader);
3488
3489 bool nir_propagate_invariant(nir_shader *shader);
3490
3491 void nir_lower_var_copy_instr(nir_intrinsic_instr *copy, nir_shader *shader);
3492 void nir_lower_deref_copy_instr(struct nir_builder *b,
3493 nir_intrinsic_instr *copy);
3494 bool nir_lower_var_copies(nir_shader *shader);
3495
3496 void nir_fixup_deref_modes(nir_shader *shader);
3497
3498 bool nir_lower_global_vars_to_local(nir_shader *shader);
3499
3500 typedef enum {
3501 nir_lower_direct_array_deref_of_vec_load = (1 << 0),
3502 nir_lower_indirect_array_deref_of_vec_load = (1 << 1),
3503 nir_lower_direct_array_deref_of_vec_store = (1 << 2),
3504 nir_lower_indirect_array_deref_of_vec_store = (1 << 3),
3505 } nir_lower_array_deref_of_vec_options;
3506
3507 bool nir_lower_array_deref_of_vec(nir_shader *shader, nir_variable_mode modes,
3508 nir_lower_array_deref_of_vec_options options);
3509
3510 bool nir_lower_indirect_derefs(nir_shader *shader, nir_variable_mode modes);
3511
3512 bool nir_lower_locals_to_regs(nir_shader *shader);
3513
3514 void nir_lower_io_to_temporaries(nir_shader *shader,
3515 nir_function_impl *entrypoint,
3516 bool outputs, bool inputs);
3517
3518 bool nir_lower_vars_to_scratch(nir_shader *shader,
3519 nir_variable_mode modes,
3520 int size_threshold,
3521 glsl_type_size_align_func size_align);
3522
3523 void nir_shader_gather_info(nir_shader *shader, nir_function_impl *entrypoint);
3524
3525 void nir_gather_ssa_types(nir_function_impl *impl,
3526 BITSET_WORD *float_types,
3527 BITSET_WORD *int_types);
3528
3529 void nir_assign_var_locations(struct exec_list *var_list, unsigned *size,
3530 int (*type_size)(const struct glsl_type *, bool));
3531
3532 /* Some helpers to do very simple linking */
3533 bool nir_remove_unused_varyings(nir_shader *producer, nir_shader *consumer);
3534 bool nir_remove_unused_io_vars(nir_shader *shader, struct exec_list *var_list,
3535 uint64_t *used_by_other_stage,
3536 uint64_t *used_by_other_stage_patches);
3537 void nir_compact_varyings(nir_shader *producer, nir_shader *consumer,
3538 bool default_to_smooth_interp);
3539 void nir_link_xfb_varyings(nir_shader *producer, nir_shader *consumer);
3540 bool nir_link_opt_varyings(nir_shader *producer, nir_shader *consumer);
3541
3542
3543 void nir_assign_io_var_locations(struct exec_list *var_list,
3544 unsigned *size,
3545 gl_shader_stage stage);
3546
3547 typedef enum {
3548 /* If set, this causes all 64-bit IO operations to be lowered on-the-fly
3549 * to 32-bit operations. This is only valid for nir_var_shader_in/out
3550 * modes.
3551 */
3552 nir_lower_io_lower_64bit_to_32 = (1 << 0),
3553
3554 /* If set, this forces all non-flat fragment shader inputs to be
3555 * interpolated as if with the "sample" qualifier. This requires
3556 * nir_shader_compiler_options::use_interpolated_input_intrinsics.
3557 */
3558 nir_lower_io_force_sample_interpolation = (1 << 1),
3559 } nir_lower_io_options;
3560 bool nir_lower_io(nir_shader *shader,
3561 nir_variable_mode modes,
3562 int (*type_size)(const struct glsl_type *, bool),
3563 nir_lower_io_options);
3564
3565 bool nir_io_add_const_offset_to_base(nir_shader *nir, nir_variable_mode mode);
3566
3567 bool
3568 nir_lower_vars_to_explicit_types(nir_shader *shader,
3569 nir_variable_mode modes,
3570 glsl_type_size_align_func type_info);
3571
3572 typedef enum {
3573 /**
3574 * An address format which is a simple 32-bit global GPU address.
3575 */
3576 nir_address_format_32bit_global,
3577
3578 /**
3579 * An address format which is a simple 64-bit global GPU address.
3580 */
3581 nir_address_format_64bit_global,
3582
3583 /**
3584 * An address format which is a bounds-checked 64-bit global GPU address.
3585 *
3586 * The address is comprised as a 32-bit vec4 where .xy are a uint64_t base
3587 * address stored with the low bits in .x and high bits in .y, .z is a
3588 * size, and .w is an offset. When the final I/O operation is lowered, .w
3589 * is checked against .z and the operation is predicated on the result.
3590 */
3591 nir_address_format_64bit_bounded_global,
3592
3593 /**
3594 * An address format which is comprised of a vec2 where the first
3595 * component is a buffer index and the second is an offset.
3596 */
3597 nir_address_format_32bit_index_offset,
3598
3599 /**
3600 * An address format which is a simple 32-bit offset.
3601 */
3602 nir_address_format_32bit_offset,
3603
3604 /**
3605 * An address format representing a purely logical addressing model. In
3606 * this model, all deref chains must be complete from the dereference
3607 * operation to the variable. Cast derefs are not allowed. These
3608 * addresses will be 32-bit scalars but the format is immaterial because
3609 * you can always chase the chain.
3610 */
3611 nir_address_format_logical,
3612 } nir_address_format;
3613
3614 static inline unsigned
3615 nir_address_format_bit_size(nir_address_format addr_format)
3616 {
3617 switch (addr_format) {
3618 case nir_address_format_32bit_global: return 32;
3619 case nir_address_format_64bit_global: return 64;
3620 case nir_address_format_64bit_bounded_global: return 32;
3621 case nir_address_format_32bit_index_offset: return 32;
3622 case nir_address_format_32bit_offset: return 32;
3623 case nir_address_format_logical: return 32;
3624 }
3625 unreachable("Invalid address format");
3626 }
3627
3628 static inline unsigned
3629 nir_address_format_num_components(nir_address_format addr_format)
3630 {
3631 switch (addr_format) {
3632 case nir_address_format_32bit_global: return 1;
3633 case nir_address_format_64bit_global: return 1;
3634 case nir_address_format_64bit_bounded_global: return 4;
3635 case nir_address_format_32bit_index_offset: return 2;
3636 case nir_address_format_32bit_offset: return 1;
3637 case nir_address_format_logical: return 1;
3638 }
3639 unreachable("Invalid address format");
3640 }
3641
3642 static inline const struct glsl_type *
3643 nir_address_format_to_glsl_type(nir_address_format addr_format)
3644 {
3645 unsigned bit_size = nir_address_format_bit_size(addr_format);
3646 assert(bit_size == 32 || bit_size == 64);
3647 return glsl_vector_type(bit_size == 32 ? GLSL_TYPE_UINT : GLSL_TYPE_UINT64,
3648 nir_address_format_num_components(addr_format));
3649 }
3650
3651 const nir_const_value *nir_address_format_null_value(nir_address_format addr_format);
3652
3653 nir_ssa_def *nir_build_addr_ieq(struct nir_builder *b, nir_ssa_def *addr0, nir_ssa_def *addr1,
3654 nir_address_format addr_format);
3655
3656 nir_ssa_def *nir_build_addr_isub(struct nir_builder *b, nir_ssa_def *addr0, nir_ssa_def *addr1,
3657 nir_address_format addr_format);
3658
3659 nir_ssa_def * nir_explicit_io_address_from_deref(struct nir_builder *b,
3660 nir_deref_instr *deref,
3661 nir_ssa_def *base_addr,
3662 nir_address_format addr_format);
3663 void nir_lower_explicit_io_instr(struct nir_builder *b,
3664 nir_intrinsic_instr *io_instr,
3665 nir_ssa_def *addr,
3666 nir_address_format addr_format);
3667
3668 bool nir_lower_explicit_io(nir_shader *shader,
3669 nir_variable_mode modes,
3670 nir_address_format);
3671
3672 nir_src *nir_get_io_offset_src(nir_intrinsic_instr *instr);
3673 nir_src *nir_get_io_vertex_index_src(nir_intrinsic_instr *instr);
3674
3675 bool nir_is_per_vertex_io(const nir_variable *var, gl_shader_stage stage);
3676
3677 bool nir_lower_regs_to_ssa_impl(nir_function_impl *impl);
3678 bool nir_lower_regs_to_ssa(nir_shader *shader);
3679 bool nir_lower_vars_to_ssa(nir_shader *shader);
3680
3681 bool nir_remove_dead_derefs(nir_shader *shader);
3682 bool nir_remove_dead_derefs_impl(nir_function_impl *impl);
3683 bool nir_remove_dead_variables(nir_shader *shader, nir_variable_mode modes);
3684 bool nir_lower_constant_initializers(nir_shader *shader,
3685 nir_variable_mode modes);
3686
3687 bool nir_move_vec_src_uses_to_dest(nir_shader *shader);
3688 bool nir_lower_vec_to_movs(nir_shader *shader);
3689 void nir_lower_alpha_test(nir_shader *shader, enum compare_func func,
3690 bool alpha_to_one,
3691 const gl_state_index16 *alpha_ref_state_tokens);
3692 bool nir_lower_alu(nir_shader *shader);
3693
3694 bool nir_lower_flrp(nir_shader *shader, unsigned lowering_mask,
3695 bool always_precise, bool have_ffma);
3696
3697 bool nir_lower_alu_to_scalar(nir_shader *shader, nir_instr_filter_cb cb, const void *data);
3698 bool nir_lower_bool_to_float(nir_shader *shader);
3699 bool nir_lower_bool_to_int32(nir_shader *shader);
3700 bool nir_lower_int_to_float(nir_shader *shader);
3701 bool nir_lower_load_const_to_scalar(nir_shader *shader);
3702 bool nir_lower_read_invocation_to_scalar(nir_shader *shader);
3703 bool nir_lower_phis_to_scalar(nir_shader *shader);
3704 void nir_lower_io_arrays_to_elements(nir_shader *producer, nir_shader *consumer);
3705 void nir_lower_io_arrays_to_elements_no_indirects(nir_shader *shader,
3706 bool outputs_only);
3707 void nir_lower_io_to_scalar(nir_shader *shader, nir_variable_mode mask);
3708 void nir_lower_io_to_scalar_early(nir_shader *shader, nir_variable_mode mask);
3709 bool nir_lower_io_to_vector(nir_shader *shader, nir_variable_mode mask);
3710
3711 void nir_lower_fragcoord_wtrans(nir_shader *shader);
3712 void nir_lower_viewport_transform(nir_shader *shader);
3713 bool nir_lower_uniforms_to_ubo(nir_shader *shader, int multiplier);
3714
3715 typedef struct nir_lower_subgroups_options {
3716 uint8_t subgroup_size;
3717 uint8_t ballot_bit_size;
3718 bool lower_to_scalar:1;
3719 bool lower_vote_trivial:1;
3720 bool lower_vote_eq_to_ballot:1;
3721 bool lower_subgroup_masks:1;
3722 bool lower_shuffle:1;
3723 bool lower_shuffle_to_32bit:1;
3724 bool lower_quad:1;
3725 } nir_lower_subgroups_options;
3726
3727 bool nir_lower_subgroups(nir_shader *shader,
3728 const nir_lower_subgroups_options *options);
3729
3730 bool nir_lower_system_values(nir_shader *shader);
3731
3732 enum PACKED nir_lower_tex_packing {
3733 nir_lower_tex_packing_none = 0,
3734 /* The sampler returns up to 2 32-bit words of half floats or 16-bit signed
3735 * or unsigned ints based on the sampler type
3736 */
3737 nir_lower_tex_packing_16,
3738 /* The sampler returns 1 32-bit word of 4x8 unorm */
3739 nir_lower_tex_packing_8,
3740 };
3741
3742 typedef struct nir_lower_tex_options {
3743 /**
3744 * bitmask of (1 << GLSL_SAMPLER_DIM_x) to control for which
3745 * sampler types a texture projector is lowered.
3746 */
3747 unsigned lower_txp;
3748
3749 /**
3750 * If true, lower away nir_tex_src_offset for all texelfetch instructions.
3751 */
3752 bool lower_txf_offset;
3753
3754 /**
3755 * If true, lower away nir_tex_src_offset for all rect textures.
3756 */
3757 bool lower_rect_offset;
3758
3759 /**
3760 * If true, lower rect textures to 2D, using txs to fetch the
3761 * texture dimensions and dividing the texture coords by the
3762 * texture dims to normalize.
3763 */
3764 bool lower_rect;
3765
3766 /**
3767 * If true, convert yuv to rgb.
3768 */
3769 unsigned lower_y_uv_external;
3770 unsigned lower_y_u_v_external;
3771 unsigned lower_yx_xuxv_external;
3772 unsigned lower_xy_uxvx_external;
3773 unsigned lower_ayuv_external;
3774 unsigned lower_xyuv_external;
3775
3776 /**
3777 * To emulate certain texture wrap modes, this can be used
3778 * to saturate the specified tex coord to [0.0, 1.0]. The
3779 * bits are according to sampler #, ie. if, for example:
3780 *
3781 * (conf->saturate_s & (1 << n))
3782 *
3783 * is true, then the s coord for sampler n is saturated.
3784 *
3785 * Note that clamping must happen *after* projector lowering
3786 * so any projected texture sample instruction with a clamped
3787 * coordinate gets automatically lowered, regardless of the
3788 * 'lower_txp' setting.
3789 */
3790 unsigned saturate_s;
3791 unsigned saturate_t;
3792 unsigned saturate_r;
3793
3794 /* Bitmask of textures that need swizzling.
3795 *
3796 * If (swizzle_result & (1 << texture_index)), then the swizzle in
3797 * swizzles[texture_index] is applied to the result of the texturing
3798 * operation.
3799 */
3800 unsigned swizzle_result;
3801
3802 /* A swizzle for each texture. Values 0-3 represent x, y, z, or w swizzles
3803 * while 4 and 5 represent 0 and 1 respectively.
3804 */
3805 uint8_t swizzles[32][4];
3806
3807 /* Can be used to scale sampled values in range required by the format. */
3808 float scale_factors[32];
3809
3810 /**
3811 * Bitmap of textures that need srgb to linear conversion. If
3812 * (lower_srgb & (1 << texture_index)) then the rgb (xyz) components
3813 * of the texture are lowered to linear.
3814 */
3815 unsigned lower_srgb;
3816
3817 /**
3818 * If true, lower nir_texop_tex on shaders that doesn't support implicit
3819 * LODs to nir_texop_txl.
3820 */
3821 bool lower_tex_without_implicit_lod;
3822
3823 /**
3824 * If true, lower nir_texop_txd on cube maps with nir_texop_txl.
3825 */
3826 bool lower_txd_cube_map;
3827
3828 /**
3829 * If true, lower nir_texop_txd on 3D surfaces with nir_texop_txl.
3830 */
3831 bool lower_txd_3d;
3832
3833 /**
3834 * If true, lower nir_texop_txd on shadow samplers (except cube maps)
3835 * with nir_texop_txl. Notice that cube map shadow samplers are lowered
3836 * with lower_txd_cube_map.
3837 */
3838 bool lower_txd_shadow;
3839
3840 /**
3841 * If true, lower nir_texop_txd on all samplers to a nir_texop_txl.
3842 * Implies lower_txd_cube_map and lower_txd_shadow.
3843 */
3844 bool lower_txd;
3845
3846 /**
3847 * If true, lower nir_texop_txb that try to use shadow compare and min_lod
3848 * at the same time to a nir_texop_lod, some math, and nir_texop_tex.
3849 */
3850 bool lower_txb_shadow_clamp;
3851
3852 /**
3853 * If true, lower nir_texop_txd on shadow samplers when it uses min_lod
3854 * with nir_texop_txl. This includes cube maps.
3855 */
3856 bool lower_txd_shadow_clamp;
3857
3858 /**
3859 * If true, lower nir_texop_txd on when it uses both offset and min_lod
3860 * with nir_texop_txl. This includes cube maps.
3861 */
3862 bool lower_txd_offset_clamp;
3863
3864 /**
3865 * If true, lower nir_texop_txd with min_lod to a nir_texop_txl if the
3866 * sampler is bindless.
3867 */
3868 bool lower_txd_clamp_bindless_sampler;
3869
3870 /**
3871 * If true, lower nir_texop_txd with min_lod to a nir_texop_txl if the
3872 * sampler index is not statically determinable to be less than 16.
3873 */
3874 bool lower_txd_clamp_if_sampler_index_not_lt_16;
3875
3876 /**
3877 * If true, lower nir_texop_txs with a non-0-lod into nir_texop_txs with
3878 * 0-lod followed by a nir_ishr.
3879 */
3880 bool lower_txs_lod;
3881
3882 /**
3883 * If true, apply a .bagr swizzle on tg4 results to handle Broadcom's
3884 * mixed-up tg4 locations.
3885 */
3886 bool lower_tg4_broadcom_swizzle;
3887
3888 /**
3889 * If true, lowers tg4 with 4 constant offsets to 4 tg4 calls
3890 */
3891 bool lower_tg4_offsets;
3892
3893 enum nir_lower_tex_packing lower_tex_packing[32];
3894 } nir_lower_tex_options;
3895
3896 bool nir_lower_tex(nir_shader *shader,
3897 const nir_lower_tex_options *options);
3898
3899 enum nir_lower_non_uniform_access_type {
3900 nir_lower_non_uniform_ubo_access = (1 << 0),
3901 nir_lower_non_uniform_ssbo_access = (1 << 1),
3902 nir_lower_non_uniform_texture_access = (1 << 2),
3903 nir_lower_non_uniform_image_access = (1 << 3),
3904 };
3905
3906 bool nir_lower_non_uniform_access(nir_shader *shader,
3907 enum nir_lower_non_uniform_access_type);
3908
3909 bool nir_lower_idiv(nir_shader *shader);
3910
3911 bool nir_lower_input_attachments(nir_shader *shader, bool use_fragcoord_sysval);
3912
3913 bool nir_lower_clip_vs(nir_shader *shader, unsigned ucp_enables,
3914 bool use_vars,
3915 bool use_clipdist_array,
3916 const gl_state_index16 clipplane_state_tokens[][STATE_LENGTH]);
3917 bool nir_lower_clip_gs(nir_shader *shader, unsigned ucp_enables,
3918 bool use_clipdist_array,
3919 const gl_state_index16 clipplane_state_tokens[][STATE_LENGTH]);
3920 bool nir_lower_clip_fs(nir_shader *shader, unsigned ucp_enables,
3921 bool use_clipdist_array);
3922 bool nir_lower_clip_cull_distance_arrays(nir_shader *nir);
3923
3924 void nir_lower_point_size_mov(nir_shader *shader,
3925 const gl_state_index16 *pointsize_state_tokens);
3926
3927 bool nir_lower_frexp(nir_shader *nir);
3928
3929 void nir_lower_two_sided_color(nir_shader *shader);
3930
3931 bool nir_lower_clamp_color_outputs(nir_shader *shader);
3932
3933 bool nir_lower_flatshade(nir_shader *shader);
3934
3935 void nir_lower_passthrough_edgeflags(nir_shader *shader);
3936 bool nir_lower_patch_vertices(nir_shader *nir, unsigned static_count,
3937 const gl_state_index16 *uniform_state_tokens);
3938
3939 typedef struct nir_lower_wpos_ytransform_options {
3940 gl_state_index16 state_tokens[STATE_LENGTH];
3941 bool fs_coord_origin_upper_left :1;
3942 bool fs_coord_origin_lower_left :1;
3943 bool fs_coord_pixel_center_integer :1;
3944 bool fs_coord_pixel_center_half_integer :1;
3945 } nir_lower_wpos_ytransform_options;
3946
3947 bool nir_lower_wpos_ytransform(nir_shader *shader,
3948 const nir_lower_wpos_ytransform_options *options);
3949 bool nir_lower_wpos_center(nir_shader *shader, const bool for_sample_shading);
3950
3951 bool nir_lower_fb_read(nir_shader *shader);
3952
3953 typedef struct nir_lower_drawpixels_options {
3954 gl_state_index16 texcoord_state_tokens[STATE_LENGTH];
3955 gl_state_index16 scale_state_tokens[STATE_LENGTH];
3956 gl_state_index16 bias_state_tokens[STATE_LENGTH];
3957 unsigned drawpix_sampler;
3958 unsigned pixelmap_sampler;
3959 bool pixel_maps :1;
3960 bool scale_and_bias :1;
3961 } nir_lower_drawpixels_options;
3962
3963 void nir_lower_drawpixels(nir_shader *shader,
3964 const nir_lower_drawpixels_options *options);
3965
3966 typedef struct nir_lower_bitmap_options {
3967 unsigned sampler;
3968 bool swizzle_xxxx;
3969 } nir_lower_bitmap_options;
3970
3971 void nir_lower_bitmap(nir_shader *shader, const nir_lower_bitmap_options *options);
3972
3973 bool nir_lower_atomics_to_ssbo(nir_shader *shader, unsigned ssbo_offset);
3974
3975 typedef enum {
3976 nir_lower_int_source_mods = 1 << 0,
3977 nir_lower_float_source_mods = 1 << 1,
3978 nir_lower_triop_abs = 1 << 2,
3979 nir_lower_all_source_mods = (1 << 3) - 1
3980 } nir_lower_to_source_mods_flags;
3981
3982
3983 bool nir_lower_to_source_mods(nir_shader *shader, nir_lower_to_source_mods_flags options);
3984
3985 bool nir_lower_gs_intrinsics(nir_shader *shader);
3986
3987 typedef unsigned (*nir_lower_bit_size_callback)(const nir_alu_instr *, void *);
3988
3989 bool nir_lower_bit_size(nir_shader *shader,
3990 nir_lower_bit_size_callback callback,
3991 void *callback_data);
3992
3993 nir_lower_int64_options nir_lower_int64_op_to_options_mask(nir_op opcode);
3994 bool nir_lower_int64(nir_shader *shader, nir_lower_int64_options options);
3995
3996 nir_lower_doubles_options nir_lower_doubles_op_to_options_mask(nir_op opcode);
3997 bool nir_lower_doubles(nir_shader *shader, const nir_shader *softfp64,
3998 nir_lower_doubles_options options);
3999 bool nir_lower_pack(nir_shader *shader);
4000
4001 bool nir_lower_point_size(nir_shader *shader, float min, float max);
4002
4003 typedef enum {
4004 nir_lower_interpolation_at_sample = (1 << 1),
4005 nir_lower_interpolation_at_offset = (1 << 2),
4006 nir_lower_interpolation_centroid = (1 << 3),
4007 nir_lower_interpolation_pixel = (1 << 4),
4008 nir_lower_interpolation_sample = (1 << 5),
4009 } nir_lower_interpolation_options;
4010
4011 bool nir_lower_interpolation(nir_shader *shader,
4012 nir_lower_interpolation_options options);
4013
4014 bool nir_normalize_cubemap_coords(nir_shader *shader);
4015
4016 void nir_live_ssa_defs_impl(nir_function_impl *impl);
4017
4018 void nir_loop_analyze_impl(nir_function_impl *impl,
4019 nir_variable_mode indirect_mask);
4020
4021 bool nir_ssa_defs_interfere(nir_ssa_def *a, nir_ssa_def *b);
4022
4023 bool nir_repair_ssa_impl(nir_function_impl *impl);
4024 bool nir_repair_ssa(nir_shader *shader);
4025
4026 void nir_convert_loop_to_lcssa(nir_loop *loop);
4027 bool nir_convert_to_lcssa(nir_shader *shader, bool skip_invariants, bool skip_bool_invariants);
4028 bool* nir_divergence_analysis(nir_shader *shader, nir_divergence_options options);
4029
4030 /* If phi_webs_only is true, only convert SSA values involved in phi nodes to
4031 * registers. If false, convert all values (even those not involved in a phi
4032 * node) to registers.
4033 */
4034 bool nir_convert_from_ssa(nir_shader *shader, bool phi_webs_only);
4035
4036 bool nir_lower_phis_to_regs_block(nir_block *block);
4037 bool nir_lower_ssa_defs_to_regs_block(nir_block *block);
4038 bool nir_rematerialize_derefs_in_use_blocks_impl(nir_function_impl *impl);
4039
4040 bool nir_lower_samplers(nir_shader *shader);
4041
4042 /* This is here for unit tests. */
4043 bool nir_opt_comparison_pre_impl(nir_function_impl *impl);
4044
4045 bool nir_opt_comparison_pre(nir_shader *shader);
4046
4047 bool nir_opt_access(nir_shader *shader);
4048 bool nir_opt_algebraic(nir_shader *shader);
4049 bool nir_opt_algebraic_before_ffma(nir_shader *shader);
4050 bool nir_opt_algebraic_late(nir_shader *shader);
4051 bool nir_opt_constant_folding(nir_shader *shader);
4052
4053 bool nir_opt_combine_stores(nir_shader *shader, nir_variable_mode modes);
4054
4055 bool nir_copy_prop(nir_shader *shader);
4056
4057 bool nir_opt_copy_prop_vars(nir_shader *shader);
4058
4059 bool nir_opt_cse(nir_shader *shader);
4060
4061 bool nir_opt_dce(nir_shader *shader);
4062
4063 bool nir_opt_dead_cf(nir_shader *shader);
4064
4065 bool nir_opt_dead_write_vars(nir_shader *shader);
4066
4067 bool nir_opt_deref_impl(nir_function_impl *impl);
4068 bool nir_opt_deref(nir_shader *shader);
4069
4070 bool nir_opt_find_array_copies(nir_shader *shader);
4071
4072 bool nir_opt_gcm(nir_shader *shader, bool value_number);
4073
4074 bool nir_opt_idiv_const(nir_shader *shader, unsigned min_bit_size);
4075
4076 bool nir_opt_if(nir_shader *shader, bool aggressive_last_continue);
4077
4078 bool nir_opt_intrinsics(nir_shader *shader);
4079
4080 bool nir_opt_large_constants(nir_shader *shader,
4081 glsl_type_size_align_func size_align,
4082 unsigned threshold);
4083
4084 bool nir_opt_loop_unroll(nir_shader *shader, nir_variable_mode indirect_mask);
4085
4086 typedef enum {
4087 nir_move_const_undef = (1 << 0),
4088 nir_move_load_ubo = (1 << 1),
4089 nir_move_load_input = (1 << 2),
4090 nir_move_comparisons = (1 << 3),
4091 } nir_move_options;
4092
4093 bool nir_can_move_instr(nir_instr *instr, nir_move_options options);
4094
4095 bool nir_opt_sink(nir_shader *shader, nir_move_options options);
4096
4097 bool nir_opt_move(nir_shader *shader, nir_move_options options);
4098
4099 bool nir_opt_peephole_select(nir_shader *shader, unsigned limit,
4100 bool indirect_load_ok, bool expensive_alu_ok);
4101
4102 bool nir_opt_rematerialize_compares(nir_shader *shader);
4103
4104 bool nir_opt_remove_phis(nir_shader *shader);
4105 bool nir_opt_remove_phis_block(nir_block *block);
4106
4107 bool nir_opt_shrink_load(nir_shader *shader);
4108
4109 bool nir_opt_trivial_continues(nir_shader *shader);
4110
4111 bool nir_opt_undef(nir_shader *shader);
4112
4113 bool nir_opt_vectorize(nir_shader *shader);
4114
4115 bool nir_opt_conditional_discard(nir_shader *shader);
4116
4117 void nir_strip(nir_shader *shader);
4118
4119 void nir_sweep(nir_shader *shader);
4120
4121 void nir_remap_dual_slot_attributes(nir_shader *shader,
4122 uint64_t *dual_slot_inputs);
4123 uint64_t nir_get_single_slot_attribs_mask(uint64_t attribs, uint64_t dual_slot);
4124
4125 nir_intrinsic_op nir_intrinsic_from_system_value(gl_system_value val);
4126 gl_system_value nir_system_value_from_intrinsic(nir_intrinsic_op intrin);
4127
4128 static inline bool
4129 nir_variable_is_in_ubo(const nir_variable *var)
4130 {
4131 return (var->data.mode == nir_var_mem_ubo &&
4132 var->interface_type != NULL);
4133 }
4134
4135 static inline bool
4136 nir_variable_is_in_ssbo(const nir_variable *var)
4137 {
4138 return (var->data.mode == nir_var_mem_ssbo &&
4139 var->interface_type != NULL);
4140 }
4141
4142 static inline bool
4143 nir_variable_is_in_block(const nir_variable *var)
4144 {
4145 return nir_variable_is_in_ubo(var) || nir_variable_is_in_ssbo(var);
4146 }
4147
4148 #ifdef __cplusplus
4149 } /* extern "C" */
4150 #endif
4151
4152 #endif /* NIR_H */