st/mesa: add some debug code in st_choose_format()
[mesa.git] / src / mesa / state_tracker / st_glsl_to_nir.cpp
1 /*
2 * Copyright © 2015 Red Hat
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 FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24 #include "st_nir.h"
25
26 #include "pipe/p_defines.h"
27 #include "pipe/p_screen.h"
28 #include "pipe/p_context.h"
29
30 #include "program/program.h"
31 #include "program/prog_statevars.h"
32 #include "program/prog_parameter.h"
33 #include "program/ir_to_mesa.h"
34 #include "main/mtypes.h"
35 #include "main/errors.h"
36 #include "main/shaderapi.h"
37 #include "main/uniforms.h"
38
39 #include "st_context.h"
40 #include "st_program.h"
41
42 #include "compiler/nir/nir.h"
43 #include "compiler/glsl_types.h"
44 #include "compiler/glsl/glsl_to_nir.h"
45 #include "compiler/glsl/ir.h"
46 #include "compiler/glsl/string_to_uint_map.h"
47
48
49 static int
50 type_size(const struct glsl_type *type)
51 {
52 return type->count_attribute_slots(false);
53 }
54
55 /* Depending on PIPE_CAP_TGSI_TEXCOORD (st->needs_texcoord_semantic) we
56 * may need to fix up varying slots so the glsl->nir path is aligned
57 * with the anything->tgsi->nir path.
58 */
59 static void
60 st_nir_fixup_varying_slots(struct st_context *st, struct exec_list *var_list)
61 {
62 if (st->needs_texcoord_semantic)
63 return;
64
65 nir_foreach_variable(var, var_list) {
66 if (var->data.location >= VARYING_SLOT_VAR0) {
67 var->data.location += 9;
68 } else if ((var->data.location >= VARYING_SLOT_TEX0) &&
69 (var->data.location <= VARYING_SLOT_TEX7)) {
70 var->data.location += VARYING_SLOT_VAR0 - VARYING_SLOT_TEX0;
71 }
72 }
73 }
74
75 /* input location assignment for VS inputs must be handled specially, so
76 * that it is aligned w/ st's vbo state.
77 * (This isn't the case with, for ex, FS inputs, which only need to agree
78 * on varying-slot w/ the VS outputs)
79 */
80 static void
81 st_nir_assign_vs_in_locations(struct gl_program *prog, nir_shader *nir)
82 {
83 unsigned attr, num_inputs = 0;
84 unsigned input_to_index[VERT_ATTRIB_MAX] = {0};
85
86 /* TODO de-duplicate w/ similar code in st_translate_vertex_program()? */
87 for (attr = 0; attr < VERT_ATTRIB_MAX; attr++) {
88 if ((prog->info.inputs_read & BITFIELD64_BIT(attr)) != 0) {
89 input_to_index[attr] = num_inputs;
90 num_inputs++;
91 if ((prog->info.double_inputs_read & BITFIELD64_BIT(attr)) != 0) {
92 /* add placeholder for second part of a double attribute */
93 num_inputs++;
94 }
95 } else {
96 input_to_index[attr] = ~0;
97 }
98 }
99
100 /* bit of a hack, mirroring st_translate_vertex_program */
101 input_to_index[VERT_ATTRIB_EDGEFLAG] = num_inputs;
102
103 nir->num_inputs = 0;
104 nir_foreach_variable_safe(var, &nir->inputs) {
105 attr = var->data.location;
106 assert(attr < ARRAY_SIZE(input_to_index));
107
108 if (input_to_index[attr] != ~0u) {
109 var->data.driver_location = input_to_index[attr];
110 nir->num_inputs++;
111 } else {
112 /* Move unused input variables to the globals list (with no
113 * initialization), to avoid confusing drivers looking through the
114 * inputs array and expecting to find inputs with a driver_location
115 * set.
116 */
117 exec_node_remove(&var->node);
118 var->data.mode = nir_var_global;
119 exec_list_push_tail(&nir->globals, &var->node);
120 }
121 }
122 }
123
124 static void
125 st_nir_assign_var_locations(struct exec_list *var_list, unsigned *size,
126 gl_shader_stage stage)
127 {
128 unsigned location = 0;
129 unsigned assigned_locations[VARYING_SLOT_TESS_MAX];
130 uint64_t processed_locs = 0;
131 uint32_t processed_patch_locs = 0;
132
133 nir_foreach_variable(var, var_list) {
134
135 const struct glsl_type *type = var->type;
136 if (nir_is_per_vertex_io(var, stage)) {
137 assert(glsl_type_is_array(type));
138 type = glsl_get_array_element(type);
139 }
140
141 bool processed = false;
142 if (var->data.patch &&
143 var->data.location != VARYING_SLOT_TESS_LEVEL_INNER &&
144 var->data.location != VARYING_SLOT_TESS_LEVEL_OUTER &&
145 var->data.location != VARYING_SLOT_BOUNDING_BOX0 &&
146 var->data.location != VARYING_SLOT_BOUNDING_BOX1) {
147 unsigned patch_loc = var->data.location - VARYING_SLOT_PATCH0;
148 if (processed_patch_locs & (1 << patch_loc))
149 processed = true;
150
151 processed_patch_locs |= (1 << patch_loc);
152 } else {
153 if (processed_locs & ((uint64_t)1 << var->data.location))
154 processed = true;
155
156 processed_locs |= ((uint64_t)1 << var->data.location);
157 }
158
159 /* Because component packing allows varyings to share the same location
160 * we may have already have processed this location.
161 */
162 if (processed && var->data.location >= VARYING_SLOT_VAR0) {
163 var->data.driver_location = assigned_locations[var->data.location];
164 *size += type_size(type);
165 continue;
166 }
167
168 assigned_locations[var->data.location] = location;
169 var->data.driver_location = location;
170 location += type_size(type);
171 }
172
173 *size += location;
174 }
175
176 static int
177 st_nir_lookup_parameter_index(const struct gl_program_parameter_list *params,
178 const char *name)
179 {
180 int loc = _mesa_lookup_parameter_index(params, name);
181
182 /* is there a better way to do this? If we have something like:
183 *
184 * struct S {
185 * float f;
186 * vec4 v;
187 * };
188 * uniform S color;
189 *
190 * Then what we get in prog->Parameters looks like:
191 *
192 * 0: Name=color.f, Type=6, DataType=1406, Size=1
193 * 1: Name=color.v, Type=6, DataType=8b52, Size=4
194 *
195 * So the name doesn't match up and _mesa_lookup_parameter_index()
196 * fails. In this case just find the first matching "color.*"..
197 *
198 * Note for arrays you could end up w/ color[n].f, for example.
199 *
200 * glsl_to_tgsi works slightly differently in this regard. It is
201 * emitting something more low level, so it just translates the
202 * params list 1:1 to CONST[] regs. Going from GLSL IR to TGSI,
203 * it just calculates the additional offset of struct field members
204 * in glsl_to_tgsi_visitor::visit(ir_dereference_record *ir) or
205 * glsl_to_tgsi_visitor::visit(ir_dereference_array *ir). It never
206 * needs to work backwards to get base var loc from the param-list
207 * which already has them separated out.
208 */
209 if (loc < 0) {
210 int namelen = strlen(name);
211 for (unsigned i = 0; i < params->NumParameters; i++) {
212 struct gl_program_parameter *p = &params->Parameters[i];
213 if ((strncmp(p->Name, name, namelen) == 0) &&
214 ((p->Name[namelen] == '.') || (p->Name[namelen] == '['))) {
215 loc = i;
216 break;
217 }
218 }
219 }
220
221 return loc;
222 }
223
224 static void
225 st_nir_assign_uniform_locations(struct gl_program *prog,
226 struct gl_shader_program *shader_program,
227 struct exec_list *uniform_list, unsigned *size)
228 {
229 int max = 0;
230 int shaderidx = 0;
231 int imageidx = 0;
232
233 nir_foreach_variable(uniform, uniform_list) {
234 int loc;
235
236 /*
237 * UBO's have their own address spaces, so don't count them towards the
238 * number of global uniforms
239 */
240 if ((uniform->data.mode == nir_var_uniform || uniform->data.mode == nir_var_shader_storage) &&
241 uniform->interface_type != NULL)
242 continue;
243
244 if (uniform->type->is_sampler() || uniform->type->is_image()) {
245 if (uniform->type->is_sampler())
246 loc = shaderidx++;
247 else
248 loc = imageidx++;
249 } else if (strncmp(uniform->name, "gl_", 3) == 0) {
250 const gl_state_index *const stateTokens = (gl_state_index *)uniform->state_slots[0].tokens;
251 /* This state reference has already been setup by ir_to_mesa, but we'll
252 * get the same index back here.
253 */
254 loc = _mesa_add_state_reference(prog->Parameters, stateTokens);
255 } else {
256 loc = st_nir_lookup_parameter_index(prog->Parameters, uniform->name);
257 }
258
259 uniform->data.driver_location = loc;
260
261 max = MAX2(max, loc + type_size(uniform->type));
262 }
263 *size = max;
264 }
265
266 static void
267 st_nir_opts(nir_shader *nir)
268 {
269 bool progress;
270 do {
271 progress = false;
272
273 NIR_PASS_V(nir, nir_lower_64bit_pack);
274 NIR_PASS(progress, nir, nir_copy_prop);
275 NIR_PASS(progress, nir, nir_opt_remove_phis);
276 NIR_PASS(progress, nir, nir_opt_dce);
277 if (nir_opt_trivial_continues(nir)) {
278 progress = true;
279 NIR_PASS(progress, nir, nir_copy_prop);
280 NIR_PASS(progress, nir, nir_opt_dce);
281 }
282 NIR_PASS(progress, nir, nir_opt_if);
283 NIR_PASS(progress, nir, nir_opt_dead_cf);
284 NIR_PASS(progress, nir, nir_opt_cse);
285 NIR_PASS(progress, nir, nir_opt_peephole_select, 8);
286
287 NIR_PASS(progress, nir, nir_opt_algebraic);
288 NIR_PASS(progress, nir, nir_opt_constant_folding);
289
290 NIR_PASS(progress, nir, nir_opt_undef);
291 NIR_PASS(progress, nir, nir_opt_conditional_discard);
292 if (nir->options->max_unroll_iterations) {
293 NIR_PASS(progress, nir, nir_opt_loop_unroll, (nir_variable_mode)0);
294 }
295 } while (progress);
296 }
297
298 /* First third of converting glsl_to_nir.. this leaves things in a pre-
299 * nir_lower_io state, so that shader variants can more easily insert/
300 * replace variables, etc.
301 */
302 static nir_shader *
303 st_glsl_to_nir(struct st_context *st, struct gl_program *prog,
304 struct gl_shader_program *shader_program,
305 gl_shader_stage stage)
306 {
307 struct pipe_screen *pscreen = st->pipe->screen;
308 enum pipe_shader_type ptarget = pipe_shader_type_from_mesa(stage);
309 const nir_shader_compiler_options *options;
310
311 assert(pscreen->get_compiler_options); /* drivers using NIR must implement this */
312
313 options = (const nir_shader_compiler_options *)
314 pscreen->get_compiler_options(pscreen, PIPE_SHADER_IR_NIR, ptarget);
315 assert(options);
316
317 if (prog->nir)
318 return prog->nir;
319
320 nir_shader *nir = glsl_to_nir(shader_program, stage, options);
321
322 st_nir_opts(nir);
323
324 return nir;
325 }
326
327 /* Second third of converting glsl_to_nir. This creates uniforms, gathers
328 * info on varyings, etc after NIR link time opts have been applied.
329 */
330 static void
331 st_glsl_to_nir_post_opts(struct st_context *st, struct gl_program *prog,
332 struct gl_shader_program *shader_program)
333 {
334 nir_shader *nir = prog->nir;
335
336 /* Make a pass over the IR to add state references for any built-in
337 * uniforms that are used. This has to be done now (during linking).
338 * Code generation doesn't happen until the first time this shader is
339 * used for rendering. Waiting until then to generate the parameters is
340 * too late. At that point, the values for the built-in uniforms won't
341 * get sent to the shader.
342 */
343 nir_foreach_variable(var, &nir->uniforms) {
344 if (strncmp(var->name, "gl_", 3) == 0) {
345 const nir_state_slot *const slots = var->state_slots;
346 assert(var->state_slots != NULL);
347
348 for (unsigned int i = 0; i < var->num_state_slots; i++) {
349 _mesa_add_state_reference(prog->Parameters,
350 (gl_state_index *)slots[i].tokens);
351 }
352 }
353 }
354
355 /* Avoid reallocation of the program parameter list, because the uniform
356 * storage is only associated with the original parameter list.
357 * This should be enough for Bitmap and DrawPixels constants.
358 */
359 _mesa_reserve_parameter_storage(prog->Parameters, 8);
360
361 /* This has to be done last. Any operation the can cause
362 * prog->ParameterValues to get reallocated (e.g., anything that adds a
363 * program constant) has to happen before creating this linkage.
364 */
365 _mesa_associate_uniform_storage(st->ctx, shader_program, prog, true);
366
367 st_set_prog_affected_state_flags(prog);
368
369 NIR_PASS_V(nir, st_nir_lower_builtin);
370 NIR_PASS_V(nir, nir_lower_atomics, shader_program);
371
372 if (st->ctx->_Shader->Flags & GLSL_DUMP) {
373 _mesa_log("\n");
374 _mesa_log("NIR IR for linked %s program %d:\n",
375 _mesa_shader_stage_to_string(prog->info.stage),
376 shader_program->Name);
377 nir_print_shader(nir, _mesa_get_log_file());
378 _mesa_log("\n\n");
379 }
380 }
381
382 /* TODO any better helper somewhere to sort a list? */
383
384 static void
385 insert_sorted(struct exec_list *var_list, nir_variable *new_var)
386 {
387 nir_foreach_variable(var, var_list) {
388 if (var->data.location > new_var->data.location) {
389 exec_node_insert_node_before(&var->node, &new_var->node);
390 return;
391 }
392 }
393 exec_list_push_tail(var_list, &new_var->node);
394 }
395
396 static void
397 sort_varyings(struct exec_list *var_list)
398 {
399 struct exec_list new_list;
400 exec_list_make_empty(&new_list);
401 nir_foreach_variable_safe(var, var_list) {
402 exec_node_remove(&var->node);
403 insert_sorted(&new_list, var);
404 }
405 exec_list_move_nodes_to(&new_list, var_list);
406 }
407
408 static void
409 set_st_program(struct gl_program *prog,
410 struct gl_shader_program *shader_program,
411 nir_shader *nir)
412 {
413 struct st_vertex_program *stvp;
414 struct st_common_program *stp;
415 struct st_fragment_program *stfp;
416 struct st_compute_program *stcp;
417
418 switch (prog->info.stage) {
419 case MESA_SHADER_VERTEX:
420 stvp = (struct st_vertex_program *)prog;
421 stvp->shader_program = shader_program;
422 stvp->tgsi.type = PIPE_SHADER_IR_NIR;
423 stvp->tgsi.ir.nir = nir;
424 break;
425 case MESA_SHADER_GEOMETRY:
426 case MESA_SHADER_TESS_CTRL:
427 case MESA_SHADER_TESS_EVAL:
428 stp = (struct st_common_program *)prog;
429 stp->shader_program = shader_program;
430 stp->tgsi.type = PIPE_SHADER_IR_NIR;
431 stp->tgsi.ir.nir = nir;
432 break;
433 case MESA_SHADER_FRAGMENT:
434 stfp = (struct st_fragment_program *)prog;
435 stfp->shader_program = shader_program;
436 stfp->tgsi.type = PIPE_SHADER_IR_NIR;
437 stfp->tgsi.ir.nir = nir;
438 break;
439 case MESA_SHADER_COMPUTE:
440 stcp = (struct st_compute_program *)prog;
441 stcp->shader_program = shader_program;
442 stcp->tgsi.ir_type = PIPE_SHADER_IR_NIR;
443 stcp->tgsi.prog = nir;
444 break;
445 default:
446 unreachable("unknown shader stage");
447 }
448 }
449
450 static void
451 st_nir_get_mesa_program(struct gl_context *ctx,
452 struct gl_shader_program *shader_program,
453 struct gl_linked_shader *shader)
454 {
455 struct st_context *st = st_context(ctx);
456 struct gl_program *prog;
457
458 validate_ir_tree(shader->ir);
459
460 prog = shader->Program;
461
462 prog->Parameters = _mesa_new_parameter_list();
463
464 _mesa_copy_linked_program_data(shader_program, shader);
465 _mesa_generate_parameters_list_for_uniforms(ctx, shader_program, shader,
466 prog->Parameters);
467
468 if (ctx->_Shader->Flags & GLSL_DUMP) {
469 _mesa_log("\n");
470 _mesa_log("GLSL IR for linked %s program %d:\n",
471 _mesa_shader_stage_to_string(shader->Stage),
472 shader_program->Name);
473 _mesa_print_ir(_mesa_get_log_file(), shader->ir, NULL);
474 _mesa_log("\n\n");
475 }
476
477 prog->ExternalSamplersUsed = gl_external_samplers(prog);
478 _mesa_update_shader_textures_used(shader_program, prog);
479
480 nir_shader *nir = st_glsl_to_nir(st, prog, shader_program, shader->Stage);
481
482 set_st_program(prog, shader_program, nir);
483 prog->nir = nir;
484
485 if (nir->info.stage != MESA_SHADER_TESS_CTRL &&
486 nir->info.stage != MESA_SHADER_TESS_EVAL) {
487 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
488 nir_shader_get_entrypoint(nir),
489 true, true);
490 }
491 NIR_PASS_V(nir, nir_lower_global_vars_to_local);
492 NIR_PASS_V(nir, nir_split_var_copies);
493 NIR_PASS_V(nir, nir_lower_var_copies);
494 }
495
496 static void
497 st_nir_link_shaders(nir_shader **producer, nir_shader **consumer)
498 {
499 nir_lower_io_arrays_to_elements(*producer, *consumer);
500
501 NIR_PASS_V(*producer, nir_remove_dead_variables, nir_var_shader_out);
502 NIR_PASS_V(*consumer, nir_remove_dead_variables, nir_var_shader_in);
503
504 if (nir_remove_unused_varyings(*producer, *consumer)) {
505 NIR_PASS_V(*producer, nir_lower_global_vars_to_local);
506 NIR_PASS_V(*consumer, nir_lower_global_vars_to_local);
507
508 /* The backend might not be able to handle indirects on
509 * temporaries so we need to lower indirects on any of the
510 * varyings we have demoted here.
511 *
512 * TODO: radeonsi shouldn't need to do this, however LLVM isn't
513 * currently smart enough to handle indirects without causing excess
514 * spilling causing the gpu to hang.
515 *
516 * See the following thread for more details of the problem:
517 * https://lists.freedesktop.org/archives/mesa-dev/2017-July/162106.html
518 */
519 nir_variable_mode indirect_mask = nir_var_local;
520
521 NIR_PASS_V(*producer, nir_lower_indirect_derefs, indirect_mask);
522 NIR_PASS_V(*consumer, nir_lower_indirect_derefs, indirect_mask);
523
524 st_nir_opts(*producer);
525 st_nir_opts(*consumer);
526 }
527 }
528
529 extern "C" {
530
531 bool
532 st_link_nir(struct gl_context *ctx,
533 struct gl_shader_program *shader_program)
534 {
535 struct st_context *st = st_context(ctx);
536
537 /* Determine first and last stage. */
538 unsigned first = MESA_SHADER_STAGES;
539 unsigned last = 0;
540 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
541 if (!shader_program->_LinkedShaders[i])
542 continue;
543 if (first == MESA_SHADER_STAGES)
544 first = i;
545 last = i;
546 }
547
548 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
549 struct gl_linked_shader *shader = shader_program->_LinkedShaders[i];
550 if (shader == NULL)
551 continue;
552
553 st_nir_get_mesa_program(ctx, shader_program, shader);
554
555 nir_variable_mode mask = (nir_variable_mode) 0;
556 if (i != first)
557 mask = (nir_variable_mode)(mask | nir_var_shader_in);
558
559 if (i != last)
560 mask = (nir_variable_mode)(mask | nir_var_shader_out);
561
562 nir_shader *nir = shader->Program->nir;
563 nir_lower_io_to_scalar_early(nir, mask);
564 st_nir_opts(nir);
565 }
566
567 /* Linking the stages in the opposite order (from fragment to vertex)
568 * ensures that inter-shader outputs written to in an earlier stage
569 * are eliminated if they are (transitively) not used in a later
570 * stage.
571 */
572 int next = last;
573 for (int i = next - 1; i >= 0; i--) {
574 struct gl_linked_shader *shader = shader_program->_LinkedShaders[i];
575 if (shader == NULL)
576 continue;
577
578 st_nir_link_shaders(&shader->Program->nir,
579 &shader_program->_LinkedShaders[next]->Program->nir);
580 next = i;
581 }
582
583 int prev = -1;
584 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
585 struct gl_linked_shader *shader = shader_program->_LinkedShaders[i];
586 if (shader == NULL)
587 continue;
588
589 nir_shader *nir = shader->Program->nir;
590
591 /* fragment shaders may need : */
592 if (nir->info.stage == MESA_SHADER_FRAGMENT) {
593 static const gl_state_index wposTransformState[STATE_LENGTH] = {
594 STATE_INTERNAL, STATE_FB_WPOS_Y_TRANSFORM
595 };
596 nir_lower_wpos_ytransform_options wpos_options = { { 0 } };
597 struct pipe_screen *pscreen = st->pipe->screen;
598
599 memcpy(wpos_options.state_tokens, wposTransformState,
600 sizeof(wpos_options.state_tokens));
601 wpos_options.fs_coord_origin_upper_left =
602 pscreen->get_param(pscreen,
603 PIPE_CAP_TGSI_FS_COORD_ORIGIN_UPPER_LEFT);
604 wpos_options.fs_coord_origin_lower_left =
605 pscreen->get_param(pscreen,
606 PIPE_CAP_TGSI_FS_COORD_ORIGIN_LOWER_LEFT);
607 wpos_options.fs_coord_pixel_center_integer =
608 pscreen->get_param(pscreen,
609 PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_INTEGER);
610 wpos_options.fs_coord_pixel_center_half_integer =
611 pscreen->get_param(pscreen,
612 PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_HALF_INTEGER);
613
614 if (nir_lower_wpos_ytransform(nir, &wpos_options)) {
615 nir_validate_shader(nir);
616 _mesa_add_state_reference(shader->Program->Parameters,
617 wposTransformState);
618 }
619 }
620
621 NIR_PASS_V(nir, nir_lower_system_values);
622
623 nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir));
624 shader->Program->info = nir->info;
625
626 if (prev != -1) {
627 nir_compact_varyings(shader_program->_LinkedShaders[prev]->Program->nir,
628 nir, ctx->API != API_OPENGL_COMPAT);
629 }
630 prev = i;
631 }
632
633 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
634 struct gl_linked_shader *shader = shader_program->_LinkedShaders[i];
635 if (shader == NULL)
636 continue;
637
638 st_glsl_to_nir_post_opts(st, shader->Program, shader_program);
639
640 assert(shader->Program);
641 if (!ctx->Driver.ProgramStringNotify(ctx,
642 _mesa_shader_stage_to_program(i),
643 shader->Program)) {
644 _mesa_reference_program(ctx, &shader->Program, NULL);
645 return false;
646 }
647 }
648
649 return true;
650 }
651
652 /* Last third of preparing nir from glsl, which happens after shader
653 * variant lowering.
654 */
655 void
656 st_finalize_nir(struct st_context *st, struct gl_program *prog,
657 struct gl_shader_program *shader_program, nir_shader *nir)
658 {
659 struct pipe_screen *screen = st->pipe->screen;
660
661 NIR_PASS_V(nir, nir_split_var_copies);
662 NIR_PASS_V(nir, nir_lower_var_copies);
663 if (nir->info.stage != MESA_SHADER_TESS_CTRL &&
664 nir->info.stage != MESA_SHADER_TESS_EVAL)
665 NIR_PASS_V(nir, nir_lower_io_arrays_to_elements_no_indirects);
666
667 if (nir->info.stage == MESA_SHADER_VERTEX) {
668 /* Needs special handling so drvloc matches the vbo state: */
669 st_nir_assign_vs_in_locations(prog, nir);
670 /* Re-lower global vars, to deal with any dead VS inputs. */
671 NIR_PASS_V(nir, nir_lower_global_vars_to_local);
672
673 sort_varyings(&nir->outputs);
674 st_nir_assign_var_locations(&nir->outputs,
675 &nir->num_outputs,
676 nir->info.stage);
677 st_nir_fixup_varying_slots(st, &nir->outputs);
678 } else if (nir->info.stage == MESA_SHADER_GEOMETRY ||
679 nir->info.stage == MESA_SHADER_TESS_CTRL ||
680 nir->info.stage == MESA_SHADER_TESS_EVAL) {
681 sort_varyings(&nir->inputs);
682 st_nir_assign_var_locations(&nir->inputs,
683 &nir->num_inputs,
684 nir->info.stage);
685 st_nir_fixup_varying_slots(st, &nir->inputs);
686
687 sort_varyings(&nir->outputs);
688 st_nir_assign_var_locations(&nir->outputs,
689 &nir->num_outputs,
690 nir->info.stage);
691 st_nir_fixup_varying_slots(st, &nir->outputs);
692 } else if (nir->info.stage == MESA_SHADER_FRAGMENT) {
693 sort_varyings(&nir->inputs);
694 st_nir_assign_var_locations(&nir->inputs,
695 &nir->num_inputs,
696 nir->info.stage);
697 st_nir_fixup_varying_slots(st, &nir->inputs);
698 st_nir_assign_var_locations(&nir->outputs,
699 &nir->num_outputs,
700 nir->info.stage);
701 } else if (nir->info.stage == MESA_SHADER_COMPUTE) {
702 /* TODO? */
703 } else {
704 unreachable("invalid shader type for tgsi bypass\n");
705 }
706
707 NIR_PASS_V(nir, nir_lower_atomics_to_ssbo,
708 st->ctx->Const.Program[nir->info.stage].MaxAtomicBuffers);
709
710 st_nir_assign_uniform_locations(prog, shader_program,
711 &nir->uniforms, &nir->num_uniforms);
712
713 if (screen->get_param(screen, PIPE_CAP_NIR_SAMPLERS_AS_DEREF))
714 NIR_PASS_V(nir, nir_lower_samplers_as_deref, shader_program);
715 else
716 NIR_PASS_V(nir, nir_lower_samplers, shader_program);
717 }
718
719 } /* extern "C" */