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