nir: Add some documentation
[mesa.git] / src / glsl / nir / nir.h
1 /*
2 * Copyright © 2014 Connor Abbott
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Connor Abbott (cwabbott0@gmail.com)
25 *
26 */
27
28 #pragma once
29
30 #include "util/hash_table.h"
31 #include "main/set.h"
32 #include "../list.h"
33 #include "GL/gl.h" /* GLenum */
34 #include "util/ralloc.h"
35 #include "main/mtypes.h"
36 #include "main/bitset.h"
37 #include "nir_types.h"
38 #include <stdio.h>
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43
44 #define NIR_FALSE 0u
45 #define NIR_TRUE (~0u)
46
47 /** Defines a cast function
48 *
49 * This macro defines a cast function from in_type to out_type where
50 * out_type is some structure type that contains a field of type out_type.
51 *
52 * Note that you have to be a bit careful as the generated cast function
53 * destroys constness.
54 */
55 #define NIR_DEFINE_CAST(name, in_type, out_type, field) \
56 static inline out_type * \
57 name(const in_type *parent) \
58 { \
59 return exec_node_data(out_type, parent, field); \
60 }
61
62 struct nir_function_overload;
63 struct nir_function;
64 struct nir_shader;
65
66
67 /**
68 * Description of built-in state associated with a uniform
69 *
70 * \sa nir_variable::state_slots
71 */
72 typedef struct {
73 int tokens[5];
74 int swizzle;
75 } nir_state_slot;
76
77 typedef enum {
78 nir_var_shader_in,
79 nir_var_shader_out,
80 nir_var_global,
81 nir_var_local,
82 nir_var_uniform,
83 nir_var_system_value
84 } nir_variable_mode;
85
86 /**
87 * Data stored in an nir_constant
88 */
89 union nir_constant_data {
90 unsigned u[16];
91 int i[16];
92 float f[16];
93 bool b[16];
94 };
95
96 typedef struct nir_constant {
97 /**
98 * Value of the constant.
99 *
100 * The field used to back the values supplied by the constant is determined
101 * by the type associated with the \c nir_variable. Constants may be
102 * scalars, vectors, or matrices.
103 */
104 union nir_constant_data value;
105
106 /* Array elements / Structure Fields */
107 struct nir_constant **elements;
108 } nir_constant;
109
110 /**
111 * \brief Layout qualifiers for gl_FragDepth.
112 *
113 * The AMD/ARB_conservative_depth extensions allow gl_FragDepth to be redeclared
114 * with a layout qualifier.
115 */
116 typedef enum {
117 nir_depth_layout_none, /**< No depth layout is specified. */
118 nir_depth_layout_any,
119 nir_depth_layout_greater,
120 nir_depth_layout_less,
121 nir_depth_layout_unchanged
122 } nir_depth_layout;
123
124 /**
125 * Either a uniform, global variable, shader input, or shader output. Based on
126 * ir_variable - it should be easy to translate between the two.
127 */
128
129 typedef struct {
130 struct exec_node node;
131
132 /**
133 * Declared type of the variable
134 */
135 const struct glsl_type *type;
136
137 /**
138 * Declared name of the variable
139 */
140 char *name;
141
142 /**
143 * For variables which satisfy the is_interface_instance() predicate, this
144 * points to an array of integers such that if the ith member of the
145 * interface block is an array, max_ifc_array_access[i] is the maximum
146 * array element of that member that has been accessed. If the ith member
147 * of the interface block is not an array, max_ifc_array_access[i] is
148 * unused.
149 *
150 * For variables whose type is not an interface block, this pointer is
151 * NULL.
152 */
153 unsigned *max_ifc_array_access;
154
155 struct nir_variable_data {
156
157 /**
158 * Is the variable read-only?
159 *
160 * This is set for variables declared as \c const, shader inputs,
161 * and uniforms.
162 */
163 unsigned read_only:1;
164 unsigned centroid:1;
165 unsigned sample:1;
166 unsigned invariant:1;
167
168 /**
169 * Storage class of the variable.
170 *
171 * \sa nir_variable_mode
172 */
173 nir_variable_mode mode:4;
174
175 /**
176 * Interpolation mode for shader inputs / outputs
177 *
178 * \sa glsl_interp_qualifier
179 */
180 unsigned interpolation:2;
181
182 /**
183 * \name ARB_fragment_coord_conventions
184 * @{
185 */
186 unsigned origin_upper_left:1;
187 unsigned pixel_center_integer:1;
188 /*@}*/
189
190 /**
191 * Was the location explicitly set in the shader?
192 *
193 * If the location is explicitly set in the shader, it \b cannot be changed
194 * by the linker or by the API (e.g., calls to \c glBindAttribLocation have
195 * no effect).
196 */
197 unsigned explicit_location:1;
198 unsigned explicit_index:1;
199
200 /**
201 * Was an initial binding explicitly set in the shader?
202 *
203 * If so, constant_value contains an integer ir_constant representing the
204 * initial binding point.
205 */
206 unsigned explicit_binding:1;
207
208 /**
209 * Does this variable have an initializer?
210 *
211 * This is used by the linker to cross-validiate initializers of global
212 * variables.
213 */
214 unsigned has_initializer:1;
215
216 /**
217 * Is this variable a generic output or input that has not yet been matched
218 * up to a variable in another stage of the pipeline?
219 *
220 * This is used by the linker as scratch storage while assigning locations
221 * to generic inputs and outputs.
222 */
223 unsigned is_unmatched_generic_inout:1;
224
225 /**
226 * If non-zero, then this variable may be packed along with other variables
227 * into a single varying slot, so this offset should be applied when
228 * accessing components. For example, an offset of 1 means that the x
229 * component of this variable is actually stored in component y of the
230 * location specified by \c location.
231 */
232 unsigned location_frac:2;
233
234 /**
235 * Non-zero if this variable was created by lowering a named interface
236 * block which was not an array.
237 *
238 * Note that this variable and \c from_named_ifc_block_array will never
239 * both be non-zero.
240 */
241 unsigned from_named_ifc_block_nonarray:1;
242
243 /**
244 * Non-zero if this variable was created by lowering a named interface
245 * block which was an array.
246 *
247 * Note that this variable and \c from_named_ifc_block_nonarray will never
248 * both be non-zero.
249 */
250 unsigned from_named_ifc_block_array:1;
251
252 /**
253 * \brief Layout qualifier for gl_FragDepth.
254 *
255 * This is not equal to \c ir_depth_layout_none if and only if this
256 * variable is \c gl_FragDepth and a layout qualifier is specified.
257 */
258 nir_depth_layout depth_layout;
259
260 /**
261 * Storage location of the base of this variable
262 *
263 * The precise meaning of this field depends on the nature of the variable.
264 *
265 * - Vertex shader input: one of the values from \c gl_vert_attrib.
266 * - Vertex shader output: one of the values from \c gl_varying_slot.
267 * - Geometry shader input: one of the values from \c gl_varying_slot.
268 * - Geometry shader output: one of the values from \c gl_varying_slot.
269 * - Fragment shader input: one of the values from \c gl_varying_slot.
270 * - Fragment shader output: one of the values from \c gl_frag_result.
271 * - Uniforms: Per-stage uniform slot number for default uniform block.
272 * - Uniforms: Index within the uniform block definition for UBO members.
273 * - Other: This field is not currently used.
274 *
275 * If the variable is a uniform, shader input, or shader output, and the
276 * slot has not been assigned, the value will be -1.
277 */
278 int location;
279
280 /**
281 * The actual location of the variable in the IR. Only valid for inputs
282 * and outputs.
283 */
284 unsigned int driver_location;
285
286 /**
287 * output index for dual source blending.
288 */
289 int index;
290
291 /**
292 * Initial binding point for a sampler or UBO.
293 *
294 * For array types, this represents the binding point for the first element.
295 */
296 int binding;
297
298 /**
299 * Location an atomic counter is stored at.
300 */
301 struct {
302 unsigned buffer_index;
303 unsigned offset;
304 } atomic;
305
306 /**
307 * ARB_shader_image_load_store qualifiers.
308 */
309 struct {
310 bool read_only; /**< "readonly" qualifier. */
311 bool write_only; /**< "writeonly" qualifier. */
312 bool coherent;
313 bool _volatile;
314 bool restrict_flag;
315
316 /** Image internal format if specified explicitly, otherwise GL_NONE. */
317 GLenum format;
318 } image;
319
320 /**
321 * Highest element accessed with a constant expression array index
322 *
323 * Not used for non-array variables.
324 */
325 unsigned max_array_access;
326
327 } data;
328
329 /**
330 * Built-in state that backs this uniform
331 *
332 * Once set at variable creation, \c state_slots must remain invariant.
333 * This is because, ideally, this array would be shared by all clones of
334 * this variable in the IR tree. In other words, we'd really like for it
335 * to be a fly-weight.
336 *
337 * If the variable is not a uniform, \c num_state_slots will be zero and
338 * \c state_slots will be \c NULL.
339 */
340 /*@{*/
341 unsigned num_state_slots; /**< Number of state slots used */
342 nir_state_slot *state_slots; /**< State descriptors. */
343 /*@}*/
344
345 /**
346 * Value assigned in the initializer of a variable declared "const"
347 */
348 nir_constant *constant_value;
349
350 /**
351 * Constant expression assigned in the initializer of the variable
352 *
353 * \warning
354 * This field and \c ::constant_value are distinct. Even if the two fields
355 * refer to constants with the same value, they must point to separate
356 * objects.
357 */
358 nir_constant *constant_initializer;
359
360 /**
361 * For variables that are in an interface block or are an instance of an
362 * interface block, this is the \c GLSL_TYPE_INTERFACE type for that block.
363 *
364 * \sa ir_variable::location
365 */
366 const struct glsl_type *interface_type;
367 } nir_variable;
368
369 typedef struct {
370 struct exec_node node;
371
372 unsigned num_components; /** < number of vector components */
373 unsigned num_array_elems; /** < size of array (0 for no array) */
374
375 /** generic register index. */
376 unsigned index;
377
378 /** only for debug purposes, can be NULL */
379 const char *name;
380
381 /** whether this register is local (per-function) or global (per-shader) */
382 bool is_global;
383
384 /**
385 * If this flag is set to true, then accessing channels >= num_components
386 * is well-defined, and simply spills over to the next array element. This
387 * is useful for backends that can do per-component accessing, in
388 * particular scalar backends. By setting this flag and making
389 * num_components equal to 1, structures can be packed tightly into
390 * registers and then registers can be accessed per-component to get to
391 * each structure member, even if it crosses vec4 boundaries.
392 */
393 bool is_packed;
394
395 /** set of nir_instr's where this register is used (read from) */
396 struct set *uses;
397
398 /** set of nir_instr's where this register is defined (written to) */
399 struct set *defs;
400
401 /** set of nir_if's where this register is used as a condition */
402 struct set *if_uses;
403 } nir_register;
404
405 typedef enum {
406 nir_instr_type_alu,
407 nir_instr_type_call,
408 nir_instr_type_tex,
409 nir_instr_type_intrinsic,
410 nir_instr_type_load_const,
411 nir_instr_type_jump,
412 nir_instr_type_ssa_undef,
413 nir_instr_type_phi,
414 nir_instr_type_parallel_copy,
415 } nir_instr_type;
416
417 typedef struct {
418 struct exec_node node;
419 nir_instr_type type;
420 struct nir_block *block;
421
422 /* flag for dead code elimination (see nir_opt_dce.c) */
423 bool live;
424 } nir_instr;
425
426 #define nir_instr_next(instr) \
427 exec_node_data(nir_instr, (instr)->node.next, node)
428
429 #define nir_instr_prev(instr) \
430 exec_node_data(nir_instr, (instr)->node.prev, node)
431
432 typedef struct {
433 /** for debugging only, can be NULL */
434 const char* name;
435
436 /** generic SSA definition index. */
437 unsigned index;
438
439 /** Index into the live_in and live_out bitfields */
440 unsigned live_index;
441
442 nir_instr *parent_instr;
443
444 /** set of nir_instr's where this register is used (read from) */
445 struct set *uses;
446
447 /** set of nir_if's where this register is used as a condition */
448 struct set *if_uses;
449
450 uint8_t num_components;
451 } nir_ssa_def;
452
453 struct nir_src;
454
455 typedef struct {
456 nir_register *reg;
457 struct nir_src *indirect; /** < NULL for no indirect offset */
458 unsigned base_offset;
459
460 /* TODO use-def chain goes here */
461 } nir_reg_src;
462
463 typedef struct {
464 nir_register *reg;
465 struct nir_src *indirect; /** < NULL for no indirect offset */
466 unsigned base_offset;
467
468 /* TODO def-use chain goes here */
469 } nir_reg_dest;
470
471 typedef struct nir_src {
472 union {
473 nir_reg_src reg;
474 nir_ssa_def *ssa;
475 };
476
477 bool is_ssa;
478 } nir_src;
479
480 typedef struct {
481 union {
482 nir_reg_dest reg;
483 nir_ssa_def ssa;
484 };
485
486 bool is_ssa;
487 } nir_dest;
488
489 nir_src nir_src_copy(nir_src src, void *mem_ctx);
490 nir_dest nir_dest_copy(nir_dest dest, void *mem_ctx);
491
492 typedef struct {
493 nir_src src;
494
495 /**
496 * \name input modifiers
497 */
498 /*@{*/
499 /**
500 * For inputs interpreted as floating point, flips the sign bit. For
501 * inputs interpreted as integers, performs the two's complement negation.
502 */
503 bool negate;
504
505 /**
506 * Clears the sign bit for floating point values, and computes the integer
507 * absolute value for integers. Note that the negate modifier acts after
508 * the absolute value modifier, therefore if both are set then all inputs
509 * will become negative.
510 */
511 bool abs;
512 /*@}*/
513
514 /**
515 * For each input component, says which component of the register it is
516 * chosen from. Note that which elements of the swizzle are used and which
517 * are ignored are based on the write mask for most opcodes - for example,
518 * a statement like "foo.xzw = bar.zyx" would have a writemask of 1101b and
519 * a swizzle of {2, x, 1, 0} where x means "don't care."
520 */
521 uint8_t swizzle[4];
522 } nir_alu_src;
523
524 typedef struct {
525 nir_dest dest;
526
527 /**
528 * \name saturate output modifier
529 *
530 * Only valid for opcodes that output floating-point numbers. Clamps the
531 * output to between 0.0 and 1.0 inclusive.
532 */
533
534 bool saturate;
535
536 unsigned write_mask : 4; /* ignored if dest.is_ssa is true */
537 } nir_alu_dest;
538
539 #define OPCODE(name, num_inputs, output_size, output_type, \
540 input_sizes, input_types, algebraic_props) \
541 nir_op_##name,
542
543 #define LAST_OPCODE(name) nir_last_opcode = nir_op_##name,
544
545 typedef enum {
546 #include "nir_opcodes.h"
547 nir_num_opcodes = nir_last_opcode + 1
548 } nir_op;
549
550 #undef OPCODE
551 #undef LAST_OPCODE
552
553 typedef enum {
554 nir_type_float,
555 nir_type_int,
556 nir_type_unsigned,
557 nir_type_bool
558 } nir_alu_type;
559
560 typedef enum {
561 NIR_OP_IS_COMMUTATIVE = (1 << 0),
562 NIR_OP_IS_ASSOCIATIVE = (1 << 1),
563 } nir_op_algebraic_property;
564
565 typedef struct {
566 const char *name;
567
568 unsigned num_inputs;
569
570 /**
571 * The number of components in the output
572 *
573 * If non-zero, this is the size of the output and input sizes are
574 * explicitly given; swizzle and writemask are still in effect, but if
575 * the output component is masked out, then the input component may
576 * still be in use.
577 *
578 * If zero, the opcode acts in the standard, per-component manner; the
579 * operation is performed on each component (except the ones that are
580 * masked out) with the input being taken from the input swizzle for
581 * that component.
582 *
583 * The size of some of the inputs may be given (i.e. non-zero) even
584 * though output_size is zero; in that case, the inputs with a zero
585 * size act per-component, while the inputs with non-zero size don't.
586 */
587 unsigned output_size;
588
589 /**
590 * The type of vector that the instruction outputs. Note that the
591 * staurate modifier is only allowed on outputs with the float type.
592 */
593
594 nir_alu_type output_type;
595
596 /**
597 * The number of components in each input
598 */
599 unsigned input_sizes[4];
600
601 /**
602 * The type of vector that each input takes. Note that negate and
603 * absolute value are only allowed on inputs with int or float type and
604 * behave differently on the two.
605 */
606 nir_alu_type input_types[4];
607
608 nir_op_algebraic_property algebraic_properties;
609 } nir_op_info;
610
611 extern const nir_op_info nir_op_infos[nir_num_opcodes];
612
613 typedef struct nir_alu_instr {
614 nir_instr instr;
615 nir_op op;
616 nir_alu_dest dest;
617 nir_alu_src src[];
618 } nir_alu_instr;
619
620 /* is this source channel used? */
621 static inline bool
622 nir_alu_instr_channel_used(nir_alu_instr *instr, unsigned src, unsigned channel)
623 {
624 if (nir_op_infos[instr->op].input_sizes[src] > 0)
625 return channel < nir_op_infos[instr->op].input_sizes[src];
626
627 return (instr->dest.write_mask >> channel) & 1;
628 }
629
630 typedef enum {
631 nir_deref_type_var,
632 nir_deref_type_array,
633 nir_deref_type_struct
634 } nir_deref_type;
635
636 typedef struct nir_deref {
637 nir_deref_type deref_type;
638 struct nir_deref *child;
639 const struct glsl_type *type;
640 } nir_deref;
641
642 typedef struct {
643 nir_deref deref;
644
645 nir_variable *var;
646 } nir_deref_var;
647
648 /* This enum describes how the array is referenced. If the deref is
649 * direct then the base_offset is used. If the deref is indirect then then
650 * offset is given by base_offset + indirect. If the deref is a wildcard
651 * then the deref refers to all of the elements of the array at the same
652 * time. Wildcard dereferences are only ever allowed in copy_var
653 * intrinsics and the source and destination derefs must have matching
654 * wildcards.
655 */
656 typedef enum {
657 nir_deref_array_type_direct,
658 nir_deref_array_type_indirect,
659 nir_deref_array_type_wildcard,
660 } nir_deref_array_type;
661
662 typedef struct {
663 nir_deref deref;
664
665 nir_deref_array_type deref_array_type;
666 unsigned base_offset;
667 nir_src indirect;
668 } nir_deref_array;
669
670 typedef struct {
671 nir_deref deref;
672
673 unsigned index;
674 } nir_deref_struct;
675
676 NIR_DEFINE_CAST(nir_deref_as_var, nir_deref, nir_deref_var, deref)
677 NIR_DEFINE_CAST(nir_deref_as_array, nir_deref, nir_deref_array, deref)
678 NIR_DEFINE_CAST(nir_deref_as_struct, nir_deref, nir_deref_struct, deref)
679
680 typedef struct {
681 nir_instr instr;
682
683 unsigned num_params;
684 nir_deref_var **params;
685 nir_deref_var *return_deref;
686
687 struct nir_function_overload *callee;
688 } nir_call_instr;
689
690 #define INTRINSIC(name, num_srcs, src_components, has_dest, dest_components, \
691 num_variables, num_indices, flags) \
692 nir_intrinsic_##name,
693
694 #define LAST_INTRINSIC(name) nir_last_intrinsic = nir_intrinsic_##name,
695
696 typedef enum {
697 #include "nir_intrinsics.h"
698 nir_num_intrinsics = nir_last_intrinsic + 1
699 } nir_intrinsic_op;
700
701 #undef INTRINSIC
702 #undef LAST_INTRINSIC
703
704 /** Represents an intrinsic
705 *
706 * An intrinsic is an instruction type for handling things that are
707 * more-or-less regular operations but don't just consume and produce SSA
708 * values like ALU operations do. Intrinsics are not for things that have
709 * special semantic meaning such as phi nodes and parallel copies.
710 * Examples of intrinsics include variable load/store operations, system
711 * value loads, and the like. Even though texturing more-or-less falls
712 * under this category, texturing is its own instruction type because
713 * trying to represent texturing with intrinsics would lead to a
714 * combinatorial explosion of intrinsic opcodes.
715 *
716 * By having a single instruction type for handling a lot of different
717 * cases, optimization passes can look for intrinsics and, for the most
718 * part, completely ignore them. Each intrinsic type also has a few
719 * possible flags that govern whether or not they can be reordered or
720 * eliminated. That way passes like dead code elimination can still work
721 * on intrisics without understanding the meaning of each.
722 *
723 * Each intrinsic has some number of constant indices, some number of
724 * variables, and some number of sources. What these sources, variables,
725 * and indices mean depends on the intrinsic and is documented with the
726 * intrinsic declaration in nir_intrinsics.h. Intrinsics and texture
727 * instructions are the only types of instruction that can operate on
728 * variables.
729 */
730 typedef struct {
731 nir_instr instr;
732
733 nir_intrinsic_op intrinsic;
734
735 nir_dest dest;
736
737 /** number of components if this is a vectorized intrinsic
738 *
739 * Similarly to ALU operations, some intrinsics are vectorized.
740 * An intrinsic is vectorized if nir_intrinsic_infos.dest_components == 0.
741 * For vectorized intrinsics, the num_components field specifies the
742 * number of destination components and the number of source components
743 * for all sources with nir_intrinsic_infos.src_components[i] == 0.
744 */
745 uint8_t num_components;
746
747 int const_index[3];
748
749 nir_deref_var *variables[2];
750
751 nir_src src[];
752 } nir_intrinsic_instr;
753
754 /**
755 * \name NIR intrinsics semantic flags
756 *
757 * information about what the compiler can do with the intrinsics.
758 *
759 * \sa nir_intrinsic_info::flags
760 */
761 /*@{*/
762 /**
763 * whether the intrinsic can be safely eliminated if none of its register
764 * outputs are being used.
765 */
766 #define NIR_INTRINSIC_CAN_ELIMINATE (1 << 0)
767
768 /**
769 * Whether the intrinsic can be reordered with respect to any other intrinsic,
770 * i.e. whether the only reodering dependencies of the intrinsic are due to the
771 * register reads/writes.
772 */
773 #define NIR_INTRINSIC_CAN_REORDER (1 << 1)
774 /*@}*/
775
776 #define NIR_INTRINSIC_MAX_INPUTS 4
777
778 typedef struct {
779 const char *name;
780
781 unsigned num_srcs; /** < number of register/SSA inputs */
782
783 /** number of components of each input register
784 *
785 * If this value is 0, the number of components is given by the
786 * num_components field of nir_intrinsic_instr.
787 */
788 unsigned src_components[NIR_INTRINSIC_MAX_INPUTS];
789
790 bool has_dest;
791
792 /** number of components of the output register
793 *
794 * If this value is 0, the number of components is given by the
795 * num_components field of nir_intrinsic_instr.
796 */
797 unsigned dest_components;
798
799 /** the number of inputs/outputs that are variables */
800 unsigned num_variables;
801
802 /** the number of constant indices used by the intrinsic */
803 unsigned num_indices;
804
805 /** semantic flags for calls to this intrinsic */
806 unsigned flags;
807 } nir_intrinsic_info;
808
809 extern const nir_intrinsic_info nir_intrinsic_infos[nir_num_intrinsics];
810
811 /**
812 * \group texture information
813 *
814 * This gives semantic information about textures which is useful to the
815 * frontend, the backend, and lowering passes, but not the optimizer.
816 */
817
818 typedef enum {
819 nir_tex_src_coord,
820 nir_tex_src_projector,
821 nir_tex_src_comparitor, /* shadow comparitor */
822 nir_tex_src_offset,
823 nir_tex_src_bias,
824 nir_tex_src_lod,
825 nir_tex_src_ms_index, /* MSAA sample index */
826 nir_tex_src_ddx,
827 nir_tex_src_ddy,
828 nir_tex_src_sampler_offset, /* < dynamically uniform indirect offset */
829 nir_num_texinput_types
830 } nir_texinput_type;
831
832 typedef enum {
833 nir_texop_tex, /**< Regular texture look-up */
834 nir_texop_txb, /**< Texture look-up with LOD bias */
835 nir_texop_txl, /**< Texture look-up with explicit LOD */
836 nir_texop_txd, /**< Texture look-up with partial derivatvies */
837 nir_texop_txf, /**< Texel fetch with explicit LOD */
838 nir_texop_txf_ms, /**< Multisample texture fetch */
839 nir_texop_txs, /**< Texture size */
840 nir_texop_lod, /**< Texture lod query */
841 nir_texop_tg4, /**< Texture gather */
842 nir_texop_query_levels /**< Texture levels query */
843 } nir_texop;
844
845 typedef struct {
846 nir_instr instr;
847
848 enum glsl_sampler_dim sampler_dim;
849 nir_alu_type dest_type;
850
851 nir_texop op;
852 nir_dest dest;
853 nir_src src[4];
854 nir_texinput_type src_type[4];
855 unsigned num_srcs, coord_components;
856 bool is_array, is_shadow;
857
858 /**
859 * If is_shadow is true, whether this is the old-style shadow that outputs 4
860 * components or the new-style shadow that outputs 1 component.
861 */
862 bool is_new_style_shadow;
863
864 /* constant offset - must be 0 if the offset source is used */
865 int const_offset[4];
866
867 /* gather component selector */
868 unsigned component : 2;
869
870 /** The sampler index
871 *
872 * If this texture instruction has a nir_tex_src_sampler_offset source,
873 * then the sampler index is given by sampler_index + sampler_offset.
874 */
875 unsigned sampler_index;
876
877 /** The size of the sampler array or 0 if it's not an array */
878 unsigned sampler_array_size;
879
880 nir_deref_var *sampler; /* if this is NULL, use sampler_index instead */
881 } nir_tex_instr;
882
883 static inline unsigned
884 nir_tex_instr_dest_size(nir_tex_instr *instr)
885 {
886 if (instr->op == nir_texop_txs) {
887 unsigned ret;
888 switch (instr->sampler_dim) {
889 case GLSL_SAMPLER_DIM_1D:
890 case GLSL_SAMPLER_DIM_BUF:
891 ret = 1;
892 break;
893 case GLSL_SAMPLER_DIM_2D:
894 case GLSL_SAMPLER_DIM_CUBE:
895 case GLSL_SAMPLER_DIM_MS:
896 case GLSL_SAMPLER_DIM_RECT:
897 case GLSL_SAMPLER_DIM_EXTERNAL:
898 ret = 2;
899 break;
900 case GLSL_SAMPLER_DIM_3D:
901 ret = 3;
902 break;
903 default:
904 assert(0);
905 break;
906 }
907 if (instr->is_array)
908 ret++;
909 return ret;
910 }
911
912 if (instr->op == nir_texop_query_levels)
913 return 2;
914
915 if (instr->is_shadow && instr->is_new_style_shadow)
916 return 1;
917
918 return 4;
919 }
920
921 static inline unsigned
922 nir_tex_instr_src_size(nir_tex_instr *instr, unsigned src)
923 {
924 if (instr->src_type[src] == nir_tex_src_coord)
925 return instr->coord_components;
926
927
928 if (instr->src_type[src] == nir_tex_src_offset ||
929 instr->src_type[src] == nir_tex_src_ddx ||
930 instr->src_type[src] == nir_tex_src_ddy) {
931 if (instr->is_array)
932 return instr->coord_components - 1;
933 else
934 return instr->coord_components;
935 }
936
937 return 1;
938 }
939
940 static inline int
941 nir_tex_instr_src_index(nir_tex_instr *instr, nir_texinput_type type)
942 {
943 for (unsigned i = 0; i < instr->num_srcs; i++)
944 if (instr->src_type[i] == type)
945 return (int) i;
946
947 return -1;
948 }
949
950 typedef struct {
951 union {
952 float f[4];
953 int32_t i[4];
954 uint32_t u[4];
955 };
956 } nir_const_value;
957
958 typedef struct {
959 nir_instr instr;
960
961 nir_const_value value;
962
963 nir_ssa_def def;
964 } nir_load_const_instr;
965
966 typedef enum {
967 nir_jump_return,
968 nir_jump_break,
969 nir_jump_continue,
970 } nir_jump_type;
971
972 typedef struct {
973 nir_instr instr;
974 nir_jump_type type;
975 } nir_jump_instr;
976
977 /* creates a new SSA variable in an undefined state */
978
979 typedef struct {
980 nir_instr instr;
981 nir_ssa_def def;
982 } nir_ssa_undef_instr;
983
984 typedef struct {
985 struct exec_node node;
986
987 /* The predecessor block corresponding to this source */
988 struct nir_block *pred;
989
990 nir_src src;
991 } nir_phi_src;
992
993 typedef struct {
994 nir_instr instr;
995
996 struct exec_list srcs; /** < list of nir_phi_src */
997
998 nir_dest dest;
999 } nir_phi_instr;
1000
1001 typedef struct {
1002 struct exec_node node;
1003 nir_src src;
1004 nir_dest dest;
1005 } nir_parallel_copy_entry;
1006
1007 #define nir_foreach_parallel_copy_entry(pcopy, entry) \
1008 foreach_list_typed(nir_parallel_copy_entry, entry, node, &(pcopy)->entries)
1009
1010 typedef struct {
1011 nir_instr instr;
1012
1013 /* A list of nir_parallel_copy_entry's. The sources of all of the
1014 * entries are copied to the corresponding destinations "in parallel".
1015 * In other words, if we have two entries: a -> b and b -> a, the values
1016 * get swapped.
1017 */
1018 struct exec_list entries;
1019 } nir_parallel_copy_instr;
1020
1021 NIR_DEFINE_CAST(nir_instr_as_alu, nir_instr, nir_alu_instr, instr)
1022 NIR_DEFINE_CAST(nir_instr_as_call, nir_instr, nir_call_instr, instr)
1023 NIR_DEFINE_CAST(nir_instr_as_jump, nir_instr, nir_jump_instr, instr)
1024 NIR_DEFINE_CAST(nir_instr_as_tex, nir_instr, nir_tex_instr, instr)
1025 NIR_DEFINE_CAST(nir_instr_as_intrinsic, nir_instr, nir_intrinsic_instr, instr)
1026 NIR_DEFINE_CAST(nir_instr_as_load_const, nir_instr, nir_load_const_instr, instr)
1027 NIR_DEFINE_CAST(nir_instr_as_ssa_undef, nir_instr, nir_ssa_undef_instr, instr)
1028 NIR_DEFINE_CAST(nir_instr_as_phi, nir_instr, nir_phi_instr, instr)
1029 NIR_DEFINE_CAST(nir_instr_as_parallel_copy, nir_instr,
1030 nir_parallel_copy_instr, instr)
1031
1032 /*
1033 * Control flow
1034 *
1035 * Control flow consists of a tree of control flow nodes, which include
1036 * if-statements and loops. The leaves of the tree are basic blocks, lists of
1037 * instructions that always run start-to-finish. Each basic block also keeps
1038 * track of its successors (blocks which may run immediately after the current
1039 * block) and predecessors (blocks which could have run immediately before the
1040 * current block). Each function also has a start block and an end block which
1041 * all return statements point to (which is always empty). Together, all the
1042 * blocks with their predecessors and successors make up the control flow
1043 * graph (CFG) of the function. There are helpers that modify the tree of
1044 * control flow nodes while modifying the CFG appropriately; these should be
1045 * used instead of modifying the tree directly.
1046 */
1047
1048 typedef enum {
1049 nir_cf_node_block,
1050 nir_cf_node_if,
1051 nir_cf_node_loop,
1052 nir_cf_node_function
1053 } nir_cf_node_type;
1054
1055 typedef struct nir_cf_node {
1056 struct exec_node node;
1057 nir_cf_node_type type;
1058 struct nir_cf_node *parent;
1059 } nir_cf_node;
1060
1061 typedef struct nir_block {
1062 nir_cf_node cf_node;
1063
1064 struct exec_list instr_list; /** < list of nir_instr */
1065
1066 /** generic block index; generated by nir_index_blocks */
1067 unsigned index;
1068
1069 /*
1070 * Each block can only have up to 2 successors, so we put them in a simple
1071 * array - no need for anything more complicated.
1072 */
1073 struct nir_block *successors[2];
1074
1075 /* Set of nir_block predecessors in the CFG */
1076 struct set *predecessors;
1077
1078 /*
1079 * this node's immediate dominator in the dominance tree - set to NULL for
1080 * the start block.
1081 */
1082 struct nir_block *imm_dom;
1083
1084 /* This node's children in the dominance tree */
1085 unsigned num_dom_children;
1086 struct nir_block **dom_children;
1087
1088 /* Set of nir_block's on the dominance frontier of this block */
1089 struct set *dom_frontier;
1090
1091 /* live in and out for this block; used for liveness analysis */
1092 BITSET_WORD *live_in;
1093 BITSET_WORD *live_out;
1094 } nir_block;
1095
1096 #define nir_block_first_instr(block) \
1097 exec_node_data(nir_instr, exec_list_get_head(&(block)->instr_list), node)
1098 #define nir_block_last_instr(block) \
1099 exec_node_data(nir_instr, exec_list_get_tail(&(block)->instr_list), node)
1100
1101 #define nir_foreach_instr(block, instr) \
1102 foreach_list_typed(nir_instr, instr, node, &(block)->instr_list)
1103 #define nir_foreach_instr_reverse(block, instr) \
1104 foreach_list_typed_reverse(nir_instr, instr, node, &(block)->instr_list)
1105 #define nir_foreach_instr_safe(block, instr) \
1106 foreach_list_typed_safe(nir_instr, instr, node, &(block)->instr_list)
1107
1108 typedef struct {
1109 nir_cf_node cf_node;
1110 nir_src condition;
1111
1112 struct exec_list then_list; /** < list of nir_cf_node */
1113 struct exec_list else_list; /** < list of nir_cf_node */
1114 } nir_if;
1115
1116 #define nir_if_first_then_node(if) \
1117 exec_node_data(nir_cf_node, exec_list_get_head(&(if)->then_list), node)
1118 #define nir_if_last_then_node(if) \
1119 exec_node_data(nir_cf_node, exec_list_get_tail(&(if)->then_list), node)
1120 #define nir_if_first_else_node(if) \
1121 exec_node_data(nir_cf_node, exec_list_get_head(&(if)->else_list), node)
1122 #define nir_if_last_else_node(if) \
1123 exec_node_data(nir_cf_node, exec_list_get_tail(&(if)->else_list), node)
1124
1125 typedef struct {
1126 nir_cf_node cf_node;
1127
1128 struct exec_list body; /** < list of nir_cf_node */
1129 } nir_loop;
1130
1131 #define nir_loop_first_cf_node(loop) \
1132 exec_node_data(nir_cf_node, exec_list_get_head(&(loop)->body), node)
1133 #define nir_loop_last_cf_node(loop) \
1134 exec_node_data(nir_cf_node, exec_list_get_tail(&(loop)->body), node)
1135
1136 /**
1137 * Various bits of metadata that can may be created or required by
1138 * optimization and analysis passes
1139 */
1140 typedef enum {
1141 nir_metadata_none = 0x0,
1142 nir_metadata_block_index = 0x1,
1143 nir_metadata_dominance = 0x2,
1144 nir_metadata_live_variables = 0x4,
1145 } nir_metadata;
1146
1147 typedef struct {
1148 nir_cf_node cf_node;
1149
1150 /** pointer to the overload of which this is an implementation */
1151 struct nir_function_overload *overload;
1152
1153 struct exec_list body; /** < list of nir_cf_node */
1154
1155 nir_block *start_block, *end_block;
1156
1157 /** list for all local variables in the function */
1158 struct exec_list locals;
1159
1160 /** array of variables used as parameters */
1161 unsigned num_params;
1162 nir_variable **params;
1163
1164 /** variable used to hold the result of the function */
1165 nir_variable *return_var;
1166
1167 /** list of local registers in the function */
1168 struct exec_list registers;
1169
1170 /** next available local register index */
1171 unsigned reg_alloc;
1172
1173 /** next available SSA value index */
1174 unsigned ssa_alloc;
1175
1176 /* total number of basic blocks, only valid when block_index_dirty = false */
1177 unsigned num_blocks;
1178
1179 nir_metadata valid_metadata;
1180 } nir_function_impl;
1181
1182 #define nir_cf_node_next(_node) \
1183 exec_node_data(nir_cf_node, exec_node_get_next(&(_node)->node), node)
1184
1185 #define nir_cf_node_prev(_node) \
1186 exec_node_data(nir_cf_node, exec_node_get_prev(&(_node)->node), node)
1187
1188 #define nir_cf_node_is_first(_node) \
1189 exec_node_is_head_sentinel((_node)->node.prev)
1190
1191 #define nir_cf_node_is_last(_node) \
1192 exec_node_is_tail_sentinel((_node)->node.next)
1193
1194 NIR_DEFINE_CAST(nir_cf_node_as_block, nir_cf_node, nir_block, cf_node)
1195 NIR_DEFINE_CAST(nir_cf_node_as_if, nir_cf_node, nir_if, cf_node)
1196 NIR_DEFINE_CAST(nir_cf_node_as_loop, nir_cf_node, nir_loop, cf_node)
1197 NIR_DEFINE_CAST(nir_cf_node_as_function, nir_cf_node, nir_function_impl, cf_node)
1198
1199 typedef enum {
1200 nir_parameter_in,
1201 nir_parameter_out,
1202 nir_parameter_inout,
1203 } nir_parameter_type;
1204
1205 typedef struct {
1206 nir_parameter_type param_type;
1207 const struct glsl_type *type;
1208 } nir_parameter;
1209
1210 typedef struct nir_function_overload {
1211 struct exec_node node;
1212
1213 unsigned num_params;
1214 nir_parameter *params;
1215 const struct glsl_type *return_type;
1216
1217 nir_function_impl *impl; /** < NULL if the overload is only declared yet */
1218
1219 /** pointer to the function of which this is an overload */
1220 struct nir_function *function;
1221 } nir_function_overload;
1222
1223 typedef struct nir_function {
1224 struct exec_node node;
1225
1226 struct exec_list overload_list; /** < list of nir_function_overload */
1227 const char *name;
1228 struct nir_shader *shader;
1229 } nir_function;
1230
1231 #define nir_function_first_overload(func) \
1232 exec_node_data(nir_function_overload, \
1233 exec_list_get_head(&(func)->overload_list), node)
1234
1235 typedef struct nir_shader {
1236 /** hash table of name -> uniform nir_variable */
1237 struct hash_table *uniforms;
1238
1239 /** hash table of name -> input nir_variable */
1240 struct hash_table *inputs;
1241
1242 /** hash table of name -> output nir_variable */
1243 struct hash_table *outputs;
1244
1245 /** list of global variables in the shader */
1246 struct exec_list globals;
1247
1248 /** list of system value variables in the shader */
1249 struct exec_list system_values;
1250
1251 struct exec_list functions; /** < list of nir_function */
1252
1253 /** list of global register in the shader */
1254 struct exec_list registers;
1255
1256 /** structures used in this shader */
1257 unsigned num_user_structures;
1258 struct glsl_type **user_structures;
1259
1260 /** next available global register index */
1261 unsigned reg_alloc;
1262
1263 /**
1264 * the highest index a load_input_*, load_uniform_*, etc. intrinsic can
1265 * access plus one
1266 */
1267 unsigned num_inputs, num_uniforms, num_outputs;
1268 } nir_shader;
1269
1270 #define nir_foreach_overload(shader, overload) \
1271 foreach_list_typed(nir_function, func, node, &(shader)->functions) \
1272 foreach_list_typed(nir_function_overload, overload, node, \
1273 &(func)->overload_list)
1274
1275 nir_shader *nir_shader_create(void *mem_ctx);
1276
1277 /** creates a register, including assigning it an index and adding it to the list */
1278 nir_register *nir_global_reg_create(nir_shader *shader);
1279
1280 nir_register *nir_local_reg_create(nir_function_impl *impl);
1281
1282 void nir_reg_remove(nir_register *reg);
1283
1284 /** creates a function and adds it to the shader's list of functions */
1285 nir_function *nir_function_create(nir_shader *shader, const char *name);
1286
1287 /** creates a null function returning null */
1288 nir_function_overload *nir_function_overload_create(nir_function *func);
1289
1290 nir_function_impl *nir_function_impl_create(nir_function_overload *func);
1291
1292 nir_block *nir_block_create(void *mem_ctx);
1293 nir_if *nir_if_create(void *mem_ctx);
1294 nir_loop *nir_loop_create(void *mem_ctx);
1295
1296 nir_function_impl *nir_cf_node_get_function(nir_cf_node *node);
1297
1298 /** puts a control flow node immediately after another control flow node */
1299 void nir_cf_node_insert_after(nir_cf_node *node, nir_cf_node *after);
1300
1301 /** puts a control flow node immediately before another control flow node */
1302 void nir_cf_node_insert_before(nir_cf_node *node, nir_cf_node *before);
1303
1304 /** puts a control flow node at the beginning of a list from an if, loop, or function */
1305 void nir_cf_node_insert_begin(struct exec_list *list, nir_cf_node *node);
1306
1307 /** puts a control flow node at the end of a list from an if, loop, or function */
1308 void nir_cf_node_insert_end(struct exec_list *list, nir_cf_node *node);
1309
1310 /** removes a control flow node, doing any cleanup necessary */
1311 void nir_cf_node_remove(nir_cf_node *node);
1312
1313 /** requests that the given pieces of metadata be generated */
1314 void nir_metadata_require(nir_function_impl *impl, nir_metadata required);
1315 /** dirties all but the preserved metadata */
1316 void nir_metadata_preserve(nir_function_impl *impl, nir_metadata preserved);
1317
1318 /** creates an instruction with default swizzle/writemask/etc. with NULL registers */
1319 nir_alu_instr *nir_alu_instr_create(void *mem_ctx, nir_op op);
1320
1321 nir_jump_instr *nir_jump_instr_create(void *mem_ctx, nir_jump_type type);
1322
1323 nir_load_const_instr *nir_load_const_instr_create(void *mem_ctx,
1324 unsigned num_components);
1325
1326 nir_intrinsic_instr *nir_intrinsic_instr_create(void *mem_ctx,
1327 nir_intrinsic_op op);
1328
1329 nir_call_instr *nir_call_instr_create(void *mem_ctx,
1330 nir_function_overload *callee);
1331
1332 nir_tex_instr *nir_tex_instr_create(void *mem_ctx, unsigned num_srcs);
1333
1334 nir_phi_instr *nir_phi_instr_create(void *mem_ctx);
1335
1336 nir_parallel_copy_instr *nir_parallel_copy_instr_create(void *mem_ctx);
1337
1338 nir_ssa_undef_instr *nir_ssa_undef_instr_create(void *mem_ctx,
1339 unsigned num_components);
1340
1341 nir_deref_var *nir_deref_var_create(void *mem_ctx, nir_variable *var);
1342 nir_deref_array *nir_deref_array_create(void *mem_ctx);
1343 nir_deref_struct *nir_deref_struct_create(void *mem_ctx, unsigned field_index);
1344
1345 nir_deref *nir_copy_deref(void *mem_ctx, nir_deref *deref);
1346
1347 void nir_instr_insert_before(nir_instr *instr, nir_instr *before);
1348 void nir_instr_insert_after(nir_instr *instr, nir_instr *after);
1349
1350 void nir_instr_insert_before_block(nir_block *block, nir_instr *before);
1351 void nir_instr_insert_after_block(nir_block *block, nir_instr *after);
1352
1353 void nir_instr_insert_before_cf(nir_cf_node *node, nir_instr *before);
1354 void nir_instr_insert_after_cf(nir_cf_node *node, nir_instr *after);
1355
1356 void nir_instr_insert_before_cf_list(struct exec_list *list, nir_instr *before);
1357 void nir_instr_insert_after_cf_list(struct exec_list *list, nir_instr *after);
1358
1359 void nir_instr_remove(nir_instr *instr);
1360
1361 typedef bool (*nir_foreach_ssa_def_cb)(nir_ssa_def *def, void *state);
1362 typedef bool (*nir_foreach_dest_cb)(nir_dest *dest, void *state);
1363 typedef bool (*nir_foreach_src_cb)(nir_src *src, void *state);
1364 bool nir_foreach_ssa_def(nir_instr *instr, nir_foreach_ssa_def_cb cb,
1365 void *state);
1366 bool nir_foreach_dest(nir_instr *instr, nir_foreach_dest_cb cb, void *state);
1367 bool nir_foreach_src(nir_instr *instr, nir_foreach_src_cb cb, void *state);
1368
1369 nir_const_value *nir_src_as_const_value(nir_src src);
1370 bool nir_srcs_equal(nir_src src1, nir_src src2);
1371 void nir_instr_rewrite_src(nir_instr *instr, nir_src *src, nir_src new_src);
1372
1373 void nir_ssa_def_init(nir_instr *instr, nir_ssa_def *def,
1374 unsigned num_components, const char *name);
1375 void nir_ssa_def_rewrite_uses(nir_ssa_def *def, nir_src new_src, void *mem_ctx);
1376
1377 /* visits basic blocks in source-code order */
1378 typedef bool (*nir_foreach_block_cb)(nir_block *block, void *state);
1379 bool nir_foreach_block(nir_function_impl *impl, nir_foreach_block_cb cb,
1380 void *state);
1381 bool nir_foreach_block_reverse(nir_function_impl *impl, nir_foreach_block_cb cb,
1382 void *state);
1383
1384 /* If the following CF node is an if, this function returns that if.
1385 * Otherwise, it returns NULL.
1386 */
1387 nir_if *nir_block_get_following_if(nir_block *block);
1388
1389 void nir_index_local_regs(nir_function_impl *impl);
1390 void nir_index_global_regs(nir_shader *shader);
1391 void nir_index_ssa_defs(nir_function_impl *impl);
1392
1393 void nir_index_blocks(nir_function_impl *impl);
1394
1395 void nir_print_shader(nir_shader *shader, FILE *fp);
1396
1397 void nir_validate_shader(nir_shader *shader);
1398
1399 void nir_calc_dominance_impl(nir_function_impl *impl);
1400 void nir_calc_dominance(nir_shader *shader);
1401
1402 void nir_dump_dom_tree_impl(nir_function_impl *impl, FILE *fp);
1403 void nir_dump_dom_tree(nir_shader *shader, FILE *fp);
1404
1405 void nir_dump_dom_frontier_impl(nir_function_impl *impl, FILE *fp);
1406 void nir_dump_dom_frontier(nir_shader *shader, FILE *fp);
1407
1408 void nir_dump_cfg_impl(nir_function_impl *impl, FILE *fp);
1409 void nir_dump_cfg(nir_shader *shader, FILE *fp);
1410
1411 void nir_split_var_copies(nir_shader *shader);
1412
1413 void nir_lower_global_vars_to_local(nir_shader *shader);
1414
1415 void nir_lower_locals_to_regs(nir_shader *shader);
1416
1417 void nir_lower_io(nir_shader *shader);
1418
1419 void nir_lower_variables(nir_shader *shader);
1420
1421 void nir_remove_dead_variables(nir_shader *shader);
1422
1423 void nir_lower_vec_to_movs(nir_shader *shader);
1424
1425 void nir_lower_samplers(nir_shader *shader,
1426 struct gl_shader_program *shader_program,
1427 struct gl_program *prog);
1428
1429 void nir_lower_system_values(nir_shader *shader);
1430
1431 void nir_lower_atomics(nir_shader *shader);
1432 void nir_lower_to_source_mods(nir_shader *shader);
1433
1434 void nir_live_variables_impl(nir_function_impl *impl);
1435 bool nir_ssa_defs_interfere(nir_ssa_def *a, nir_ssa_def *b);
1436
1437 void nir_convert_to_ssa_impl(nir_function_impl *impl);
1438 void nir_convert_to_ssa(nir_shader *shader);
1439 void nir_convert_from_ssa(nir_shader *shader);
1440
1441 bool nir_opt_algebraic(nir_shader *shader);
1442 bool nir_opt_constant_folding(nir_shader *shader);
1443
1444 bool nir_opt_global_to_local(nir_shader *shader);
1445
1446 bool nir_copy_prop_impl(nir_function_impl *impl);
1447 bool nir_copy_prop(nir_shader *shader);
1448
1449 bool nir_opt_cse(nir_shader *shader);
1450
1451 bool nir_opt_dce_impl(nir_function_impl *impl);
1452 bool nir_opt_dce(nir_shader *shader);
1453
1454 bool nir_opt_peephole_select(nir_shader *shader);
1455 bool nir_opt_peephole_ffma(nir_shader *shader);
1456
1457 #ifdef __cplusplus
1458 } /* extern "C" */
1459 #endif