nir: add complex_loop bool to loop info
[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/bitset.h"
38 #include "util/macros.h"
39 #include "compiler/nir_types.h"
40 #include "compiler/shader_enums.h"
41 #include "compiler/shader_info.h"
42 #include <stdio.h>
43
44 #ifndef NDEBUG
45 #include "util/debug.h"
46 #endif /* NDEBUG */
47
48 #include "nir_opcodes.h"
49
50 #if defined(_WIN32) && !defined(snprintf)
51 #define snprintf _snprintf
52 #endif
53
54 #ifdef __cplusplus
55 extern "C" {
56 #endif
57
58 #define NIR_FALSE 0u
59 #define NIR_TRUE (~0u)
60 #define NIR_MAX_VEC_COMPONENTS 4
61 typedef uint8_t nir_component_mask_t;
62
63 /** Defines a cast function
64 *
65 * This macro defines a cast function from in_type to out_type where
66 * out_type is some structure type that contains a field of type out_type.
67 *
68 * Note that you have to be a bit careful as the generated cast function
69 * destroys constness.
70 */
71 #define NIR_DEFINE_CAST(name, in_type, out_type, field, \
72 type_field, type_value) \
73 static inline out_type * \
74 name(const in_type *parent) \
75 { \
76 assert(parent && parent->type_field == type_value); \
77 return exec_node_data(out_type, parent, field); \
78 }
79
80 struct nir_function;
81 struct nir_shader;
82 struct nir_instr;
83 struct nir_builder;
84
85
86 /**
87 * Description of built-in state associated with a uniform
88 *
89 * \sa nir_variable::state_slots
90 */
91 typedef struct {
92 gl_state_index16 tokens[STATE_LENGTH];
93 int swizzle;
94 } nir_state_slot;
95
96 typedef enum {
97 nir_var_shader_in = (1 << 0),
98 nir_var_shader_out = (1 << 1),
99 nir_var_global = (1 << 2),
100 nir_var_local = (1 << 3),
101 nir_var_uniform = (1 << 4),
102 nir_var_shader_storage = (1 << 5),
103 nir_var_system_value = (1 << 6),
104 nir_var_shared = (1 << 8),
105 nir_var_all = ~0,
106 } nir_variable_mode;
107
108 /**
109 * Rounding modes.
110 */
111 typedef enum {
112 nir_rounding_mode_undef = 0,
113 nir_rounding_mode_rtne = 1, /* round to nearest even */
114 nir_rounding_mode_ru = 2, /* round up */
115 nir_rounding_mode_rd = 3, /* round down */
116 nir_rounding_mode_rtz = 4, /* round towards zero */
117 } nir_rounding_mode;
118
119 typedef union {
120 float f32[NIR_MAX_VEC_COMPONENTS];
121 double f64[NIR_MAX_VEC_COMPONENTS];
122 int8_t i8[NIR_MAX_VEC_COMPONENTS];
123 uint8_t u8[NIR_MAX_VEC_COMPONENTS];
124 int16_t i16[NIR_MAX_VEC_COMPONENTS];
125 uint16_t u16[NIR_MAX_VEC_COMPONENTS];
126 int32_t i32[NIR_MAX_VEC_COMPONENTS];
127 uint32_t u32[NIR_MAX_VEC_COMPONENTS];
128 int64_t i64[NIR_MAX_VEC_COMPONENTS];
129 uint64_t u64[NIR_MAX_VEC_COMPONENTS];
130 } nir_const_value;
131
132 typedef struct nir_constant {
133 /**
134 * Value of the constant.
135 *
136 * The field used to back the values supplied by the constant is determined
137 * by the type associated with the \c nir_variable. Constants may be
138 * scalars, vectors, or matrices.
139 */
140 nir_const_value values[NIR_MAX_VEC_COMPONENTS];
141
142 /* we could get this from the var->type but makes clone *much* easier to
143 * not have to care about the type.
144 */
145 unsigned num_elements;
146
147 /* Array elements / Structure Fields */
148 struct nir_constant **elements;
149 } nir_constant;
150
151 /**
152 * \brief Layout qualifiers for gl_FragDepth.
153 *
154 * The AMD/ARB_conservative_depth extensions allow gl_FragDepth to be redeclared
155 * with a layout qualifier.
156 */
157 typedef enum {
158 nir_depth_layout_none, /**< No depth layout is specified. */
159 nir_depth_layout_any,
160 nir_depth_layout_greater,
161 nir_depth_layout_less,
162 nir_depth_layout_unchanged
163 } nir_depth_layout;
164
165 /**
166 * Enum keeping track of how a variable was declared.
167 */
168 typedef enum {
169 /**
170 * Normal declaration.
171 */
172 nir_var_declared_normally = 0,
173
174 /**
175 * Variable is implicitly generated by the compiler and should not be
176 * visible via the API.
177 */
178 nir_var_hidden,
179 } nir_var_declaration_type;
180
181 /**
182 * Either a uniform, global variable, shader input, or shader output. Based on
183 * ir_variable - it should be easy to translate between the two.
184 */
185
186 typedef struct nir_variable {
187 struct exec_node node;
188
189 /**
190 * Declared type of the variable
191 */
192 const struct glsl_type *type;
193
194 /**
195 * Declared name of the variable
196 */
197 char *name;
198
199 struct nir_variable_data {
200 /**
201 * Storage class of the variable.
202 *
203 * \sa nir_variable_mode
204 */
205 nir_variable_mode mode;
206
207 /**
208 * Is the variable read-only?
209 *
210 * This is set for variables declared as \c const, shader inputs,
211 * and uniforms.
212 */
213 unsigned read_only:1;
214 unsigned centroid:1;
215 unsigned sample:1;
216 unsigned patch:1;
217 unsigned invariant:1;
218
219 /**
220 * When separate shader programs are enabled, only input/outputs between
221 * the stages of a multi-stage separate program can be safely removed
222 * from the shader interface. Other input/outputs must remains active.
223 *
224 * This is also used to make sure xfb varyings that are unused by the
225 * fragment shader are not removed.
226 */
227 unsigned always_active_io:1;
228
229 /**
230 * Interpolation mode for shader inputs / outputs
231 *
232 * \sa glsl_interp_mode
233 */
234 unsigned interpolation:2;
235
236 /**
237 * \name ARB_fragment_coord_conventions
238 * @{
239 */
240 unsigned origin_upper_left:1;
241 unsigned pixel_center_integer:1;
242 /*@}*/
243
244 /**
245 * If non-zero, then this variable may be packed along with other variables
246 * into a single varying slot, so this offset should be applied when
247 * accessing components. For example, an offset of 1 means that the x
248 * component of this variable is actually stored in component y of the
249 * location specified by \c location.
250 */
251 unsigned location_frac:2;
252
253 /**
254 * If true, this variable represents an array of scalars that should
255 * be tightly packed. In other words, consecutive array elements
256 * should be stored one component apart, rather than one slot apart.
257 */
258 unsigned compact:1;
259
260 /**
261 * Whether this is a fragment shader output implicitly initialized with
262 * the previous contents of the specified render target at the
263 * framebuffer location corresponding to this shader invocation.
264 */
265 unsigned fb_fetch_output:1;
266
267 /**
268 * Non-zero if this variable is considered bindless as defined by
269 * ARB_bindless_texture.
270 */
271 unsigned bindless:1;
272
273 /**
274 * Was an explicit binding set in the shader?
275 */
276 unsigned explicit_binding:1;
277
278 /**
279 * Was a transfer feedback buffer set in the shader?
280 */
281 unsigned explicit_xfb_buffer:1;
282
283 /**
284 * Was a transfer feedback stride set in the shader?
285 */
286 unsigned explicit_xfb_stride:1;
287
288 /**
289 * Was an explicit offset set in the shader?
290 */
291 unsigned explicit_offset:1;
292
293 /**
294 * \brief Layout qualifier for gl_FragDepth.
295 *
296 * This is not equal to \c ir_depth_layout_none if and only if this
297 * variable is \c gl_FragDepth and a layout qualifier is specified.
298 */
299 nir_depth_layout depth_layout;
300
301 /**
302 * Storage location of the base of this variable
303 *
304 * The precise meaning of this field depends on the nature of the variable.
305 *
306 * - Vertex shader input: one of the values from \c gl_vert_attrib.
307 * - Vertex shader output: one of the values from \c gl_varying_slot.
308 * - Geometry shader input: one of the values from \c gl_varying_slot.
309 * - Geometry shader output: one of the values from \c gl_varying_slot.
310 * - Fragment shader input: one of the values from \c gl_varying_slot.
311 * - Fragment shader output: one of the values from \c gl_frag_result.
312 * - Uniforms: Per-stage uniform slot number for default uniform block.
313 * - Uniforms: Index within the uniform block definition for UBO members.
314 * - Non-UBO Uniforms: uniform slot number.
315 * - Other: This field is not currently used.
316 *
317 * If the variable is a uniform, shader input, or shader output, and the
318 * slot has not been assigned, the value will be -1.
319 */
320 int location;
321
322 /**
323 * The actual location of the variable in the IR. Only valid for inputs
324 * and outputs.
325 */
326 unsigned int driver_location;
327
328 /**
329 * Vertex stream output identifier.
330 *
331 * For packed outputs, bit 31 is set and bits [2*i+1,2*i] indicate the
332 * stream of the i-th component.
333 */
334 unsigned stream;
335
336 /**
337 * output index for dual source blending.
338 */
339 int index;
340
341 /**
342 * Descriptor set binding for sampler or UBO.
343 */
344 int descriptor_set;
345
346 /**
347 * Initial binding point for a sampler or UBO.
348 *
349 * For array types, this represents the binding point for the first element.
350 */
351 int binding;
352
353 /**
354 * Location an atomic counter or transform feedback is stored at.
355 */
356 unsigned offset;
357
358 /**
359 * Transform feedback buffer.
360 */
361 unsigned xfb_buffer;
362
363 /**
364 * Transform feedback stride.
365 */
366 unsigned xfb_stride;
367
368 /**
369 * How the variable was declared. See nir_var_declaration_type.
370 *
371 * This is used to detect variables generated by the compiler, so should
372 * not be visible via the API.
373 */
374 unsigned how_declared:2;
375
376 /**
377 * ARB_shader_image_load_store qualifiers.
378 */
379 struct {
380 bool read_only; /**< "readonly" qualifier. */
381 bool write_only; /**< "writeonly" qualifier. */
382 bool coherent;
383 bool _volatile;
384 bool restrict_flag;
385
386 /** Image internal format if specified explicitly, otherwise GL_NONE. */
387 GLenum format;
388 } image;
389 } data;
390
391 /**
392 * Built-in state that backs this uniform
393 *
394 * Once set at variable creation, \c state_slots must remain invariant.
395 * This is because, ideally, this array would be shared by all clones of
396 * this variable in the IR tree. In other words, we'd really like for it
397 * to be a fly-weight.
398 *
399 * If the variable is not a uniform, \c num_state_slots will be zero and
400 * \c state_slots will be \c NULL.
401 */
402 /*@{*/
403 unsigned num_state_slots; /**< Number of state slots used */
404 nir_state_slot *state_slots; /**< State descriptors. */
405 /*@}*/
406
407 /**
408 * Constant expression assigned in the initializer of the variable
409 *
410 * This field should only be used temporarily by creators of NIR shaders
411 * and then lower_constant_initializers can be used to get rid of them.
412 * Most of the rest of NIR ignores this field or asserts that it's NULL.
413 */
414 nir_constant *constant_initializer;
415
416 /**
417 * For variables that are in an interface block or are an instance of an
418 * interface block, this is the \c GLSL_TYPE_INTERFACE type for that block.
419 *
420 * \sa ir_variable::location
421 */
422 const struct glsl_type *interface_type;
423
424 /**
425 * Description of per-member data for per-member struct variables
426 *
427 * This is used for variables which are actually an amalgamation of
428 * multiple entities such as a struct of built-in values or a struct of
429 * inputs each with their own layout specifier. This is only allowed on
430 * variables with a struct or array of array of struct type.
431 */
432 unsigned num_members;
433 struct nir_variable_data *members;
434 } nir_variable;
435
436 #define nir_foreach_variable(var, var_list) \
437 foreach_list_typed(nir_variable, var, node, var_list)
438
439 #define nir_foreach_variable_safe(var, var_list) \
440 foreach_list_typed_safe(nir_variable, var, node, var_list)
441
442 static inline bool
443 nir_variable_is_global(const nir_variable *var)
444 {
445 return var->data.mode != nir_var_local;
446 }
447
448 typedef struct nir_register {
449 struct exec_node node;
450
451 unsigned num_components; /** < number of vector components */
452 unsigned num_array_elems; /** < size of array (0 for no array) */
453
454 /* The bit-size of each channel; must be one of 8, 16, 32, or 64 */
455 uint8_t bit_size;
456
457 /** generic register index. */
458 unsigned index;
459
460 /** only for debug purposes, can be NULL */
461 const char *name;
462
463 /** whether this register is local (per-function) or global (per-shader) */
464 bool is_global;
465
466 /**
467 * If this flag is set to true, then accessing channels >= num_components
468 * is well-defined, and simply spills over to the next array element. This
469 * is useful for backends that can do per-component accessing, in
470 * particular scalar backends. By setting this flag and making
471 * num_components equal to 1, structures can be packed tightly into
472 * registers and then registers can be accessed per-component to get to
473 * each structure member, even if it crosses vec4 boundaries.
474 */
475 bool is_packed;
476
477 /** set of nir_srcs where this register is used (read from) */
478 struct list_head uses;
479
480 /** set of nir_dests where this register is defined (written to) */
481 struct list_head defs;
482
483 /** set of nir_ifs where this register is used as a condition */
484 struct list_head if_uses;
485 } nir_register;
486
487 #define nir_foreach_register(reg, reg_list) \
488 foreach_list_typed(nir_register, reg, node, reg_list)
489 #define nir_foreach_register_safe(reg, reg_list) \
490 foreach_list_typed_safe(nir_register, reg, node, reg_list)
491
492 typedef enum {
493 nir_instr_type_alu,
494 nir_instr_type_deref,
495 nir_instr_type_call,
496 nir_instr_type_tex,
497 nir_instr_type_intrinsic,
498 nir_instr_type_load_const,
499 nir_instr_type_jump,
500 nir_instr_type_ssa_undef,
501 nir_instr_type_phi,
502 nir_instr_type_parallel_copy,
503 } nir_instr_type;
504
505 typedef struct nir_instr {
506 struct exec_node node;
507 nir_instr_type type;
508 struct nir_block *block;
509
510 /** generic instruction index. */
511 unsigned index;
512
513 /* A temporary for optimization and analysis passes to use for storing
514 * flags. For instance, DCE uses this to store the "dead/live" info.
515 */
516 uint8_t pass_flags;
517 } nir_instr;
518
519 static inline nir_instr *
520 nir_instr_next(nir_instr *instr)
521 {
522 struct exec_node *next = exec_node_get_next(&instr->node);
523 if (exec_node_is_tail_sentinel(next))
524 return NULL;
525 else
526 return exec_node_data(nir_instr, next, node);
527 }
528
529 static inline nir_instr *
530 nir_instr_prev(nir_instr *instr)
531 {
532 struct exec_node *prev = exec_node_get_prev(&instr->node);
533 if (exec_node_is_head_sentinel(prev))
534 return NULL;
535 else
536 return exec_node_data(nir_instr, prev, node);
537 }
538
539 static inline bool
540 nir_instr_is_first(const nir_instr *instr)
541 {
542 return exec_node_is_head_sentinel(exec_node_get_prev_const(&instr->node));
543 }
544
545 static inline bool
546 nir_instr_is_last(const nir_instr *instr)
547 {
548 return exec_node_is_tail_sentinel(exec_node_get_next_const(&instr->node));
549 }
550
551 typedef struct nir_ssa_def {
552 /** for debugging only, can be NULL */
553 const char* name;
554
555 /** generic SSA definition index. */
556 unsigned index;
557
558 /** Index into the live_in and live_out bitfields */
559 unsigned live_index;
560
561 /** Instruction which produces this SSA value. */
562 nir_instr *parent_instr;
563
564 /** set of nir_instrs where this register is used (read from) */
565 struct list_head uses;
566
567 /** set of nir_ifs where this register is used as a condition */
568 struct list_head if_uses;
569
570 uint8_t num_components;
571
572 /* The bit-size of each channel; must be one of 8, 16, 32, or 64 */
573 uint8_t bit_size;
574 } nir_ssa_def;
575
576 struct nir_src;
577
578 typedef struct {
579 nir_register *reg;
580 struct nir_src *indirect; /** < NULL for no indirect offset */
581 unsigned base_offset;
582
583 /* TODO use-def chain goes here */
584 } nir_reg_src;
585
586 typedef struct {
587 nir_instr *parent_instr;
588 struct list_head def_link;
589
590 nir_register *reg;
591 struct nir_src *indirect; /** < NULL for no indirect offset */
592 unsigned base_offset;
593
594 /* TODO def-use chain goes here */
595 } nir_reg_dest;
596
597 struct nir_if;
598
599 typedef struct nir_src {
600 union {
601 /** Instruction that consumes this value as a source. */
602 nir_instr *parent_instr;
603 struct nir_if *parent_if;
604 };
605
606 struct list_head use_link;
607
608 union {
609 nir_reg_src reg;
610 nir_ssa_def *ssa;
611 };
612
613 bool is_ssa;
614 } nir_src;
615
616 static inline nir_src
617 nir_src_init(void)
618 {
619 nir_src src = { { NULL } };
620 return src;
621 }
622
623 #define NIR_SRC_INIT nir_src_init()
624
625 #define nir_foreach_use(src, reg_or_ssa_def) \
626 list_for_each_entry(nir_src, src, &(reg_or_ssa_def)->uses, use_link)
627
628 #define nir_foreach_use_safe(src, reg_or_ssa_def) \
629 list_for_each_entry_safe(nir_src, src, &(reg_or_ssa_def)->uses, use_link)
630
631 #define nir_foreach_if_use(src, reg_or_ssa_def) \
632 list_for_each_entry(nir_src, src, &(reg_or_ssa_def)->if_uses, use_link)
633
634 #define nir_foreach_if_use_safe(src, reg_or_ssa_def) \
635 list_for_each_entry_safe(nir_src, src, &(reg_or_ssa_def)->if_uses, use_link)
636
637 typedef struct {
638 union {
639 nir_reg_dest reg;
640 nir_ssa_def ssa;
641 };
642
643 bool is_ssa;
644 } nir_dest;
645
646 static inline nir_dest
647 nir_dest_init(void)
648 {
649 nir_dest dest = { { { NULL } } };
650 return dest;
651 }
652
653 #define NIR_DEST_INIT nir_dest_init()
654
655 #define nir_foreach_def(dest, reg) \
656 list_for_each_entry(nir_dest, dest, &(reg)->defs, reg.def_link)
657
658 #define nir_foreach_def_safe(dest, reg) \
659 list_for_each_entry_safe(nir_dest, dest, &(reg)->defs, reg.def_link)
660
661 static inline nir_src
662 nir_src_for_ssa(nir_ssa_def *def)
663 {
664 nir_src src = NIR_SRC_INIT;
665
666 src.is_ssa = true;
667 src.ssa = def;
668
669 return src;
670 }
671
672 static inline nir_src
673 nir_src_for_reg(nir_register *reg)
674 {
675 nir_src src = NIR_SRC_INIT;
676
677 src.is_ssa = false;
678 src.reg.reg = reg;
679 src.reg.indirect = NULL;
680 src.reg.base_offset = 0;
681
682 return src;
683 }
684
685 static inline nir_dest
686 nir_dest_for_reg(nir_register *reg)
687 {
688 nir_dest dest = NIR_DEST_INIT;
689
690 dest.reg.reg = reg;
691
692 return dest;
693 }
694
695 static inline unsigned
696 nir_src_bit_size(nir_src src)
697 {
698 return src.is_ssa ? src.ssa->bit_size : src.reg.reg->bit_size;
699 }
700
701 static inline unsigned
702 nir_src_num_components(nir_src src)
703 {
704 return src.is_ssa ? src.ssa->num_components : src.reg.reg->num_components;
705 }
706
707 static inline unsigned
708 nir_dest_bit_size(nir_dest dest)
709 {
710 return dest.is_ssa ? dest.ssa.bit_size : dest.reg.reg->bit_size;
711 }
712
713 static inline unsigned
714 nir_dest_num_components(nir_dest dest)
715 {
716 return dest.is_ssa ? dest.ssa.num_components : dest.reg.reg->num_components;
717 }
718
719 void nir_src_copy(nir_src *dest, const nir_src *src, void *instr_or_if);
720 void nir_dest_copy(nir_dest *dest, const nir_dest *src, nir_instr *instr);
721
722 typedef struct {
723 nir_src src;
724
725 /**
726 * \name input modifiers
727 */
728 /*@{*/
729 /**
730 * For inputs interpreted as floating point, flips the sign bit. For
731 * inputs interpreted as integers, performs the two's complement negation.
732 */
733 bool negate;
734
735 /**
736 * Clears the sign bit for floating point values, and computes the integer
737 * absolute value for integers. Note that the negate modifier acts after
738 * the absolute value modifier, therefore if both are set then all inputs
739 * will become negative.
740 */
741 bool abs;
742 /*@}*/
743
744 /**
745 * For each input component, says which component of the register it is
746 * chosen from. Note that which elements of the swizzle are used and which
747 * are ignored are based on the write mask for most opcodes - for example,
748 * a statement like "foo.xzw = bar.zyx" would have a writemask of 1101b and
749 * a swizzle of {2, x, 1, 0} where x means "don't care."
750 */
751 uint8_t swizzle[NIR_MAX_VEC_COMPONENTS];
752 } nir_alu_src;
753
754 typedef struct {
755 nir_dest dest;
756
757 /**
758 * \name saturate output modifier
759 *
760 * Only valid for opcodes that output floating-point numbers. Clamps the
761 * output to between 0.0 and 1.0 inclusive.
762 */
763
764 bool saturate;
765
766 unsigned write_mask : NIR_MAX_VEC_COMPONENTS; /* ignored if dest.is_ssa is true */
767 } nir_alu_dest;
768
769 typedef enum {
770 nir_type_invalid = 0, /* Not a valid type */
771 nir_type_float,
772 nir_type_int,
773 nir_type_uint,
774 nir_type_bool,
775 nir_type_bool32 = 32 | nir_type_bool,
776 nir_type_int8 = 8 | nir_type_int,
777 nir_type_int16 = 16 | nir_type_int,
778 nir_type_int32 = 32 | nir_type_int,
779 nir_type_int64 = 64 | nir_type_int,
780 nir_type_uint8 = 8 | nir_type_uint,
781 nir_type_uint16 = 16 | nir_type_uint,
782 nir_type_uint32 = 32 | nir_type_uint,
783 nir_type_uint64 = 64 | nir_type_uint,
784 nir_type_float16 = 16 | nir_type_float,
785 nir_type_float32 = 32 | nir_type_float,
786 nir_type_float64 = 64 | nir_type_float,
787 } nir_alu_type;
788
789 #define NIR_ALU_TYPE_SIZE_MASK 0xfffffff8
790 #define NIR_ALU_TYPE_BASE_TYPE_MASK 0x00000007
791
792 static inline unsigned
793 nir_alu_type_get_type_size(nir_alu_type type)
794 {
795 return type & NIR_ALU_TYPE_SIZE_MASK;
796 }
797
798 static inline unsigned
799 nir_alu_type_get_base_type(nir_alu_type type)
800 {
801 return type & NIR_ALU_TYPE_BASE_TYPE_MASK;
802 }
803
804 static inline nir_alu_type
805 nir_get_nir_type_for_glsl_base_type(enum glsl_base_type base_type)
806 {
807 switch (base_type) {
808 case GLSL_TYPE_BOOL:
809 return nir_type_bool32;
810 break;
811 case GLSL_TYPE_UINT:
812 return nir_type_uint32;
813 break;
814 case GLSL_TYPE_INT:
815 return nir_type_int32;
816 break;
817 case GLSL_TYPE_UINT16:
818 return nir_type_uint16;
819 break;
820 case GLSL_TYPE_INT16:
821 return nir_type_int16;
822 break;
823 case GLSL_TYPE_UINT8:
824 return nir_type_uint8;
825 case GLSL_TYPE_INT8:
826 return nir_type_int8;
827 case GLSL_TYPE_UINT64:
828 return nir_type_uint64;
829 break;
830 case GLSL_TYPE_INT64:
831 return nir_type_int64;
832 break;
833 case GLSL_TYPE_FLOAT:
834 return nir_type_float32;
835 break;
836 case GLSL_TYPE_FLOAT16:
837 return nir_type_float16;
838 break;
839 case GLSL_TYPE_DOUBLE:
840 return nir_type_float64;
841 break;
842 default:
843 unreachable("unknown type");
844 }
845 }
846
847 static inline nir_alu_type
848 nir_get_nir_type_for_glsl_type(const struct glsl_type *type)
849 {
850 return nir_get_nir_type_for_glsl_base_type(glsl_get_base_type(type));
851 }
852
853 nir_op nir_type_conversion_op(nir_alu_type src, nir_alu_type dst,
854 nir_rounding_mode rnd);
855
856 typedef enum {
857 NIR_OP_IS_COMMUTATIVE = (1 << 0),
858 NIR_OP_IS_ASSOCIATIVE = (1 << 1),
859 } nir_op_algebraic_property;
860
861 typedef struct {
862 const char *name;
863
864 unsigned num_inputs;
865
866 /**
867 * The number of components in the output
868 *
869 * If non-zero, this is the size of the output and input sizes are
870 * explicitly given; swizzle and writemask are still in effect, but if
871 * the output component is masked out, then the input component may
872 * still be in use.
873 *
874 * If zero, the opcode acts in the standard, per-component manner; the
875 * operation is performed on each component (except the ones that are
876 * masked out) with the input being taken from the input swizzle for
877 * that component.
878 *
879 * The size of some of the inputs may be given (i.e. non-zero) even
880 * though output_size is zero; in that case, the inputs with a zero
881 * size act per-component, while the inputs with non-zero size don't.
882 */
883 unsigned output_size;
884
885 /**
886 * The type of vector that the instruction outputs. Note that the
887 * staurate modifier is only allowed on outputs with the float type.
888 */
889
890 nir_alu_type output_type;
891
892 /**
893 * The number of components in each input
894 */
895 unsigned input_sizes[NIR_MAX_VEC_COMPONENTS];
896
897 /**
898 * The type of vector that each input takes. Note that negate and
899 * absolute value are only allowed on inputs with int or float type and
900 * behave differently on the two.
901 */
902 nir_alu_type input_types[NIR_MAX_VEC_COMPONENTS];
903
904 nir_op_algebraic_property algebraic_properties;
905 } nir_op_info;
906
907 extern const nir_op_info nir_op_infos[nir_num_opcodes];
908
909 typedef struct nir_alu_instr {
910 nir_instr instr;
911 nir_op op;
912
913 /** Indicates that this ALU instruction generates an exact value
914 *
915 * This is kind of a mixture of GLSL "precise" and "invariant" and not
916 * really equivalent to either. This indicates that the value generated by
917 * this operation is high-precision and any code transformations that touch
918 * it must ensure that the resulting value is bit-for-bit identical to the
919 * original.
920 */
921 bool exact;
922
923 nir_alu_dest dest;
924 nir_alu_src src[];
925 } nir_alu_instr;
926
927 void nir_alu_src_copy(nir_alu_src *dest, const nir_alu_src *src,
928 nir_alu_instr *instr);
929 void nir_alu_dest_copy(nir_alu_dest *dest, const nir_alu_dest *src,
930 nir_alu_instr *instr);
931
932 /* is this source channel used? */
933 static inline bool
934 nir_alu_instr_channel_used(const nir_alu_instr *instr, unsigned src,
935 unsigned channel)
936 {
937 if (nir_op_infos[instr->op].input_sizes[src] > 0)
938 return channel < nir_op_infos[instr->op].input_sizes[src];
939
940 return (instr->dest.write_mask >> channel) & 1;
941 }
942
943 /*
944 * For instructions whose destinations are SSA, get the number of channels
945 * used for a source
946 */
947 static inline unsigned
948 nir_ssa_alu_instr_src_components(const nir_alu_instr *instr, unsigned src)
949 {
950 assert(instr->dest.dest.is_ssa);
951
952 if (nir_op_infos[instr->op].input_sizes[src] > 0)
953 return nir_op_infos[instr->op].input_sizes[src];
954
955 return instr->dest.dest.ssa.num_components;
956 }
957
958 bool nir_alu_srcs_equal(const nir_alu_instr *alu1, const nir_alu_instr *alu2,
959 unsigned src1, unsigned src2);
960
961 typedef enum {
962 nir_deref_type_var,
963 nir_deref_type_array,
964 nir_deref_type_array_wildcard,
965 nir_deref_type_struct,
966 nir_deref_type_cast,
967 } nir_deref_type;
968
969 typedef struct {
970 nir_instr instr;
971
972 /** The type of this deref instruction */
973 nir_deref_type deref_type;
974
975 /** The mode of the underlying variable */
976 nir_variable_mode mode;
977
978 /** The dereferenced type of the resulting pointer value */
979 const struct glsl_type *type;
980
981 union {
982 /** Variable being dereferenced if deref_type is a deref_var */
983 nir_variable *var;
984
985 /** Parent deref if deref_type is not deref_var */
986 nir_src parent;
987 };
988
989 /** Additional deref parameters */
990 union {
991 struct {
992 nir_src index;
993 } arr;
994
995 struct {
996 unsigned index;
997 } strct;
998 };
999
1000 /** Destination to store the resulting "pointer" */
1001 nir_dest dest;
1002 } nir_deref_instr;
1003
1004 NIR_DEFINE_CAST(nir_instr_as_deref, nir_instr, nir_deref_instr, instr,
1005 type, nir_instr_type_deref)
1006
1007 static inline nir_deref_instr *
1008 nir_src_as_deref(nir_src src)
1009 {
1010 if (!src.is_ssa)
1011 return NULL;
1012
1013 if (src.ssa->parent_instr->type != nir_instr_type_deref)
1014 return NULL;
1015
1016 return nir_instr_as_deref(src.ssa->parent_instr);
1017 }
1018
1019 static inline nir_deref_instr *
1020 nir_deref_instr_parent(const nir_deref_instr *instr)
1021 {
1022 if (instr->deref_type == nir_deref_type_var)
1023 return NULL;
1024 else
1025 return nir_src_as_deref(instr->parent);
1026 }
1027
1028 static inline nir_variable *
1029 nir_deref_instr_get_variable(const nir_deref_instr *instr)
1030 {
1031 while (instr->deref_type != nir_deref_type_var) {
1032 if (instr->deref_type == nir_deref_type_cast)
1033 return NULL;
1034
1035 instr = nir_deref_instr_parent(instr);
1036 }
1037
1038 return instr->var;
1039 }
1040
1041 bool nir_deref_instr_has_indirect(nir_deref_instr *instr);
1042
1043 bool nir_deref_instr_remove_if_unused(nir_deref_instr *instr);
1044
1045 typedef struct {
1046 nir_instr instr;
1047
1048 struct nir_function *callee;
1049
1050 unsigned num_params;
1051 nir_src params[];
1052 } nir_call_instr;
1053
1054 #include "nir_intrinsics.h"
1055
1056 #define NIR_INTRINSIC_MAX_CONST_INDEX 3
1057
1058 /** Represents an intrinsic
1059 *
1060 * An intrinsic is an instruction type for handling things that are
1061 * more-or-less regular operations but don't just consume and produce SSA
1062 * values like ALU operations do. Intrinsics are not for things that have
1063 * special semantic meaning such as phi nodes and parallel copies.
1064 * Examples of intrinsics include variable load/store operations, system
1065 * value loads, and the like. Even though texturing more-or-less falls
1066 * under this category, texturing is its own instruction type because
1067 * trying to represent texturing with intrinsics would lead to a
1068 * combinatorial explosion of intrinsic opcodes.
1069 *
1070 * By having a single instruction type for handling a lot of different
1071 * cases, optimization passes can look for intrinsics and, for the most
1072 * part, completely ignore them. Each intrinsic type also has a few
1073 * possible flags that govern whether or not they can be reordered or
1074 * eliminated. That way passes like dead code elimination can still work
1075 * on intrisics without understanding the meaning of each.
1076 *
1077 * Each intrinsic has some number of constant indices, some number of
1078 * variables, and some number of sources. What these sources, variables,
1079 * and indices mean depends on the intrinsic and is documented with the
1080 * intrinsic declaration in nir_intrinsics.h. Intrinsics and texture
1081 * instructions are the only types of instruction that can operate on
1082 * variables.
1083 */
1084 typedef struct {
1085 nir_instr instr;
1086
1087 nir_intrinsic_op intrinsic;
1088
1089 nir_dest dest;
1090
1091 /** number of components if this is a vectorized intrinsic
1092 *
1093 * Similarly to ALU operations, some intrinsics are vectorized.
1094 * An intrinsic is vectorized if nir_intrinsic_infos.dest_components == 0.
1095 * For vectorized intrinsics, the num_components field specifies the
1096 * number of destination components and the number of source components
1097 * for all sources with nir_intrinsic_infos.src_components[i] == 0.
1098 */
1099 uint8_t num_components;
1100
1101 int const_index[NIR_INTRINSIC_MAX_CONST_INDEX];
1102
1103 nir_src src[];
1104 } nir_intrinsic_instr;
1105
1106 static inline nir_variable *
1107 nir_intrinsic_get_var(nir_intrinsic_instr *intrin, unsigned i)
1108 {
1109 return nir_deref_instr_get_variable(nir_src_as_deref(intrin->src[i]));
1110 }
1111
1112 /**
1113 * \name NIR intrinsics semantic flags
1114 *
1115 * information about what the compiler can do with the intrinsics.
1116 *
1117 * \sa nir_intrinsic_info::flags
1118 */
1119 typedef enum {
1120 /**
1121 * whether the intrinsic can be safely eliminated if none of its output
1122 * value is not being used.
1123 */
1124 NIR_INTRINSIC_CAN_ELIMINATE = (1 << 0),
1125
1126 /**
1127 * Whether the intrinsic can be reordered with respect to any other
1128 * intrinsic, i.e. whether the only reordering dependencies of the
1129 * intrinsic are due to the register reads/writes.
1130 */
1131 NIR_INTRINSIC_CAN_REORDER = (1 << 1),
1132 } nir_intrinsic_semantic_flag;
1133
1134 /**
1135 * \name NIR intrinsics const-index flag
1136 *
1137 * Indicates the usage of a const_index slot.
1138 *
1139 * \sa nir_intrinsic_info::index_map
1140 */
1141 typedef enum {
1142 /**
1143 * Generally instructions that take a offset src argument, can encode
1144 * a constant 'base' value which is added to the offset.
1145 */
1146 NIR_INTRINSIC_BASE = 1,
1147
1148 /**
1149 * For store instructions, a writemask for the store.
1150 */
1151 NIR_INTRINSIC_WRMASK = 2,
1152
1153 /**
1154 * The stream-id for GS emit_vertex/end_primitive intrinsics.
1155 */
1156 NIR_INTRINSIC_STREAM_ID = 3,
1157
1158 /**
1159 * The clip-plane id for load_user_clip_plane intrinsic.
1160 */
1161 NIR_INTRINSIC_UCP_ID = 4,
1162
1163 /**
1164 * The amount of data, starting from BASE, that this instruction may
1165 * access. This is used to provide bounds if the offset is not constant.
1166 */
1167 NIR_INTRINSIC_RANGE = 5,
1168
1169 /**
1170 * The Vulkan descriptor set for vulkan_resource_index intrinsic.
1171 */
1172 NIR_INTRINSIC_DESC_SET = 6,
1173
1174 /**
1175 * The Vulkan descriptor set binding for vulkan_resource_index intrinsic.
1176 */
1177 NIR_INTRINSIC_BINDING = 7,
1178
1179 /**
1180 * Component offset.
1181 */
1182 NIR_INTRINSIC_COMPONENT = 8,
1183
1184 /**
1185 * Interpolation mode (only meaningful for FS inputs).
1186 */
1187 NIR_INTRINSIC_INTERP_MODE = 9,
1188
1189 /**
1190 * A binary nir_op to use when performing a reduction or scan operation
1191 */
1192 NIR_INTRINSIC_REDUCTION_OP = 10,
1193
1194 /**
1195 * Cluster size for reduction operations
1196 */
1197 NIR_INTRINSIC_CLUSTER_SIZE = 11,
1198
1199 /**
1200 * Parameter index for a load_param intrinsic
1201 */
1202 NIR_INTRINSIC_PARAM_IDX = 12,
1203
1204 NIR_INTRINSIC_NUM_INDEX_FLAGS,
1205
1206 } nir_intrinsic_index_flag;
1207
1208 #define NIR_INTRINSIC_MAX_INPUTS 5
1209
1210 typedef struct {
1211 const char *name;
1212
1213 unsigned num_srcs; /** < number of register/SSA inputs */
1214
1215 /** number of components of each input register
1216 *
1217 * If this value is 0, the number of components is given by the
1218 * num_components field of nir_intrinsic_instr.
1219 */
1220 unsigned src_components[NIR_INTRINSIC_MAX_INPUTS];
1221
1222 bool has_dest;
1223
1224 /** number of components of the output register
1225 *
1226 * If this value is 0, the number of components is given by the
1227 * num_components field of nir_intrinsic_instr.
1228 */
1229 unsigned dest_components;
1230
1231 /** the number of constant indices used by the intrinsic */
1232 unsigned num_indices;
1233
1234 /** indicates the usage of intr->const_index[n] */
1235 unsigned index_map[NIR_INTRINSIC_NUM_INDEX_FLAGS];
1236
1237 /** semantic flags for calls to this intrinsic */
1238 nir_intrinsic_semantic_flag flags;
1239 } nir_intrinsic_info;
1240
1241 extern const nir_intrinsic_info nir_intrinsic_infos[nir_num_intrinsics];
1242
1243 static inline unsigned
1244 nir_intrinsic_src_components(nir_intrinsic_instr *intr, unsigned srcn)
1245 {
1246 const nir_intrinsic_info *info = &nir_intrinsic_infos[intr->intrinsic];
1247 assert(srcn < info->num_srcs);
1248 if (info->src_components[srcn])
1249 return info->src_components[srcn];
1250 else
1251 return intr->num_components;
1252 }
1253
1254 static inline unsigned
1255 nir_intrinsic_dest_components(nir_intrinsic_instr *intr)
1256 {
1257 const nir_intrinsic_info *info = &nir_intrinsic_infos[intr->intrinsic];
1258 if (!info->has_dest)
1259 return 0;
1260 else if (info->dest_components)
1261 return info->dest_components;
1262 else
1263 return intr->num_components;
1264 }
1265
1266 #define INTRINSIC_IDX_ACCESSORS(name, flag, type) \
1267 static inline type \
1268 nir_intrinsic_##name(const nir_intrinsic_instr *instr) \
1269 { \
1270 const nir_intrinsic_info *info = &nir_intrinsic_infos[instr->intrinsic]; \
1271 assert(info->index_map[NIR_INTRINSIC_##flag] > 0); \
1272 return instr->const_index[info->index_map[NIR_INTRINSIC_##flag] - 1]; \
1273 } \
1274 static inline void \
1275 nir_intrinsic_set_##name(nir_intrinsic_instr *instr, type val) \
1276 { \
1277 const nir_intrinsic_info *info = &nir_intrinsic_infos[instr->intrinsic]; \
1278 assert(info->index_map[NIR_INTRINSIC_##flag] > 0); \
1279 instr->const_index[info->index_map[NIR_INTRINSIC_##flag] - 1] = val; \
1280 }
1281
1282 INTRINSIC_IDX_ACCESSORS(write_mask, WRMASK, unsigned)
1283 INTRINSIC_IDX_ACCESSORS(base, BASE, int)
1284 INTRINSIC_IDX_ACCESSORS(stream_id, STREAM_ID, unsigned)
1285 INTRINSIC_IDX_ACCESSORS(ucp_id, UCP_ID, unsigned)
1286 INTRINSIC_IDX_ACCESSORS(range, RANGE, unsigned)
1287 INTRINSIC_IDX_ACCESSORS(desc_set, DESC_SET, unsigned)
1288 INTRINSIC_IDX_ACCESSORS(binding, BINDING, unsigned)
1289 INTRINSIC_IDX_ACCESSORS(component, COMPONENT, unsigned)
1290 INTRINSIC_IDX_ACCESSORS(interp_mode, INTERP_MODE, unsigned)
1291 INTRINSIC_IDX_ACCESSORS(reduction_op, REDUCTION_OP, unsigned)
1292 INTRINSIC_IDX_ACCESSORS(cluster_size, CLUSTER_SIZE, unsigned)
1293 INTRINSIC_IDX_ACCESSORS(param_idx, PARAM_IDX, unsigned)
1294
1295 /**
1296 * \group texture information
1297 *
1298 * This gives semantic information about textures which is useful to the
1299 * frontend, the backend, and lowering passes, but not the optimizer.
1300 */
1301
1302 typedef enum {
1303 nir_tex_src_coord,
1304 nir_tex_src_projector,
1305 nir_tex_src_comparator, /* shadow comparator */
1306 nir_tex_src_offset,
1307 nir_tex_src_bias,
1308 nir_tex_src_lod,
1309 nir_tex_src_ms_index, /* MSAA sample index */
1310 nir_tex_src_ms_mcs, /* MSAA compression value */
1311 nir_tex_src_ddx,
1312 nir_tex_src_ddy,
1313 nir_tex_src_texture_deref, /* < deref pointing to the texture */
1314 nir_tex_src_sampler_deref, /* < deref pointing to the sampler */
1315 nir_tex_src_texture_offset, /* < dynamically uniform indirect offset */
1316 nir_tex_src_sampler_offset, /* < dynamically uniform indirect offset */
1317 nir_tex_src_plane, /* < selects plane for planar textures */
1318 nir_num_tex_src_types
1319 } nir_tex_src_type;
1320
1321 typedef struct {
1322 nir_src src;
1323 nir_tex_src_type src_type;
1324 } nir_tex_src;
1325
1326 typedef enum {
1327 nir_texop_tex, /**< Regular texture look-up */
1328 nir_texop_txb, /**< Texture look-up with LOD bias */
1329 nir_texop_txl, /**< Texture look-up with explicit LOD */
1330 nir_texop_txd, /**< Texture look-up with partial derivatives */
1331 nir_texop_txf, /**< Texel fetch with explicit LOD */
1332 nir_texop_txf_ms, /**< Multisample texture fetch */
1333 nir_texop_txf_ms_mcs, /**< Multisample compression value fetch */
1334 nir_texop_txs, /**< Texture size */
1335 nir_texop_lod, /**< Texture lod query */
1336 nir_texop_tg4, /**< Texture gather */
1337 nir_texop_query_levels, /**< Texture levels query */
1338 nir_texop_texture_samples, /**< Texture samples query */
1339 nir_texop_samples_identical, /**< Query whether all samples are definitely
1340 * identical.
1341 */
1342 } nir_texop;
1343
1344 typedef struct {
1345 nir_instr instr;
1346
1347 enum glsl_sampler_dim sampler_dim;
1348 nir_alu_type dest_type;
1349
1350 nir_texop op;
1351 nir_dest dest;
1352 nir_tex_src *src;
1353 unsigned num_srcs, coord_components;
1354 bool is_array, is_shadow;
1355
1356 /**
1357 * If is_shadow is true, whether this is the old-style shadow that outputs 4
1358 * components or the new-style shadow that outputs 1 component.
1359 */
1360 bool is_new_style_shadow;
1361
1362 /* gather component selector */
1363 unsigned component : 2;
1364
1365 /** The texture index
1366 *
1367 * If this texture instruction has a nir_tex_src_texture_offset source,
1368 * then the texture index is given by texture_index + texture_offset.
1369 */
1370 unsigned texture_index;
1371
1372 /** The size of the texture array or 0 if it's not an array */
1373 unsigned texture_array_size;
1374
1375 /** The sampler index
1376 *
1377 * The following operations do not require a sampler and, as such, this
1378 * field should be ignored:
1379 * - nir_texop_txf
1380 * - nir_texop_txf_ms
1381 * - nir_texop_txs
1382 * - nir_texop_lod
1383 * - nir_texop_query_levels
1384 * - nir_texop_texture_samples
1385 * - nir_texop_samples_identical
1386 *
1387 * If this texture instruction has a nir_tex_src_sampler_offset source,
1388 * then the sampler index is given by sampler_index + sampler_offset.
1389 */
1390 unsigned sampler_index;
1391 } nir_tex_instr;
1392
1393 static inline unsigned
1394 nir_tex_instr_dest_size(const nir_tex_instr *instr)
1395 {
1396 switch (instr->op) {
1397 case nir_texop_txs: {
1398 unsigned ret;
1399 switch (instr->sampler_dim) {
1400 case GLSL_SAMPLER_DIM_1D:
1401 case GLSL_SAMPLER_DIM_BUF:
1402 ret = 1;
1403 break;
1404 case GLSL_SAMPLER_DIM_2D:
1405 case GLSL_SAMPLER_DIM_CUBE:
1406 case GLSL_SAMPLER_DIM_MS:
1407 case GLSL_SAMPLER_DIM_RECT:
1408 case GLSL_SAMPLER_DIM_EXTERNAL:
1409 case GLSL_SAMPLER_DIM_SUBPASS:
1410 ret = 2;
1411 break;
1412 case GLSL_SAMPLER_DIM_3D:
1413 ret = 3;
1414 break;
1415 default:
1416 unreachable("not reached");
1417 }
1418 if (instr->is_array)
1419 ret++;
1420 return ret;
1421 }
1422
1423 case nir_texop_lod:
1424 return 2;
1425
1426 case nir_texop_texture_samples:
1427 case nir_texop_query_levels:
1428 case nir_texop_samples_identical:
1429 return 1;
1430
1431 default:
1432 if (instr->is_shadow && instr->is_new_style_shadow)
1433 return 1;
1434
1435 return 4;
1436 }
1437 }
1438
1439 /* Returns true if this texture operation queries something about the texture
1440 * rather than actually sampling it.
1441 */
1442 static inline bool
1443 nir_tex_instr_is_query(const nir_tex_instr *instr)
1444 {
1445 switch (instr->op) {
1446 case nir_texop_txs:
1447 case nir_texop_lod:
1448 case nir_texop_texture_samples:
1449 case nir_texop_query_levels:
1450 case nir_texop_txf_ms_mcs:
1451 return true;
1452 case nir_texop_tex:
1453 case nir_texop_txb:
1454 case nir_texop_txl:
1455 case nir_texop_txd:
1456 case nir_texop_txf:
1457 case nir_texop_txf_ms:
1458 case nir_texop_tg4:
1459 return false;
1460 default:
1461 unreachable("Invalid texture opcode");
1462 }
1463 }
1464
1465 static inline bool
1466 nir_alu_instr_is_comparison(const nir_alu_instr *instr)
1467 {
1468 switch (instr->op) {
1469 case nir_op_flt:
1470 case nir_op_fge:
1471 case nir_op_feq:
1472 case nir_op_fne:
1473 case nir_op_ilt:
1474 case nir_op_ult:
1475 case nir_op_ige:
1476 case nir_op_uge:
1477 case nir_op_ieq:
1478 case nir_op_ine:
1479 case nir_op_i2b:
1480 case nir_op_f2b:
1481 case nir_op_inot:
1482 case nir_op_fnot:
1483 return true;
1484 default:
1485 return false;
1486 }
1487 }
1488
1489 static inline nir_alu_type
1490 nir_tex_instr_src_type(const nir_tex_instr *instr, unsigned src)
1491 {
1492 switch (instr->src[src].src_type) {
1493 case nir_tex_src_coord:
1494 switch (instr->op) {
1495 case nir_texop_txf:
1496 case nir_texop_txf_ms:
1497 case nir_texop_txf_ms_mcs:
1498 case nir_texop_samples_identical:
1499 return nir_type_int;
1500
1501 default:
1502 return nir_type_float;
1503 }
1504
1505 case nir_tex_src_lod:
1506 switch (instr->op) {
1507 case nir_texop_txs:
1508 case nir_texop_txf:
1509 return nir_type_int;
1510
1511 default:
1512 return nir_type_float;
1513 }
1514
1515 case nir_tex_src_projector:
1516 case nir_tex_src_comparator:
1517 case nir_tex_src_bias:
1518 case nir_tex_src_ddx:
1519 case nir_tex_src_ddy:
1520 return nir_type_float;
1521
1522 case nir_tex_src_offset:
1523 case nir_tex_src_ms_index:
1524 case nir_tex_src_texture_offset:
1525 case nir_tex_src_sampler_offset:
1526 return nir_type_int;
1527
1528 default:
1529 unreachable("Invalid texture source type");
1530 }
1531 }
1532
1533 static inline unsigned
1534 nir_tex_instr_src_size(const nir_tex_instr *instr, unsigned src)
1535 {
1536 if (instr->src[src].src_type == nir_tex_src_coord)
1537 return instr->coord_components;
1538
1539 /* The MCS value is expected to be a vec4 returned by a txf_ms_mcs */
1540 if (instr->src[src].src_type == nir_tex_src_ms_mcs)
1541 return 4;
1542
1543 if (instr->src[src].src_type == nir_tex_src_ddx ||
1544 instr->src[src].src_type == nir_tex_src_ddy) {
1545 if (instr->is_array)
1546 return instr->coord_components - 1;
1547 else
1548 return instr->coord_components;
1549 }
1550
1551 /* Usual APIs don't allow cube + offset, but we allow it, with 2 coords for
1552 * the offset, since a cube maps to a single face.
1553 */
1554 if (instr->src[src].src_type == nir_tex_src_offset) {
1555 if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE)
1556 return 2;
1557 else if (instr->is_array)
1558 return instr->coord_components - 1;
1559 else
1560 return instr->coord_components;
1561 }
1562
1563 return 1;
1564 }
1565
1566 static inline int
1567 nir_tex_instr_src_index(const nir_tex_instr *instr, nir_tex_src_type type)
1568 {
1569 for (unsigned i = 0; i < instr->num_srcs; i++)
1570 if (instr->src[i].src_type == type)
1571 return (int) i;
1572
1573 return -1;
1574 }
1575
1576 void nir_tex_instr_add_src(nir_tex_instr *tex,
1577 nir_tex_src_type src_type,
1578 nir_src src);
1579
1580 void nir_tex_instr_remove_src(nir_tex_instr *tex, unsigned src_idx);
1581
1582 typedef struct {
1583 nir_instr instr;
1584
1585 nir_const_value value;
1586
1587 nir_ssa_def def;
1588 } nir_load_const_instr;
1589
1590 typedef enum {
1591 nir_jump_return,
1592 nir_jump_break,
1593 nir_jump_continue,
1594 } nir_jump_type;
1595
1596 typedef struct {
1597 nir_instr instr;
1598 nir_jump_type type;
1599 } nir_jump_instr;
1600
1601 /* creates a new SSA variable in an undefined state */
1602
1603 typedef struct {
1604 nir_instr instr;
1605 nir_ssa_def def;
1606 } nir_ssa_undef_instr;
1607
1608 typedef struct {
1609 struct exec_node node;
1610
1611 /* The predecessor block corresponding to this source */
1612 struct nir_block *pred;
1613
1614 nir_src src;
1615 } nir_phi_src;
1616
1617 #define nir_foreach_phi_src(phi_src, phi) \
1618 foreach_list_typed(nir_phi_src, phi_src, node, &(phi)->srcs)
1619 #define nir_foreach_phi_src_safe(phi_src, phi) \
1620 foreach_list_typed_safe(nir_phi_src, phi_src, node, &(phi)->srcs)
1621
1622 typedef struct {
1623 nir_instr instr;
1624
1625 struct exec_list srcs; /** < list of nir_phi_src */
1626
1627 nir_dest dest;
1628 } nir_phi_instr;
1629
1630 typedef struct {
1631 struct exec_node node;
1632 nir_src src;
1633 nir_dest dest;
1634 } nir_parallel_copy_entry;
1635
1636 #define nir_foreach_parallel_copy_entry(entry, pcopy) \
1637 foreach_list_typed(nir_parallel_copy_entry, entry, node, &(pcopy)->entries)
1638
1639 typedef struct {
1640 nir_instr instr;
1641
1642 /* A list of nir_parallel_copy_entrys. The sources of all of the
1643 * entries are copied to the corresponding destinations "in parallel".
1644 * In other words, if we have two entries: a -> b and b -> a, the values
1645 * get swapped.
1646 */
1647 struct exec_list entries;
1648 } nir_parallel_copy_instr;
1649
1650 NIR_DEFINE_CAST(nir_instr_as_alu, nir_instr, nir_alu_instr, instr,
1651 type, nir_instr_type_alu)
1652 NIR_DEFINE_CAST(nir_instr_as_call, nir_instr, nir_call_instr, instr,
1653 type, nir_instr_type_call)
1654 NIR_DEFINE_CAST(nir_instr_as_jump, nir_instr, nir_jump_instr, instr,
1655 type, nir_instr_type_jump)
1656 NIR_DEFINE_CAST(nir_instr_as_tex, nir_instr, nir_tex_instr, instr,
1657 type, nir_instr_type_tex)
1658 NIR_DEFINE_CAST(nir_instr_as_intrinsic, nir_instr, nir_intrinsic_instr, instr,
1659 type, nir_instr_type_intrinsic)
1660 NIR_DEFINE_CAST(nir_instr_as_load_const, nir_instr, nir_load_const_instr, instr,
1661 type, nir_instr_type_load_const)
1662 NIR_DEFINE_CAST(nir_instr_as_ssa_undef, nir_instr, nir_ssa_undef_instr, instr,
1663 type, nir_instr_type_ssa_undef)
1664 NIR_DEFINE_CAST(nir_instr_as_phi, nir_instr, nir_phi_instr, instr,
1665 type, nir_instr_type_phi)
1666 NIR_DEFINE_CAST(nir_instr_as_parallel_copy, nir_instr,
1667 nir_parallel_copy_instr, instr,
1668 type, nir_instr_type_parallel_copy)
1669
1670 /*
1671 * Control flow
1672 *
1673 * Control flow consists of a tree of control flow nodes, which include
1674 * if-statements and loops. The leaves of the tree are basic blocks, lists of
1675 * instructions that always run start-to-finish. Each basic block also keeps
1676 * track of its successors (blocks which may run immediately after the current
1677 * block) and predecessors (blocks which could have run immediately before the
1678 * current block). Each function also has a start block and an end block which
1679 * all return statements point to (which is always empty). Together, all the
1680 * blocks with their predecessors and successors make up the control flow
1681 * graph (CFG) of the function. There are helpers that modify the tree of
1682 * control flow nodes while modifying the CFG appropriately; these should be
1683 * used instead of modifying the tree directly.
1684 */
1685
1686 typedef enum {
1687 nir_cf_node_block,
1688 nir_cf_node_if,
1689 nir_cf_node_loop,
1690 nir_cf_node_function
1691 } nir_cf_node_type;
1692
1693 typedef struct nir_cf_node {
1694 struct exec_node node;
1695 nir_cf_node_type type;
1696 struct nir_cf_node *parent;
1697 } nir_cf_node;
1698
1699 typedef struct nir_block {
1700 nir_cf_node cf_node;
1701
1702 struct exec_list instr_list; /** < list of nir_instr */
1703
1704 /** generic block index; generated by nir_index_blocks */
1705 unsigned index;
1706
1707 /*
1708 * Each block can only have up to 2 successors, so we put them in a simple
1709 * array - no need for anything more complicated.
1710 */
1711 struct nir_block *successors[2];
1712
1713 /* Set of nir_block predecessors in the CFG */
1714 struct set *predecessors;
1715
1716 /*
1717 * this node's immediate dominator in the dominance tree - set to NULL for
1718 * the start block.
1719 */
1720 struct nir_block *imm_dom;
1721
1722 /* This node's children in the dominance tree */
1723 unsigned num_dom_children;
1724 struct nir_block **dom_children;
1725
1726 /* Set of nir_blocks on the dominance frontier of this block */
1727 struct set *dom_frontier;
1728
1729 /*
1730 * These two indices have the property that dom_{pre,post}_index for each
1731 * child of this block in the dominance tree will always be between
1732 * dom_pre_index and dom_post_index for this block, which makes testing if
1733 * a given block is dominated by another block an O(1) operation.
1734 */
1735 unsigned dom_pre_index, dom_post_index;
1736
1737 /* live in and out for this block; used for liveness analysis */
1738 BITSET_WORD *live_in;
1739 BITSET_WORD *live_out;
1740 } nir_block;
1741
1742 static inline nir_instr *
1743 nir_block_first_instr(nir_block *block)
1744 {
1745 struct exec_node *head = exec_list_get_head(&block->instr_list);
1746 return exec_node_data(nir_instr, head, node);
1747 }
1748
1749 static inline nir_instr *
1750 nir_block_last_instr(nir_block *block)
1751 {
1752 struct exec_node *tail = exec_list_get_tail(&block->instr_list);
1753 return exec_node_data(nir_instr, tail, node);
1754 }
1755
1756 static inline bool
1757 nir_block_ends_in_jump(nir_block *block)
1758 {
1759 return !exec_list_is_empty(&block->instr_list) &&
1760 nir_block_last_instr(block)->type == nir_instr_type_jump;
1761 }
1762
1763 #define nir_foreach_instr(instr, block) \
1764 foreach_list_typed(nir_instr, instr, node, &(block)->instr_list)
1765 #define nir_foreach_instr_reverse(instr, block) \
1766 foreach_list_typed_reverse(nir_instr, instr, node, &(block)->instr_list)
1767 #define nir_foreach_instr_safe(instr, block) \
1768 foreach_list_typed_safe(nir_instr, instr, node, &(block)->instr_list)
1769 #define nir_foreach_instr_reverse_safe(instr, block) \
1770 foreach_list_typed_reverse_safe(nir_instr, instr, node, &(block)->instr_list)
1771
1772 typedef struct nir_if {
1773 nir_cf_node cf_node;
1774 nir_src condition;
1775
1776 struct exec_list then_list; /** < list of nir_cf_node */
1777 struct exec_list else_list; /** < list of nir_cf_node */
1778 } nir_if;
1779
1780 typedef struct {
1781 nir_if *nif;
1782
1783 nir_instr *conditional_instr;
1784
1785 nir_block *break_block;
1786 nir_block *continue_from_block;
1787
1788 bool continue_from_then;
1789
1790 struct list_head loop_terminator_link;
1791 } nir_loop_terminator;
1792
1793 typedef struct {
1794 /* Number of instructions in the loop */
1795 unsigned num_instructions;
1796
1797 /* How many times the loop is run (if known) */
1798 unsigned trip_count;
1799 bool is_trip_count_known;
1800
1801 /* Unroll the loop regardless of its size */
1802 bool force_unroll;
1803
1804 /* Does the loop contain complex loop terminators, continues or other
1805 * complex behaviours? If this is true we can't rely on
1806 * loop_terminator_list to be complete or accurate.
1807 */
1808 bool complex_loop;
1809
1810 nir_loop_terminator *limiting_terminator;
1811
1812 /* A list of loop_terminators terminating this loop. */
1813 struct list_head loop_terminator_list;
1814 } nir_loop_info;
1815
1816 typedef struct {
1817 nir_cf_node cf_node;
1818
1819 struct exec_list body; /** < list of nir_cf_node */
1820
1821 nir_loop_info *info;
1822 } nir_loop;
1823
1824 /**
1825 * Various bits of metadata that can may be created or required by
1826 * optimization and analysis passes
1827 */
1828 typedef enum {
1829 nir_metadata_none = 0x0,
1830 nir_metadata_block_index = 0x1,
1831 nir_metadata_dominance = 0x2,
1832 nir_metadata_live_ssa_defs = 0x4,
1833 nir_metadata_not_properly_reset = 0x8,
1834 nir_metadata_loop_analysis = 0x10,
1835 } nir_metadata;
1836
1837 typedef struct {
1838 nir_cf_node cf_node;
1839
1840 /** pointer to the function of which this is an implementation */
1841 struct nir_function *function;
1842
1843 struct exec_list body; /** < list of nir_cf_node */
1844
1845 nir_block *end_block;
1846
1847 /** list for all local variables in the function */
1848 struct exec_list locals;
1849
1850 /** list of local registers in the function */
1851 struct exec_list registers;
1852
1853 /** next available local register index */
1854 unsigned reg_alloc;
1855
1856 /** next available SSA value index */
1857 unsigned ssa_alloc;
1858
1859 /* total number of basic blocks, only valid when block_index_dirty = false */
1860 unsigned num_blocks;
1861
1862 nir_metadata valid_metadata;
1863 } nir_function_impl;
1864
1865 ATTRIBUTE_RETURNS_NONNULL static inline nir_block *
1866 nir_start_block(nir_function_impl *impl)
1867 {
1868 return (nir_block *) impl->body.head_sentinel.next;
1869 }
1870
1871 ATTRIBUTE_RETURNS_NONNULL static inline nir_block *
1872 nir_impl_last_block(nir_function_impl *impl)
1873 {
1874 return (nir_block *) impl->body.tail_sentinel.prev;
1875 }
1876
1877 static inline nir_cf_node *
1878 nir_cf_node_next(nir_cf_node *node)
1879 {
1880 struct exec_node *next = exec_node_get_next(&node->node);
1881 if (exec_node_is_tail_sentinel(next))
1882 return NULL;
1883 else
1884 return exec_node_data(nir_cf_node, next, node);
1885 }
1886
1887 static inline nir_cf_node *
1888 nir_cf_node_prev(nir_cf_node *node)
1889 {
1890 struct exec_node *prev = exec_node_get_prev(&node->node);
1891 if (exec_node_is_head_sentinel(prev))
1892 return NULL;
1893 else
1894 return exec_node_data(nir_cf_node, prev, node);
1895 }
1896
1897 static inline bool
1898 nir_cf_node_is_first(const nir_cf_node *node)
1899 {
1900 return exec_node_is_head_sentinel(node->node.prev);
1901 }
1902
1903 static inline bool
1904 nir_cf_node_is_last(const nir_cf_node *node)
1905 {
1906 return exec_node_is_tail_sentinel(node->node.next);
1907 }
1908
1909 NIR_DEFINE_CAST(nir_cf_node_as_block, nir_cf_node, nir_block, cf_node,
1910 type, nir_cf_node_block)
1911 NIR_DEFINE_CAST(nir_cf_node_as_if, nir_cf_node, nir_if, cf_node,
1912 type, nir_cf_node_if)
1913 NIR_DEFINE_CAST(nir_cf_node_as_loop, nir_cf_node, nir_loop, cf_node,
1914 type, nir_cf_node_loop)
1915 NIR_DEFINE_CAST(nir_cf_node_as_function, nir_cf_node,
1916 nir_function_impl, cf_node, type, nir_cf_node_function)
1917
1918 static inline nir_block *
1919 nir_if_first_then_block(nir_if *if_stmt)
1920 {
1921 struct exec_node *head = exec_list_get_head(&if_stmt->then_list);
1922 return nir_cf_node_as_block(exec_node_data(nir_cf_node, head, node));
1923 }
1924
1925 static inline nir_block *
1926 nir_if_last_then_block(nir_if *if_stmt)
1927 {
1928 struct exec_node *tail = exec_list_get_tail(&if_stmt->then_list);
1929 return nir_cf_node_as_block(exec_node_data(nir_cf_node, tail, node));
1930 }
1931
1932 static inline nir_block *
1933 nir_if_first_else_block(nir_if *if_stmt)
1934 {
1935 struct exec_node *head = exec_list_get_head(&if_stmt->else_list);
1936 return nir_cf_node_as_block(exec_node_data(nir_cf_node, head, node));
1937 }
1938
1939 static inline nir_block *
1940 nir_if_last_else_block(nir_if *if_stmt)
1941 {
1942 struct exec_node *tail = exec_list_get_tail(&if_stmt->else_list);
1943 return nir_cf_node_as_block(exec_node_data(nir_cf_node, tail, node));
1944 }
1945
1946 static inline nir_block *
1947 nir_loop_first_block(nir_loop *loop)
1948 {
1949 struct exec_node *head = exec_list_get_head(&loop->body);
1950 return nir_cf_node_as_block(exec_node_data(nir_cf_node, head, node));
1951 }
1952
1953 static inline nir_block *
1954 nir_loop_last_block(nir_loop *loop)
1955 {
1956 struct exec_node *tail = exec_list_get_tail(&loop->body);
1957 return nir_cf_node_as_block(exec_node_data(nir_cf_node, tail, node));
1958 }
1959
1960 typedef struct {
1961 uint8_t num_components;
1962 uint8_t bit_size;
1963 } nir_parameter;
1964
1965 typedef struct nir_function {
1966 struct exec_node node;
1967
1968 const char *name;
1969 struct nir_shader *shader;
1970
1971 unsigned num_params;
1972 nir_parameter *params;
1973
1974 /** The implementation of this function.
1975 *
1976 * If the function is only declared and not implemented, this is NULL.
1977 */
1978 nir_function_impl *impl;
1979 } nir_function;
1980
1981 typedef struct nir_shader_compiler_options {
1982 bool lower_fdiv;
1983 bool lower_ffma;
1984 bool fuse_ffma;
1985 bool lower_flrp32;
1986 /** Lowers flrp when it does not support doubles */
1987 bool lower_flrp64;
1988 bool lower_fpow;
1989 bool lower_fsat;
1990 bool lower_fsqrt;
1991 bool lower_fmod32;
1992 bool lower_fmod64;
1993 /** Lowers ibitfield_extract/ubitfield_extract to ibfe/ubfe. */
1994 bool lower_bitfield_extract;
1995 /** Lowers ibitfield_extract/ubitfield_extract to bfm, compares, shifts. */
1996 bool lower_bitfield_extract_to_shifts;
1997 /** Lowers bitfield_insert to bfi/bfm */
1998 bool lower_bitfield_insert;
1999 /** Lowers bitfield_insert to bfm, compares, and shifts. */
2000 bool lower_bitfield_insert_to_shifts;
2001 /** Lowers bitfield_reverse to shifts. */
2002 bool lower_bitfield_reverse;
2003 /** Lowers bit_count to shifts. */
2004 bool lower_bit_count;
2005 /** Lowers bfm to shifts and subtracts. */
2006 bool lower_bfm;
2007 /** Lowers ifind_msb to compare and ufind_msb */
2008 bool lower_ifind_msb;
2009 /** Lowers find_lsb to ufind_msb and logic ops */
2010 bool lower_find_lsb;
2011 bool lower_uadd_carry;
2012 bool lower_usub_borrow;
2013 /** Lowers imul_high/umul_high to 16-bit multiplies and carry operations. */
2014 bool lower_mul_high;
2015 /** lowers fneg and ineg to fsub and isub. */
2016 bool lower_negate;
2017 /** lowers fsub and isub to fadd+fneg and iadd+ineg. */
2018 bool lower_sub;
2019
2020 /* lower {slt,sge,seq,sne} to {flt,fge,feq,fne} + b2f: */
2021 bool lower_scmp;
2022
2023 /** enables rules to lower idiv by power-of-two: */
2024 bool lower_idiv;
2025
2026 /* lower b2f to iand */
2027 bool lower_b2f;
2028
2029 /* Does the native fdot instruction replicate its result for four
2030 * components? If so, then opt_algebraic_late will turn all fdotN
2031 * instructions into fdot_replicatedN instructions.
2032 */
2033 bool fdot_replicates;
2034
2035 /** lowers ffract to fsub+ffloor: */
2036 bool lower_ffract;
2037
2038 bool lower_ldexp;
2039
2040 bool lower_pack_half_2x16;
2041 bool lower_pack_unorm_2x16;
2042 bool lower_pack_snorm_2x16;
2043 bool lower_pack_unorm_4x8;
2044 bool lower_pack_snorm_4x8;
2045 bool lower_unpack_half_2x16;
2046 bool lower_unpack_unorm_2x16;
2047 bool lower_unpack_snorm_2x16;
2048 bool lower_unpack_unorm_4x8;
2049 bool lower_unpack_snorm_4x8;
2050
2051 bool lower_extract_byte;
2052 bool lower_extract_word;
2053
2054 bool lower_all_io_to_temps;
2055
2056 /**
2057 * Does the driver support real 32-bit integers? (Otherwise, integers
2058 * are simulated by floats.)
2059 */
2060 bool native_integers;
2061
2062 /* Indicates that the driver only has zero-based vertex id */
2063 bool vertex_id_zero_based;
2064
2065 /**
2066 * If enabled, gl_BaseVertex will be lowered as:
2067 * is_indexed_draw (~0/0) & firstvertex
2068 */
2069 bool lower_base_vertex;
2070
2071 /**
2072 * If enabled, gl_HelperInvocation will be lowered as:
2073 *
2074 * !((1 << sample_id) & sample_mask_in))
2075 *
2076 * This depends on some possibly hw implementation details, which may
2077 * not be true for all hw. In particular that the FS is only executed
2078 * for covered samples or for helper invocations. So, do not blindly
2079 * enable this option.
2080 *
2081 * Note: See also issue #22 in ARB_shader_image_load_store
2082 */
2083 bool lower_helper_invocation;
2084
2085 bool lower_cs_local_index_from_id;
2086
2087 bool lower_device_index_to_zero;
2088
2089 /* Set if nir_lower_wpos_ytransform() should also invert gl_PointCoord. */
2090 bool lower_wpos_pntc;
2091
2092 /**
2093 * Should nir_lower_io() create load_interpolated_input intrinsics?
2094 *
2095 * If not, it generates regular load_input intrinsics and interpolation
2096 * information must be inferred from the list of input nir_variables.
2097 */
2098 bool use_interpolated_input_intrinsics;
2099
2100 /**
2101 * Do vertex shader double inputs use two locations? The Vulkan spec
2102 * requires two locations to be used, OpenGL allows a single location.
2103 */
2104 bool vs_inputs_dual_locations;
2105
2106 unsigned max_unroll_iterations;
2107 } nir_shader_compiler_options;
2108
2109 typedef struct nir_shader {
2110 /** list of uniforms (nir_variable) */
2111 struct exec_list uniforms;
2112
2113 /** list of inputs (nir_variable) */
2114 struct exec_list inputs;
2115
2116 /** list of outputs (nir_variable) */
2117 struct exec_list outputs;
2118
2119 /** list of shared compute variables (nir_variable) */
2120 struct exec_list shared;
2121
2122 /** Set of driver-specific options for the shader.
2123 *
2124 * The memory for the options is expected to be kept in a single static
2125 * copy by the driver.
2126 */
2127 const struct nir_shader_compiler_options *options;
2128
2129 /** Various bits of compile-time information about a given shader */
2130 struct shader_info info;
2131
2132 /** list of global variables in the shader (nir_variable) */
2133 struct exec_list globals;
2134
2135 /** list of system value variables in the shader (nir_variable) */
2136 struct exec_list system_values;
2137
2138 struct exec_list functions; /** < list of nir_function */
2139
2140 /** list of global register in the shader */
2141 struct exec_list registers;
2142
2143 /** next available global register index */
2144 unsigned reg_alloc;
2145
2146 /**
2147 * the highest index a load_input_*, load_uniform_*, etc. intrinsic can
2148 * access plus one
2149 */
2150 unsigned num_inputs, num_uniforms, num_outputs, num_shared;
2151
2152 /** Constant data associated with this shader.
2153 *
2154 * Constant data is loaded through load_constant intrinsics. See also
2155 * nir_opt_large_constants.
2156 */
2157 void *constant_data;
2158 unsigned constant_data_size;
2159 } nir_shader;
2160
2161 static inline nir_function_impl *
2162 nir_shader_get_entrypoint(nir_shader *shader)
2163 {
2164 assert(exec_list_length(&shader->functions) == 1);
2165 struct exec_node *func_node = exec_list_get_head(&shader->functions);
2166 nir_function *func = exec_node_data(nir_function, func_node, node);
2167 assert(func->num_params == 0);
2168 assert(func->impl);
2169 return func->impl;
2170 }
2171
2172 #define nir_foreach_function(func, shader) \
2173 foreach_list_typed(nir_function, func, node, &(shader)->functions)
2174
2175 nir_shader *nir_shader_create(void *mem_ctx,
2176 gl_shader_stage stage,
2177 const nir_shader_compiler_options *options,
2178 shader_info *si);
2179
2180 /** creates a register, including assigning it an index and adding it to the list */
2181 nir_register *nir_global_reg_create(nir_shader *shader);
2182
2183 nir_register *nir_local_reg_create(nir_function_impl *impl);
2184
2185 void nir_reg_remove(nir_register *reg);
2186
2187 /** Adds a variable to the appropriate list in nir_shader */
2188 void nir_shader_add_variable(nir_shader *shader, nir_variable *var);
2189
2190 static inline void
2191 nir_function_impl_add_variable(nir_function_impl *impl, nir_variable *var)
2192 {
2193 assert(var->data.mode == nir_var_local);
2194 exec_list_push_tail(&impl->locals, &var->node);
2195 }
2196
2197 /** creates a variable, sets a few defaults, and adds it to the list */
2198 nir_variable *nir_variable_create(nir_shader *shader,
2199 nir_variable_mode mode,
2200 const struct glsl_type *type,
2201 const char *name);
2202 /** creates a local variable and adds it to the list */
2203 nir_variable *nir_local_variable_create(nir_function_impl *impl,
2204 const struct glsl_type *type,
2205 const char *name);
2206
2207 /** creates a function and adds it to the shader's list of functions */
2208 nir_function *nir_function_create(nir_shader *shader, const char *name);
2209
2210 nir_function_impl *nir_function_impl_create(nir_function *func);
2211 /** creates a function_impl that isn't tied to any particular function */
2212 nir_function_impl *nir_function_impl_create_bare(nir_shader *shader);
2213
2214 nir_block *nir_block_create(nir_shader *shader);
2215 nir_if *nir_if_create(nir_shader *shader);
2216 nir_loop *nir_loop_create(nir_shader *shader);
2217
2218 nir_function_impl *nir_cf_node_get_function(nir_cf_node *node);
2219
2220 /** requests that the given pieces of metadata be generated */
2221 void nir_metadata_require(nir_function_impl *impl, nir_metadata required, ...);
2222 /** dirties all but the preserved metadata */
2223 void nir_metadata_preserve(nir_function_impl *impl, nir_metadata preserved);
2224
2225 /** creates an instruction with default swizzle/writemask/etc. with NULL registers */
2226 nir_alu_instr *nir_alu_instr_create(nir_shader *shader, nir_op op);
2227
2228 nir_deref_instr *nir_deref_instr_create(nir_shader *shader,
2229 nir_deref_type deref_type);
2230
2231 nir_jump_instr *nir_jump_instr_create(nir_shader *shader, nir_jump_type type);
2232
2233 nir_load_const_instr *nir_load_const_instr_create(nir_shader *shader,
2234 unsigned num_components,
2235 unsigned bit_size);
2236
2237 nir_intrinsic_instr *nir_intrinsic_instr_create(nir_shader *shader,
2238 nir_intrinsic_op op);
2239
2240 nir_call_instr *nir_call_instr_create(nir_shader *shader,
2241 nir_function *callee);
2242
2243 nir_tex_instr *nir_tex_instr_create(nir_shader *shader, unsigned num_srcs);
2244
2245 nir_phi_instr *nir_phi_instr_create(nir_shader *shader);
2246
2247 nir_parallel_copy_instr *nir_parallel_copy_instr_create(nir_shader *shader);
2248
2249 nir_ssa_undef_instr *nir_ssa_undef_instr_create(nir_shader *shader,
2250 unsigned num_components,
2251 unsigned bit_size);
2252
2253 nir_const_value nir_alu_binop_identity(nir_op binop, unsigned bit_size);
2254
2255 /**
2256 * NIR Cursors and Instruction Insertion API
2257 * @{
2258 *
2259 * A tiny struct representing a point to insert/extract instructions or
2260 * control flow nodes. Helps reduce the combinatorial explosion of possible
2261 * points to insert/extract.
2262 *
2263 * \sa nir_control_flow.h
2264 */
2265 typedef enum {
2266 nir_cursor_before_block,
2267 nir_cursor_after_block,
2268 nir_cursor_before_instr,
2269 nir_cursor_after_instr,
2270 } nir_cursor_option;
2271
2272 typedef struct {
2273 nir_cursor_option option;
2274 union {
2275 nir_block *block;
2276 nir_instr *instr;
2277 };
2278 } nir_cursor;
2279
2280 static inline nir_block *
2281 nir_cursor_current_block(nir_cursor cursor)
2282 {
2283 if (cursor.option == nir_cursor_before_instr ||
2284 cursor.option == nir_cursor_after_instr) {
2285 return cursor.instr->block;
2286 } else {
2287 return cursor.block;
2288 }
2289 }
2290
2291 bool nir_cursors_equal(nir_cursor a, nir_cursor b);
2292
2293 static inline nir_cursor
2294 nir_before_block(nir_block *block)
2295 {
2296 nir_cursor cursor;
2297 cursor.option = nir_cursor_before_block;
2298 cursor.block = block;
2299 return cursor;
2300 }
2301
2302 static inline nir_cursor
2303 nir_after_block(nir_block *block)
2304 {
2305 nir_cursor cursor;
2306 cursor.option = nir_cursor_after_block;
2307 cursor.block = block;
2308 return cursor;
2309 }
2310
2311 static inline nir_cursor
2312 nir_before_instr(nir_instr *instr)
2313 {
2314 nir_cursor cursor;
2315 cursor.option = nir_cursor_before_instr;
2316 cursor.instr = instr;
2317 return cursor;
2318 }
2319
2320 static inline nir_cursor
2321 nir_after_instr(nir_instr *instr)
2322 {
2323 nir_cursor cursor;
2324 cursor.option = nir_cursor_after_instr;
2325 cursor.instr = instr;
2326 return cursor;
2327 }
2328
2329 static inline nir_cursor
2330 nir_after_block_before_jump(nir_block *block)
2331 {
2332 nir_instr *last_instr = nir_block_last_instr(block);
2333 if (last_instr && last_instr->type == nir_instr_type_jump) {
2334 return nir_before_instr(last_instr);
2335 } else {
2336 return nir_after_block(block);
2337 }
2338 }
2339
2340 static inline nir_cursor
2341 nir_before_cf_node(nir_cf_node *node)
2342 {
2343 if (node->type == nir_cf_node_block)
2344 return nir_before_block(nir_cf_node_as_block(node));
2345
2346 return nir_after_block(nir_cf_node_as_block(nir_cf_node_prev(node)));
2347 }
2348
2349 static inline nir_cursor
2350 nir_after_cf_node(nir_cf_node *node)
2351 {
2352 if (node->type == nir_cf_node_block)
2353 return nir_after_block(nir_cf_node_as_block(node));
2354
2355 return nir_before_block(nir_cf_node_as_block(nir_cf_node_next(node)));
2356 }
2357
2358 static inline nir_cursor
2359 nir_after_phis(nir_block *block)
2360 {
2361 nir_foreach_instr(instr, block) {
2362 if (instr->type != nir_instr_type_phi)
2363 return nir_before_instr(instr);
2364 }
2365 return nir_after_block(block);
2366 }
2367
2368 static inline nir_cursor
2369 nir_after_cf_node_and_phis(nir_cf_node *node)
2370 {
2371 if (node->type == nir_cf_node_block)
2372 return nir_after_block(nir_cf_node_as_block(node));
2373
2374 nir_block *block = nir_cf_node_as_block(nir_cf_node_next(node));
2375
2376 return nir_after_phis(block);
2377 }
2378
2379 static inline nir_cursor
2380 nir_before_cf_list(struct exec_list *cf_list)
2381 {
2382 nir_cf_node *first_node = exec_node_data(nir_cf_node,
2383 exec_list_get_head(cf_list), node);
2384 return nir_before_cf_node(first_node);
2385 }
2386
2387 static inline nir_cursor
2388 nir_after_cf_list(struct exec_list *cf_list)
2389 {
2390 nir_cf_node *last_node = exec_node_data(nir_cf_node,
2391 exec_list_get_tail(cf_list), node);
2392 return nir_after_cf_node(last_node);
2393 }
2394
2395 /**
2396 * Insert a NIR instruction at the given cursor.
2397 *
2398 * Note: This does not update the cursor.
2399 */
2400 void nir_instr_insert(nir_cursor cursor, nir_instr *instr);
2401
2402 static inline void
2403 nir_instr_insert_before(nir_instr *instr, nir_instr *before)
2404 {
2405 nir_instr_insert(nir_before_instr(instr), before);
2406 }
2407
2408 static inline void
2409 nir_instr_insert_after(nir_instr *instr, nir_instr *after)
2410 {
2411 nir_instr_insert(nir_after_instr(instr), after);
2412 }
2413
2414 static inline void
2415 nir_instr_insert_before_block(nir_block *block, nir_instr *before)
2416 {
2417 nir_instr_insert(nir_before_block(block), before);
2418 }
2419
2420 static inline void
2421 nir_instr_insert_after_block(nir_block *block, nir_instr *after)
2422 {
2423 nir_instr_insert(nir_after_block(block), after);
2424 }
2425
2426 static inline void
2427 nir_instr_insert_before_cf(nir_cf_node *node, nir_instr *before)
2428 {
2429 nir_instr_insert(nir_before_cf_node(node), before);
2430 }
2431
2432 static inline void
2433 nir_instr_insert_after_cf(nir_cf_node *node, nir_instr *after)
2434 {
2435 nir_instr_insert(nir_after_cf_node(node), after);
2436 }
2437
2438 static inline void
2439 nir_instr_insert_before_cf_list(struct exec_list *list, nir_instr *before)
2440 {
2441 nir_instr_insert(nir_before_cf_list(list), before);
2442 }
2443
2444 static inline void
2445 nir_instr_insert_after_cf_list(struct exec_list *list, nir_instr *after)
2446 {
2447 nir_instr_insert(nir_after_cf_list(list), after);
2448 }
2449
2450 void nir_instr_remove_v(nir_instr *instr);
2451
2452 static inline nir_cursor
2453 nir_instr_remove(nir_instr *instr)
2454 {
2455 nir_cursor cursor;
2456 nir_instr *prev = nir_instr_prev(instr);
2457 if (prev) {
2458 cursor = nir_after_instr(prev);
2459 } else {
2460 cursor = nir_before_block(instr->block);
2461 }
2462 nir_instr_remove_v(instr);
2463 return cursor;
2464 }
2465
2466 /** @} */
2467
2468 typedef bool (*nir_foreach_ssa_def_cb)(nir_ssa_def *def, void *state);
2469 typedef bool (*nir_foreach_dest_cb)(nir_dest *dest, void *state);
2470 typedef bool (*nir_foreach_src_cb)(nir_src *src, void *state);
2471 bool nir_foreach_ssa_def(nir_instr *instr, nir_foreach_ssa_def_cb cb,
2472 void *state);
2473 bool nir_foreach_dest(nir_instr *instr, nir_foreach_dest_cb cb, void *state);
2474 bool nir_foreach_src(nir_instr *instr, nir_foreach_src_cb cb, void *state);
2475
2476 nir_const_value *nir_src_as_const_value(nir_src src);
2477 bool nir_src_is_dynamically_uniform(nir_src src);
2478 bool nir_srcs_equal(nir_src src1, nir_src src2);
2479 void nir_instr_rewrite_src(nir_instr *instr, nir_src *src, nir_src new_src);
2480 void nir_instr_move_src(nir_instr *dest_instr, nir_src *dest, nir_src *src);
2481 void nir_if_rewrite_condition(nir_if *if_stmt, nir_src new_src);
2482 void nir_instr_rewrite_dest(nir_instr *instr, nir_dest *dest,
2483 nir_dest new_dest);
2484
2485 void nir_ssa_dest_init(nir_instr *instr, nir_dest *dest,
2486 unsigned num_components, unsigned bit_size,
2487 const char *name);
2488 void nir_ssa_def_init(nir_instr *instr, nir_ssa_def *def,
2489 unsigned num_components, unsigned bit_size,
2490 const char *name);
2491 static inline void
2492 nir_ssa_dest_init_for_type(nir_instr *instr, nir_dest *dest,
2493 const struct glsl_type *type,
2494 const char *name)
2495 {
2496 assert(glsl_type_is_vector_or_scalar(type));
2497 nir_ssa_dest_init(instr, dest, glsl_get_components(type),
2498 glsl_get_bit_size(type), name);
2499 }
2500 void nir_ssa_def_rewrite_uses(nir_ssa_def *def, nir_src new_src);
2501 void nir_ssa_def_rewrite_uses_after(nir_ssa_def *def, nir_src new_src,
2502 nir_instr *after_me);
2503
2504 nir_component_mask_t nir_ssa_def_components_read(const nir_ssa_def *def);
2505
2506 /*
2507 * finds the next basic block in source-code order, returns NULL if there is
2508 * none
2509 */
2510
2511 nir_block *nir_block_cf_tree_next(nir_block *block);
2512
2513 /* Performs the opposite of nir_block_cf_tree_next() */
2514
2515 nir_block *nir_block_cf_tree_prev(nir_block *block);
2516
2517 /* Gets the first block in a CF node in source-code order */
2518
2519 nir_block *nir_cf_node_cf_tree_first(nir_cf_node *node);
2520
2521 /* Gets the last block in a CF node in source-code order */
2522
2523 nir_block *nir_cf_node_cf_tree_last(nir_cf_node *node);
2524
2525 /* Gets the next block after a CF node in source-code order */
2526
2527 nir_block *nir_cf_node_cf_tree_next(nir_cf_node *node);
2528
2529 /* Macros for loops that visit blocks in source-code order */
2530
2531 #define nir_foreach_block(block, impl) \
2532 for (nir_block *block = nir_start_block(impl); block != NULL; \
2533 block = nir_block_cf_tree_next(block))
2534
2535 #define nir_foreach_block_safe(block, impl) \
2536 for (nir_block *block = nir_start_block(impl), \
2537 *next = nir_block_cf_tree_next(block); \
2538 block != NULL; \
2539 block = next, next = nir_block_cf_tree_next(block))
2540
2541 #define nir_foreach_block_reverse(block, impl) \
2542 for (nir_block *block = nir_impl_last_block(impl); block != NULL; \
2543 block = nir_block_cf_tree_prev(block))
2544
2545 #define nir_foreach_block_reverse_safe(block, impl) \
2546 for (nir_block *block = nir_impl_last_block(impl), \
2547 *prev = nir_block_cf_tree_prev(block); \
2548 block != NULL; \
2549 block = prev, prev = nir_block_cf_tree_prev(block))
2550
2551 #define nir_foreach_block_in_cf_node(block, node) \
2552 for (nir_block *block = nir_cf_node_cf_tree_first(node); \
2553 block != nir_cf_node_cf_tree_next(node); \
2554 block = nir_block_cf_tree_next(block))
2555
2556 /* If the following CF node is an if, this function returns that if.
2557 * Otherwise, it returns NULL.
2558 */
2559 nir_if *nir_block_get_following_if(nir_block *block);
2560
2561 nir_loop *nir_block_get_following_loop(nir_block *block);
2562
2563 void nir_index_local_regs(nir_function_impl *impl);
2564 void nir_index_global_regs(nir_shader *shader);
2565 void nir_index_ssa_defs(nir_function_impl *impl);
2566 unsigned nir_index_instrs(nir_function_impl *impl);
2567
2568 void nir_index_blocks(nir_function_impl *impl);
2569
2570 void nir_print_shader(nir_shader *shader, FILE *fp);
2571 void nir_print_shader_annotated(nir_shader *shader, FILE *fp, struct hash_table *errors);
2572 void nir_print_instr(const nir_instr *instr, FILE *fp);
2573
2574 nir_shader *nir_shader_clone(void *mem_ctx, const nir_shader *s);
2575 nir_function_impl *nir_function_impl_clone(const nir_function_impl *fi);
2576 nir_constant *nir_constant_clone(const nir_constant *c, nir_variable *var);
2577 nir_variable *nir_variable_clone(const nir_variable *c, nir_shader *shader);
2578
2579 nir_shader *nir_shader_serialize_deserialize(void *mem_ctx, nir_shader *s);
2580
2581 #ifndef NDEBUG
2582 void nir_validate_shader(nir_shader *shader);
2583 void nir_metadata_set_validation_flag(nir_shader *shader);
2584 void nir_metadata_check_validation_flag(nir_shader *shader);
2585
2586 static inline bool
2587 should_clone_nir(void)
2588 {
2589 static int should_clone = -1;
2590 if (should_clone < 0)
2591 should_clone = env_var_as_boolean("NIR_TEST_CLONE", false);
2592
2593 return should_clone;
2594 }
2595
2596 static inline bool
2597 should_serialize_deserialize_nir(void)
2598 {
2599 static int test_serialize = -1;
2600 if (test_serialize < 0)
2601 test_serialize = env_var_as_boolean("NIR_TEST_SERIALIZE", false);
2602
2603 return test_serialize;
2604 }
2605
2606 static inline bool
2607 should_print_nir(void)
2608 {
2609 static int should_print = -1;
2610 if (should_print < 0)
2611 should_print = env_var_as_boolean("NIR_PRINT", false);
2612
2613 return should_print;
2614 }
2615 #else
2616 static inline void nir_validate_shader(nir_shader *shader) { (void) shader; }
2617 static inline void nir_metadata_set_validation_flag(nir_shader *shader) { (void) shader; }
2618 static inline void nir_metadata_check_validation_flag(nir_shader *shader) { (void) shader; }
2619 static inline bool should_clone_nir(void) { return false; }
2620 static inline bool should_serialize_deserialize_nir(void) { return false; }
2621 static inline bool should_print_nir(void) { return false; }
2622 #endif /* NDEBUG */
2623
2624 #define _PASS(nir, do_pass) do { \
2625 do_pass \
2626 nir_validate_shader(nir); \
2627 if (should_clone_nir()) { \
2628 nir_shader *clone = nir_shader_clone(ralloc_parent(nir), nir); \
2629 ralloc_free(nir); \
2630 nir = clone; \
2631 } \
2632 if (should_serialize_deserialize_nir()) { \
2633 void *mem_ctx = ralloc_parent(nir); \
2634 nir = nir_shader_serialize_deserialize(mem_ctx, nir); \
2635 } \
2636 } while (0)
2637
2638 #define NIR_PASS(progress, nir, pass, ...) _PASS(nir, \
2639 nir_metadata_set_validation_flag(nir); \
2640 if (should_print_nir()) \
2641 printf("%s\n", #pass); \
2642 if (pass(nir, ##__VA_ARGS__)) { \
2643 progress = true; \
2644 if (should_print_nir()) \
2645 nir_print_shader(nir, stdout); \
2646 nir_metadata_check_validation_flag(nir); \
2647 } \
2648 )
2649
2650 #define NIR_PASS_V(nir, pass, ...) _PASS(nir, \
2651 if (should_print_nir()) \
2652 printf("%s\n", #pass); \
2653 pass(nir, ##__VA_ARGS__); \
2654 if (should_print_nir()) \
2655 nir_print_shader(nir, stdout); \
2656 )
2657
2658 void nir_calc_dominance_impl(nir_function_impl *impl);
2659 void nir_calc_dominance(nir_shader *shader);
2660
2661 nir_block *nir_dominance_lca(nir_block *b1, nir_block *b2);
2662 bool nir_block_dominates(nir_block *parent, nir_block *child);
2663
2664 void nir_dump_dom_tree_impl(nir_function_impl *impl, FILE *fp);
2665 void nir_dump_dom_tree(nir_shader *shader, FILE *fp);
2666
2667 void nir_dump_dom_frontier_impl(nir_function_impl *impl, FILE *fp);
2668 void nir_dump_dom_frontier(nir_shader *shader, FILE *fp);
2669
2670 void nir_dump_cfg_impl(nir_function_impl *impl, FILE *fp);
2671 void nir_dump_cfg(nir_shader *shader, FILE *fp);
2672
2673 int nir_gs_count_vertices(const nir_shader *shader);
2674
2675 bool nir_shrink_vec_array_vars(nir_shader *shader, nir_variable_mode modes);
2676 bool nir_split_array_vars(nir_shader *shader, nir_variable_mode modes);
2677 bool nir_split_var_copies(nir_shader *shader);
2678 bool nir_split_per_member_structs(nir_shader *shader);
2679 bool nir_split_struct_vars(nir_shader *shader, nir_variable_mode modes);
2680
2681 bool nir_lower_returns_impl(nir_function_impl *impl);
2682 bool nir_lower_returns(nir_shader *shader);
2683
2684 bool nir_inline_functions(nir_shader *shader);
2685
2686 bool nir_propagate_invariant(nir_shader *shader);
2687
2688 void nir_lower_var_copy_instr(nir_intrinsic_instr *copy, nir_shader *shader);
2689 void nir_lower_deref_copy_instr(struct nir_builder *b,
2690 nir_intrinsic_instr *copy);
2691 bool nir_lower_var_copies(nir_shader *shader);
2692
2693 void nir_fixup_deref_modes(nir_shader *shader);
2694
2695 bool nir_lower_global_vars_to_local(nir_shader *shader);
2696
2697 bool nir_lower_indirect_derefs(nir_shader *shader, nir_variable_mode modes);
2698
2699 bool nir_lower_locals_to_regs(nir_shader *shader);
2700
2701 void nir_lower_io_to_temporaries(nir_shader *shader,
2702 nir_function_impl *entrypoint,
2703 bool outputs, bool inputs);
2704
2705 void nir_shader_gather_info(nir_shader *shader, nir_function_impl *entrypoint);
2706
2707 void nir_assign_var_locations(struct exec_list *var_list, unsigned *size,
2708 int (*type_size)(const struct glsl_type *));
2709
2710 /* Some helpers to do very simple linking */
2711 bool nir_remove_unused_varyings(nir_shader *producer, nir_shader *consumer);
2712 void nir_compact_varyings(nir_shader *producer, nir_shader *consumer,
2713 bool default_to_smooth_interp);
2714
2715 typedef enum {
2716 /* If set, this forces all non-flat fragment shader inputs to be
2717 * interpolated as if with the "sample" qualifier. This requires
2718 * nir_shader_compiler_options::use_interpolated_input_intrinsics.
2719 */
2720 nir_lower_io_force_sample_interpolation = (1 << 1),
2721 } nir_lower_io_options;
2722 bool nir_lower_io(nir_shader *shader,
2723 nir_variable_mode modes,
2724 int (*type_size)(const struct glsl_type *),
2725 nir_lower_io_options);
2726 nir_src *nir_get_io_offset_src(nir_intrinsic_instr *instr);
2727 nir_src *nir_get_io_vertex_index_src(nir_intrinsic_instr *instr);
2728
2729 bool nir_is_per_vertex_io(const nir_variable *var, gl_shader_stage stage);
2730
2731 bool nir_lower_regs_to_ssa_impl(nir_function_impl *impl);
2732 bool nir_lower_regs_to_ssa(nir_shader *shader);
2733 bool nir_lower_vars_to_ssa(nir_shader *shader);
2734
2735 bool nir_remove_dead_derefs(nir_shader *shader);
2736 bool nir_remove_dead_derefs_impl(nir_function_impl *impl);
2737 bool nir_remove_dead_variables(nir_shader *shader, nir_variable_mode modes);
2738 bool nir_lower_constant_initializers(nir_shader *shader,
2739 nir_variable_mode modes);
2740
2741 bool nir_move_load_const(nir_shader *shader);
2742 bool nir_move_vec_src_uses_to_dest(nir_shader *shader);
2743 bool nir_lower_vec_to_movs(nir_shader *shader);
2744 void nir_lower_alpha_test(nir_shader *shader, enum compare_func func,
2745 bool alpha_to_one);
2746 bool nir_lower_alu(nir_shader *shader);
2747 bool nir_lower_alu_to_scalar(nir_shader *shader);
2748 bool nir_lower_load_const_to_scalar(nir_shader *shader);
2749 bool nir_lower_read_invocation_to_scalar(nir_shader *shader);
2750 bool nir_lower_phis_to_scalar(nir_shader *shader);
2751 void nir_lower_io_arrays_to_elements(nir_shader *producer, nir_shader *consumer);
2752 void nir_lower_io_arrays_to_elements_no_indirects(nir_shader *shader,
2753 bool outputs_only);
2754 void nir_lower_io_to_scalar(nir_shader *shader, nir_variable_mode mask);
2755 void nir_lower_io_to_scalar_early(nir_shader *shader, nir_variable_mode mask);
2756
2757 typedef struct nir_lower_subgroups_options {
2758 uint8_t subgroup_size;
2759 uint8_t ballot_bit_size;
2760 bool lower_to_scalar:1;
2761 bool lower_vote_trivial:1;
2762 bool lower_vote_eq_to_ballot:1;
2763 bool lower_subgroup_masks:1;
2764 bool lower_shuffle:1;
2765 bool lower_shuffle_to_32bit:1;
2766 bool lower_quad:1;
2767 } nir_lower_subgroups_options;
2768
2769 bool nir_lower_subgroups(nir_shader *shader,
2770 const nir_lower_subgroups_options *options);
2771
2772 bool nir_lower_system_values(nir_shader *shader);
2773
2774 typedef struct nir_lower_tex_options {
2775 /**
2776 * bitmask of (1 << GLSL_SAMPLER_DIM_x) to control for which
2777 * sampler types a texture projector is lowered.
2778 */
2779 unsigned lower_txp;
2780
2781 /**
2782 * If true, lower away nir_tex_src_offset for all texelfetch instructions.
2783 */
2784 bool lower_txf_offset;
2785
2786 /**
2787 * If true, lower away nir_tex_src_offset for all rect textures.
2788 */
2789 bool lower_rect_offset;
2790
2791 /**
2792 * If true, lower rect textures to 2D, using txs to fetch the
2793 * texture dimensions and dividing the texture coords by the
2794 * texture dims to normalize.
2795 */
2796 bool lower_rect;
2797
2798 /**
2799 * If true, convert yuv to rgb.
2800 */
2801 unsigned lower_y_uv_external;
2802 unsigned lower_y_u_v_external;
2803 unsigned lower_yx_xuxv_external;
2804 unsigned lower_xy_uxvx_external;
2805
2806 /**
2807 * To emulate certain texture wrap modes, this can be used
2808 * to saturate the specified tex coord to [0.0, 1.0]. The
2809 * bits are according to sampler #, ie. if, for example:
2810 *
2811 * (conf->saturate_s & (1 << n))
2812 *
2813 * is true, then the s coord for sampler n is saturated.
2814 *
2815 * Note that clamping must happen *after* projector lowering
2816 * so any projected texture sample instruction with a clamped
2817 * coordinate gets automatically lowered, regardless of the
2818 * 'lower_txp' setting.
2819 */
2820 unsigned saturate_s;
2821 unsigned saturate_t;
2822 unsigned saturate_r;
2823
2824 /* Bitmask of textures that need swizzling.
2825 *
2826 * If (swizzle_result & (1 << texture_index)), then the swizzle in
2827 * swizzles[texture_index] is applied to the result of the texturing
2828 * operation.
2829 */
2830 unsigned swizzle_result;
2831
2832 /* A swizzle for each texture. Values 0-3 represent x, y, z, or w swizzles
2833 * while 4 and 5 represent 0 and 1 respectively.
2834 */
2835 uint8_t swizzles[32][4];
2836
2837 /**
2838 * Bitmap of textures that need srgb to linear conversion. If
2839 * (lower_srgb & (1 << texture_index)) then the rgb (xyz) components
2840 * of the texture are lowered to linear.
2841 */
2842 unsigned lower_srgb;
2843
2844 /**
2845 * If true, lower nir_texop_txd on cube maps with nir_texop_txl.
2846 */
2847 bool lower_txd_cube_map;
2848
2849 /**
2850 * If true, lower nir_texop_txd on shadow samplers (except cube maps)
2851 * with nir_texop_txl. Notice that cube map shadow samplers are lowered
2852 * with lower_txd_cube_map.
2853 */
2854 bool lower_txd_shadow;
2855
2856 /**
2857 * If true, lower nir_texop_txd on all samplers to a nir_texop_txl.
2858 * Implies lower_txd_cube_map and lower_txd_shadow.
2859 */
2860 bool lower_txd;
2861 } nir_lower_tex_options;
2862
2863 bool nir_lower_tex(nir_shader *shader,
2864 const nir_lower_tex_options *options);
2865
2866 bool nir_lower_idiv(nir_shader *shader);
2867
2868 bool nir_lower_clip_vs(nir_shader *shader, unsigned ucp_enables);
2869 bool nir_lower_clip_fs(nir_shader *shader, unsigned ucp_enables);
2870 bool nir_lower_clip_cull_distance_arrays(nir_shader *nir);
2871
2872 void nir_lower_two_sided_color(nir_shader *shader);
2873
2874 bool nir_lower_clamp_color_outputs(nir_shader *shader);
2875
2876 void nir_lower_passthrough_edgeflags(nir_shader *shader);
2877 bool nir_lower_patch_vertices(nir_shader *nir, unsigned static_count,
2878 const gl_state_index16 *uniform_state_tokens);
2879
2880 typedef struct nir_lower_wpos_ytransform_options {
2881 gl_state_index16 state_tokens[STATE_LENGTH];
2882 bool fs_coord_origin_upper_left :1;
2883 bool fs_coord_origin_lower_left :1;
2884 bool fs_coord_pixel_center_integer :1;
2885 bool fs_coord_pixel_center_half_integer :1;
2886 } nir_lower_wpos_ytransform_options;
2887
2888 bool nir_lower_wpos_ytransform(nir_shader *shader,
2889 const nir_lower_wpos_ytransform_options *options);
2890 bool nir_lower_wpos_center(nir_shader *shader, const bool for_sample_shading);
2891
2892 typedef struct nir_lower_drawpixels_options {
2893 gl_state_index16 texcoord_state_tokens[STATE_LENGTH];
2894 gl_state_index16 scale_state_tokens[STATE_LENGTH];
2895 gl_state_index16 bias_state_tokens[STATE_LENGTH];
2896 unsigned drawpix_sampler;
2897 unsigned pixelmap_sampler;
2898 bool pixel_maps :1;
2899 bool scale_and_bias :1;
2900 } nir_lower_drawpixels_options;
2901
2902 void nir_lower_drawpixels(nir_shader *shader,
2903 const nir_lower_drawpixels_options *options);
2904
2905 typedef struct nir_lower_bitmap_options {
2906 unsigned sampler;
2907 bool swizzle_xxxx;
2908 } nir_lower_bitmap_options;
2909
2910 void nir_lower_bitmap(nir_shader *shader, const nir_lower_bitmap_options *options);
2911
2912 bool nir_lower_atomics_to_ssbo(nir_shader *shader, unsigned ssbo_offset);
2913 bool nir_lower_to_source_mods(nir_shader *shader);
2914
2915 bool nir_lower_gs_intrinsics(nir_shader *shader);
2916
2917 typedef unsigned (*nir_lower_bit_size_callback)(const nir_alu_instr *, void *);
2918
2919 bool nir_lower_bit_size(nir_shader *shader,
2920 nir_lower_bit_size_callback callback,
2921 void *callback_data);
2922
2923 typedef enum {
2924 nir_lower_imul64 = (1 << 0),
2925 nir_lower_isign64 = (1 << 1),
2926 /** Lower all int64 modulus and division opcodes */
2927 nir_lower_divmod64 = (1 << 2),
2928 } nir_lower_int64_options;
2929
2930 bool nir_lower_int64(nir_shader *shader, nir_lower_int64_options options);
2931
2932 typedef enum {
2933 nir_lower_drcp = (1 << 0),
2934 nir_lower_dsqrt = (1 << 1),
2935 nir_lower_drsq = (1 << 2),
2936 nir_lower_dtrunc = (1 << 3),
2937 nir_lower_dfloor = (1 << 4),
2938 nir_lower_dceil = (1 << 5),
2939 nir_lower_dfract = (1 << 6),
2940 nir_lower_dround_even = (1 << 7),
2941 nir_lower_dmod = (1 << 8)
2942 } nir_lower_doubles_options;
2943
2944 bool nir_lower_doubles(nir_shader *shader, nir_lower_doubles_options options);
2945 bool nir_lower_pack(nir_shader *shader);
2946
2947 bool nir_normalize_cubemap_coords(nir_shader *shader);
2948
2949 void nir_live_ssa_defs_impl(nir_function_impl *impl);
2950
2951 void nir_loop_analyze_impl(nir_function_impl *impl,
2952 nir_variable_mode indirect_mask);
2953
2954 bool nir_ssa_defs_interfere(nir_ssa_def *a, nir_ssa_def *b);
2955
2956 bool nir_repair_ssa_impl(nir_function_impl *impl);
2957 bool nir_repair_ssa(nir_shader *shader);
2958
2959 void nir_convert_loop_to_lcssa(nir_loop *loop);
2960
2961 /* If phi_webs_only is true, only convert SSA values involved in phi nodes to
2962 * registers. If false, convert all values (even those not involved in a phi
2963 * node) to registers.
2964 */
2965 bool nir_convert_from_ssa(nir_shader *shader, bool phi_webs_only);
2966
2967 bool nir_lower_phis_to_regs_block(nir_block *block);
2968 bool nir_lower_ssa_defs_to_regs_block(nir_block *block);
2969
2970 bool nir_opt_algebraic(nir_shader *shader);
2971 bool nir_opt_algebraic_before_ffma(nir_shader *shader);
2972 bool nir_opt_algebraic_late(nir_shader *shader);
2973 bool nir_opt_constant_folding(nir_shader *shader);
2974
2975 bool nir_opt_global_to_local(nir_shader *shader);
2976
2977 bool nir_copy_prop(nir_shader *shader);
2978
2979 bool nir_opt_copy_prop_vars(nir_shader *shader);
2980
2981 bool nir_opt_cse(nir_shader *shader);
2982
2983 bool nir_opt_dce(nir_shader *shader);
2984
2985 bool nir_opt_dead_cf(nir_shader *shader);
2986
2987 bool nir_opt_find_array_copies(nir_shader *shader);
2988
2989 bool nir_opt_gcm(nir_shader *shader, bool value_number);
2990
2991 bool nir_opt_if(nir_shader *shader);
2992
2993 bool nir_opt_intrinsics(nir_shader *shader);
2994
2995 bool nir_opt_large_constants(nir_shader *shader,
2996 glsl_type_size_align_func size_align,
2997 unsigned threshold);
2998
2999 bool nir_opt_loop_unroll(nir_shader *shader, nir_variable_mode indirect_mask);
3000
3001 bool nir_opt_move_comparisons(nir_shader *shader);
3002
3003 bool nir_opt_move_load_ubo(nir_shader *shader);
3004
3005 bool nir_opt_peephole_select(nir_shader *shader, unsigned limit);
3006
3007 bool nir_opt_remove_phis_impl(nir_function_impl *impl);
3008 bool nir_opt_remove_phis(nir_shader *shader);
3009
3010 bool nir_opt_shrink_load(nir_shader *shader);
3011
3012 bool nir_opt_trivial_continues(nir_shader *shader);
3013
3014 bool nir_opt_undef(nir_shader *shader);
3015
3016 bool nir_opt_conditional_discard(nir_shader *shader);
3017
3018 void nir_sweep(nir_shader *shader);
3019
3020 void nir_remap_attributes(nir_shader *shader,
3021 const nir_shader_compiler_options *options);
3022
3023 nir_intrinsic_op nir_intrinsic_from_system_value(gl_system_value val);
3024 gl_system_value nir_system_value_from_intrinsic(nir_intrinsic_op intrin);
3025
3026 #ifdef __cplusplus
3027 } /* extern "C" */
3028 #endif
3029
3030 #endif /* NIR_H */