i965/compiler: Disable trig workarounds on KBL+
[mesa.git] / src / mesa / drivers / dri / i965 / 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 "compiler/glsl_types.h"
27 #include "compiler/nir/nir_builder.h"
28
29 static bool
30 is_input(nir_intrinsic_instr *intrin)
31 {
32 return intrin->intrinsic == nir_intrinsic_load_input ||
33 intrin->intrinsic == nir_intrinsic_load_per_vertex_input ||
34 intrin->intrinsic == nir_intrinsic_load_interpolated_input;
35 }
36
37 static bool
38 is_output(nir_intrinsic_instr *intrin)
39 {
40 return intrin->intrinsic == nir_intrinsic_load_output ||
41 intrin->intrinsic == nir_intrinsic_load_per_vertex_output ||
42 intrin->intrinsic == nir_intrinsic_store_output ||
43 intrin->intrinsic == nir_intrinsic_store_per_vertex_output;
44 }
45
46 /**
47 * In many cases, we just add the base and offset together, so there's no
48 * reason to keep them separate. Sometimes, combining them is essential:
49 * if a shader only accesses part of a compound variable (such as a matrix
50 * or array), the variable's base may not actually exist in the VUE map.
51 *
52 * This pass adds constant offsets to instr->const_index[0], and resets
53 * the offset source to 0. Non-constant offsets remain unchanged - since
54 * we don't know what part of a compound variable is accessed, we allocate
55 * storage for the entire thing.
56 */
57
58 static bool
59 add_const_offset_to_base_block(nir_block *block, nir_builder *b,
60 nir_variable_mode mode)
61 {
62 nir_foreach_instr_safe(instr, block) {
63 if (instr->type != nir_instr_type_intrinsic)
64 continue;
65
66 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
67
68 if ((mode == nir_var_shader_in && is_input(intrin)) ||
69 (mode == nir_var_shader_out && is_output(intrin))) {
70 nir_src *offset = nir_get_io_offset_src(intrin);
71 nir_const_value *const_offset = nir_src_as_const_value(*offset);
72
73 if (const_offset) {
74 intrin->const_index[0] += const_offset->u32[0];
75 b->cursor = nir_before_instr(&intrin->instr);
76 nir_instr_rewrite_src(&intrin->instr, offset,
77 nir_src_for_ssa(nir_imm_int(b, 0)));
78 }
79 }
80 }
81 return true;
82 }
83
84 static void
85 add_const_offset_to_base(nir_shader *nir, nir_variable_mode mode)
86 {
87 nir_foreach_function(f, nir) {
88 if (f->impl) {
89 nir_builder b;
90 nir_builder_init(&b, f->impl);
91 nir_foreach_block(block, f->impl) {
92 add_const_offset_to_base_block(block, &b, mode);
93 }
94 }
95 }
96 }
97
98 static bool
99 remap_vs_attrs(nir_block *block, shader_info *nir_info)
100 {
101 nir_foreach_instr(instr, block) {
102 if (instr->type != nir_instr_type_intrinsic)
103 continue;
104
105 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
106
107 if (intrin->intrinsic == nir_intrinsic_load_input) {
108 /* Attributes come in a contiguous block, ordered by their
109 * gl_vert_attrib value. That means we can compute the slot
110 * number for an attribute by masking out the enabled attributes
111 * before it and counting the bits.
112 */
113 int attr = intrin->const_index[0];
114 int slot = _mesa_bitcount_64(nir_info->inputs_read &
115 BITFIELD64_MASK(attr));
116 int dslot = _mesa_bitcount_64(nir_info->double_inputs_read &
117 BITFIELD64_MASK(attr));
118 intrin->const_index[0] = 4 * (slot + dslot);
119 }
120 }
121 return true;
122 }
123
124 static bool
125 remap_inputs_with_vue_map(nir_block *block, const struct brw_vue_map *vue_map)
126 {
127 nir_foreach_instr(instr, block) {
128 if (instr->type != nir_instr_type_intrinsic)
129 continue;
130
131 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
132
133 if (intrin->intrinsic == nir_intrinsic_load_input ||
134 intrin->intrinsic == nir_intrinsic_load_per_vertex_input) {
135 int vue_slot = vue_map->varying_to_slot[intrin->const_index[0]];
136 assert(vue_slot != -1);
137 intrin->const_index[0] = vue_slot;
138 }
139 }
140 return true;
141 }
142
143 static bool
144 remap_patch_urb_offsets(nir_block *block, nir_builder *b,
145 const struct brw_vue_map *vue_map)
146 {
147 nir_foreach_instr_safe(instr, block) {
148 if (instr->type != nir_instr_type_intrinsic)
149 continue;
150
151 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
152
153 gl_shader_stage stage = b->shader->stage;
154
155 if ((stage == MESA_SHADER_TESS_CTRL && is_output(intrin)) ||
156 (stage == MESA_SHADER_TESS_EVAL && is_input(intrin))) {
157 int vue_slot = vue_map->varying_to_slot[intrin->const_index[0]];
158 assert(vue_slot != -1);
159 intrin->const_index[0] = vue_slot;
160
161 nir_src *vertex = nir_get_io_vertex_index_src(intrin);
162 if (vertex) {
163 nir_const_value *const_vertex = nir_src_as_const_value(*vertex);
164 if (const_vertex) {
165 intrin->const_index[0] += const_vertex->u32[0] *
166 vue_map->num_per_vertex_slots;
167 } else {
168 b->cursor = nir_before_instr(&intrin->instr);
169
170 /* Multiply by the number of per-vertex slots. */
171 nir_ssa_def *vertex_offset =
172 nir_imul(b,
173 nir_ssa_for_src(b, *vertex, 1),
174 nir_imm_int(b,
175 vue_map->num_per_vertex_slots));
176
177 /* Add it to the existing offset */
178 nir_src *offset = nir_get_io_offset_src(intrin);
179 nir_ssa_def *total_offset =
180 nir_iadd(b, vertex_offset,
181 nir_ssa_for_src(b, *offset, 1));
182
183 nir_instr_rewrite_src(&intrin->instr, offset,
184 nir_src_for_ssa(total_offset));
185 }
186 }
187 }
188 }
189 return true;
190 }
191
192 void
193 brw_nir_lower_vs_inputs(nir_shader *nir,
194 bool is_scalar,
195 bool use_legacy_snorm_formula,
196 const uint8_t *vs_attrib_wa_flags)
197 {
198 /* Start with the location of the variable's base. */
199 foreach_list_typed(nir_variable, var, node, &nir->inputs) {
200 var->data.driver_location = var->data.location;
201 }
202
203 /* Now use nir_lower_io to walk dereference chains. Attribute arrays are
204 * loaded as one vec4 or dvec4 per element (or matrix column), depending on
205 * whether it is a double-precision type or not.
206 */
207 nir_lower_io(nir, nir_var_shader_in, type_size_vs_input, 0);
208
209 /* This pass needs actual constants */
210 nir_opt_constant_folding(nir);
211
212 add_const_offset_to_base(nir, nir_var_shader_in);
213
214 brw_nir_apply_attribute_workarounds(nir, use_legacy_snorm_formula,
215 vs_attrib_wa_flags);
216
217 if (is_scalar) {
218 /* Finally, translate VERT_ATTRIB_* values into the actual registers. */
219
220 nir_foreach_function(function, nir) {
221 if (function->impl) {
222 nir_foreach_block(block, function->impl) {
223 remap_vs_attrs(block, nir->info);
224 }
225 }
226 }
227 }
228 }
229
230 void
231 brw_nir_lower_vue_inputs(nir_shader *nir, bool is_scalar,
232 const struct brw_vue_map *vue_map)
233 {
234 foreach_list_typed(nir_variable, var, node, &nir->inputs) {
235 var->data.driver_location = var->data.location;
236 }
237
238 /* Inputs are stored in vec4 slots, so use type_size_vec4(). */
239 nir_lower_io(nir, nir_var_shader_in, type_size_vec4, 0);
240
241 if (is_scalar || nir->stage != MESA_SHADER_GEOMETRY) {
242 /* This pass needs actual constants */
243 nir_opt_constant_folding(nir);
244
245 add_const_offset_to_base(nir, nir_var_shader_in);
246
247 nir_foreach_function(function, nir) {
248 if (function->impl) {
249 nir_foreach_block(block, function->impl) {
250 remap_inputs_with_vue_map(block, vue_map);
251 }
252 }
253 }
254 }
255 }
256
257 void
258 brw_nir_lower_tes_inputs(nir_shader *nir, const struct brw_vue_map *vue_map)
259 {
260 foreach_list_typed(nir_variable, var, node, &nir->inputs) {
261 var->data.driver_location = var->data.location;
262 }
263
264 nir_lower_io(nir, nir_var_shader_in, type_size_vec4, 0);
265
266 /* This pass needs actual constants */
267 nir_opt_constant_folding(nir);
268
269 add_const_offset_to_base(nir, nir_var_shader_in);
270
271 nir_foreach_function(function, nir) {
272 if (function->impl) {
273 nir_builder b;
274 nir_builder_init(&b, function->impl);
275 nir_foreach_block(block, function->impl) {
276 remap_patch_urb_offsets(block, &b, vue_map);
277 }
278 }
279 }
280 }
281
282 void
283 brw_nir_lower_fs_inputs(nir_shader *nir, struct brw_vue_map *vue_map,
284 struct gl_program *prog,
285 const struct gen_device_info *devinfo,
286 const struct brw_wm_prog_key *key)
287 {
288 foreach_list_typed(nir_variable, var, node, &nir->inputs) {
289 var->data.driver_location = var->data.location;
290
291 /* Apply default interpolation mode.
292 *
293 * Everything defaults to smooth except for the legacy GL color
294 * built-in variables, which might be flat depending on API state.
295 */
296 if (var->data.interpolation == INTERP_MODE_NONE) {
297 const bool flat = key->flat_shade &&
298 (var->data.location == VARYING_SLOT_COL0 ||
299 var->data.location == VARYING_SLOT_COL1);
300
301 var->data.interpolation = flat ? INTERP_MODE_FLAT
302 : INTERP_MODE_SMOOTH;
303 }
304
305 /* On Ironlake and below, there is only one interpolation mode.
306 * Centroid interpolation doesn't mean anything on this hardware --
307 * there is no multisampling.
308 */
309 if (devinfo->gen < 6) {
310 var->data.centroid = false;
311 var->data.sample = false;
312 }
313 }
314
315 if (devinfo->gen < 6) {
316 assert(prog); /* prog will be NULL when called from Vulkan */
317 brw_setup_vue_interpolation(vue_map, nir, prog, devinfo);
318 }
319
320 nir_lower_io_options lower_io_options = 0;
321 if (key->persample_interp)
322 lower_io_options |= nir_lower_io_force_sample_interpolation;
323
324 nir_lower_io(nir, nir_var_shader_in, type_size_vec4, lower_io_options);
325
326 /* This pass needs actual constants */
327 nir_opt_constant_folding(nir);
328
329 add_const_offset_to_base(nir, nir_var_shader_in);
330 }
331
332 void
333 brw_nir_lower_vue_outputs(nir_shader *nir,
334 bool is_scalar)
335 {
336 nir_foreach_variable(var, &nir->outputs) {
337 var->data.driver_location = var->data.location;
338 }
339
340 nir_lower_io(nir, nir_var_shader_out, type_size_vec4, 0);
341 }
342
343 void
344 brw_nir_lower_tcs_outputs(nir_shader *nir, const struct brw_vue_map *vue_map)
345 {
346 nir_foreach_variable(var, &nir->outputs) {
347 var->data.driver_location = var->data.location;
348 }
349
350 nir_lower_io(nir, nir_var_shader_out, type_size_vec4, 0);
351
352 /* This pass needs actual constants */
353 nir_opt_constant_folding(nir);
354
355 add_const_offset_to_base(nir, nir_var_shader_out);
356
357 nir_foreach_function(function, nir) {
358 if (function->impl) {
359 nir_builder b;
360 nir_builder_init(&b, function->impl);
361 nir_foreach_block(block, function->impl) {
362 remap_patch_urb_offsets(block, &b, vue_map);
363 }
364 }
365 }
366 }
367
368 void
369 brw_nir_lower_fs_outputs(nir_shader *nir)
370 {
371 nir_foreach_variable(var, &nir->outputs) {
372 var->data.driver_location =
373 SET_FIELD(var->data.index, BRW_NIR_FRAG_OUTPUT_INDEX) |
374 SET_FIELD(var->data.location, BRW_NIR_FRAG_OUTPUT_LOCATION);
375 }
376
377 nir_lower_io(nir, nir_var_shader_out, type_size_dvec4, 0);
378 }
379
380 void
381 brw_nir_lower_cs_shared(nir_shader *nir)
382 {
383 nir_assign_var_locations(&nir->shared, &nir->num_shared,
384 type_size_scalar_bytes);
385 nir_lower_io(nir, nir_var_shared, type_size_scalar_bytes, 0);
386 }
387
388 #define OPT(pass, ...) ({ \
389 bool this_progress = false; \
390 NIR_PASS(this_progress, nir, pass, ##__VA_ARGS__); \
391 if (this_progress) \
392 progress = true; \
393 this_progress; \
394 })
395
396 #define OPT_V(pass, ...) NIR_PASS_V(nir, pass, ##__VA_ARGS__)
397
398 static nir_shader *
399 nir_optimize(nir_shader *nir, bool is_scalar)
400 {
401 bool progress;
402 do {
403 progress = false;
404 OPT_V(nir_lower_vars_to_ssa);
405
406 if (is_scalar) {
407 OPT(nir_lower_alu_to_scalar);
408 }
409
410 OPT(nir_copy_prop);
411
412 if (is_scalar) {
413 OPT(nir_lower_phis_to_scalar);
414 }
415
416 OPT(nir_copy_prop);
417 OPT(nir_opt_dce);
418 OPT(nir_opt_cse);
419 OPT(nir_opt_peephole_select, 0);
420 OPT(nir_opt_algebraic);
421 OPT(nir_opt_constant_folding);
422 OPT(nir_opt_dead_cf);
423 OPT(nir_opt_remove_phis);
424 OPT(nir_opt_undef);
425 OPT_V(nir_lower_doubles, nir_lower_drcp |
426 nir_lower_dsqrt |
427 nir_lower_drsq |
428 nir_lower_dtrunc |
429 nir_lower_dfloor |
430 nir_lower_dceil |
431 nir_lower_dfract |
432 nir_lower_dround_even |
433 nir_lower_dmod);
434 OPT_V(nir_lower_double_pack);
435 } while (progress);
436
437 return nir;
438 }
439
440 /* Does some simple lowering and runs the standard suite of optimizations
441 *
442 * This is intended to be called more-or-less directly after you get the
443 * shader out of GLSL or some other source. While it is geared towards i965,
444 * it is not at all generator-specific except for the is_scalar flag. Even
445 * there, it is safe to call with is_scalar = false for a shader that is
446 * intended for the FS backend as long as nir_optimize is called again with
447 * is_scalar = true to scalarize everything prior to code gen.
448 */
449 nir_shader *
450 brw_preprocess_nir(const struct brw_compiler *compiler, nir_shader *nir)
451 {
452 const struct gen_device_info *devinfo = compiler->devinfo;
453 bool progress; /* Written by OPT and OPT_V */
454 (void)progress;
455
456 const bool is_scalar = compiler->scalar_stage[nir->stage];
457
458 if (nir->stage == MESA_SHADER_GEOMETRY)
459 OPT(nir_lower_gs_intrinsics);
460
461 /* See also brw_nir_trig_workarounds.py */
462 if (compiler->precise_trig &&
463 !(devinfo->gen >= 10 || devinfo->is_kabylake))
464 OPT(brw_nir_apply_trig_workarounds);
465
466 static const nir_lower_tex_options tex_options = {
467 .lower_txp = ~0,
468 .lower_txf_offset = true,
469 .lower_rect_offset = true,
470 };
471
472 OPT(nir_lower_tex, &tex_options);
473 OPT(nir_normalize_cubemap_coords);
474
475 OPT(nir_lower_global_vars_to_local);
476
477 OPT(nir_split_var_copies);
478
479 nir = nir_optimize(nir, is_scalar);
480
481 if (is_scalar) {
482 OPT_V(nir_lower_load_const_to_scalar);
483 }
484
485 /* Lower a bunch of stuff */
486 OPT_V(nir_lower_var_copies);
487
488 /* Get rid of split copies */
489 nir = nir_optimize(nir, is_scalar);
490
491 OPT_V(nir_lower_clip_cull_distance_arrays);
492
493 OPT(nir_remove_dead_variables, nir_var_local);
494
495 return nir;
496 }
497
498 /* Prepare the given shader for codegen
499 *
500 * This function is intended to be called right before going into the actual
501 * backend and is highly backend-specific. Also, once this function has been
502 * called on a shader, it will no longer be in SSA form so most optimizations
503 * will not work.
504 */
505 nir_shader *
506 brw_postprocess_nir(nir_shader *nir,
507 const struct gen_device_info *devinfo,
508 bool is_scalar)
509 {
510 bool debug_enabled =
511 (INTEL_DEBUG & intel_debug_flag_for_shader_stage(nir->stage));
512
513 bool progress; /* Written by OPT and OPT_V */
514 (void)progress;
515
516 nir = nir_optimize(nir, is_scalar);
517
518 if (devinfo->gen >= 6) {
519 /* Try and fuse multiply-adds */
520 OPT(brw_nir_opt_peephole_ffma);
521 }
522
523 OPT(nir_opt_algebraic_late);
524
525 OPT(nir_lower_locals_to_regs);
526
527 OPT_V(nir_lower_to_source_mods);
528 OPT(nir_copy_prop);
529 OPT(nir_opt_dce);
530
531 if (unlikely(debug_enabled)) {
532 /* Re-index SSA defs so we print more sensible numbers. */
533 nir_foreach_function(function, nir) {
534 if (function->impl)
535 nir_index_ssa_defs(function->impl);
536 }
537
538 fprintf(stderr, "NIR (SSA form) for %s shader:\n",
539 _mesa_shader_stage_to_string(nir->stage));
540 nir_print_shader(nir, stderr);
541 }
542
543 OPT_V(nir_convert_from_ssa, true);
544
545 if (!is_scalar) {
546 OPT_V(nir_move_vec_src_uses_to_dest);
547 OPT(nir_lower_vec_to_movs);
548 }
549
550 /* This is the last pass we run before we start emitting stuff. It
551 * determines when we need to insert boolean resolves on Gen <= 5. We
552 * run it last because it stashes data in instr->pass_flags and we don't
553 * want that to be squashed by other NIR passes.
554 */
555 if (devinfo->gen <= 5)
556 brw_nir_analyze_boolean_resolves(nir);
557
558 nir_sweep(nir);
559
560 if (unlikely(debug_enabled)) {
561 fprintf(stderr, "NIR (final form) for %s shader:\n",
562 _mesa_shader_stage_to_string(nir->stage));
563 nir_print_shader(nir, stderr);
564 }
565
566 return nir;
567 }
568
569 nir_shader *
570 brw_nir_apply_sampler_key(nir_shader *nir,
571 const struct gen_device_info *devinfo,
572 const struct brw_sampler_prog_key_data *key_tex,
573 bool is_scalar)
574 {
575 nir_lower_tex_options tex_options = { 0 };
576
577 /* Iron Lake and prior require lowering of all rectangle textures */
578 if (devinfo->gen < 6)
579 tex_options.lower_rect = true;
580
581 /* Prior to Broadwell, our hardware can't actually do GL_CLAMP */
582 if (devinfo->gen < 8) {
583 tex_options.saturate_s = key_tex->gl_clamp_mask[0];
584 tex_options.saturate_t = key_tex->gl_clamp_mask[1];
585 tex_options.saturate_r = key_tex->gl_clamp_mask[2];
586 }
587
588 /* Prior to Haswell, we have to fake texture swizzle */
589 for (unsigned s = 0; s < MAX_SAMPLERS; s++) {
590 if (key_tex->swizzles[s] == SWIZZLE_NOOP)
591 continue;
592
593 tex_options.swizzle_result |= (1 << s);
594 for (unsigned c = 0; c < 4; c++)
595 tex_options.swizzles[s][c] = GET_SWZ(key_tex->swizzles[s], c);
596 }
597
598 tex_options.lower_y_uv_external = key_tex->y_uv_image_mask;
599 tex_options.lower_y_u_v_external = key_tex->y_u_v_image_mask;
600 tex_options.lower_yx_xuxv_external = key_tex->yx_xuxv_image_mask;
601
602 if (nir_lower_tex(nir, &tex_options)) {
603 nir_validate_shader(nir);
604 nir = nir_optimize(nir, is_scalar);
605 }
606
607 return nir;
608 }
609
610 enum brw_reg_type
611 brw_type_for_nir_type(nir_alu_type type)
612 {
613 switch (type) {
614 case nir_type_uint:
615 case nir_type_uint32:
616 return BRW_REGISTER_TYPE_UD;
617 case nir_type_bool:
618 case nir_type_int:
619 case nir_type_bool32:
620 case nir_type_int32:
621 return BRW_REGISTER_TYPE_D;
622 case nir_type_float:
623 case nir_type_float32:
624 return BRW_REGISTER_TYPE_F;
625 case nir_type_float64:
626 return BRW_REGISTER_TYPE_DF;
627 case nir_type_int64:
628 case nir_type_uint64:
629 /* TODO we should only see these in moves, so for now it's ok, but when
630 * we add actual 64-bit integer support we should fix this.
631 */
632 return BRW_REGISTER_TYPE_DF;
633 default:
634 unreachable("unknown type");
635 }
636
637 return BRW_REGISTER_TYPE_F;
638 }
639
640 /* Returns the glsl_base_type corresponding to a nir_alu_type.
641 * This is used by both brw_vec4_nir and brw_fs_nir.
642 */
643 enum glsl_base_type
644 brw_glsl_base_type_for_nir_type(nir_alu_type type)
645 {
646 switch (type) {
647 case nir_type_float:
648 case nir_type_float32:
649 return GLSL_TYPE_FLOAT;
650
651 case nir_type_float64:
652 return GLSL_TYPE_DOUBLE;
653
654 case nir_type_int:
655 case nir_type_int32:
656 return GLSL_TYPE_INT;
657
658 case nir_type_uint:
659 case nir_type_uint32:
660 return GLSL_TYPE_UINT;
661
662 default:
663 unreachable("bad type");
664 }
665 }