blob: 23aec694d959fb7c3a191bf64382d32a631164ff [file] [log] [blame]
Connor Abbott30c46782014-07-31 16:14:51 -07001/*
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"
Connor Abbott30c46782014-07-31 16:14:51 -070031#include "../list.h"
32#include "GL/gl.h" /* GLenum */
Jason Ekstrandf752eff2015-04-24 10:16:27 -070033#include "util/list.h"
Connor Abbott30c46782014-07-31 16:14:51 -070034#include "util/ralloc.h"
Jason Ekstrand4c99e3a2015-01-15 08:06:05 -080035#include "util/set.h"
Eric Anholtb53d0352015-02-11 15:05:06 -080036#include "util/bitset.h"
Connor Abbott30c46782014-07-31 16:14:51 -070037#include "nir_types.h"
Rob Clarkc9b982b2015-10-08 18:19:00 -040038#include "shader_enums.h"
Connor Abbott30c46782014-07-31 16:14:51 -070039#include <stdio.h>
40
Connor Abbottfa4bc6c2015-01-22 23:32:14 -050041#include "nir_opcodes.h"
42
Connor Abbott30c46782014-07-31 16:14:51 -070043#ifdef __cplusplus
44extern "C" {
45#endif
46
Eric Anholtbef38f62015-02-11 15:08:02 -080047struct gl_program;
48struct gl_shader_program;
49
Jason Ekstrand4b4f90d2014-10-16 16:53:03 -070050#define NIR_FALSE 0u
51#define NIR_TRUE (~0u)
52
Jason Ekstrand8edcd1d2014-12-05 11:00:05 -080053/** Defines a cast function
54 *
55 * This macro defines a cast function from in_type to out_type where
56 * out_type is some structure type that contains a field of type out_type.
57 *
58 * Note that you have to be a bit careful as the generated cast function
59 * destroys constness.
60 */
61#define NIR_DEFINE_CAST(name, in_type, out_type, field) \
62static inline out_type * \
63name(const in_type *parent) \
64{ \
65 return exec_node_data(out_type, parent, field); \
66}
67
Connor Abbott30c46782014-07-31 16:14:51 -070068struct nir_function;
Jason Ekstrand49911cf2014-10-29 12:42:54 -070069struct nir_shader;
Jason Ekstrandc750eca2015-01-29 21:45:53 -080070struct nir_instr;
Connor Abbott30c46782014-07-31 16:14:51 -070071
72
73/**
74 * Description of built-in state associated with a uniform
75 *
76 * \sa nir_variable::state_slots
77 */
78typedef struct {
79 int tokens[5];
80 int swizzle;
81} nir_state_slot;
82
83typedef enum {
Rob Clark006e4f02015-10-19 11:57:51 -040084 nir_var_all = -1,
Connor Abbott30c46782014-07-31 16:14:51 -070085 nir_var_shader_in,
86 nir_var_shader_out,
87 nir_var_global,
88 nir_var_local,
89 nir_var_uniform,
Iago Toral Quiroga6b095982015-05-18 15:47:18 +020090 nir_var_shader_storage,
Connor Abbott30c46782014-07-31 16:14:51 -070091 nir_var_system_value
92} nir_variable_mode;
93
94/**
95 * Data stored in an nir_constant
96 */
97union nir_constant_data {
98 unsigned u[16];
99 int i[16];
100 float f[16];
101 bool b[16];
102};
103
104typedef struct nir_constant {
105 /**
106 * Value of the constant.
107 *
108 * The field used to back the values supplied by the constant is determined
Jason Ekstrand8599b302014-12-18 17:13:22 -0800109 * by the type associated with the \c nir_variable. Constants may be
Connor Abbott30c46782014-07-31 16:14:51 -0700110 * scalars, vectors, or matrices.
111 */
112 union nir_constant_data value;
113
Rob Clarkd27ae2c2015-11-06 11:35:21 -0500114 /* we could get this from the var->type but makes clone *much* easier to
115 * not have to care about the type.
116 */
117 unsigned num_elements;
118
Connor Abbott30c46782014-07-31 16:14:51 -0700119 /* Array elements / Structure Fields */
120 struct nir_constant **elements;
121} nir_constant;
122
123/**
124 * \brief Layout qualifiers for gl_FragDepth.
125 *
126 * The AMD/ARB_conservative_depth extensions allow gl_FragDepth to be redeclared
127 * with a layout qualifier.
128 */
129typedef enum {
130 nir_depth_layout_none, /**< No depth layout is specified. */
131 nir_depth_layout_any,
132 nir_depth_layout_greater,
133 nir_depth_layout_less,
134 nir_depth_layout_unchanged
135} nir_depth_layout;
136
137/**
138 * Either a uniform, global variable, shader input, or shader output. Based on
139 * ir_variable - it should be easy to translate between the two.
140 */
141
142typedef struct {
143 struct exec_node node;
144
145 /**
146 * Declared type of the variable
147 */
148 const struct glsl_type *type;
149
150 /**
151 * Declared name of the variable
152 */
153 char *name;
154
Connor Abbott30c46782014-07-31 16:14:51 -0700155 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;
Kenneth Graunke77f58c02015-10-02 00:01:23 -0700166 unsigned patch:1;
Connor Abbott30c46782014-07-31 16:14:51 -0700167 unsigned invariant:1;
168
169 /**
170 * Storage class of the variable.
171 *
172 * \sa nir_variable_mode
173 */
Jason Ekstrandf521a3c2014-11-26 15:08:19 -0800174 nir_variable_mode mode:4;
Connor Abbott30c46782014-07-31 16:14:51 -0700175
176 /**
177 * Interpolation mode for shader inputs / outputs
178 *
Jason Ekstrand8599b302014-12-18 17:13:22 -0800179 * \sa glsl_interp_qualifier
Connor Abbott30c46782014-07-31 16:14:51 -0700180 */
181 unsigned interpolation:2;
182
183 /**
184 * \name ARB_fragment_coord_conventions
185 * @{
186 */
187 unsigned origin_upper_left:1;
188 unsigned pixel_center_integer:1;
189 /*@}*/
190
191 /**
192 * Was the location explicitly set in the shader?
193 *
194 * If the location is explicitly set in the shader, it \b cannot be changed
195 * by the linker or by the API (e.g., calls to \c glBindAttribLocation have
196 * no effect).
197 */
198 unsigned explicit_location:1;
199 unsigned explicit_index:1;
200
201 /**
202 * Was an initial binding explicitly set in the shader?
203 *
Jason Ekstrandb95fae02014-12-19 14:55:45 -0800204 * If so, constant_initializer contains an integer nir_constant
205 * representing the initial binding point.
Connor Abbott30c46782014-07-31 16:14:51 -0700206 */
207 unsigned explicit_binding:1;
208
209 /**
210 * Does this variable have an initializer?
211 *
212 * This is used by the linker to cross-validiate initializers of global
213 * variables.
214 */
215 unsigned has_initializer:1;
216
217 /**
Connor Abbott30c46782014-07-31 16:14:51 -0700218 * If non-zero, then this variable may be packed along with other variables
219 * into a single varying slot, so this offset should be applied when
220 * accessing components. For example, an offset of 1 means that the x
221 * component of this variable is actually stored in component y of the
222 * location specified by \c location.
223 */
224 unsigned location_frac:2;
225
226 /**
227 * Non-zero if this variable was created by lowering a named interface
228 * block which was not an array.
229 *
230 * Note that this variable and \c from_named_ifc_block_array will never
231 * both be non-zero.
232 */
233 unsigned from_named_ifc_block_nonarray:1;
234
235 /**
236 * Non-zero if this variable was created by lowering a named interface
237 * block which was an array.
238 *
239 * Note that this variable and \c from_named_ifc_block_nonarray will never
240 * both be non-zero.
241 */
242 unsigned from_named_ifc_block_array:1;
243
244 /**
245 * \brief Layout qualifier for gl_FragDepth.
246 *
247 * This is not equal to \c ir_depth_layout_none if and only if this
248 * variable is \c gl_FragDepth and a layout qualifier is specified.
249 */
250 nir_depth_layout depth_layout;
251
252 /**
253 * Storage location of the base of this variable
254 *
255 * The precise meaning of this field depends on the nature of the variable.
256 *
257 * - Vertex shader input: one of the values from \c gl_vert_attrib.
258 * - Vertex shader output: one of the values from \c gl_varying_slot.
259 * - Geometry shader input: one of the values from \c gl_varying_slot.
260 * - Geometry shader output: one of the values from \c gl_varying_slot.
261 * - Fragment shader input: one of the values from \c gl_varying_slot.
262 * - Fragment shader output: one of the values from \c gl_frag_result.
263 * - Uniforms: Per-stage uniform slot number for default uniform block.
264 * - Uniforms: Index within the uniform block definition for UBO members.
Timothy Arceridcd9cd02015-08-30 12:50:34 +1000265 * - Non-UBO Uniforms: uniform slot number.
Connor Abbott30c46782014-07-31 16:14:51 -0700266 * - Other: This field is not currently used.
267 *
268 * If the variable is a uniform, shader input, or shader output, and the
269 * slot has not been assigned, the value will be -1.
270 */
271 int location;
272
273 /**
274 * The actual location of the variable in the IR. Only valid for inputs
275 * and outputs.
276 */
277 unsigned int driver_location;
278
279 /**
Eric Anholteae9c322015-08-04 17:18:43 -0700280 * output index for dual source blending.
Connor Abbott30c46782014-07-31 16:14:51 -0700281 */
Eric Anholteae9c322015-08-04 17:18:43 -0700282 int index;
Connor Abbott30c46782014-07-31 16:14:51 -0700283
284 /**
285 * Initial binding point for a sampler or UBO.
286 *
287 * For array types, this represents the binding point for the first element.
288 */
289 int binding;
290
291 /**
292 * Location an atomic counter is stored at.
293 */
Timothy Arceri0d4cd042015-12-29 21:02:56 +1100294 unsigned offset;
Connor Abbott30c46782014-07-31 16:14:51 -0700295
296 /**
297 * ARB_shader_image_load_store qualifiers.
298 */
299 struct {
300 bool read_only; /**< "readonly" qualifier. */
301 bool write_only; /**< "writeonly" qualifier. */
302 bool coherent;
303 bool _volatile;
304 bool restrict_flag;
305
306 /** Image internal format if specified explicitly, otherwise GL_NONE. */
307 GLenum format;
308 } image;
309
310 /**
311 * Highest element accessed with a constant expression array index
312 *
313 * Not used for non-array variables.
314 */
315 unsigned max_array_access;
316
317 } data;
318
319 /**
320 * Built-in state that backs this uniform
321 *
322 * Once set at variable creation, \c state_slots must remain invariant.
323 * This is because, ideally, this array would be shared by all clones of
324 * this variable in the IR tree. In other words, we'd really like for it
325 * to be a fly-weight.
326 *
327 * If the variable is not a uniform, \c num_state_slots will be zero and
328 * \c state_slots will be \c NULL.
329 */
330 /*@{*/
331 unsigned num_state_slots; /**< Number of state slots used */
332 nir_state_slot *state_slots; /**< State descriptors. */
333 /*@}*/
334
335 /**
Connor Abbott30c46782014-07-31 16:14:51 -0700336 * Constant expression assigned in the initializer of the variable
Connor Abbott30c46782014-07-31 16:14:51 -0700337 */
338 nir_constant *constant_initializer;
339
340 /**
341 * For variables that are in an interface block or are an instance of an
342 * interface block, this is the \c GLSL_TYPE_INTERFACE type for that block.
343 *
344 * \sa ir_variable::location
345 */
346 const struct glsl_type *interface_type;
347} nir_variable;
348
Jason Ekstrand050e4782015-10-02 18:15:06 -0700349#define nir_foreach_variable(var, var_list) \
350 foreach_list_typed(nir_variable, var, node, var_list)
351
Connor Abbott30c46782014-07-31 16:14:51 -0700352typedef struct {
353 struct exec_node node;
354
355 unsigned num_components; /** < number of vector components */
356 unsigned num_array_elems; /** < size of array (0 for no array) */
357
Jason Ekstrandc9a21c72014-10-30 21:18:22 -0700358 /** generic register index. */
Connor Abbott30c46782014-07-31 16:14:51 -0700359 unsigned index;
360
361 /** only for debug purposes, can be NULL */
362 const char *name;
363
364 /** whether this register is local (per-function) or global (per-shader) */
365 bool is_global;
366
367 /**
368 * If this flag is set to true, then accessing channels >= num_components
369 * is well-defined, and simply spills over to the next array element. This
370 * is useful for backends that can do per-component accessing, in
371 * particular scalar backends. By setting this flag and making
372 * num_components equal to 1, structures can be packed tightly into
373 * registers and then registers can be accessed per-component to get to
374 * each structure member, even if it crosses vec4 boundaries.
375 */
376 bool is_packed;
377
Rob Clark99597d02015-10-21 10:57:15 -0400378 /** set of nir_src's where this register is used (read from) */
Jason Ekstrandf752eff2015-04-24 10:16:27 -0700379 struct list_head uses;
Connor Abbott30c46782014-07-31 16:14:51 -0700380
Rob Clark99597d02015-10-21 10:57:15 -0400381 /** set of nir_dest's where this register is defined (written to) */
Jason Ekstrandf752eff2015-04-24 10:16:27 -0700382 struct list_head defs;
Connor Abbott30c46782014-07-31 16:14:51 -0700383
Jason Ekstrand8599b302014-12-18 17:13:22 -0800384 /** set of nir_if's where this register is used as a condition */
Jason Ekstrandf752eff2015-04-24 10:16:27 -0700385 struct list_head if_uses;
Connor Abbott30c46782014-07-31 16:14:51 -0700386} nir_register;
387
388typedef enum {
389 nir_instr_type_alu,
390 nir_instr_type_call,
Jason Ekstrandcd4b9952014-12-05 11:03:06 -0800391 nir_instr_type_tex,
Connor Abbott30c46782014-07-31 16:14:51 -0700392 nir_instr_type_intrinsic,
393 nir_instr_type_load_const,
394 nir_instr_type_jump,
395 nir_instr_type_ssa_undef,
396 nir_instr_type_phi,
Jason Ekstrand366181d2014-10-30 21:04:15 -0700397 nir_instr_type_parallel_copy,
Connor Abbott30c46782014-07-31 16:14:51 -0700398} nir_instr_type;
399
Jason Ekstrandc750eca2015-01-29 21:45:53 -0800400typedef struct nir_instr {
Connor Abbott30c46782014-07-31 16:14:51 -0700401 struct exec_node node;
402 nir_instr_type type;
403 struct nir_block *block;
Connor Abbott76023852014-07-24 15:51:58 -0700404
Jason Ekstrand8ecaef92015-09-08 16:43:51 -0700405 /** generic instruction index. */
406 unsigned index;
407
Jason Ekstranda52a4b52015-02-09 14:41:10 -0800408 /* A temporary for optimization and analysis passes to use for storing
409 * flags. For instance, DCE uses this to store the "dead/live" info.
410 */
411 uint8_t pass_flags;
Connor Abbott30c46782014-07-31 16:14:51 -0700412} nir_instr;
413
Jason Ekstranded13f4e2014-12-19 15:30:15 -0800414static inline nir_instr *
Jason Ekstrand3d25afc2015-02-04 21:22:45 -0800415nir_instr_next(nir_instr *instr)
Jason Ekstranded13f4e2014-12-19 15:30:15 -0800416{
Jason Ekstrand3d25afc2015-02-04 21:22:45 -0800417 struct exec_node *next = exec_node_get_next(&instr->node);
418 if (exec_node_is_tail_sentinel(next))
419 return NULL;
420 else
421 return exec_node_data(nir_instr, next, node);
Jason Ekstranded13f4e2014-12-19 15:30:15 -0800422}
Connor Abbott30c46782014-07-31 16:14:51 -0700423
Jason Ekstranded13f4e2014-12-19 15:30:15 -0800424static inline nir_instr *
Jason Ekstrand3d25afc2015-02-04 21:22:45 -0800425nir_instr_prev(nir_instr *instr)
Jason Ekstranded13f4e2014-12-19 15:30:15 -0800426{
Jason Ekstrand3d25afc2015-02-04 21:22:45 -0800427 struct exec_node *prev = exec_node_get_prev(&instr->node);
428 if (exec_node_is_head_sentinel(prev))
429 return NULL;
430 else
431 return exec_node_data(nir_instr, prev, node);
Jason Ekstranded13f4e2014-12-19 15:30:15 -0800432}
Connor Abbott30c46782014-07-31 16:14:51 -0700433
Connor Abbott8eea0912015-07-15 12:00:47 -0700434static inline bool
435nir_instr_is_first(nir_instr *instr)
436{
437 return exec_node_is_head_sentinel(exec_node_get_prev(&instr->node));
438}
439
440static inline bool
441nir_instr_is_last(nir_instr *instr)
442{
443 return exec_node_is_tail_sentinel(exec_node_get_next(&instr->node));
444}
445
Connor Abbott30c46782014-07-31 16:14:51 -0700446typedef struct {
447 /** for debugging only, can be NULL */
448 const char* name;
449
Jason Ekstrandc9a21c72014-10-30 21:18:22 -0700450 /** generic SSA definition index. */
Connor Abbott30c46782014-07-31 16:14:51 -0700451 unsigned index;
452
Jason Ekstrandf86902e2014-10-29 14:17:17 -0700453 /** Index into the live_in and live_out bitfields */
454 unsigned live_index;
455
Connor Abbott30c46782014-07-31 16:14:51 -0700456 nir_instr *parent_instr;
457
Jason Ekstrand8599b302014-12-18 17:13:22 -0800458 /** set of nir_instr's where this register is used (read from) */
Jason Ekstrandf752eff2015-04-24 10:16:27 -0700459 struct list_head uses;
Jason Ekstrand8599b302014-12-18 17:13:22 -0800460
461 /** set of nir_if's where this register is used as a condition */
Jason Ekstrandf752eff2015-04-24 10:16:27 -0700462 struct list_head if_uses;
Connor Abbott30c46782014-07-31 16:14:51 -0700463
464 uint8_t num_components;
465} nir_ssa_def;
466
467struct nir_src;
468
469typedef struct {
470 nir_register *reg;
471 struct nir_src *indirect; /** < NULL for no indirect offset */
472 unsigned base_offset;
473
474 /* TODO use-def chain goes here */
475} nir_reg_src;
476
477typedef struct {
Jason Ekstrandf752eff2015-04-24 10:16:27 -0700478 nir_instr *parent_instr;
479 struct list_head def_link;
480
Connor Abbott30c46782014-07-31 16:14:51 -0700481 nir_register *reg;
482 struct nir_src *indirect; /** < NULL for no indirect offset */
483 unsigned base_offset;
484
485 /* TODO def-use chain goes here */
486} nir_reg_dest;
487
Jason Ekstrandf752eff2015-04-24 10:16:27 -0700488struct nir_if;
489
Connor Abbott30c46782014-07-31 16:14:51 -0700490typedef struct nir_src {
491 union {
Jason Ekstrandf752eff2015-04-24 10:16:27 -0700492 nir_instr *parent_instr;
493 struct nir_if *parent_if;
494 };
495
496 struct list_head use_link;
497
498 union {
Connor Abbott30c46782014-07-31 16:14:51 -0700499 nir_reg_src reg;
500 nir_ssa_def *ssa;
501 };
502
503 bool is_ssa;
504} nir_src;
505
Jason Ekstrandf752eff2015-04-24 10:16:27 -0700506#define NIR_SRC_INIT (nir_src) { { NULL } }
507
508#define nir_foreach_use(reg_or_ssa_def, src) \
509 list_for_each_entry(nir_src, src, &(reg_or_ssa_def)->uses, use_link)
510
511#define nir_foreach_use_safe(reg_or_ssa_def, src) \
512 list_for_each_entry_safe(nir_src, src, &(reg_or_ssa_def)->uses, use_link)
513
514#define nir_foreach_if_use(reg_or_ssa_def, src) \
515 list_for_each_entry(nir_src, src, &(reg_or_ssa_def)->if_uses, use_link)
516
517#define nir_foreach_if_use_safe(reg_or_ssa_def, src) \
518 list_for_each_entry_safe(nir_src, src, &(reg_or_ssa_def)->if_uses, use_link)
Jason Ekstrand300d7292015-04-21 18:00:21 -0700519
Connor Abbott30c46782014-07-31 16:14:51 -0700520typedef struct {
521 union {
522 nir_reg_dest reg;
523 nir_ssa_def ssa;
524 };
525
526 bool is_ssa;
527} nir_dest;
528
Jason Ekstrand300d7292015-04-21 18:00:21 -0700529#define NIR_DEST_INIT (nir_dest) { { { NULL } } }
530
Jason Ekstrandf752eff2015-04-24 10:16:27 -0700531#define nir_foreach_def(reg, dest) \
532 list_for_each_entry(nir_dest, dest, &(reg)->defs, reg.def_link)
533
534#define nir_foreach_def_safe(reg, dest) \
535 list_for_each_entry_safe(nir_dest, dest, &(reg)->defs, reg.def_link)
536
Jason Ekstrand7da60ec2015-01-21 11:10:11 -0800537static inline nir_src
538nir_src_for_ssa(nir_ssa_def *def)
539{
Jason Ekstrand300d7292015-04-21 18:00:21 -0700540 nir_src src = NIR_SRC_INIT;
Jason Ekstrand7da60ec2015-01-21 11:10:11 -0800541
542 src.is_ssa = true;
543 src.ssa = def;
544
545 return src;
546}
547
548static inline nir_src
549nir_src_for_reg(nir_register *reg)
550{
Jason Ekstrand300d7292015-04-21 18:00:21 -0700551 nir_src src = NIR_SRC_INIT;
Jason Ekstrand7da60ec2015-01-21 11:10:11 -0800552
553 src.is_ssa = false;
554 src.reg.reg = reg;
555 src.reg.indirect = NULL;
556 src.reg.base_offset = 0;
557
558 return src;
559}
560
561static inline nir_dest
562nir_dest_for_reg(nir_register *reg)
563{
Jason Ekstrand300d7292015-04-21 18:00:21 -0700564 nir_dest dest = NIR_DEST_INIT;
Jason Ekstrand7da60ec2015-01-21 11:10:11 -0800565
Jason Ekstrand7da60ec2015-01-21 11:10:11 -0800566 dest.reg.reg = reg;
Jason Ekstrand7da60ec2015-01-21 11:10:11 -0800567
568 return dest;
569}
570
Jason Ekstrand8c8fc5f2015-09-09 13:18:29 -0700571void nir_src_copy(nir_src *dest, const nir_src *src, void *instr_or_if);
572void nir_dest_copy(nir_dest *dest, const nir_dest *src, nir_instr *instr);
Connor Abbott30c46782014-07-31 16:14:51 -0700573
574typedef struct {
575 nir_src src;
576
577 /**
578 * \name input modifiers
579 */
580 /*@{*/
581 /**
Jason Ekstrand8599b302014-12-18 17:13:22 -0800582 * For inputs interpreted as floating point, flips the sign bit. For
583 * inputs interpreted as integers, performs the two's complement negation.
Connor Abbott30c46782014-07-31 16:14:51 -0700584 */
585 bool negate;
586
587 /**
588 * Clears the sign bit for floating point values, and computes the integer
589 * absolute value for integers. Note that the negate modifier acts after
590 * the absolute value modifier, therefore if both are set then all inputs
591 * will become negative.
592 */
593 bool abs;
594 /*@}*/
595
596 /**
597 * For each input component, says which component of the register it is
598 * chosen from. Note that which elements of the swizzle are used and which
599 * are ignored are based on the write mask for most opcodes - for example,
600 * a statement like "foo.xzw = bar.zyx" would have a writemask of 1101b and
601 * a swizzle of {2, x, 1, 0} where x means "don't care."
602 */
603 uint8_t swizzle[4];
604} nir_alu_src;
605
606typedef struct {
607 nir_dest dest;
608
609 /**
610 * \name saturate output modifier
611 *
612 * Only valid for opcodes that output floating-point numbers. Clamps the
613 * output to between 0.0 and 1.0 inclusive.
614 */
615
616 bool saturate;
617
618 unsigned write_mask : 4; /* ignored if dest.is_ssa is true */
619} nir_alu_dest;
620
Connor Abbott30c46782014-07-31 16:14:51 -0700621typedef enum {
Jason Ekstrand5ab14892015-01-28 16:27:40 -0800622 nir_type_invalid = 0, /* Not a valid type */
Connor Abbott30c46782014-07-31 16:14:51 -0700623 nir_type_float,
624 nir_type_int,
Jason Ekstrandf5881382015-05-15 09:14:47 -0700625 nir_type_uint,
Connor Abbott30c46782014-07-31 16:14:51 -0700626 nir_type_bool
627} nir_alu_type;
628
Jason Ekstrand46f3e1a2014-12-16 12:22:01 -0800629typedef enum {
630 NIR_OP_IS_COMMUTATIVE = (1 << 0),
631 NIR_OP_IS_ASSOCIATIVE = (1 << 1),
632} nir_op_algebraic_property;
633
Connor Abbott30c46782014-07-31 16:14:51 -0700634typedef struct {
635 const char *name;
636
637 unsigned num_inputs;
638
639 /**
Jason Ekstrand813316d2014-12-16 14:43:26 -0800640 * The number of components in the output
Connor Abbott30c46782014-07-31 16:14:51 -0700641 *
Jason Ekstrand813316d2014-12-16 14:43:26 -0800642 * If non-zero, this is the size of the output and input sizes are
643 * explicitly given; swizzle and writemask are still in effect, but if
644 * the output component is masked out, then the input component may
645 * still be in use.
Connor Abbott30c46782014-07-31 16:14:51 -0700646 *
Jason Ekstrand813316d2014-12-16 14:43:26 -0800647 * If zero, the opcode acts in the standard, per-component manner; the
648 * operation is performed on each component (except the ones that are
649 * masked out) with the input being taken from the input swizzle for
650 * that component.
651 *
652 * The size of some of the inputs may be given (i.e. non-zero) even
653 * though output_size is zero; in that case, the inputs with a zero
654 * size act per-component, while the inputs with non-zero size don't.
Connor Abbott30c46782014-07-31 16:14:51 -0700655 */
656 unsigned output_size;
657
658 /**
Jason Ekstrand8599b302014-12-18 17:13:22 -0800659 * The type of vector that the instruction outputs. Note that the
660 * staurate modifier is only allowed on outputs with the float type.
Connor Abbott30c46782014-07-31 16:14:51 -0700661 */
662
663 nir_alu_type output_type;
664
665 /**
Jason Ekstrand813316d2014-12-16 14:43:26 -0800666 * The number of components in each input
Connor Abbott30c46782014-07-31 16:14:51 -0700667 */
668 unsigned input_sizes[4];
669
670 /**
Jason Ekstrand8599b302014-12-18 17:13:22 -0800671 * The type of vector that each input takes. Note that negate and
672 * absolute value are only allowed on inputs with int or float type and
673 * behave differently on the two.
Connor Abbott30c46782014-07-31 16:14:51 -0700674 */
675 nir_alu_type input_types[4];
Jason Ekstrand46f3e1a2014-12-16 12:22:01 -0800676
677 nir_op_algebraic_property algebraic_properties;
Connor Abbott30c46782014-07-31 16:14:51 -0700678} nir_op_info;
679
680extern const nir_op_info nir_op_infos[nir_num_opcodes];
681
682typedef struct nir_alu_instr {
683 nir_instr instr;
684 nir_op op;
Connor Abbott30c46782014-07-31 16:14:51 -0700685 nir_alu_dest dest;
686 nir_alu_src src[];
687} nir_alu_instr;
688
Jason Ekstrand8c8fc5f2015-09-09 13:18:29 -0700689void nir_alu_src_copy(nir_alu_src *dest, const nir_alu_src *src,
690 nir_alu_instr *instr);
691void nir_alu_dest_copy(nir_alu_dest *dest, const nir_alu_dest *src,
692 nir_alu_instr *instr);
693
Connor Abbott30c46782014-07-31 16:14:51 -0700694/* is this source channel used? */
695static inline bool
696nir_alu_instr_channel_used(nir_alu_instr *instr, unsigned src, unsigned channel)
697{
698 if (nir_op_infos[instr->op].input_sizes[src] > 0)
699 return channel < nir_op_infos[instr->op].input_sizes[src];
700
701 return (instr->dest.write_mask >> channel) & 1;
702}
703
Connor Abbott816f0512015-01-25 11:42:34 -0500704/*
705 * For instructions whose destinations are SSA, get the number of channels
706 * used for a source
707 */
708static inline unsigned
Connor Abbottd6bc3592015-03-17 01:03:28 -0400709nir_ssa_alu_instr_src_components(const nir_alu_instr *instr, unsigned src)
Connor Abbott816f0512015-01-25 11:42:34 -0500710{
711 assert(instr->dest.dest.is_ssa);
712
713 if (nir_op_infos[instr->op].input_sizes[src] > 0)
714 return nir_op_infos[instr->op].input_sizes[src];
715
716 return instr->dest.dest.ssa.num_components;
717}
718
Connor Abbott30c46782014-07-31 16:14:51 -0700719typedef enum {
720 nir_deref_type_var,
721 nir_deref_type_array,
722 nir_deref_type_struct
723} nir_deref_type;
724
725typedef struct nir_deref {
726 nir_deref_type deref_type;
727 struct nir_deref *child;
728 const struct glsl_type *type;
729} nir_deref;
730
731typedef struct {
732 nir_deref deref;
733
734 nir_variable *var;
735} nir_deref_var;
736
Jason Ekstrand4f8230e2014-11-19 12:59:57 -0800737/* This enum describes how the array is referenced. If the deref is
738 * direct then the base_offset is used. If the deref is indirect then then
739 * offset is given by base_offset + indirect. If the deref is a wildcard
740 * then the deref refers to all of the elements of the array at the same
741 * time. Wildcard dereferences are only ever allowed in copy_var
742 * intrinsics and the source and destination derefs must have matching
743 * wildcards.
744 */
Jason Ekstrandb5143ed2014-11-19 12:53:08 -0800745typedef enum {
746 nir_deref_array_type_direct,
747 nir_deref_array_type_indirect,
Jason Ekstrand4f8230e2014-11-19 12:59:57 -0800748 nir_deref_array_type_wildcard,
Jason Ekstrandb5143ed2014-11-19 12:53:08 -0800749} nir_deref_array_type;
750
Connor Abbott30c46782014-07-31 16:14:51 -0700751typedef struct {
752 nir_deref deref;
753
Jason Ekstrandb5143ed2014-11-19 12:53:08 -0800754 nir_deref_array_type deref_array_type;
Connor Abbott30c46782014-07-31 16:14:51 -0700755 unsigned base_offset;
Connor Abbott30c46782014-07-31 16:14:51 -0700756 nir_src indirect;
757} nir_deref_array;
758
759typedef struct {
760 nir_deref deref;
761
Jason Ekstrand829aa982014-11-25 21:36:25 -0800762 unsigned index;
Connor Abbott30c46782014-07-31 16:14:51 -0700763} nir_deref_struct;
764
Jason Ekstrand8edcd1d2014-12-05 11:00:05 -0800765NIR_DEFINE_CAST(nir_deref_as_var, nir_deref, nir_deref_var, deref)
766NIR_DEFINE_CAST(nir_deref_as_array, nir_deref, nir_deref_array, deref)
767NIR_DEFINE_CAST(nir_deref_as_struct, nir_deref, nir_deref_struct, deref)
Connor Abbott30c46782014-07-31 16:14:51 -0700768
Jason Ekstrand6c731d82015-11-07 12:01:50 -0800769/* Returns the last deref in the chain. */
770static inline nir_deref *
771nir_deref_tail(nir_deref *deref)
772{
773 while (deref->child)
774 deref = deref->child;
775 return deref;
776}
777
Connor Abbott30c46782014-07-31 16:14:51 -0700778typedef struct {
779 nir_instr instr;
780
781 unsigned num_params;
782 nir_deref_var **params;
783 nir_deref_var *return_deref;
784
Jason Ekstrand237f2f22015-12-26 10:00:47 -0800785 struct nir_function *callee;
Connor Abbott30c46782014-07-31 16:14:51 -0700786} nir_call_instr;
787
788#define INTRINSIC(name, num_srcs, src_components, has_dest, dest_components, \
789 num_variables, num_indices, flags) \
790 nir_intrinsic_##name,
791
792#define LAST_INTRINSIC(name) nir_last_intrinsic = nir_intrinsic_##name,
793
794typedef enum {
795#include "nir_intrinsics.h"
796 nir_num_intrinsics = nir_last_intrinsic + 1
797} nir_intrinsic_op;
798
799#undef INTRINSIC
800#undef LAST_INTRINSIC
801
Jason Ekstrand8599b302014-12-18 17:13:22 -0800802/** Represents an intrinsic
803 *
804 * An intrinsic is an instruction type for handling things that are
805 * more-or-less regular operations but don't just consume and produce SSA
806 * values like ALU operations do. Intrinsics are not for things that have
807 * special semantic meaning such as phi nodes and parallel copies.
808 * Examples of intrinsics include variable load/store operations, system
809 * value loads, and the like. Even though texturing more-or-less falls
810 * under this category, texturing is its own instruction type because
811 * trying to represent texturing with intrinsics would lead to a
812 * combinatorial explosion of intrinsic opcodes.
813 *
814 * By having a single instruction type for handling a lot of different
815 * cases, optimization passes can look for intrinsics and, for the most
816 * part, completely ignore them. Each intrinsic type also has a few
817 * possible flags that govern whether or not they can be reordered or
818 * eliminated. That way passes like dead code elimination can still work
819 * on intrisics without understanding the meaning of each.
820 *
821 * Each intrinsic has some number of constant indices, some number of
822 * variables, and some number of sources. What these sources, variables,
823 * and indices mean depends on the intrinsic and is documented with the
824 * intrinsic declaration in nir_intrinsics.h. Intrinsics and texture
825 * instructions are the only types of instruction that can operate on
826 * variables.
827 */
Connor Abbott30c46782014-07-31 16:14:51 -0700828typedef struct {
829 nir_instr instr;
830
831 nir_intrinsic_op intrinsic;
832
833 nir_dest dest;
834
Jason Ekstrand8599b302014-12-18 17:13:22 -0800835 /** number of components if this is a vectorized intrinsic
836 *
837 * Similarly to ALU operations, some intrinsics are vectorized.
838 * An intrinsic is vectorized if nir_intrinsic_infos.dest_components == 0.
839 * For vectorized intrinsics, the num_components field specifies the
840 * number of destination components and the number of source components
841 * for all sources with nir_intrinsic_infos.src_components[i] == 0.
842 */
Jason Ekstrand27663db2014-12-03 17:03:19 -0800843 uint8_t num_components;
844
Connor Abbott30c46782014-07-31 16:14:51 -0700845 int const_index[3];
846
847 nir_deref_var *variables[2];
848
Connor Abbott30c46782014-07-31 16:14:51 -0700849 nir_src src[];
850} nir_intrinsic_instr;
851
852/**
853 * \name NIR intrinsics semantic flags
854 *
855 * information about what the compiler can do with the intrinsics.
856 *
857 * \sa nir_intrinsic_info::flags
858 */
Jason Ekstrande4115ca2014-12-19 15:56:55 -0800859typedef enum {
860 /**
861 * whether the intrinsic can be safely eliminated if none of its output
862 * value is not being used.
863 */
864 NIR_INTRINSIC_CAN_ELIMINATE = (1 << 0),
Connor Abbott30c46782014-07-31 16:14:51 -0700865
Jason Ekstrande4115ca2014-12-19 15:56:55 -0800866 /**
867 * Whether the intrinsic can be reordered with respect to any other
868 * intrinsic, i.e. whether the only reordering dependencies of the
869 * intrinsic are due to the register reads/writes.
870 */
871 NIR_INTRINSIC_CAN_REORDER = (1 << 1),
872} nir_intrinsic_semantic_flag;
Connor Abbott30c46782014-07-31 16:14:51 -0700873
874#define NIR_INTRINSIC_MAX_INPUTS 4
875
876typedef struct {
877 const char *name;
878
879 unsigned num_srcs; /** < number of register/SSA inputs */
880
Jason Ekstrand27663db2014-12-03 17:03:19 -0800881 /** number of components of each input register
882 *
883 * If this value is 0, the number of components is given by the
884 * num_components field of nir_intrinsic_instr.
885 */
Connor Abbott30c46782014-07-31 16:14:51 -0700886 unsigned src_components[NIR_INTRINSIC_MAX_INPUTS];
887
888 bool has_dest;
889
Jason Ekstrand27663db2014-12-03 17:03:19 -0800890 /** number of components of the output register
891 *
892 * If this value is 0, the number of components is given by the
893 * num_components field of nir_intrinsic_instr.
894 */
Connor Abbott30c46782014-07-31 16:14:51 -0700895 unsigned dest_components;
896
897 /** the number of inputs/outputs that are variables */
898 unsigned num_variables;
899
900 /** the number of constant indices used by the intrinsic */
901 unsigned num_indices;
902
903 /** semantic flags for calls to this intrinsic */
Jason Ekstrande4115ca2014-12-19 15:56:55 -0800904 nir_intrinsic_semantic_flag flags;
Connor Abbott30c46782014-07-31 16:14:51 -0700905} nir_intrinsic_info;
906
907extern const nir_intrinsic_info nir_intrinsic_infos[nir_num_intrinsics];
908
909/**
910 * \group texture information
911 *
912 * This gives semantic information about textures which is useful to the
913 * frontend, the backend, and lowering passes, but not the optimizer.
914 */
915
916typedef enum {
917 nir_tex_src_coord,
918 nir_tex_src_projector,
919 nir_tex_src_comparitor, /* shadow comparitor */
920 nir_tex_src_offset,
921 nir_tex_src_bias,
922 nir_tex_src_lod,
923 nir_tex_src_ms_index, /* MSAA sample index */
924 nir_tex_src_ddx,
925 nir_tex_src_ddy,
Jason Ekstrand62ac0ee2014-12-05 14:46:24 -0800926 nir_tex_src_sampler_offset, /* < dynamically uniform indirect offset */
Jason Ekstrand4aa61622015-01-09 20:01:13 -0800927 nir_num_tex_src_types
928} nir_tex_src_type;
929
930typedef struct {
931 nir_src src;
932 nir_tex_src_type src_type;
933} nir_tex_src;
Connor Abbott30c46782014-07-31 16:14:51 -0700934
935typedef enum {
936 nir_texop_tex, /**< Regular texture look-up */
937 nir_texop_txb, /**< Texture look-up with LOD bias */
938 nir_texop_txl, /**< Texture look-up with explicit LOD */
939 nir_texop_txd, /**< Texture look-up with partial derivatvies */
940 nir_texop_txf, /**< Texel fetch with explicit LOD */
941 nir_texop_txf_ms, /**< Multisample texture fetch */
942 nir_texop_txs, /**< Texture size */
943 nir_texop_lod, /**< Texture lod query */
944 nir_texop_tg4, /**< Texture gather */
Ilia Mirkin1807a082015-08-27 23:05:03 -0400945 nir_texop_query_levels, /**< Texture levels query */
946 nir_texop_texture_samples, /**< Texture samples query */
Ian Romanick457bb292015-11-17 17:09:09 -0800947 nir_texop_samples_identical, /**< Query whether all samples are definitely
948 * identical.
949 */
Connor Abbott30c46782014-07-31 16:14:51 -0700950} nir_texop;
951
952typedef struct {
953 nir_instr instr;
954
Connor Abbott30c46782014-07-31 16:14:51 -0700955 enum glsl_sampler_dim sampler_dim;
956 nir_alu_type dest_type;
957
958 nir_texop op;
959 nir_dest dest;
Jason Ekstrand4aa61622015-01-09 20:01:13 -0800960 nir_tex_src *src;
Connor Abbott30c46782014-07-31 16:14:51 -0700961 unsigned num_srcs, coord_components;
962 bool is_array, is_shadow;
963
964 /**
965 * If is_shadow is true, whether this is the old-style shadow that outputs 4
966 * components or the new-style shadow that outputs 1 component.
967 */
968 bool is_new_style_shadow;
969
970 /* constant offset - must be 0 if the offset source is used */
971 int const_offset[4];
972
973 /* gather component selector */
974 unsigned component : 2;
975
Jason Ekstrand62ac0ee2014-12-05 14:46:24 -0800976 /** The sampler index
977 *
978 * If this texture instruction has a nir_tex_src_sampler_offset source,
979 * then the sampler index is given by sampler_index + sampler_offset.
980 */
Connor Abbott30c46782014-07-31 16:14:51 -0700981 unsigned sampler_index;
Jason Ekstrand62ac0ee2014-12-05 14:46:24 -0800982
983 /** The size of the sampler array or 0 if it's not an array */
984 unsigned sampler_array_size;
985
Connor Abbott30c46782014-07-31 16:14:51 -0700986 nir_deref_var *sampler; /* if this is NULL, use sampler_index instead */
987} nir_tex_instr;
988
989static inline unsigned
990nir_tex_instr_dest_size(nir_tex_instr *instr)
991{
Jason Ekstrand94669cb2015-04-09 21:03:02 -0700992 switch (instr->op) {
993 case nir_texop_txs: {
Connor Abbott30c46782014-07-31 16:14:51 -0700994 unsigned ret;
995 switch (instr->sampler_dim) {
996 case GLSL_SAMPLER_DIM_1D:
997 case GLSL_SAMPLER_DIM_BUF:
998 ret = 1;
999 break;
1000 case GLSL_SAMPLER_DIM_2D:
1001 case GLSL_SAMPLER_DIM_CUBE:
1002 case GLSL_SAMPLER_DIM_MS:
1003 case GLSL_SAMPLER_DIM_RECT:
1004 case GLSL_SAMPLER_DIM_EXTERNAL:
1005 ret = 2;
1006 break;
1007 case GLSL_SAMPLER_DIM_3D:
1008 ret = 3;
1009 break;
1010 default:
Matt Turner28b7c6b2015-01-21 20:22:18 -08001011 unreachable("not reached");
Connor Abbott30c46782014-07-31 16:14:51 -07001012 }
1013 if (instr->is_array)
1014 ret++;
1015 return ret;
1016 }
1017
Jason Ekstrand02f03fc2015-04-09 21:04:21 -07001018 case nir_texop_lod:
Connor Abbott30c46782014-07-31 16:14:51 -07001019 return 2;
1020
Ilia Mirkin1807a082015-08-27 23:05:03 -04001021 case nir_texop_texture_samples:
Jason Ekstrand02f03fc2015-04-09 21:04:21 -07001022 case nir_texop_query_levels:
Ian Romanick457bb292015-11-17 17:09:09 -08001023 case nir_texop_samples_identical:
Jason Ekstrand02f03fc2015-04-09 21:04:21 -07001024 return 1;
1025
Jason Ekstrand94669cb2015-04-09 21:03:02 -07001026 default:
1027 if (instr->is_shadow && instr->is_new_style_shadow)
1028 return 1;
Connor Abbott30c46782014-07-31 16:14:51 -07001029
Jason Ekstrand94669cb2015-04-09 21:03:02 -07001030 return 4;
1031 }
Connor Abbott30c46782014-07-31 16:14:51 -07001032}
1033
Jason Ekstrand6921b172015-11-11 18:30:09 -08001034/* Returns true if this texture operation queries something about the texture
1035 * rather than actually sampling it.
1036 */
1037static inline bool
1038nir_tex_instr_is_query(nir_tex_instr *instr)
1039{
1040 switch (instr->op) {
1041 case nir_texop_txs:
1042 case nir_texop_lod:
1043 case nir_texop_texture_samples:
1044 case nir_texop_query_levels:
1045 return true;
1046 case nir_texop_tex:
1047 case nir_texop_txb:
1048 case nir_texop_txl:
1049 case nir_texop_txd:
1050 case nir_texop_txf:
1051 case nir_texop_txf_ms:
1052 case nir_texop_tg4:
1053 return false;
1054 default:
1055 unreachable("Invalid texture opcode");
1056 }
1057}
1058
Connor Abbott30c46782014-07-31 16:14:51 -07001059static inline unsigned
1060nir_tex_instr_src_size(nir_tex_instr *instr, unsigned src)
1061{
Jason Ekstrand4aa61622015-01-09 20:01:13 -08001062 if (instr->src[src].src_type == nir_tex_src_coord)
Connor Abbott30c46782014-07-31 16:14:51 -07001063 return instr->coord_components;
1064
1065
Jason Ekstrand4aa61622015-01-09 20:01:13 -08001066 if (instr->src[src].src_type == nir_tex_src_offset ||
1067 instr->src[src].src_type == nir_tex_src_ddx ||
1068 instr->src[src].src_type == nir_tex_src_ddy) {
Connor Abbott30c46782014-07-31 16:14:51 -07001069 if (instr->is_array)
1070 return instr->coord_components - 1;
1071 else
1072 return instr->coord_components;
1073 }
1074
1075 return 1;
1076}
1077
1078static inline int
Jason Ekstrand4aa61622015-01-09 20:01:13 -08001079nir_tex_instr_src_index(nir_tex_instr *instr, nir_tex_src_type type)
Connor Abbott30c46782014-07-31 16:14:51 -07001080{
1081 for (unsigned i = 0; i < instr->num_srcs; i++)
Jason Ekstrand4aa61622015-01-09 20:01:13 -08001082 if (instr->src[i].src_type == type)
Connor Abbott30c46782014-07-31 16:14:51 -07001083 return (int) i;
1084
1085 return -1;
1086}
1087
1088typedef struct {
1089 union {
1090 float f[4];
1091 int32_t i[4];
1092 uint32_t u[4];
1093 };
1094} nir_const_value;
1095
1096typedef struct {
1097 nir_instr instr;
1098
Jason Ekstrand2c7da782014-12-15 17:32:56 -08001099 nir_const_value value;
Connor Abbott30c46782014-07-31 16:14:51 -07001100
Jason Ekstrand2c7da782014-12-15 17:32:56 -08001101 nir_ssa_def def;
Connor Abbott30c46782014-07-31 16:14:51 -07001102} nir_load_const_instr;
1103
1104typedef enum {
1105 nir_jump_return,
1106 nir_jump_break,
1107 nir_jump_continue,
1108} nir_jump_type;
1109
1110typedef struct {
1111 nir_instr instr;
1112 nir_jump_type type;
1113} nir_jump_instr;
1114
1115/* creates a new SSA variable in an undefined state */
1116
1117typedef struct {
1118 nir_instr instr;
1119 nir_ssa_def def;
1120} nir_ssa_undef_instr;
1121
1122typedef struct {
1123 struct exec_node node;
Jason Ekstrand8599b302014-12-18 17:13:22 -08001124
1125 /* The predecessor block corresponding to this source */
Connor Abbott30c46782014-07-31 16:14:51 -07001126 struct nir_block *pred;
Jason Ekstrand8599b302014-12-18 17:13:22 -08001127
Connor Abbott30c46782014-07-31 16:14:51 -07001128 nir_src src;
1129} nir_phi_src;
1130
Jason Ekstrand194f6232015-01-20 16:30:14 -08001131#define nir_foreach_phi_src(phi, entry) \
1132 foreach_list_typed(nir_phi_src, entry, node, &(phi)->srcs)
Connor Abbottf41e1082015-07-21 19:54:20 -07001133#define nir_foreach_phi_src_safe(phi, entry) \
1134 foreach_list_typed_safe(nir_phi_src, entry, node, &(phi)->srcs)
Jason Ekstrand194f6232015-01-20 16:30:14 -08001135
Connor Abbott30c46782014-07-31 16:14:51 -07001136typedef struct {
1137 nir_instr instr;
1138
Jason Ekstrand8599b302014-12-18 17:13:22 -08001139 struct exec_list srcs; /** < list of nir_phi_src */
1140
Connor Abbott30c46782014-07-31 16:14:51 -07001141 nir_dest dest;
1142} nir_phi_instr;
1143
Jason Ekstrand366181d2014-10-30 21:04:15 -07001144typedef struct {
1145 struct exec_node node;
1146 nir_src src;
1147 nir_dest dest;
Jason Ekstrand40ca1292014-12-17 16:53:04 -08001148} nir_parallel_copy_entry;
1149
1150#define nir_foreach_parallel_copy_entry(pcopy, entry) \
1151 foreach_list_typed(nir_parallel_copy_entry, entry, node, &(pcopy)->entries)
Jason Ekstrand366181d2014-10-30 21:04:15 -07001152
1153typedef struct {
1154 nir_instr instr;
Jason Ekstrand40ca1292014-12-17 16:53:04 -08001155
1156 /* A list of nir_parallel_copy_entry's. The sources of all of the
1157 * entries are copied to the corresponding destinations "in parallel".
1158 * In other words, if we have two entries: a -> b and b -> a, the values
1159 * get swapped.
1160 */
1161 struct exec_list entries;
Jason Ekstrand366181d2014-10-30 21:04:15 -07001162} nir_parallel_copy_instr;
1163
Jason Ekstrand8edcd1d2014-12-05 11:00:05 -08001164NIR_DEFINE_CAST(nir_instr_as_alu, nir_instr, nir_alu_instr, instr)
1165NIR_DEFINE_CAST(nir_instr_as_call, nir_instr, nir_call_instr, instr)
1166NIR_DEFINE_CAST(nir_instr_as_jump, nir_instr, nir_jump_instr, instr)
Jason Ekstrandcd4b9952014-12-05 11:03:06 -08001167NIR_DEFINE_CAST(nir_instr_as_tex, nir_instr, nir_tex_instr, instr)
Jason Ekstrand8edcd1d2014-12-05 11:00:05 -08001168NIR_DEFINE_CAST(nir_instr_as_intrinsic, nir_instr, nir_intrinsic_instr, instr)
1169NIR_DEFINE_CAST(nir_instr_as_load_const, nir_instr, nir_load_const_instr, instr)
1170NIR_DEFINE_CAST(nir_instr_as_ssa_undef, nir_instr, nir_ssa_undef_instr, instr)
1171NIR_DEFINE_CAST(nir_instr_as_phi, nir_instr, nir_phi_instr, instr)
1172NIR_DEFINE_CAST(nir_instr_as_parallel_copy, nir_instr,
1173 nir_parallel_copy_instr, instr)
Connor Abbott30c46782014-07-31 16:14:51 -07001174
1175/*
1176 * Control flow
1177 *
1178 * Control flow consists of a tree of control flow nodes, which include
1179 * if-statements and loops. The leaves of the tree are basic blocks, lists of
1180 * instructions that always run start-to-finish. Each basic block also keeps
1181 * track of its successors (blocks which may run immediately after the current
1182 * block) and predecessors (blocks which could have run immediately before the
1183 * current block). Each function also has a start block and an end block which
1184 * all return statements point to (which is always empty). Together, all the
1185 * blocks with their predecessors and successors make up the control flow
1186 * graph (CFG) of the function. There are helpers that modify the tree of
1187 * control flow nodes while modifying the CFG appropriately; these should be
1188 * used instead of modifying the tree directly.
1189 */
1190
1191typedef enum {
1192 nir_cf_node_block,
1193 nir_cf_node_if,
1194 nir_cf_node_loop,
1195 nir_cf_node_function
1196} nir_cf_node_type;
1197
1198typedef struct nir_cf_node {
1199 struct exec_node node;
1200 nir_cf_node_type type;
1201 struct nir_cf_node *parent;
1202} nir_cf_node;
1203
1204typedef struct nir_block {
1205 nir_cf_node cf_node;
Connor Abbott30c46782014-07-31 16:14:51 -07001206
Jason Ekstrand8599b302014-12-18 17:13:22 -08001207 struct exec_list instr_list; /** < list of nir_instr */
1208
1209 /** generic block index; generated by nir_index_blocks */
Connor Abbott30c46782014-07-31 16:14:51 -07001210 unsigned index;
1211
1212 /*
1213 * Each block can only have up to 2 successors, so we put them in a simple
1214 * array - no need for anything more complicated.
1215 */
1216 struct nir_block *successors[2];
1217
Jason Ekstrand8599b302014-12-18 17:13:22 -08001218 /* Set of nir_block predecessors in the CFG */
Connor Abbott30c46782014-07-31 16:14:51 -07001219 struct set *predecessors;
Connor Abbottb559ee72014-07-18 16:13:11 -07001220
1221 /*
1222 * this node's immediate dominator in the dominance tree - set to NULL for
1223 * the start block.
1224 */
1225 struct nir_block *imm_dom;
1226
1227 /* This node's children in the dominance tree */
1228 unsigned num_dom_children;
1229 struct nir_block **dom_children;
1230
Jason Ekstrand8599b302014-12-18 17:13:22 -08001231 /* Set of nir_block's on the dominance frontier of this block */
Connor Abbottb559ee72014-07-18 16:13:11 -07001232 struct set *dom_frontier;
Jason Ekstrandf86902e2014-10-29 14:17:17 -07001233
Jason Ekstrandf481a942015-02-06 12:45:43 -08001234 /*
1235 * These two indices have the property that dom_{pre,post}_index for each
1236 * child of this block in the dominance tree will always be between
1237 * dom_pre_index and dom_post_index for this block, which makes testing if
1238 * a given block is dominated by another block an O(1) operation.
1239 */
1240 unsigned dom_pre_index, dom_post_index;
1241
Jason Ekstrandf86902e2014-10-29 14:17:17 -07001242 /* live in and out for this block; used for liveness analysis */
1243 BITSET_WORD *live_in;
1244 BITSET_WORD *live_out;
Connor Abbott30c46782014-07-31 16:14:51 -07001245} nir_block;
1246
Jason Ekstranded13f4e2014-12-19 15:30:15 -08001247static inline nir_instr *
1248nir_block_first_instr(nir_block *block)
1249{
1250 struct exec_node *head = exec_list_get_head(&block->instr_list);
1251 return exec_node_data(nir_instr, head, node);
1252}
1253
1254static inline nir_instr *
1255nir_block_last_instr(nir_block *block)
1256{
1257 struct exec_node *tail = exec_list_get_tail(&block->instr_list);
1258 return exec_node_data(nir_instr, tail, node);
1259}
Connor Abbott30c46782014-07-31 16:14:51 -07001260
1261#define nir_foreach_instr(block, instr) \
1262 foreach_list_typed(nir_instr, instr, node, &(block)->instr_list)
1263#define nir_foreach_instr_reverse(block, instr) \
1264 foreach_list_typed_reverse(nir_instr, instr, node, &(block)->instr_list)
1265#define nir_foreach_instr_safe(block, instr) \
1266 foreach_list_typed_safe(nir_instr, instr, node, &(block)->instr_list)
Matt Turner5a6f0bf2015-11-30 09:24:23 -08001267#define nir_foreach_instr_reverse_safe(block, instr) \
1268 foreach_list_typed_reverse_safe(nir_instr, instr, node, &(block)->instr_list)
Connor Abbott30c46782014-07-31 16:14:51 -07001269
Jason Ekstrandf752eff2015-04-24 10:16:27 -07001270typedef struct nir_if {
Connor Abbott30c46782014-07-31 16:14:51 -07001271 nir_cf_node cf_node;
1272 nir_src condition;
Jason Ekstrand8599b302014-12-18 17:13:22 -08001273
1274 struct exec_list then_list; /** < list of nir_cf_node */
1275 struct exec_list else_list; /** < list of nir_cf_node */
Connor Abbott30c46782014-07-31 16:14:51 -07001276} nir_if;
1277
Jason Ekstranded13f4e2014-12-19 15:30:15 -08001278static inline nir_cf_node *
1279nir_if_first_then_node(nir_if *if_stmt)
1280{
1281 struct exec_node *head = exec_list_get_head(&if_stmt->then_list);
1282 return exec_node_data(nir_cf_node, head, node);
1283}
1284
1285static inline nir_cf_node *
1286nir_if_last_then_node(nir_if *if_stmt)
1287{
1288 struct exec_node *tail = exec_list_get_tail(&if_stmt->then_list);
1289 return exec_node_data(nir_cf_node, tail, node);
1290}
1291
1292static inline nir_cf_node *
1293nir_if_first_else_node(nir_if *if_stmt)
1294{
1295 struct exec_node *head = exec_list_get_head(&if_stmt->else_list);
1296 return exec_node_data(nir_cf_node, head, node);
1297}
1298
1299static inline nir_cf_node *
1300nir_if_last_else_node(nir_if *if_stmt)
1301{
1302 struct exec_node *tail = exec_list_get_tail(&if_stmt->else_list);
1303 return exec_node_data(nir_cf_node, tail, node);
1304}
Connor Abbott30c46782014-07-31 16:14:51 -07001305
1306typedef struct {
1307 nir_cf_node cf_node;
Jason Ekstrand8599b302014-12-18 17:13:22 -08001308
1309 struct exec_list body; /** < list of nir_cf_node */
Connor Abbott30c46782014-07-31 16:14:51 -07001310} nir_loop;
1311
Jason Ekstranded13f4e2014-12-19 15:30:15 -08001312static inline nir_cf_node *
1313nir_loop_first_cf_node(nir_loop *loop)
1314{
1315 return exec_node_data(nir_cf_node, exec_list_get_head(&loop->body), node);
1316}
1317
1318static inline nir_cf_node *
1319nir_loop_last_cf_node(nir_loop *loop)
1320{
1321 return exec_node_data(nir_cf_node, exec_list_get_tail(&loop->body), node);
1322}
Connor Abbott30c46782014-07-31 16:14:51 -07001323
Jason Ekstrand49911cf2014-10-29 12:42:54 -07001324/**
1325 * Various bits of metadata that can may be created or required by
1326 * optimization and analysis passes
1327 */
1328typedef enum {
1329 nir_metadata_none = 0x0,
1330 nir_metadata_block_index = 0x1,
1331 nir_metadata_dominance = 0x2,
Kenneth Graunke5c6f2152015-11-03 17:15:24 -08001332 nir_metadata_live_ssa_defs = 0x4,
Kenneth Graunke9ff71b62015-11-03 00:31:22 -08001333 nir_metadata_not_properly_reset = 0x8,
Jason Ekstrand49911cf2014-10-29 12:42:54 -07001334} nir_metadata;
1335
Connor Abbott30c46782014-07-31 16:14:51 -07001336typedef struct {
1337 nir_cf_node cf_node;
1338
Jason Ekstrand237f2f22015-12-26 10:00:47 -08001339 /** pointer to the function of which this is an implementation */
1340 struct nir_function *function;
Connor Abbott30c46782014-07-31 16:14:51 -07001341
1342 struct exec_list body; /** < list of nir_cf_node */
1343
Kenneth Graunke8e0d4ef2015-08-06 18:18:40 -07001344 nir_block *end_block;
Connor Abbott30c46782014-07-31 16:14:51 -07001345
1346 /** list for all local variables in the function */
1347 struct exec_list locals;
1348
1349 /** array of variables used as parameters */
1350 unsigned num_params;
1351 nir_variable **params;
1352
1353 /** variable used to hold the result of the function */
1354 nir_variable *return_var;
1355
1356 /** list of local registers in the function */
1357 struct exec_list registers;
1358
1359 /** next available local register index */
1360 unsigned reg_alloc;
1361
1362 /** next available SSA value index */
1363 unsigned ssa_alloc;
1364
1365 /* total number of basic blocks, only valid when block_index_dirty = false */
1366 unsigned num_blocks;
1367
Jason Ekstrand49911cf2014-10-29 12:42:54 -07001368 nir_metadata valid_metadata;
Connor Abbott30c46782014-07-31 16:14:51 -07001369} nir_function_impl;
1370
Kenneth Graunke8e0d4ef2015-08-06 18:18:40 -07001371static inline nir_block *
1372nir_start_block(nir_function_impl *impl)
1373{
1374 return (nir_block *) exec_list_get_head(&impl->body);
1375}
1376
Jason Ekstranded13f4e2014-12-19 15:30:15 -08001377static inline nir_cf_node *
1378nir_cf_node_next(nir_cf_node *node)
1379{
Jason Ekstrand3d25afc2015-02-04 21:22:45 -08001380 struct exec_node *next = exec_node_get_next(&node->node);
1381 if (exec_node_is_tail_sentinel(next))
1382 return NULL;
1383 else
1384 return exec_node_data(nir_cf_node, next, node);
Jason Ekstranded13f4e2014-12-19 15:30:15 -08001385}
Connor Abbott30c46782014-07-31 16:14:51 -07001386
Jason Ekstranded13f4e2014-12-19 15:30:15 -08001387static inline nir_cf_node *
1388nir_cf_node_prev(nir_cf_node *node)
1389{
Jason Ekstrand3d25afc2015-02-04 21:22:45 -08001390 struct exec_node *prev = exec_node_get_prev(&node->node);
1391 if (exec_node_is_head_sentinel(prev))
1392 return NULL;
1393 else
1394 return exec_node_data(nir_cf_node, prev, node);
Jason Ekstranded13f4e2014-12-19 15:30:15 -08001395}
Connor Abbott30c46782014-07-31 16:14:51 -07001396
Jason Ekstranded13f4e2014-12-19 15:30:15 -08001397static inline bool
1398nir_cf_node_is_first(const nir_cf_node *node)
1399{
1400 return exec_node_is_head_sentinel(node->node.prev);
1401}
Connor Abbott30c46782014-07-31 16:14:51 -07001402
Jason Ekstranded13f4e2014-12-19 15:30:15 -08001403static inline bool
1404nir_cf_node_is_last(const nir_cf_node *node)
1405{
1406 return exec_node_is_tail_sentinel(node->node.next);
1407}
Connor Abbott30c46782014-07-31 16:14:51 -07001408
Jason Ekstrand8edcd1d2014-12-05 11:00:05 -08001409NIR_DEFINE_CAST(nir_cf_node_as_block, nir_cf_node, nir_block, cf_node)
1410NIR_DEFINE_CAST(nir_cf_node_as_if, nir_cf_node, nir_if, cf_node)
1411NIR_DEFINE_CAST(nir_cf_node_as_loop, nir_cf_node, nir_loop, cf_node)
1412NIR_DEFINE_CAST(nir_cf_node_as_function, nir_cf_node, nir_function_impl, cf_node)
Connor Abbott30c46782014-07-31 16:14:51 -07001413
1414typedef enum {
1415 nir_parameter_in,
1416 nir_parameter_out,
1417 nir_parameter_inout,
1418} nir_parameter_type;
1419
1420typedef struct {
1421 nir_parameter_type param_type;
1422 const struct glsl_type *type;
1423} nir_parameter;
1424
Jason Ekstrand237f2f22015-12-26 10:00:47 -08001425typedef struct nir_function {
Connor Abbott30c46782014-07-31 16:14:51 -07001426 struct exec_node node;
1427
Jason Ekstrand237f2f22015-12-26 10:00:47 -08001428 const char *name;
1429 struct nir_shader *shader;
1430
Connor Abbott30c46782014-07-31 16:14:51 -07001431 unsigned num_params;
1432 nir_parameter *params;
1433 const struct glsl_type *return_type;
1434
Jason Ekstrand237f2f22015-12-26 10:00:47 -08001435 /** The implementation of this function.
1436 *
1437 * If the function is only declared and not implemented, this is NULL.
1438 */
1439 nir_function_impl *impl;
Connor Abbott30c46782014-07-31 16:14:51 -07001440} nir_function;
1441
Eric Anholtf90bb542015-02-02 16:13:49 -08001442typedef struct nir_shader_compiler_options {
Kenneth Graunke7295f4f2016-01-05 05:09:46 -08001443 bool lower_fdiv;
Eric Anholte5ecf8e2015-01-30 13:49:48 -08001444 bool lower_ffma;
Eric Anholtafa9fc12015-02-18 12:24:38 -08001445 bool lower_flrp;
Eric Anholt8e9dbff2015-01-27 16:22:54 -08001446 bool lower_fpow;
Eric Anholt1907a3a2015-01-30 13:53:39 -08001447 bool lower_fsat;
Eric Anholtcb95a222015-01-28 10:39:29 -08001448 bool lower_fsqrt;
Jason Ekstrandd00abcc2016-01-06 15:30:38 -08001449 bool lower_fmod;
1450 bool lower_bitfield_insert;
1451 bool lower_uadd_carry;
1452 bool lower_usub_borrow;
Eric Anholt42a8ace2015-01-28 10:52:53 -08001453 /** lowers fneg and ineg to fsub and isub. */
1454 bool lower_negate;
Rob Clark58add762015-04-04 08:13:44 -04001455 /** lowers fsub and isub to fadd+fneg and iadd+ineg. */
1456 bool lower_sub;
Kenneth Graunkeb200cbb2015-03-06 01:17:22 -08001457
Rob Clark6829d762015-03-31 11:25:19 -04001458 /* lower {slt,sge,seq,sne} to {flt,fge,feq,fne} + b2f: */
1459 bool lower_scmp;
1460
Jason Ekstrand47739c72015-09-10 10:51:46 -07001461 /* Does the native fdot instruction replicate its result for four
1462 * components? If so, then opt_algebraic_late will turn all fdotN
1463 * instructions into fdot_replicatedN instructions.
1464 */
1465 bool fdot_replicates;
1466
Rob Clarkd9efe402015-09-14 11:13:19 -04001467 /** lowers ffract to fsub+ffloor: */
1468 bool lower_ffract;
1469
Kenneth Graunkeb200cbb2015-03-06 01:17:22 -08001470 /**
1471 * Does the driver support real 32-bit integers? (Otherwise, integers
1472 * are simulated by floats.)
1473 */
1474 bool native_integers;
Eric Anholtf90bb542015-02-02 16:13:49 -08001475} nir_shader_compiler_options;
1476
Jason Ekstrande4fea482015-08-05 17:14:59 -07001477typedef struct nir_shader_info {
1478 const char *name;
1479
Jason Ekstrand5d4bc5e2015-10-05 16:54:36 -07001480 /* Descriptive name provided by the client; may be NULL */
1481 const char *label;
1482
Jason Ekstrande4fea482015-08-05 17:14:59 -07001483 /* Number of textures used by this shader */
1484 unsigned num_textures;
1485 /* Number of uniform buffers used by this shader */
1486 unsigned num_ubos;
1487 /* Number of atomic buffers used by this shader */
1488 unsigned num_abos;
1489 /* Number of shader storage buffers used by this shader */
1490 unsigned num_ssbos;
1491 /* Number of images used by this shader */
1492 unsigned num_images;
1493
1494 /* Which inputs are actually read */
1495 uint64_t inputs_read;
1496 /* Which outputs are actually written */
1497 uint64_t outputs_written;
1498 /* Which system values are actually read */
1499 uint64_t system_values_read;
1500
Kenneth Graunkedb546732015-10-09 15:49:49 -07001501 /* Which patch inputs are actually read */
1502 uint32_t patch_inputs_read;
1503 /* Which patch outputs are actually written */
1504 uint32_t patch_outputs_written;
1505
Jason Ekstrande4fea482015-08-05 17:14:59 -07001506 /* Whether or not this shader ever uses textureGather() */
1507 bool uses_texture_gather;
1508
1509 /* Whether or not this shader uses the gl_ClipDistance output */
1510 bool uses_clip_distance_out;
1511
1512 /* Whether or not separate shader objects were used */
1513 bool separate_shader;
Jason Ekstrand7a8d06b2015-10-01 18:27:38 -07001514
Kenneth Graunke7768b802015-10-02 15:55:05 -07001515 /** Was this shader linked with any transform feedback varyings? */
1516 bool has_transform_feedback_varyings;
1517
Jason Ekstrandfe399f32015-10-08 15:36:51 -07001518 union {
1519 struct {
Jason Ekstrand4eb84a02015-10-20 16:35:44 -07001520 /** The number of vertices recieves per input primitive */
1521 unsigned vertices_in;
1522
1523 /** The output primitive type (GL enum value) */
1524 unsigned output_primitive;
1525
Jason Ekstrandfe399f32015-10-08 15:36:51 -07001526 /** The maximum number of vertices the geometry shader might write. */
1527 unsigned vertices_out;
Jason Ekstrand7a8d06b2015-10-01 18:27:38 -07001528
Jason Ekstrandfe399f32015-10-08 15:36:51 -07001529 /** 1 .. MAX_GEOMETRY_SHADER_INVOCATIONS */
1530 unsigned invocations;
Jason Ekstrand4eb84a02015-10-20 16:35:44 -07001531
1532 /** Whether or not this shader uses EndPrimitive */
1533 bool uses_end_primitive;
1534
1535 /** Whether or not this shader uses non-zero streams */
1536 bool uses_streams;
Jason Ekstrandfe399f32015-10-08 15:36:51 -07001537 } gs;
Jason Ekstrand4889c732015-10-08 15:02:25 -07001538
1539 struct {
Jason Ekstrand688d2e42015-10-08 15:47:09 -07001540 bool uses_discard;
1541
1542 /**
1543 * Whether early fragment tests are enabled as defined by
1544 * ARB_shader_image_load_store.
1545 */
1546 bool early_fragment_tests;
1547
1548 /** gl_FragDepth layout for ARB_conservative_depth. */
1549 enum gl_frag_depth_layout depth_layout;
1550 } fs;
1551
1552 struct {
Jason Ekstrand4889c732015-10-08 15:02:25 -07001553 unsigned local_size[3];
1554 } cs;
Kenneth Graunke2631bfd2015-11-17 14:56:32 -08001555
1556 struct {
1557 /** The number of vertices in the TCS output patch. */
1558 unsigned vertices_out;
1559 } tcs;
Jason Ekstrandfe399f32015-10-08 15:36:51 -07001560 };
Jason Ekstrande4fea482015-08-05 17:14:59 -07001561} nir_shader_info;
1562
Connor Abbott30c46782014-07-31 16:14:51 -07001563typedef struct nir_shader {
Rob Clarkba782602015-09-17 18:18:19 -04001564 /** list of uniforms (nir_variable) */
Jason Ekstrand63911512015-03-18 12:34:09 -07001565 struct exec_list uniforms;
Connor Abbott30c46782014-07-31 16:14:51 -07001566
Rob Clarkba782602015-09-17 18:18:19 -04001567 /** list of inputs (nir_variable) */
Jason Ekstrand63911512015-03-18 12:34:09 -07001568 struct exec_list inputs;
Connor Abbott30c46782014-07-31 16:14:51 -07001569
Rob Clarkba782602015-09-17 18:18:19 -04001570 /** list of outputs (nir_variable) */
Jason Ekstrand63911512015-03-18 12:34:09 -07001571 struct exec_list outputs;
Connor Abbott30c46782014-07-31 16:14:51 -07001572
Eric Anholtf90bb542015-02-02 16:13:49 -08001573 /** Set of driver-specific options for the shader.
1574 *
1575 * The memory for the options is expected to be kept in a single static
1576 * copy by the driver.
1577 */
1578 const struct nir_shader_compiler_options *options;
1579
Jason Ekstrande4fea482015-08-05 17:14:59 -07001580 /** Various bits of compile-time information about a given shader */
1581 struct nir_shader_info info;
1582
Rob Clarkba782602015-09-17 18:18:19 -04001583 /** list of global variables in the shader (nir_variable) */
Connor Abbott30c46782014-07-31 16:14:51 -07001584 struct exec_list globals;
1585
Rob Clark7c72f592015-09-17 21:06:11 -04001586 /** list of system value variables in the shader (nir_variable) */
Connor Abbott30c46782014-07-31 16:14:51 -07001587 struct exec_list system_values;
1588
Jason Ekstrand8599b302014-12-18 17:13:22 -08001589 struct exec_list functions; /** < list of nir_function */
Connor Abbott30c46782014-07-31 16:14:51 -07001590
Jason Ekstrand8599b302014-12-18 17:13:22 -08001591 /** list of global register in the shader */
Connor Abbott30c46782014-07-31 16:14:51 -07001592 struct exec_list registers;
1593
Connor Abbott30c46782014-07-31 16:14:51 -07001594 /** next available global register index */
1595 unsigned reg_alloc;
Connor Abbott494790b2014-08-05 10:54:27 -07001596
1597 /**
1598 * the highest index a load_input_*, load_uniform_*, etc. intrinsic can
1599 * access plus one
1600 */
1601 unsigned num_inputs, num_uniforms, num_outputs;
Kenneth Graunked4d5b432015-08-18 01:48:34 -07001602
1603 /** The shader stage, such as MESA_SHADER_VERTEX. */
1604 gl_shader_stage stage;
Connor Abbott30c46782014-07-31 16:14:51 -07001605} nir_shader;
1606
Jason Ekstrand237f2f22015-12-26 10:00:47 -08001607#define nir_foreach_function(shader, func) \
1608 foreach_list_typed(nir_function, func, node, &(shader)->functions)
Connor Abbott30c46782014-07-31 16:14:51 -07001609
Eric Anholtf90bb542015-02-02 16:13:49 -08001610nir_shader *nir_shader_create(void *mem_ctx,
Kenneth Graunked4d5b432015-08-18 01:48:34 -07001611 gl_shader_stage stage,
Eric Anholtf90bb542015-02-02 16:13:49 -08001612 const nir_shader_compiler_options *options);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001613
1614/** creates a register, including assigning it an index and adding it to the list */
1615nir_register *nir_global_reg_create(nir_shader *shader);
1616
1617nir_register *nir_local_reg_create(nir_function_impl *impl);
1618
1619void nir_reg_remove(nir_register *reg);
1620
Jason Ekstrandeb893c22015-10-09 07:05:11 -07001621/** Adds a variable to the appropreate list in nir_shader */
1622void nir_shader_add_variable(nir_shader *shader, nir_variable *var);
1623
1624static inline void
1625nir_function_impl_add_variable(nir_function_impl *impl, nir_variable *var)
1626{
1627 assert(var->data.mode == nir_var_local);
1628 exec_list_push_tail(&impl->locals, &var->node);
1629}
1630
1631/** creates a variable, sets a few defaults, and adds it to the list */
1632nir_variable *nir_variable_create(nir_shader *shader,
1633 nir_variable_mode mode,
1634 const struct glsl_type *type,
1635 const char *name);
1636/** creates a local variable and adds it to the list */
1637nir_variable *nir_local_variable_create(nir_function_impl *impl,
1638 const struct glsl_type *type,
1639 const char *name);
1640
Connor Abbott2812e5d2014-07-31 16:16:23 -07001641/** creates a function and adds it to the shader's list of functions */
1642nir_function *nir_function_create(nir_shader *shader, const char *name);
1643
Jason Ekstrand237f2f22015-12-26 10:00:47 -08001644nir_function_impl *nir_function_impl_create(nir_function *func);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001645
Rob Clark99597d02015-10-21 10:57:15 -04001646nir_block *nir_block_create(nir_shader *shader);
1647nir_if *nir_if_create(nir_shader *shader);
1648nir_loop *nir_loop_create(nir_shader *shader);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001649
1650nir_function_impl *nir_cf_node_get_function(nir_cf_node *node);
1651
Jason Ekstrand49911cf2014-10-29 12:42:54 -07001652/** requests that the given pieces of metadata be generated */
1653void nir_metadata_require(nir_function_impl *impl, nir_metadata required);
1654/** dirties all but the preserved metadata */
Jason Ekstrandb6c81b32014-12-12 16:22:46 -08001655void nir_metadata_preserve(nir_function_impl *impl, nir_metadata preserved);
Jason Ekstrand49911cf2014-10-29 12:42:54 -07001656
Connor Abbott2812e5d2014-07-31 16:16:23 -07001657/** creates an instruction with default swizzle/writemask/etc. with NULL registers */
Jason Ekstrand11694732015-04-07 12:33:17 -07001658nir_alu_instr *nir_alu_instr_create(nir_shader *shader, nir_op op);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001659
Jason Ekstrand11694732015-04-07 12:33:17 -07001660nir_jump_instr *nir_jump_instr_create(nir_shader *shader, nir_jump_type type);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001661
Jason Ekstrand11694732015-04-07 12:33:17 -07001662nir_load_const_instr *nir_load_const_instr_create(nir_shader *shader,
Jason Ekstrand2c7da782014-12-15 17:32:56 -08001663 unsigned num_components);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001664
Jason Ekstrand11694732015-04-07 12:33:17 -07001665nir_intrinsic_instr *nir_intrinsic_instr_create(nir_shader *shader,
Connor Abbott2812e5d2014-07-31 16:16:23 -07001666 nir_intrinsic_op op);
1667
Jason Ekstrand11694732015-04-07 12:33:17 -07001668nir_call_instr *nir_call_instr_create(nir_shader *shader,
Jason Ekstrand237f2f22015-12-26 10:00:47 -08001669 nir_function *callee);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001670
Jason Ekstrand11694732015-04-07 12:33:17 -07001671nir_tex_instr *nir_tex_instr_create(nir_shader *shader, unsigned num_srcs);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001672
Jason Ekstrand11694732015-04-07 12:33:17 -07001673nir_phi_instr *nir_phi_instr_create(nir_shader *shader);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001674
Jason Ekstrand11694732015-04-07 12:33:17 -07001675nir_parallel_copy_instr *nir_parallel_copy_instr_create(nir_shader *shader);
Jason Ekstrand366181d2014-10-30 21:04:15 -07001676
Jason Ekstrand11694732015-04-07 12:33:17 -07001677nir_ssa_undef_instr *nir_ssa_undef_instr_create(nir_shader *shader,
Jason Ekstrand675ffde2014-12-15 17:44:37 -08001678 unsigned num_components);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001679
1680nir_deref_var *nir_deref_var_create(void *mem_ctx, nir_variable *var);
1681nir_deref_array *nir_deref_array_create(void *mem_ctx);
Jason Ekstrand829aa982014-11-25 21:36:25 -08001682nir_deref_struct *nir_deref_struct_create(void *mem_ctx, unsigned field_index);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001683
1684nir_deref *nir_copy_deref(void *mem_ctx, nir_deref *deref);
1685
Jason Ekstrand7e1d21e2015-04-10 14:46:22 -07001686nir_load_const_instr *
1687nir_deref_get_const_initializer_load(nir_shader *shader, nir_deref_var *deref);
1688
Kenneth Graunkef90c6b12015-08-25 10:01:31 -07001689/**
1690 * NIR Cursors and Instruction Insertion API
1691 * @{
1692 *
1693 * A tiny struct representing a point to insert/extract instructions or
1694 * control flow nodes. Helps reduce the combinatorial explosion of possible
1695 * points to insert/extract.
1696 *
1697 * \sa nir_control_flow.h
1698 */
1699typedef enum {
1700 nir_cursor_before_block,
1701 nir_cursor_after_block,
1702 nir_cursor_before_instr,
1703 nir_cursor_after_instr,
1704} nir_cursor_option;
1705
1706typedef struct {
1707 nir_cursor_option option;
1708 union {
1709 nir_block *block;
1710 nir_instr *instr;
1711 };
1712} nir_cursor;
1713
1714static inline nir_cursor
1715nir_before_block(nir_block *block)
1716{
1717 nir_cursor cursor;
1718 cursor.option = nir_cursor_before_block;
1719 cursor.block = block;
1720 return cursor;
1721}
1722
1723static inline nir_cursor
1724nir_after_block(nir_block *block)
1725{
1726 nir_cursor cursor;
1727 cursor.option = nir_cursor_after_block;
1728 cursor.block = block;
1729 return cursor;
1730}
1731
1732static inline nir_cursor
1733nir_before_instr(nir_instr *instr)
1734{
1735 nir_cursor cursor;
1736 cursor.option = nir_cursor_before_instr;
1737 cursor.instr = instr;
1738 return cursor;
1739}
1740
1741static inline nir_cursor
1742nir_after_instr(nir_instr *instr)
1743{
1744 nir_cursor cursor;
1745 cursor.option = nir_cursor_after_instr;
1746 cursor.instr = instr;
1747 return cursor;
1748}
1749
1750static inline nir_cursor
Jason Ekstrandf5e08ab2015-08-28 17:17:39 -07001751nir_after_block_before_jump(nir_block *block)
1752{
1753 nir_instr *last_instr = nir_block_last_instr(block);
1754 if (last_instr && last_instr->type == nir_instr_type_jump) {
1755 return nir_before_instr(last_instr);
1756 } else {
1757 return nir_after_block(block);
1758 }
1759}
1760
1761static inline nir_cursor
Kenneth Graunkef90c6b12015-08-25 10:01:31 -07001762nir_before_cf_node(nir_cf_node *node)
1763{
1764 if (node->type == nir_cf_node_block)
1765 return nir_before_block(nir_cf_node_as_block(node));
1766
1767 return nir_after_block(nir_cf_node_as_block(nir_cf_node_prev(node)));
1768}
1769
1770static inline nir_cursor
1771nir_after_cf_node(nir_cf_node *node)
1772{
1773 if (node->type == nir_cf_node_block)
1774 return nir_after_block(nir_cf_node_as_block(node));
1775
1776 return nir_before_block(nir_cf_node_as_block(nir_cf_node_next(node)));
1777}
1778
1779static inline nir_cursor
1780nir_before_cf_list(struct exec_list *cf_list)
1781{
1782 nir_cf_node *first_node = exec_node_data(nir_cf_node,
1783 exec_list_get_head(cf_list), node);
1784 return nir_before_cf_node(first_node);
1785}
1786
1787static inline nir_cursor
1788nir_after_cf_list(struct exec_list *cf_list)
1789{
1790 nir_cf_node *last_node = exec_node_data(nir_cf_node,
1791 exec_list_get_tail(cf_list), node);
1792 return nir_after_cf_node(last_node);
1793}
1794
Kenneth Graunke3e3cb772015-08-09 18:30:33 -07001795/**
1796 * Insert a NIR instruction at the given cursor.
1797 *
1798 * Note: This does not update the cursor.
1799 */
1800void nir_instr_insert(nir_cursor cursor, nir_instr *instr);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001801
Kenneth Graunke3e3cb772015-08-09 18:30:33 -07001802static inline void
1803nir_instr_insert_before(nir_instr *instr, nir_instr *before)
1804{
1805 nir_instr_insert(nir_before_instr(instr), before);
1806}
Connor Abbott2812e5d2014-07-31 16:16:23 -07001807
Kenneth Graunke3e3cb772015-08-09 18:30:33 -07001808static inline void
1809nir_instr_insert_after(nir_instr *instr, nir_instr *after)
1810{
1811 nir_instr_insert(nir_after_instr(instr), after);
1812}
Connor Abbott2812e5d2014-07-31 16:16:23 -07001813
Kenneth Graunke3e3cb772015-08-09 18:30:33 -07001814static inline void
1815nir_instr_insert_before_block(nir_block *block, nir_instr *before)
1816{
1817 nir_instr_insert(nir_before_block(block), before);
1818}
1819
1820static inline void
1821nir_instr_insert_after_block(nir_block *block, nir_instr *after)
1822{
1823 nir_instr_insert(nir_after_block(block), after);
1824}
1825
1826static inline void
1827nir_instr_insert_before_cf(nir_cf_node *node, nir_instr *before)
1828{
1829 nir_instr_insert(nir_before_cf_node(node), before);
1830}
1831
1832static inline void
1833nir_instr_insert_after_cf(nir_cf_node *node, nir_instr *after)
1834{
1835 nir_instr_insert(nir_after_cf_node(node), after);
1836}
1837
1838static inline void
1839nir_instr_insert_before_cf_list(struct exec_list *list, nir_instr *before)
1840{
1841 nir_instr_insert(nir_before_cf_list(list), before);
1842}
1843
1844static inline void
1845nir_instr_insert_after_cf_list(struct exec_list *list, nir_instr *after)
1846{
1847 nir_instr_insert(nir_after_cf_list(list), after);
1848}
Connor Abbott2812e5d2014-07-31 16:16:23 -07001849
1850void nir_instr_remove(nir_instr *instr);
1851
Kenneth Graunkef90c6b12015-08-25 10:01:31 -07001852/** @} */
1853
Jason Ekstrand193fea92014-12-15 15:12:59 -08001854typedef bool (*nir_foreach_ssa_def_cb)(nir_ssa_def *def, void *state);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001855typedef bool (*nir_foreach_dest_cb)(nir_dest *dest, void *state);
1856typedef bool (*nir_foreach_src_cb)(nir_src *src, void *state);
Jason Ekstrand193fea92014-12-15 15:12:59 -08001857bool nir_foreach_ssa_def(nir_instr *instr, nir_foreach_ssa_def_cb cb,
1858 void *state);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001859bool nir_foreach_dest(nir_instr *instr, nir_foreach_dest_cb cb, void *state);
1860bool nir_foreach_src(nir_instr *instr, nir_foreach_src_cb cb, void *state);
1861
Jason Ekstranda3ad7fd2014-12-08 17:34:23 -08001862nir_const_value *nir_src_as_const_value(nir_src src);
Neil Roberts886d46b2015-07-30 12:10:08 +01001863bool nir_src_is_dynamically_uniform(nir_src src);
Jason Ekstrand4f441202014-12-12 12:52:11 -08001864bool nir_srcs_equal(nir_src src1, nir_src src2);
Jason Ekstrandcd01de02014-11-13 19:07:22 -08001865void nir_instr_rewrite_src(nir_instr *instr, nir_src *src, nir_src new_src);
Jason Ekstrandf752eff2015-04-24 10:16:27 -07001866void nir_instr_move_src(nir_instr *dest_instr, nir_src *dest, nir_src *src);
Jason Ekstrandf72a8d12015-04-24 10:34:30 -07001867void nir_if_rewrite_condition(nir_if *if_stmt, nir_src new_src);
Jason Ekstrandcee29222015-09-09 15:58:25 -07001868void nir_instr_rewrite_dest(nir_instr *instr, nir_dest *dest,
1869 nir_dest new_dest);
Jason Ekstrand4f441202014-12-12 12:52:11 -08001870
Eric Anholt534a4ec2015-01-20 16:23:51 -08001871void nir_ssa_dest_init(nir_instr *instr, nir_dest *dest,
1872 unsigned num_components, const char *name);
Jason Ekstrand6a52d2a2014-11-19 16:06:32 -08001873void nir_ssa_def_init(nir_instr *instr, nir_ssa_def *def,
1874 unsigned num_components, const char *name);
Jason Ekstranda4aa25b2015-09-09 13:24:35 -07001875void nir_ssa_def_rewrite_uses(nir_ssa_def *def, nir_src new_src);
Jason Ekstrand7e83fd82015-11-12 08:40:17 -08001876void nir_ssa_def_rewrite_uses_after(nir_ssa_def *def, nir_src new_src,
1877 nir_instr *after_me);
Jason Ekstrandfbc443a2014-11-04 10:40:48 -08001878
Connor Abbott2812e5d2014-07-31 16:16:23 -07001879/* visits basic blocks in source-code order */
1880typedef bool (*nir_foreach_block_cb)(nir_block *block, void *state);
1881bool nir_foreach_block(nir_function_impl *impl, nir_foreach_block_cb cb,
1882 void *state);
Jason Ekstranddfdf0c42014-10-29 14:16:54 -07001883bool nir_foreach_block_reverse(nir_function_impl *impl, nir_foreach_block_cb cb,
1884 void *state);
Connor Abbott019eea12015-05-08 14:40:58 -04001885bool nir_foreach_block_in_cf_node(nir_cf_node *node, nir_foreach_block_cb cb,
1886 void *state);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001887
Jason Ekstrandd7e482d2014-10-29 16:25:51 -07001888/* If the following CF node is an if, this function returns that if.
1889 * Otherwise, it returns NULL.
1890 */
Jason Ekstrandde73d1e2014-12-17 14:49:24 -08001891nir_if *nir_block_get_following_if(nir_block *block);
Jason Ekstrandd7e482d2014-10-29 16:25:51 -07001892
Connor Abbott89dc0622015-05-08 13:17:10 -04001893nir_loop *nir_block_get_following_loop(nir_block *block);
1894
Connor Abbott2812e5d2014-07-31 16:16:23 -07001895void nir_index_local_regs(nir_function_impl *impl);
1896void nir_index_global_regs(nir_shader *shader);
1897void nir_index_ssa_defs(nir_function_impl *impl);
Jason Ekstrand8ecaef92015-09-08 16:43:51 -07001898unsigned nir_index_instrs(nir_function_impl *impl);
Connor Abbott2812e5d2014-07-31 16:16:23 -07001899
1900void nir_index_blocks(nir_function_impl *impl);
1901
Connor Abbott98fa28b2014-07-30 15:29:27 -07001902void nir_print_shader(nir_shader *shader, FILE *fp);
Kenneth Graunke480ee1f2015-02-09 13:42:16 -08001903void nir_print_instr(const nir_instr *instr, FILE *fp);
Connor Abbott98fa28b2014-07-30 15:29:27 -07001904
Jason Ekstrand9fbd3902015-11-11 08:31:29 -08001905nir_shader * nir_shader_clone(void *mem_ctx, const nir_shader *s);
1906
Jason Ekstranddcb1acd2015-01-06 16:11:57 -08001907#ifdef DEBUG
Connor Abbottdbb76422014-07-30 15:20:53 -07001908void nir_validate_shader(nir_shader *shader);
Kenneth Graunke9ff71b62015-11-03 00:31:22 -08001909void nir_metadata_set_validation_flag(nir_shader *shader);
1910void nir_metadata_check_validation_flag(nir_shader *shader);
Rob Clark317628d2015-11-18 16:33:41 -05001911
1912#include "util/debug.h"
1913static inline bool
1914should_clone_nir(void)
1915{
1916 static int should_clone = -1;
1917 if (should_clone < 0)
1918 should_clone = env_var_as_boolean("NIR_TEST_CLONE", false);
1919
1920 return should_clone;
1921}
Jason Ekstranddcb1acd2015-01-06 16:11:57 -08001922#else
Ian Romanick67a86102015-04-13 16:42:59 -07001923static inline void nir_validate_shader(nir_shader *shader) { (void) shader; }
Kenneth Graunke9ff71b62015-11-03 00:31:22 -08001924static inline void nir_metadata_set_validation_flag(nir_shader *shader) { (void) shader; }
1925static inline void nir_metadata_check_validation_flag(nir_shader *shader) { (void) shader; }
Rob Clark317628d2015-11-18 16:33:41 -05001926static inline bool should_clone_nir(void) { return false; }
Jason Ekstranddcb1acd2015-01-06 16:11:57 -08001927#endif /* DEBUG */
Connor Abbottdbb76422014-07-30 15:20:53 -07001928
Rob Clark317628d2015-11-18 16:33:41 -05001929#define _PASS(nir, do_pass) do { \
1930 do_pass \
1931 nir_validate_shader(nir); \
1932 if (should_clone_nir()) { \
1933 nir_shader *clone = nir_shader_clone(ralloc_parent(nir), nir); \
1934 ralloc_free(nir); \
1935 nir = clone; \
1936 } \
1937} while (0)
1938
1939#define NIR_PASS(progress, nir, pass, ...) _PASS(nir, \
1940 nir_metadata_set_validation_flag(nir); \
1941 if (pass(nir, ##__VA_ARGS__)) { \
1942 progress = true; \
1943 nir_metadata_check_validation_flag(nir); \
1944 } \
1945)
1946
1947#define NIR_PASS_V(nir, pass, ...) _PASS(nir, \
1948 pass(nir, ##__VA_ARGS__); \
1949)
1950
Connor Abbottb559ee72014-07-18 16:13:11 -07001951void nir_calc_dominance_impl(nir_function_impl *impl);
1952void nir_calc_dominance(nir_shader *shader);
1953
Jason Ekstrandb4c5489c2015-02-06 12:06:04 -08001954nir_block *nir_dominance_lca(nir_block *b1, nir_block *b2);
Jason Ekstrandf481a942015-02-06 12:45:43 -08001955bool nir_block_dominates(nir_block *parent, nir_block *child);
Jason Ekstrandb4c5489c2015-02-06 12:06:04 -08001956
Connor Abbottb559ee72014-07-18 16:13:11 -07001957void nir_dump_dom_tree_impl(nir_function_impl *impl, FILE *fp);
1958void nir_dump_dom_tree(nir_shader *shader, FILE *fp);
1959
1960void nir_dump_dom_frontier_impl(nir_function_impl *impl, FILE *fp);
1961void nir_dump_dom_frontier(nir_shader *shader, FILE *fp);
1962
1963void nir_dump_cfg_impl(nir_function_impl *impl, FILE *fp);
1964void nir_dump_cfg(nir_shader *shader, FILE *fp);
1965
Jason Ekstrand26864772015-10-20 17:40:19 -07001966int nir_gs_count_vertices(const nir_shader *shader);
Kenneth Graunke02530c52015-09-24 17:01:23 -07001967
Kenneth Graunkedc18b932015-09-17 12:33:36 -07001968bool nir_split_var_copies(nir_shader *shader);
Jason Ekstrand615ba5a2014-11-19 14:52:30 -08001969
Jason Ekstrandd3636da2015-01-14 15:19:49 -08001970void nir_lower_var_copy_instr(nir_intrinsic_instr *copy, void *mem_ctx);
1971void nir_lower_var_copies(nir_shader *shader);
1972
Kenneth Graunke967a5dd2015-09-17 08:38:10 -07001973bool nir_lower_global_vars_to_local(nir_shader *shader);
Jason Ekstrand6962c332014-12-02 12:48:38 -08001974
Kenneth Graunkecfae0f82015-09-17 12:29:49 -07001975bool nir_lower_locals_to_regs(nir_shader *shader);
Jason Ekstrandaff43122014-12-01 20:29:35 -08001976
Jason Ekstrand1dbe4af2015-08-28 17:09:02 -07001977void nir_lower_outputs_to_temporaries(nir_shader *shader);
1978
Iago Toral Quiroga01f62352015-06-18 13:52:21 +02001979void nir_assign_var_locations(struct exec_list *var_list,
1980 unsigned *size,
Kenneth Graunke6c33d6bb2015-08-12 14:29:25 -07001981 int (*type_size)(const struct glsl_type *));
Jason Ekstrand25db44a2015-03-18 15:04:15 -07001982
Kenneth Graunke6c33d6bb2015-08-12 14:29:25 -07001983void nir_lower_io(nir_shader *shader,
Kenneth Graunke39a1d362015-08-12 15:14:35 -07001984 nir_variable_mode mode,
Kenneth Graunke6c33d6bb2015-08-12 14:29:25 -07001985 int (*type_size)(const struct glsl_type *));
Jason Ekstrand78b81be2015-11-25 14:14:05 -08001986nir_src *nir_get_io_offset_src(nir_intrinsic_instr *instr);
Kenneth Graunke26f94692015-11-07 22:35:33 -08001987nir_src *nir_get_io_vertex_index_src(nir_intrinsic_instr *instr);
1988
Jason Ekstrand55b50582015-01-14 12:41:15 -08001989void nir_lower_vars_to_ssa(nir_shader *shader);
Jason Ekstrandd477bea2014-11-13 17:16:31 -08001990
Kenneth Graunke1adde5b2015-09-17 10:57:14 -07001991bool nir_remove_dead_variables(nir_shader *shader);
Connor Abbott370e8752014-07-30 11:56:52 -07001992
Jason Ekstranda6c467d2015-09-08 15:18:01 -07001993void nir_move_vec_src_uses_to_dest(nir_shader *shader);
Jason Ekstrand9f5e7ae2015-09-09 17:50:09 -07001994bool nir_lower_vec_to_movs(nir_shader *shader);
Eric Anholt447ddfc2014-11-13 12:40:59 -08001995void nir_lower_alu_to_scalar(nir_shader *shader);
Eric Anholt6c28ee22015-08-03 17:20:33 -07001996void nir_lower_load_const_to_scalar(nir_shader *shader);
Jason Ekstrand9d986d12014-10-22 12:57:28 -07001997
Jason Ekstrandf2adcd32015-01-21 15:23:32 -08001998void nir_lower_phis_to_scalar(nir_shader *shader);
1999
Connor Abbott8cdcfce2014-07-30 12:04:49 -07002000void nir_lower_samplers(nir_shader *shader,
Kenneth Graunke5f14c412015-08-18 01:53:29 -07002001 const struct gl_shader_program *shader_program);
Connor Abbott8cdcfce2014-07-30 12:04:49 -07002002
Kenneth Graunke0a1adaf2015-09-17 13:00:58 -07002003bool nir_lower_system_values(nir_shader *shader);
Rob Clarkfaf5f172015-09-16 12:56:58 -04002004
2005typedef struct nir_lower_tex_options {
2006 /**
2007 * bitmask of (1 << GLSL_SAMPLER_DIM_x) to control for which
2008 * sampler types a texture projector is lowered.
2009 */
2010 unsigned lower_txp;
Rob Clark1ce80602015-09-16 16:49:14 -04002011
2012 /**
2013 * If true, lower rect textures to 2D, using txs to fetch the
2014 * texture dimensions and dividing the texture coords by the
2015 * texture dims to normalize.
2016 */
2017 bool lower_rect;
Rob Clark3745c382015-09-18 10:44:27 -04002018
2019 /**
2020 * To emulate certain texture wrap modes, this can be used
2021 * to saturate the specified tex coord to [0.0, 1.0]. The
2022 * bits are according to sampler #, ie. if, for example:
2023 *
2024 * (conf->saturate_s & (1 << n))
2025 *
2026 * is true, then the s coord for sampler n is saturated.
2027 *
2028 * Note that clamping must happen *after* projector lowering
2029 * so any projected texture sample instruction with a clamped
2030 * coordinate gets automatically lowered, regardless of the
2031 * 'lower_txp' setting.
2032 */
2033 unsigned saturate_s;
2034 unsigned saturate_t;
2035 unsigned saturate_r;
Jason Ekstrand8537b4a2015-11-11 18:30:31 -08002036
2037 /* Bitmask of samplers that need swizzling.
2038 *
2039 * If (swizzle_result & (1 << sampler_index)), then the swizzle in
2040 * swizzles[sampler_index] is applied to the result of the texturing
2041 * operation.
2042 */
2043 unsigned swizzle_result;
2044
2045 /* A swizzle for each sampler. Values 0-3 represent x, y, z, or w swizzles
2046 * while 4 and 5 represent 0 and 1 respectively.
2047 */
2048 uint8_t swizzles[32][4];
Rob Clarkfaf5f172015-09-16 12:56:58 -04002049} nir_lower_tex_options;
2050
Jason Ekstrand1417f6a2015-11-11 10:46:09 -08002051bool nir_lower_tex(nir_shader *shader,
Rob Clarkfaf5f172015-09-16 12:56:58 -04002052 const nir_lower_tex_options *options);
2053
Rob Clarkf2ecc952015-03-31 17:03:39 -04002054void nir_lower_idiv(nir_shader *shader);
Connor Abbott8692c6a2014-07-30 12:07:45 -07002055
Rob Clark509e0c42015-09-09 14:57:15 -04002056void nir_lower_clip_vs(nir_shader *shader, unsigned ucp_enables);
2057void nir_lower_clip_fs(nir_shader *shader, unsigned ucp_enables);
2058
Rob Clarke13ed3f2015-09-17 13:17:08 -04002059void nir_lower_two_sided_color(nir_shader *shader);
2060
Timothy Arceria3d03592015-10-27 06:58:15 +11002061void nir_lower_atomics(nir_shader *shader,
2062 const struct gl_shader_program *shader_program);
Jason Ekstrand91942662014-11-12 19:18:05 -08002063void nir_lower_to_source_mods(nir_shader *shader);
Connor Abbott613bf682014-07-30 14:43:26 -07002064
Kenneth Graunke542d40d2015-05-12 01:05:29 -07002065bool nir_lower_gs_intrinsics(nir_shader *shader);
2066
Kenneth Graunke5cede902015-09-17 13:18:41 -07002067bool nir_normalize_cubemap_coords(nir_shader *shader);
Jason Ekstrand52e71802015-04-02 16:38:30 -07002068
Kenneth Graunke5c6f2152015-11-03 17:15:24 -08002069void nir_live_ssa_defs_impl(nir_function_impl *impl);
Jason Ekstrandf86902e2014-10-29 14:17:17 -07002070bool nir_ssa_defs_interfere(nir_ssa_def *a, nir_ssa_def *b);
2071
Connor Abbott45538872014-07-22 14:05:06 -07002072void nir_convert_to_ssa_impl(nir_function_impl *impl);
2073void nir_convert_to_ssa(nir_shader *shader);
Connor Abbott2b1a1d82015-06-24 05:28:34 -07002074
Kenneth Graunkeefb36272015-07-08 01:57:00 -07002075/* If phi_webs_only is true, only convert SSA values involved in phi nodes to
2076 * registers. If false, convert all values (even those not involved in a phi
2077 * node) to registers.
Connor Abbott2b1a1d82015-06-24 05:28:34 -07002078 */
2079void nir_convert_from_ssa(nir_shader *shader, bool phi_webs_only);
Connor Abbott45538872014-07-22 14:05:06 -07002080
Jason Ekstrandd5410bd2014-12-12 11:13:10 -08002081bool nir_opt_algebraic(nir_shader *shader);
Jason Ekstrandda294f92015-03-23 17:11:49 -07002082bool nir_opt_algebraic_late(nir_shader *shader);
Jason Ekstrandf77f4c02014-11-14 21:35:25 -08002083bool nir_opt_constant_folding(nir_shader *shader);
Jason Ekstrandd5410bd2014-12-12 11:13:10 -08002084
Connor Abbottcff1def2014-07-30 12:08:13 -07002085bool nir_opt_global_to_local(nir_shader *shader);
2086
Connor Abbott8b7cb762014-07-23 11:19:50 -07002087bool nir_copy_prop(nir_shader *shader);
2088
Jason Ekstrand6bdce552014-11-11 16:11:34 -08002089bool nir_opt_cse(nir_shader *shader);
2090
Connor Abbott76023852014-07-24 15:51:58 -07002091bool nir_opt_dce(nir_shader *shader);
2092
Connor Abbott1e6ad4b2015-05-01 02:38:17 -04002093bool nir_opt_dead_cf(nir_shader *shader);
2094
Jason Ekstrand190073c2015-02-03 10:11:23 -08002095void nir_opt_gcm(nir_shader *shader);
2096
Jason Ekstrand13ec15b2014-11-04 10:12:14 -08002097bool nir_opt_peephole_select(nir_shader *shader);
2098
Connor Abbotta135f342015-02-03 01:49:44 -05002099bool nir_opt_remove_phis(nir_shader *shader);
2100
Eric Anholt9e6dc5b2015-08-04 16:25:24 -07002101bool nir_opt_undef(nir_shader *shader);
2102
Kenneth Graunkea10d4932015-03-27 19:50:29 -07002103void nir_sweep(nir_shader *shader);
2104
Jason Ekstrandd5133882015-09-10 16:53:08 -07002105nir_intrinsic_op nir_intrinsic_from_system_value(gl_system_value val);
Kenneth Graunked5d74d02015-08-03 16:02:16 -07002106gl_system_value nir_system_value_from_intrinsic(nir_intrinsic_op intrin);
2107
Connor Abbott30c46782014-07-31 16:14:51 -07002108#ifdef __cplusplus
2109} /* extern "C" */
2110#endif