intel/nir: Stop returning the shader from helpers
[mesa.git] / src / intel / compiler / brw_nir.c
1 /*
2 * Copyright © 2014 Intel Corporation
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
24 #include "brw_nir.h"
25 #include "brw_shader.h"
26 #include "dev/gen_debug.h"
27 #include "compiler/glsl_types.h"
28 #include "compiler/nir/nir_builder.h"
29 #include "util/u_math.h"
30
31 static bool
32 is_input(nir_intrinsic_instr *intrin)
33 {
34 return intrin->intrinsic == nir_intrinsic_load_input ||
35 intrin->intrinsic == nir_intrinsic_load_per_vertex_input ||
36 intrin->intrinsic == nir_intrinsic_load_interpolated_input;
37 }
38
39 static bool
40 is_output(nir_intrinsic_instr *intrin)
41 {
42 return intrin->intrinsic == nir_intrinsic_load_output ||
43 intrin->intrinsic == nir_intrinsic_load_per_vertex_output ||
44 intrin->intrinsic == nir_intrinsic_store_output ||
45 intrin->intrinsic == nir_intrinsic_store_per_vertex_output;
46 }
47
48 /**
49 * In many cases, we just add the base and offset together, so there's no
50 * reason to keep them separate. Sometimes, combining them is essential:
51 * if a shader only accesses part of a compound variable (such as a matrix
52 * or array), the variable's base may not actually exist in the VUE map.
53 *
54 * This pass adds constant offsets to instr->const_index[0], and resets
55 * the offset source to 0. Non-constant offsets remain unchanged - since
56 * we don't know what part of a compound variable is accessed, we allocate
57 * storage for the entire thing.
58 */
59
60 static bool
61 add_const_offset_to_base_block(nir_block *block, nir_builder *b,
62 nir_variable_mode mode)
63 {
64 nir_foreach_instr_safe(instr, block) {
65 if (instr->type != nir_instr_type_intrinsic)
66 continue;
67
68 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
69
70 if ((mode == nir_var_shader_in && is_input(intrin)) ||
71 (mode == nir_var_shader_out && is_output(intrin))) {
72 nir_src *offset = nir_get_io_offset_src(intrin);
73
74 if (nir_src_is_const(*offset)) {
75 intrin->const_index[0] += nir_src_as_uint(*offset);
76 b->cursor = nir_before_instr(&intrin->instr);
77 nir_instr_rewrite_src(&intrin->instr, offset,
78 nir_src_for_ssa(nir_imm_int(b, 0)));
79 }
80 }
81 }
82 return true;
83 }
84
85 static void
86 add_const_offset_to_base(nir_shader *nir, nir_variable_mode mode)
87 {
88 nir_foreach_function(f, nir) {
89 if (f->impl) {
90 nir_builder b;
91 nir_builder_init(&b, f->impl);
92 nir_foreach_block(block, f->impl) {
93 add_const_offset_to_base_block(block, &b, mode);
94 }
95 }
96 }
97 }
98
99 static bool
100 remap_tess_levels(nir_builder *b, nir_intrinsic_instr *intr,
101 GLenum primitive_mode)
102 {
103 const int location = nir_intrinsic_base(intr);
104 const unsigned component = nir_intrinsic_component(intr);
105 bool out_of_bounds;
106
107 if (location == VARYING_SLOT_TESS_LEVEL_INNER) {
108 switch (primitive_mode) {
109 case GL_QUADS:
110 /* gl_TessLevelInner[0..1] lives at DWords 3-2 (reversed). */
111 nir_intrinsic_set_base(intr, 0);
112 nir_intrinsic_set_component(intr, 3 - component);
113 out_of_bounds = false;
114 break;
115 case GL_TRIANGLES:
116 /* gl_TessLevelInner[0] lives at DWord 4. */
117 nir_intrinsic_set_base(intr, 1);
118 out_of_bounds = component > 0;
119 break;
120 case GL_ISOLINES:
121 out_of_bounds = true;
122 break;
123 default:
124 unreachable("Bogus tessellation domain");
125 }
126 } else if (location == VARYING_SLOT_TESS_LEVEL_OUTER) {
127 if (primitive_mode == GL_ISOLINES) {
128 /* gl_TessLevelOuter[0..1] lives at DWords 6-7 (in order). */
129 nir_intrinsic_set_base(intr, 1);
130 nir_intrinsic_set_component(intr, 2 + nir_intrinsic_component(intr));
131 out_of_bounds = component > 1;
132 } else {
133 /* Triangles use DWords 7-5 (reversed); Quads use 7-4 (reversed) */
134 nir_intrinsic_set_base(intr, 1);
135 nir_intrinsic_set_component(intr, 3 - nir_intrinsic_component(intr));
136 out_of_bounds = component == 3 && primitive_mode == GL_TRIANGLES;
137 }
138 } else {
139 return false;
140 }
141
142 if (out_of_bounds) {
143 if (nir_intrinsic_infos[intr->intrinsic].has_dest) {
144 b->cursor = nir_before_instr(&intr->instr);
145 nir_ssa_def *undef = nir_ssa_undef(b, 1, 32);
146 nir_ssa_def_rewrite_uses(&intr->dest.ssa, nir_src_for_ssa(undef));
147 }
148 nir_instr_remove(&intr->instr);
149 }
150
151 return true;
152 }
153
154 static bool
155 remap_patch_urb_offsets(nir_block *block, nir_builder *b,
156 const struct brw_vue_map *vue_map,
157 GLenum tes_primitive_mode)
158 {
159 const bool is_passthrough_tcs = b->shader->info.name &&
160 strcmp(b->shader->info.name, "passthrough") == 0;
161
162 nir_foreach_instr_safe(instr, block) {
163 if (instr->type != nir_instr_type_intrinsic)
164 continue;
165
166 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
167
168 gl_shader_stage stage = b->shader->info.stage;
169
170 if ((stage == MESA_SHADER_TESS_CTRL && is_output(intrin)) ||
171 (stage == MESA_SHADER_TESS_EVAL && is_input(intrin))) {
172
173 if (!is_passthrough_tcs &&
174 remap_tess_levels(b, intrin, tes_primitive_mode))
175 continue;
176
177 int vue_slot = vue_map->varying_to_slot[intrin->const_index[0]];
178 assert(vue_slot != -1);
179 intrin->const_index[0] = vue_slot;
180
181 nir_src *vertex = nir_get_io_vertex_index_src(intrin);
182 if (vertex) {
183 if (nir_src_is_const(*vertex)) {
184 intrin->const_index[0] += nir_src_as_uint(*vertex) *
185 vue_map->num_per_vertex_slots;
186 } else {
187 b->cursor = nir_before_instr(&intrin->instr);
188
189 /* Multiply by the number of per-vertex slots. */
190 nir_ssa_def *vertex_offset =
191 nir_imul(b,
192 nir_ssa_for_src(b, *vertex, 1),
193 nir_imm_int(b,
194 vue_map->num_per_vertex_slots));
195
196 /* Add it to the existing offset */
197 nir_src *offset = nir_get_io_offset_src(intrin);
198 nir_ssa_def *total_offset =
199 nir_iadd(b, vertex_offset,
200 nir_ssa_for_src(b, *offset, 1));
201
202 nir_instr_rewrite_src(&intrin->instr, offset,
203 nir_src_for_ssa(total_offset));
204 }
205 }
206 }
207 }
208 return true;
209 }
210
211 void
212 brw_nir_lower_vs_inputs(nir_shader *nir,
213 const uint8_t *vs_attrib_wa_flags)
214 {
215 /* Start with the location of the variable's base. */
216 foreach_list_typed(nir_variable, var, node, &nir->inputs) {
217 var->data.driver_location = var->data.location;
218 }
219
220 /* Now use nir_lower_io to walk dereference chains. Attribute arrays are
221 * loaded as one vec4 or dvec4 per element (or matrix column), depending on
222 * whether it is a double-precision type or not.
223 */
224 nir_lower_io(nir, nir_var_shader_in, type_size_vec4, 0);
225
226 /* This pass needs actual constants */
227 nir_opt_constant_folding(nir);
228
229 add_const_offset_to_base(nir, nir_var_shader_in);
230
231 brw_nir_apply_attribute_workarounds(nir, vs_attrib_wa_flags);
232
233 /* The last step is to remap VERT_ATTRIB_* to actual registers */
234
235 /* Whether or not we have any system generated values. gl_DrawID is not
236 * included here as it lives in its own vec4.
237 */
238 const bool has_sgvs =
239 nir->info.system_values_read &
240 (BITFIELD64_BIT(SYSTEM_VALUE_FIRST_VERTEX) |
241 BITFIELD64_BIT(SYSTEM_VALUE_BASE_INSTANCE) |
242 BITFIELD64_BIT(SYSTEM_VALUE_VERTEX_ID_ZERO_BASE) |
243 BITFIELD64_BIT(SYSTEM_VALUE_INSTANCE_ID));
244
245 const unsigned num_inputs = util_bitcount64(nir->info.inputs_read);
246
247 nir_foreach_function(function, nir) {
248 if (!function->impl)
249 continue;
250
251 nir_builder b;
252 nir_builder_init(&b, function->impl);
253
254 nir_foreach_block(block, function->impl) {
255 nir_foreach_instr_safe(instr, block) {
256 if (instr->type != nir_instr_type_intrinsic)
257 continue;
258
259 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
260
261 switch (intrin->intrinsic) {
262 case nir_intrinsic_load_first_vertex:
263 case nir_intrinsic_load_base_instance:
264 case nir_intrinsic_load_vertex_id_zero_base:
265 case nir_intrinsic_load_instance_id:
266 case nir_intrinsic_load_is_indexed_draw:
267 case nir_intrinsic_load_draw_id: {
268 b.cursor = nir_after_instr(&intrin->instr);
269
270 /* gl_VertexID and friends are stored by the VF as the last
271 * vertex element. We convert them to load_input intrinsics at
272 * the right location.
273 */
274 nir_intrinsic_instr *load =
275 nir_intrinsic_instr_create(nir, nir_intrinsic_load_input);
276 load->src[0] = nir_src_for_ssa(nir_imm_int(&b, 0));
277
278 nir_intrinsic_set_base(load, num_inputs);
279 switch (intrin->intrinsic) {
280 case nir_intrinsic_load_first_vertex:
281 nir_intrinsic_set_component(load, 0);
282 break;
283 case nir_intrinsic_load_base_instance:
284 nir_intrinsic_set_component(load, 1);
285 break;
286 case nir_intrinsic_load_vertex_id_zero_base:
287 nir_intrinsic_set_component(load, 2);
288 break;
289 case nir_intrinsic_load_instance_id:
290 nir_intrinsic_set_component(load, 3);
291 break;
292 case nir_intrinsic_load_draw_id:
293 case nir_intrinsic_load_is_indexed_draw:
294 /* gl_DrawID and IsIndexedDraw are stored right after
295 * gl_VertexID and friends if any of them exist.
296 */
297 nir_intrinsic_set_base(load, num_inputs + has_sgvs);
298 if (intrin->intrinsic == nir_intrinsic_load_draw_id)
299 nir_intrinsic_set_component(load, 0);
300 else
301 nir_intrinsic_set_component(load, 1);
302 break;
303 default:
304 unreachable("Invalid system value intrinsic");
305 }
306
307 load->num_components = 1;
308 nir_ssa_dest_init(&load->instr, &load->dest, 1, 32, NULL);
309 nir_builder_instr_insert(&b, &load->instr);
310
311 nir_ssa_def_rewrite_uses(&intrin->dest.ssa,
312 nir_src_for_ssa(&load->dest.ssa));
313 nir_instr_remove(&intrin->instr);
314 break;
315 }
316
317 case nir_intrinsic_load_input: {
318 /* Attributes come in a contiguous block, ordered by their
319 * gl_vert_attrib value. That means we can compute the slot
320 * number for an attribute by masking out the enabled attributes
321 * before it and counting the bits.
322 */
323 int attr = nir_intrinsic_base(intrin);
324 int slot = util_bitcount64(nir->info.inputs_read &
325 BITFIELD64_MASK(attr));
326 nir_intrinsic_set_base(intrin, slot);
327 break;
328 }
329
330 default:
331 break; /* Nothing to do */
332 }
333 }
334 }
335 }
336 }
337
338 void
339 brw_nir_lower_vue_inputs(nir_shader *nir,
340 const struct brw_vue_map *vue_map)
341 {
342 foreach_list_typed(nir_variable, var, node, &nir->inputs) {
343 var->data.driver_location = var->data.location;
344 }
345
346 /* Inputs are stored in vec4 slots, so use type_size_vec4(). */
347 nir_lower_io(nir, nir_var_shader_in, type_size_vec4, 0);
348
349 /* This pass needs actual constants */
350 nir_opt_constant_folding(nir);
351
352 add_const_offset_to_base(nir, nir_var_shader_in);
353
354 nir_foreach_function(function, nir) {
355 if (!function->impl)
356 continue;
357
358 nir_foreach_block(block, function->impl) {
359 nir_foreach_instr(instr, block) {
360 if (instr->type != nir_instr_type_intrinsic)
361 continue;
362
363 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
364
365 if (intrin->intrinsic == nir_intrinsic_load_input ||
366 intrin->intrinsic == nir_intrinsic_load_per_vertex_input) {
367 /* Offset 0 is the VUE header, which contains
368 * VARYING_SLOT_LAYER [.y], VARYING_SLOT_VIEWPORT [.z], and
369 * VARYING_SLOT_PSIZ [.w].
370 */
371 int varying = nir_intrinsic_base(intrin);
372 int vue_slot;
373 switch (varying) {
374 case VARYING_SLOT_PSIZ:
375 nir_intrinsic_set_base(intrin, 0);
376 nir_intrinsic_set_component(intrin, 3);
377 break;
378
379 default:
380 vue_slot = vue_map->varying_to_slot[varying];
381 assert(vue_slot != -1);
382 nir_intrinsic_set_base(intrin, vue_slot);
383 break;
384 }
385 }
386 }
387 }
388 }
389 }
390
391 void
392 brw_nir_lower_tes_inputs(nir_shader *nir, const struct brw_vue_map *vue_map)
393 {
394 foreach_list_typed(nir_variable, var, node, &nir->inputs) {
395 var->data.driver_location = var->data.location;
396 }
397
398 nir_lower_io(nir, nir_var_shader_in, type_size_vec4, 0);
399
400 /* This pass needs actual constants */
401 nir_opt_constant_folding(nir);
402
403 add_const_offset_to_base(nir, nir_var_shader_in);
404
405 nir_foreach_function(function, nir) {
406 if (function->impl) {
407 nir_builder b;
408 nir_builder_init(&b, function->impl);
409 nir_foreach_block(block, function->impl) {
410 remap_patch_urb_offsets(block, &b, vue_map,
411 nir->info.tess.primitive_mode);
412 }
413 }
414 }
415 }
416
417 void
418 brw_nir_lower_fs_inputs(nir_shader *nir,
419 const struct gen_device_info *devinfo,
420 const struct brw_wm_prog_key *key)
421 {
422 foreach_list_typed(nir_variable, var, node, &nir->inputs) {
423 var->data.driver_location = var->data.location;
424
425 /* Apply default interpolation mode.
426 *
427 * Everything defaults to smooth except for the legacy GL color
428 * built-in variables, which might be flat depending on API state.
429 */
430 if (var->data.interpolation == INTERP_MODE_NONE) {
431 const bool flat = key->flat_shade &&
432 (var->data.location == VARYING_SLOT_COL0 ||
433 var->data.location == VARYING_SLOT_COL1);
434
435 var->data.interpolation = flat ? INTERP_MODE_FLAT
436 : INTERP_MODE_SMOOTH;
437 }
438
439 /* On Ironlake and below, there is only one interpolation mode.
440 * Centroid interpolation doesn't mean anything on this hardware --
441 * there is no multisampling.
442 */
443 if (devinfo->gen < 6) {
444 var->data.centroid = false;
445 var->data.sample = false;
446 }
447 }
448
449 nir_lower_io_options lower_io_options = 0;
450 if (key->persample_interp)
451 lower_io_options |= nir_lower_io_force_sample_interpolation;
452
453 nir_lower_io(nir, nir_var_shader_in, type_size_vec4, lower_io_options);
454
455 /* This pass needs actual constants */
456 nir_opt_constant_folding(nir);
457
458 add_const_offset_to_base(nir, nir_var_shader_in);
459 }
460
461 void
462 brw_nir_lower_vue_outputs(nir_shader *nir)
463 {
464 nir_foreach_variable(var, &nir->outputs) {
465 var->data.driver_location = var->data.location;
466 }
467
468 nir_lower_io(nir, nir_var_shader_out, type_size_vec4, 0);
469 }
470
471 void
472 brw_nir_lower_tcs_outputs(nir_shader *nir, const struct brw_vue_map *vue_map,
473 GLenum tes_primitive_mode)
474 {
475 nir_foreach_variable(var, &nir->outputs) {
476 var->data.driver_location = var->data.location;
477 }
478
479 nir_lower_io(nir, nir_var_shader_out, type_size_vec4, 0);
480
481 /* This pass needs actual constants */
482 nir_opt_constant_folding(nir);
483
484 add_const_offset_to_base(nir, nir_var_shader_out);
485
486 nir_foreach_function(function, nir) {
487 if (function->impl) {
488 nir_builder b;
489 nir_builder_init(&b, function->impl);
490 nir_foreach_block(block, function->impl) {
491 remap_patch_urb_offsets(block, &b, vue_map, tes_primitive_mode);
492 }
493 }
494 }
495 }
496
497 void
498 brw_nir_lower_fs_outputs(nir_shader *nir)
499 {
500 nir_foreach_variable(var, &nir->outputs) {
501 var->data.driver_location =
502 SET_FIELD(var->data.index, BRW_NIR_FRAG_OUTPUT_INDEX) |
503 SET_FIELD(var->data.location, BRW_NIR_FRAG_OUTPUT_LOCATION);
504 }
505
506 nir_lower_io(nir, nir_var_shader_out, type_size_dvec4, 0);
507 }
508
509 #define OPT(pass, ...) ({ \
510 bool this_progress = false; \
511 NIR_PASS(this_progress, nir, pass, ##__VA_ARGS__); \
512 if (this_progress) \
513 progress = true; \
514 this_progress; \
515 })
516
517 static nir_variable_mode
518 brw_nir_no_indirect_mask(const struct brw_compiler *compiler,
519 gl_shader_stage stage)
520 {
521 nir_variable_mode indirect_mask = 0;
522
523 if (compiler->glsl_compiler_options[stage].EmitNoIndirectInput)
524 indirect_mask |= nir_var_shader_in;
525 if (compiler->glsl_compiler_options[stage].EmitNoIndirectOutput)
526 indirect_mask |= nir_var_shader_out;
527 if (compiler->glsl_compiler_options[stage].EmitNoIndirectTemp)
528 indirect_mask |= nir_var_function_temp;
529
530 return indirect_mask;
531 }
532
533 void
534 brw_nir_optimize(nir_shader *nir, const struct brw_compiler *compiler,
535 bool is_scalar, bool allow_copies)
536 {
537 nir_variable_mode indirect_mask =
538 brw_nir_no_indirect_mask(compiler, nir->info.stage);
539
540 bool progress;
541 unsigned lower_flrp =
542 (nir->options->lower_flrp16 ? 16 : 0) |
543 (nir->options->lower_flrp32 ? 32 : 0) |
544 (nir->options->lower_flrp64 ? 64 : 0);
545
546 do {
547 progress = false;
548 OPT(nir_split_array_vars, nir_var_function_temp);
549 OPT(nir_shrink_vec_array_vars, nir_var_function_temp);
550 OPT(nir_opt_deref);
551 OPT(nir_lower_vars_to_ssa);
552 if (allow_copies) {
553 /* Only run this pass in the first call to brw_nir_optimize. Later
554 * calls assume that we've lowered away any copy_deref instructions
555 * and we don't want to introduce any more.
556 */
557 OPT(nir_opt_find_array_copies);
558 }
559 OPT(nir_opt_copy_prop_vars);
560 OPT(nir_opt_dead_write_vars);
561 OPT(nir_opt_combine_stores, nir_var_all);
562
563 if (is_scalar) {
564 OPT(nir_lower_alu_to_scalar, NULL);
565 }
566
567 OPT(nir_copy_prop);
568
569 if (is_scalar) {
570 OPT(nir_lower_phis_to_scalar);
571 }
572
573 OPT(nir_copy_prop);
574 OPT(nir_opt_dce);
575 OPT(nir_opt_cse);
576 OPT(nir_opt_combine_stores, nir_var_all);
577
578 /* Passing 0 to the peephole select pass causes it to convert
579 * if-statements that contain only move instructions in the branches
580 * regardless of the count.
581 *
582 * Passing 1 to the peephole select pass causes it to convert
583 * if-statements that contain at most a single ALU instruction (total)
584 * in both branches. Before Gen6, some math instructions were
585 * prohibitively expensive and the results of compare operations need an
586 * extra resolve step. For these reasons, this pass is more harmful
587 * than good on those platforms.
588 *
589 * For indirect loads of uniforms (push constants), we assume that array
590 * indices will nearly always be in bounds and the cost of the load is
591 * low. Therefore there shouldn't be a performance benefit to avoid it.
592 * However, in vec4 tessellation shaders, these loads operate by
593 * actually pulling from memory.
594 */
595 const bool is_vec4_tessellation = !is_scalar &&
596 (nir->info.stage == MESA_SHADER_TESS_CTRL ||
597 nir->info.stage == MESA_SHADER_TESS_EVAL);
598 OPT(nir_opt_peephole_select, 0, !is_vec4_tessellation, false);
599 OPT(nir_opt_peephole_select, 1, !is_vec4_tessellation,
600 compiler->devinfo->gen >= 6);
601
602 OPT(nir_opt_intrinsics);
603 OPT(nir_opt_idiv_const, 32);
604 OPT(nir_opt_algebraic);
605 OPT(nir_opt_constant_folding);
606
607 if (lower_flrp != 0) {
608 /* To match the old behavior, set always_precise only for scalar
609 * shader stages.
610 */
611 if (OPT(nir_lower_flrp,
612 lower_flrp,
613 false /* always_precise */,
614 compiler->devinfo->gen >= 6)) {
615 OPT(nir_opt_constant_folding);
616 }
617
618 /* Nothing should rematerialize any flrps, so we only need to do this
619 * lowering once.
620 */
621 lower_flrp = 0;
622 }
623
624 OPT(nir_opt_dead_cf);
625 if (OPT(nir_opt_trivial_continues)) {
626 /* If nir_opt_trivial_continues makes progress, then we need to clean
627 * things up if we want any hope of nir_opt_if or nir_opt_loop_unroll
628 * to make progress.
629 */
630 OPT(nir_copy_prop);
631 OPT(nir_opt_dce);
632 }
633 OPT(nir_opt_if, false);
634 if (nir->options->max_unroll_iterations != 0) {
635 OPT(nir_opt_loop_unroll, indirect_mask);
636 }
637 OPT(nir_opt_remove_phis);
638 OPT(nir_opt_undef);
639 OPT(nir_lower_pack);
640 } while (progress);
641
642 /* Workaround Gfxbench unused local sampler variable which will trigger an
643 * assert in the opt_large_constants pass.
644 */
645 OPT(nir_remove_dead_variables, nir_var_function_temp);
646 }
647
648 static unsigned
649 lower_bit_size_callback(const nir_alu_instr *alu, UNUSED void *data)
650 {
651 assert(alu->dest.dest.is_ssa);
652 if (alu->dest.dest.ssa.bit_size >= 32)
653 return 0;
654
655 const struct brw_compiler *compiler = (const struct brw_compiler *) data;
656
657 switch (alu->op) {
658 case nir_op_idiv:
659 case nir_op_imod:
660 case nir_op_irem:
661 case nir_op_udiv:
662 case nir_op_umod:
663 case nir_op_fceil:
664 case nir_op_ffloor:
665 case nir_op_ffract:
666 case nir_op_fround_even:
667 case nir_op_ftrunc:
668 return 32;
669 case nir_op_frcp:
670 case nir_op_frsq:
671 case nir_op_fsqrt:
672 case nir_op_fpow:
673 case nir_op_fexp2:
674 case nir_op_flog2:
675 case nir_op_fsin:
676 case nir_op_fcos:
677 return compiler->devinfo->gen < 9 ? 32 : 0;
678 default:
679 return 0;
680 }
681 }
682
683 /* Does some simple lowering and runs the standard suite of optimizations
684 *
685 * This is intended to be called more-or-less directly after you get the
686 * shader out of GLSL or some other source. While it is geared towards i965,
687 * it is not at all generator-specific except for the is_scalar flag. Even
688 * there, it is safe to call with is_scalar = false for a shader that is
689 * intended for the FS backend as long as nir_optimize is called again with
690 * is_scalar = true to scalarize everything prior to code gen.
691 */
692 void
693 brw_preprocess_nir(const struct brw_compiler *compiler, nir_shader *nir,
694 const nir_shader *softfp64)
695 {
696 const struct gen_device_info *devinfo = compiler->devinfo;
697 UNUSED bool progress; /* Written by OPT */
698
699 const bool is_scalar = compiler->scalar_stage[nir->info.stage];
700
701 if (is_scalar) {
702 OPT(nir_lower_alu_to_scalar, NULL);
703 }
704
705 if (nir->info.stage == MESA_SHADER_GEOMETRY)
706 OPT(nir_lower_gs_intrinsics);
707
708 /* See also brw_nir_trig_workarounds.py */
709 if (compiler->precise_trig &&
710 !(devinfo->gen >= 10 || devinfo->is_kabylake))
711 OPT(brw_nir_apply_trig_workarounds);
712
713 static const nir_lower_tex_options tex_options = {
714 .lower_txp = ~0,
715 .lower_txf_offset = true,
716 .lower_rect_offset = true,
717 .lower_tex_without_implicit_lod = true,
718 .lower_txd_cube_map = true,
719 .lower_txb_shadow_clamp = true,
720 .lower_txd_shadow_clamp = true,
721 .lower_txd_offset_clamp = true,
722 .lower_tg4_offsets = true,
723 };
724
725 OPT(nir_lower_tex, &tex_options);
726 OPT(nir_normalize_cubemap_coords);
727
728 OPT(nir_lower_global_vars_to_local);
729
730 OPT(nir_split_var_copies);
731 OPT(nir_split_struct_vars, nir_var_function_temp);
732
733 brw_nir_optimize(nir, compiler, is_scalar, true);
734
735 bool lowered_64bit_ops = false;
736 do {
737 progress = false;
738
739 OPT(nir_lower_int64, nir->options->lower_int64_options);
740 OPT(nir_lower_doubles, softfp64, nir->options->lower_doubles_options);
741
742 /* Necessary to lower add -> sub and div -> mul/rcp */
743 OPT(nir_opt_algebraic);
744
745 lowered_64bit_ops |= progress;
746 } while (progress);
747
748 /* This needs to be run after the first optimization pass but before we
749 * lower indirect derefs away
750 */
751 if (compiler->supports_shader_constants) {
752 OPT(nir_opt_large_constants, NULL, 32);
753 }
754
755 OPT(nir_lower_bit_size, lower_bit_size_callback, (void *)compiler);
756
757 if (is_scalar) {
758 OPT(nir_lower_load_const_to_scalar);
759 }
760
761 /* Lower a bunch of stuff */
762 OPT(nir_lower_var_copies);
763
764 OPT(nir_lower_system_values);
765
766 const nir_lower_subgroups_options subgroups_options = {
767 .subgroup_size = BRW_SUBGROUP_SIZE,
768 .ballot_bit_size = 32,
769 .lower_to_scalar = true,
770 .lower_subgroup_masks = true,
771 .lower_vote_trivial = !is_scalar,
772 .lower_shuffle = true,
773 };
774 OPT(nir_lower_subgroups, &subgroups_options);
775
776 OPT(nir_lower_clip_cull_distance_arrays);
777
778 nir_variable_mode indirect_mask =
779 brw_nir_no_indirect_mask(compiler, nir->info.stage);
780 OPT(nir_lower_indirect_derefs, indirect_mask);
781
782 /* Lower array derefs of vectors for SSBO and UBO loads. For both UBOs and
783 * SSBOs, our back-end is capable of loading an entire vec4 at a time and
784 * we would like to take advantage of that whenever possible regardless of
785 * whether or not the app gives us full loads. This should allow the
786 * optimizer to combine UBO and SSBO load operations and save us some send
787 * messages.
788 */
789 OPT(nir_lower_array_deref_of_vec,
790 nir_var_mem_ubo | nir_var_mem_ssbo,
791 nir_lower_direct_array_deref_of_vec_load);
792
793 /* Get rid of split copies */
794 brw_nir_optimize(nir, compiler, is_scalar, false);
795 }
796
797 void
798 brw_nir_link_shaders(const struct brw_compiler *compiler,
799 nir_shader **producer, nir_shader **consumer)
800 {
801 nir_lower_io_arrays_to_elements(*producer, *consumer);
802 nir_validate_shader(*producer, "after nir_lower_io_arrays_to_elements");
803 nir_validate_shader(*consumer, "after nir_lower_io_arrays_to_elements");
804
805 const bool p_is_scalar =
806 compiler->scalar_stage[(*producer)->info.stage];
807 const bool c_is_scalar =
808 compiler->scalar_stage[(*consumer)->info.stage];
809
810 if (p_is_scalar && c_is_scalar) {
811 NIR_PASS_V(*producer, nir_lower_io_to_scalar_early, nir_var_shader_out);
812 NIR_PASS_V(*consumer, nir_lower_io_to_scalar_early, nir_var_shader_in);
813 brw_nir_optimize(*producer, compiler, p_is_scalar, false);
814 brw_nir_optimize(*consumer, compiler, c_is_scalar, false);
815 }
816
817 if (nir_link_opt_varyings(*producer, *consumer))
818 brw_nir_optimize(*consumer, compiler, c_is_scalar, false);
819
820 NIR_PASS_V(*producer, nir_remove_dead_variables, nir_var_shader_out);
821 NIR_PASS_V(*consumer, nir_remove_dead_variables, nir_var_shader_in);
822
823 if (nir_remove_unused_varyings(*producer, *consumer)) {
824 NIR_PASS_V(*producer, nir_lower_global_vars_to_local);
825 NIR_PASS_V(*consumer, nir_lower_global_vars_to_local);
826
827 /* The backend might not be able to handle indirects on
828 * temporaries so we need to lower indirects on any of the
829 * varyings we have demoted here.
830 */
831 NIR_PASS_V(*producer, nir_lower_indirect_derefs,
832 brw_nir_no_indirect_mask(compiler, (*producer)->info.stage));
833 NIR_PASS_V(*consumer, nir_lower_indirect_derefs,
834 brw_nir_no_indirect_mask(compiler, (*consumer)->info.stage));
835
836 brw_nir_optimize(*producer, compiler, p_is_scalar, false);
837 brw_nir_optimize(*consumer, compiler, c_is_scalar, false);
838 }
839
840 NIR_PASS_V(*producer, nir_lower_io_to_vector, nir_var_shader_out);
841 NIR_PASS_V(*producer, nir_opt_combine_stores, nir_var_shader_out);
842 NIR_PASS_V(*consumer, nir_lower_io_to_vector, nir_var_shader_in);
843
844 if ((*producer)->info.stage != MESA_SHADER_TESS_CTRL) {
845 /* Calling lower_io_to_vector creates output variable writes with
846 * write-masks. On non-TCS outputs, the back-end can't handle it and we
847 * need to call nir_lower_io_to_temporaries to get rid of them. This,
848 * in turn, creates temporary variables and extra copy_deref intrinsics
849 * that we need to clean up.
850 */
851 NIR_PASS_V(*producer, nir_lower_io_to_temporaries,
852 nir_shader_get_entrypoint(*producer), true, false);
853 NIR_PASS_V(*producer, nir_lower_global_vars_to_local);
854 NIR_PASS_V(*producer, nir_split_var_copies);
855 NIR_PASS_V(*producer, nir_lower_var_copies);
856 }
857 }
858
859 /* Prepare the given shader for codegen
860 *
861 * This function is intended to be called right before going into the actual
862 * backend and is highly backend-specific. Also, once this function has been
863 * called on a shader, it will no longer be in SSA form so most optimizations
864 * will not work.
865 */
866 void
867 brw_postprocess_nir(nir_shader *nir, const struct brw_compiler *compiler,
868 bool is_scalar)
869 {
870 const struct gen_device_info *devinfo = compiler->devinfo;
871 bool debug_enabled =
872 (INTEL_DEBUG & intel_debug_flag_for_shader_stage(nir->info.stage));
873
874 UNUSED bool progress; /* Written by OPT */
875
876 OPT(brw_nir_lower_mem_access_bit_sizes);
877 OPT(nir_lower_int64, nir->options->lower_int64_options);
878
879 do {
880 progress = false;
881 OPT(nir_opt_algebraic_before_ffma);
882 } while (progress);
883
884 brw_nir_optimize(nir, compiler, is_scalar, false);
885
886 if (devinfo->gen >= 6) {
887 /* Try and fuse multiply-adds */
888 OPT(brw_nir_opt_peephole_ffma);
889 }
890
891 if (OPT(nir_opt_comparison_pre)) {
892 OPT(nir_copy_prop);
893 OPT(nir_opt_dce);
894 OPT(nir_opt_cse);
895
896 /* Do the select peepehole again. nir_opt_comparison_pre (combined with
897 * the other optimization passes) will have removed at least one
898 * instruction from one of the branches of the if-statement, so now it
899 * might be under the threshold of conversion to bcsel.
900 *
901 * See brw_nir_optimize for the explanation of is_vec4_tessellation.
902 */
903 const bool is_vec4_tessellation = !is_scalar &&
904 (nir->info.stage == MESA_SHADER_TESS_CTRL ||
905 nir->info.stage == MESA_SHADER_TESS_EVAL);
906 OPT(nir_opt_peephole_select, 0, is_vec4_tessellation, false);
907 OPT(nir_opt_peephole_select, 1, is_vec4_tessellation,
908 compiler->devinfo->gen >= 6);
909 }
910
911 do {
912 progress = false;
913 if (OPT(nir_opt_algebraic_late)) {
914 /* At this late stage, anything that makes more constants will wreak
915 * havok on the vec4 backend. The handling of constants in the vec4
916 * backend is not good.
917 */
918 if (is_scalar) {
919 OPT(nir_opt_constant_folding);
920 OPT(nir_copy_prop);
921 }
922 OPT(nir_opt_dce);
923 OPT(nir_opt_cse);
924 }
925 } while (progress);
926
927
928 OPT(brw_nir_lower_conversions);
929
930 if (is_scalar)
931 OPT(nir_lower_alu_to_scalar, NULL);
932 OPT(nir_lower_to_source_mods, nir_lower_all_source_mods);
933 OPT(nir_copy_prop);
934 OPT(nir_opt_dce);
935 OPT(nir_opt_move_comparisons);
936
937 OPT(nir_lower_bool_to_int32);
938
939 OPT(nir_lower_locals_to_regs);
940
941 if (unlikely(debug_enabled)) {
942 /* Re-index SSA defs so we print more sensible numbers. */
943 nir_foreach_function(function, nir) {
944 if (function->impl)
945 nir_index_ssa_defs(function->impl);
946 }
947
948 fprintf(stderr, "NIR (SSA form) for %s shader:\n",
949 _mesa_shader_stage_to_string(nir->info.stage));
950 nir_print_shader(nir, stderr);
951 }
952
953 OPT(nir_convert_from_ssa, true);
954
955 if (!is_scalar) {
956 OPT(nir_move_vec_src_uses_to_dest);
957 OPT(nir_lower_vec_to_movs);
958 }
959
960 OPT(nir_opt_dce);
961
962 if (OPT(nir_opt_rematerialize_compares))
963 OPT(nir_opt_dce);
964
965 /* This is the last pass we run before we start emitting stuff. It
966 * determines when we need to insert boolean resolves on Gen <= 5. We
967 * run it last because it stashes data in instr->pass_flags and we don't
968 * want that to be squashed by other NIR passes.
969 */
970 if (devinfo->gen <= 5)
971 brw_nir_analyze_boolean_resolves(nir);
972
973 nir_sweep(nir);
974
975 if (unlikely(debug_enabled)) {
976 fprintf(stderr, "NIR (final form) for %s shader:\n",
977 _mesa_shader_stage_to_string(nir->info.stage));
978 nir_print_shader(nir, stderr);
979 }
980 }
981
982 void
983 brw_nir_apply_sampler_key(nir_shader *nir,
984 const struct brw_compiler *compiler,
985 const struct brw_sampler_prog_key_data *key_tex,
986 bool is_scalar)
987 {
988 const struct gen_device_info *devinfo = compiler->devinfo;
989 nir_lower_tex_options tex_options = {
990 .lower_txd_clamp_bindless_sampler = true,
991 .lower_txd_clamp_if_sampler_index_not_lt_16 = true,
992 };
993
994 /* Iron Lake and prior require lowering of all rectangle textures */
995 if (devinfo->gen < 6)
996 tex_options.lower_rect = true;
997
998 /* Prior to Broadwell, our hardware can't actually do GL_CLAMP */
999 if (devinfo->gen < 8) {
1000 tex_options.saturate_s = key_tex->gl_clamp_mask[0];
1001 tex_options.saturate_t = key_tex->gl_clamp_mask[1];
1002 tex_options.saturate_r = key_tex->gl_clamp_mask[2];
1003 }
1004
1005 /* Prior to Haswell, we have to fake texture swizzle */
1006 for (unsigned s = 0; s < MAX_SAMPLERS; s++) {
1007 if (key_tex->swizzles[s] == SWIZZLE_NOOP)
1008 continue;
1009
1010 tex_options.swizzle_result |= (1 << s);
1011 for (unsigned c = 0; c < 4; c++)
1012 tex_options.swizzles[s][c] = GET_SWZ(key_tex->swizzles[s], c);
1013 }
1014
1015 /* Prior to Haswell, we have to lower gradients on shadow samplers */
1016 tex_options.lower_txd_shadow = devinfo->gen < 8 && !devinfo->is_haswell;
1017
1018 tex_options.lower_y_uv_external = key_tex->y_uv_image_mask;
1019 tex_options.lower_y_u_v_external = key_tex->y_u_v_image_mask;
1020 tex_options.lower_yx_xuxv_external = key_tex->yx_xuxv_image_mask;
1021 tex_options.lower_xy_uxvx_external = key_tex->xy_uxvx_image_mask;
1022 tex_options.lower_ayuv_external = key_tex->ayuv_image_mask;
1023 tex_options.lower_xyuv_external = key_tex->xyuv_image_mask;
1024
1025 /* Setup array of scaling factors for each texture. */
1026 memcpy(&tex_options.scale_factors, &key_tex->scale_factors,
1027 sizeof(tex_options.scale_factors));
1028
1029 if (nir_lower_tex(nir, &tex_options)) {
1030 nir_validate_shader(nir, "after nir_lower_tex");
1031 brw_nir_optimize(nir, compiler, is_scalar, false);
1032 }
1033 }
1034
1035 enum brw_reg_type
1036 brw_type_for_nir_type(const struct gen_device_info *devinfo, nir_alu_type type)
1037 {
1038 switch (type) {
1039 case nir_type_uint:
1040 case nir_type_uint32:
1041 return BRW_REGISTER_TYPE_UD;
1042 case nir_type_bool:
1043 case nir_type_int:
1044 case nir_type_bool32:
1045 case nir_type_int32:
1046 return BRW_REGISTER_TYPE_D;
1047 case nir_type_float:
1048 case nir_type_float32:
1049 return BRW_REGISTER_TYPE_F;
1050 case nir_type_float16:
1051 return BRW_REGISTER_TYPE_HF;
1052 case nir_type_float64:
1053 return BRW_REGISTER_TYPE_DF;
1054 case nir_type_int64:
1055 return devinfo->gen < 8 ? BRW_REGISTER_TYPE_DF : BRW_REGISTER_TYPE_Q;
1056 case nir_type_uint64:
1057 return devinfo->gen < 8 ? BRW_REGISTER_TYPE_DF : BRW_REGISTER_TYPE_UQ;
1058 case nir_type_int16:
1059 return BRW_REGISTER_TYPE_W;
1060 case nir_type_uint16:
1061 return BRW_REGISTER_TYPE_UW;
1062 case nir_type_int8:
1063 return BRW_REGISTER_TYPE_B;
1064 case nir_type_uint8:
1065 return BRW_REGISTER_TYPE_UB;
1066 default:
1067 unreachable("unknown type");
1068 }
1069
1070 return BRW_REGISTER_TYPE_F;
1071 }
1072
1073 /* Returns the glsl_base_type corresponding to a nir_alu_type.
1074 * This is used by both brw_vec4_nir and brw_fs_nir.
1075 */
1076 enum glsl_base_type
1077 brw_glsl_base_type_for_nir_type(nir_alu_type type)
1078 {
1079 switch (type) {
1080 case nir_type_float:
1081 case nir_type_float32:
1082 return GLSL_TYPE_FLOAT;
1083
1084 case nir_type_float16:
1085 return GLSL_TYPE_FLOAT16;
1086
1087 case nir_type_float64:
1088 return GLSL_TYPE_DOUBLE;
1089
1090 case nir_type_int:
1091 case nir_type_int32:
1092 return GLSL_TYPE_INT;
1093
1094 case nir_type_uint:
1095 case nir_type_uint32:
1096 return GLSL_TYPE_UINT;
1097
1098 case nir_type_int16:
1099 return GLSL_TYPE_INT16;
1100
1101 case nir_type_uint16:
1102 return GLSL_TYPE_UINT16;
1103
1104 default:
1105 unreachable("bad type");
1106 }
1107 }
1108
1109 nir_shader *
1110 brw_nir_create_passthrough_tcs(void *mem_ctx, const struct brw_compiler *compiler,
1111 const nir_shader_compiler_options *options,
1112 const struct brw_tcs_prog_key *key)
1113 {
1114 nir_builder b;
1115 nir_builder_init_simple_shader(&b, mem_ctx, MESA_SHADER_TESS_CTRL,
1116 options);
1117 nir_shader *nir = b.shader;
1118 nir_variable *var;
1119 nir_intrinsic_instr *load;
1120 nir_intrinsic_instr *store;
1121 nir_ssa_def *zero = nir_imm_int(&b, 0);
1122 nir_ssa_def *invoc_id = nir_load_invocation_id(&b);
1123
1124 nir->info.inputs_read = key->outputs_written &
1125 ~(VARYING_BIT_TESS_LEVEL_INNER | VARYING_BIT_TESS_LEVEL_OUTER);
1126 nir->info.outputs_written = key->outputs_written;
1127 nir->info.tess.tcs_vertices_out = key->input_vertices;
1128 nir->info.name = ralloc_strdup(nir, "passthrough");
1129 nir->num_uniforms = 8 * sizeof(uint32_t);
1130
1131 var = nir_variable_create(nir, nir_var_uniform, glsl_vec4_type(), "hdr_0");
1132 var->data.location = 0;
1133 var = nir_variable_create(nir, nir_var_uniform, glsl_vec4_type(), "hdr_1");
1134 var->data.location = 1;
1135
1136 /* Write the patch URB header. */
1137 for (int i = 0; i <= 1; i++) {
1138 load = nir_intrinsic_instr_create(nir, nir_intrinsic_load_uniform);
1139 load->num_components = 4;
1140 load->src[0] = nir_src_for_ssa(zero);
1141 nir_ssa_dest_init(&load->instr, &load->dest, 4, 32, NULL);
1142 nir_intrinsic_set_base(load, i * 4 * sizeof(uint32_t));
1143 nir_builder_instr_insert(&b, &load->instr);
1144
1145 store = nir_intrinsic_instr_create(nir, nir_intrinsic_store_output);
1146 store->num_components = 4;
1147 store->src[0] = nir_src_for_ssa(&load->dest.ssa);
1148 store->src[1] = nir_src_for_ssa(zero);
1149 nir_intrinsic_set_base(store, VARYING_SLOT_TESS_LEVEL_INNER - i);
1150 nir_intrinsic_set_write_mask(store, WRITEMASK_XYZW);
1151 nir_builder_instr_insert(&b, &store->instr);
1152 }
1153
1154 /* Copy inputs to outputs. */
1155 uint64_t varyings = nir->info.inputs_read;
1156
1157 while (varyings != 0) {
1158 const int varying = ffsll(varyings) - 1;
1159
1160 load = nir_intrinsic_instr_create(nir,
1161 nir_intrinsic_load_per_vertex_input);
1162 load->num_components = 4;
1163 load->src[0] = nir_src_for_ssa(invoc_id);
1164 load->src[1] = nir_src_for_ssa(zero);
1165 nir_ssa_dest_init(&load->instr, &load->dest, 4, 32, NULL);
1166 nir_intrinsic_set_base(load, varying);
1167 nir_builder_instr_insert(&b, &load->instr);
1168
1169 store = nir_intrinsic_instr_create(nir,
1170 nir_intrinsic_store_per_vertex_output);
1171 store->num_components = 4;
1172 store->src[0] = nir_src_for_ssa(&load->dest.ssa);
1173 store->src[1] = nir_src_for_ssa(invoc_id);
1174 store->src[2] = nir_src_for_ssa(zero);
1175 nir_intrinsic_set_base(store, varying);
1176 nir_intrinsic_set_write_mask(store, WRITEMASK_XYZW);
1177 nir_builder_instr_insert(&b, &store->instr);
1178
1179 varyings &= ~BITFIELD64_BIT(varying);
1180 }
1181
1182 nir_validate_shader(nir, "in brw_nir_create_passthrough_tcs");
1183
1184 brw_preprocess_nir(compiler, nir, NULL);
1185
1186 return nir;
1187 }