radeonsi: fix and clean up shader_type passing
[mesa.git] / src / gallium / drivers / radeonsi / si_shader.h
1 /*
2 * Copyright 2012 Advanced Micro Devices, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 /* The compiler middle-end architecture: Explaining (non-)monolithic shaders
26 * -------------------------------------------------------------------------
27 *
28 * Typically, there is one-to-one correspondence between API and HW shaders,
29 * that is, for every API shader, there is exactly one shader binary in
30 * the driver.
31 *
32 * The problem with that is that we also have to emulate some API states
33 * (e.g. alpha-test, and many others) in shaders too. The two obvious ways
34 * to deal with it are:
35 * - each shader has multiple variants for each combination of emulated states,
36 * and the variants are compiled on demand, possibly relying on a shader
37 * cache for good performance
38 * - patch shaders at the binary level
39 *
40 * This driver uses something completely different. The emulated states are
41 * usually implemented at the beginning or end of shaders. Therefore, we can
42 * split the shader into 3 parts:
43 * - prolog part (shader code dependent on states)
44 * - main part (the API shader)
45 * - epilog part (shader code dependent on states)
46 *
47 * Each part is compiled as a separate shader and the final binaries are
48 * concatenated. This type of shader is called non-monolithic, because it
49 * consists of multiple independent binaries. Creating a new shader variant
50 * is therefore only a concatenation of shader parts (binaries) and doesn't
51 * involve any compilation. The main shader parts are the only parts that are
52 * compiled when applications create shader objects. The prolog and epilog
53 * parts are compiled on the first use and saved, so that their binaries can
54 * be reused by many other shaders.
55 *
56 * One of the roles of the prolog part is to compute vertex buffer addresses
57 * for vertex shaders. A few of the roles of the epilog part are color buffer
58 * format conversions in pixel shaders that we have to do manually, and write
59 * tessellation factors in tessellation control shaders. The prolog and epilog
60 * have many other important responsibilities in various shader stages.
61 * They don't just "emulate legacy stuff".
62 *
63 * Monolithic shaders are shaders where the parts are combined before LLVM
64 * compilation, and the whole thing is compiled and optimized as one unit with
65 * one binary on the output. The result is the same as the non-monolithic
66 * shader, but the final code can be better, because LLVM can optimize across
67 * all shader parts. Monolithic shaders aren't usually used except for these
68 * special cases:
69 *
70 * 1) Some rarely-used states require modification of the main shader part
71 * itself, and in such cases, only the monolithic shader variant is
72 * compiled, and that's always done on the first use.
73 *
74 * 2) When we do cross-stage optimizations for separate shader objects and
75 * e.g. eliminate unused shader varyings, the resulting optimized shader
76 * variants are always compiled as monolithic shaders, and always
77 * asynchronously (i.e. not stalling ongoing rendering). We call them
78 * "optimized monolithic" shaders. The important property here is that
79 * the non-monolithic unoptimized shader variant is always available for use
80 * when the asynchronous compilation of the optimized shader is not done
81 * yet.
82 *
83 * Starting with GFX9 chips, some shader stages are merged, and the number of
84 * shader parts per shader increased. The complete new list of shader parts is:
85 * - 1st shader: prolog part
86 * - 1st shader: main part
87 * - 2nd shader: prolog part
88 * - 2nd shader: main part
89 * - 2nd shader: epilog part
90 */
91
92 /* How linking shader inputs and outputs between vertex, tessellation, and
93 * geometry shaders works.
94 *
95 * Inputs and outputs between shaders are stored in a buffer. This buffer
96 * lives in LDS (typical case for tessellation), but it can also live
97 * in memory (ESGS). Each input or output has a fixed location within a vertex.
98 * The highest used input or output determines the stride between vertices.
99 *
100 * Since GS and tessellation are only possible in the OpenGL core profile,
101 * only these semantics are valid for per-vertex data:
102 *
103 * Name Location
104 *
105 * POSITION 0
106 * PSIZE 1
107 * CLIPDIST0..1 2..3
108 * CULLDIST0..1 (not implemented)
109 * GENERIC0..31 4..35
110 *
111 * For example, a shader only writing GENERIC0 has the output stride of 5.
112 *
113 * Only these semantics are valid for per-patch data:
114 *
115 * Name Location
116 *
117 * TESSOUTER 0
118 * TESSINNER 1
119 * PATCH0..29 2..31
120 *
121 * That's how independent shaders agree on input and output locations.
122 * The si_shader_io_get_unique_index function assigns the locations.
123 *
124 * For tessellation, other required information for calculating the input and
125 * output addresses like the vertex stride, the patch stride, and the offsets
126 * where per-vertex and per-patch data start, is passed to the shader via
127 * user data SGPRs. The offsets and strides are calculated at draw time and
128 * aren't available at compile time.
129 */
130
131 #ifndef SI_SHADER_H
132 #define SI_SHADER_H
133
134 #include <llvm-c/Core.h> /* LLVMModuleRef */
135 #include <llvm-c/TargetMachine.h>
136 #include "tgsi/tgsi_scan.h"
137 #include "util/u_inlines.h"
138 #include "util/u_queue.h"
139
140 #include "ac_binary.h"
141 #include "ac_llvm_build.h"
142 #include "ac_llvm_util.h"
143
144 #include <stdio.h>
145
146 // Use LDS symbols when supported by LLVM. Can be disabled for testing the old
147 // path on newer LLVM for now. Should be removed in the long term.
148 #define USE_LDS_SYMBOLS (true)
149
150 struct nir_shader;
151 struct si_shader;
152 struct si_context;
153
154 #define SI_MAX_ATTRIBS 16
155 #define SI_MAX_VS_OUTPUTS 40
156
157 /* Shader IO unique indices are supported for TGSI_SEMANTIC_GENERIC with an
158 * index smaller than this.
159 */
160 #define SI_MAX_IO_GENERIC 43
161
162 /* SGPR user data indices */
163 enum {
164 SI_SGPR_RW_BUFFERS, /* rings (& stream-out, VS only) */
165 SI_SGPR_BINDLESS_SAMPLERS_AND_IMAGES,
166 SI_SGPR_CONST_AND_SHADER_BUFFERS, /* or just a constant buffer 0 pointer */
167 SI_SGPR_SAMPLERS_AND_IMAGES,
168 SI_NUM_RESOURCE_SGPRS,
169
170 /* API VS, TES without GS, GS copy shader */
171 SI_SGPR_VS_STATE_BITS = SI_NUM_RESOURCE_SGPRS,
172 SI_NUM_VS_STATE_RESOURCE_SGPRS,
173
174 /* all VS variants */
175 SI_SGPR_BASE_VERTEX = SI_NUM_VS_STATE_RESOURCE_SGPRS,
176 SI_SGPR_START_INSTANCE,
177 SI_SGPR_DRAWID,
178 SI_VS_NUM_USER_SGPR,
179
180 SI_SGPR_VS_BLIT_DATA = SI_SGPR_CONST_AND_SHADER_BUFFERS,
181
182 /* TES */
183 SI_SGPR_TES_OFFCHIP_LAYOUT = SI_NUM_VS_STATE_RESOURCE_SGPRS,
184 SI_SGPR_TES_OFFCHIP_ADDR,
185 SI_TES_NUM_USER_SGPR,
186
187 /* GFX6-8: TCS only */
188 GFX6_SGPR_TCS_OFFCHIP_LAYOUT = SI_NUM_RESOURCE_SGPRS,
189 GFX6_SGPR_TCS_OUT_OFFSETS,
190 GFX6_SGPR_TCS_OUT_LAYOUT,
191 GFX6_SGPR_TCS_IN_LAYOUT,
192 GFX6_TCS_NUM_USER_SGPR,
193
194 /* GFX9: Merged shaders. */
195 /* 2ND_CONST_AND_SHADER_BUFFERS is set in USER_DATA_ADDR_LO (SGPR0). */
196 /* 2ND_SAMPLERS_AND_IMAGES is set in USER_DATA_ADDR_HI (SGPR1). */
197 GFX9_MERGED_NUM_USER_SGPR = SI_VS_NUM_USER_SGPR,
198
199 /* GFX9: Merged LS-HS (VS-TCS) only. */
200 GFX9_SGPR_TCS_OFFCHIP_LAYOUT = GFX9_MERGED_NUM_USER_SGPR,
201 GFX9_SGPR_TCS_OUT_OFFSETS,
202 GFX9_SGPR_TCS_OUT_LAYOUT,
203 GFX9_TCS_NUM_USER_SGPR,
204
205 /* GS limits */
206 GFX6_GS_NUM_USER_SGPR = SI_NUM_RESOURCE_SGPRS,
207 GFX9_VSGS_NUM_USER_SGPR = SI_VS_NUM_USER_SGPR,
208 GFX9_TESGS_NUM_USER_SGPR = SI_TES_NUM_USER_SGPR,
209 SI_GSCOPY_NUM_USER_SGPR = SI_NUM_VS_STATE_RESOURCE_SGPRS,
210
211 /* PS only */
212 SI_SGPR_ALPHA_REF = SI_NUM_RESOURCE_SGPRS,
213 SI_PS_NUM_USER_SGPR,
214 };
215
216 /* LLVM function parameter indices */
217 enum {
218 SI_NUM_RESOURCE_PARAMS = 4,
219
220 /* PS only parameters */
221 SI_PARAM_ALPHA_REF = SI_NUM_RESOURCE_PARAMS,
222 SI_PARAM_PRIM_MASK,
223 SI_PARAM_PERSP_SAMPLE,
224 SI_PARAM_PERSP_CENTER,
225 SI_PARAM_PERSP_CENTROID,
226 SI_PARAM_PERSP_PULL_MODEL,
227 SI_PARAM_LINEAR_SAMPLE,
228 SI_PARAM_LINEAR_CENTER,
229 SI_PARAM_LINEAR_CENTROID,
230 SI_PARAM_LINE_STIPPLE_TEX,
231 SI_PARAM_POS_X_FLOAT,
232 SI_PARAM_POS_Y_FLOAT,
233 SI_PARAM_POS_Z_FLOAT,
234 SI_PARAM_POS_W_FLOAT,
235 SI_PARAM_FRONT_FACE,
236 SI_PARAM_ANCILLARY,
237 SI_PARAM_SAMPLE_COVERAGE,
238 SI_PARAM_POS_FIXED_PT,
239
240 SI_NUM_PARAMS = SI_PARAM_POS_FIXED_PT + 9, /* +8 for COLOR[0..1] */
241 };
242
243 /* Fields of driver-defined VS state SGPR. */
244 #define S_VS_STATE_CLAMP_VERTEX_COLOR(x) (((unsigned)(x) & 0x1) << 0)
245 #define C_VS_STATE_CLAMP_VERTEX_COLOR 0xFFFFFFFE
246 #define S_VS_STATE_INDEXED(x) (((unsigned)(x) & 0x1) << 1)
247 #define C_VS_STATE_INDEXED 0xFFFFFFFD
248 #define S_VS_STATE_OUTPRIM(x) (((unsigned)(x) & 0x3) << 2)
249 #define C_VS_STATE_OUTPRIM 0xFFFFFFF3
250 #define S_VS_STATE_PROVOKING_VTX_INDEX(x) (((unsigned)(x) & 0x3) << 4)
251 #define C_VS_STATE_PROVOKING_VTX_INDEX 0xFFFFFFCF
252 #define S_VS_STATE_STREAMOUT_QUERY_ENABLED(x) (((unsigned)(x) & 0x1) << 6)
253 #define C_VS_STATE_STREAMOUT_QUERY_ENABLED 0xFFFFFFBF
254 #define S_VS_STATE_LS_OUT_PATCH_SIZE(x) (((unsigned)(x) & 0x1FFF) << 8)
255 #define C_VS_STATE_LS_OUT_PATCH_SIZE 0xFFE000FF
256 #define S_VS_STATE_LS_OUT_VERTEX_SIZE(x) (((unsigned)(x) & 0xFF) << 24)
257 #define C_VS_STATE_LS_OUT_VERTEX_SIZE 0x00FFFFFF
258
259 /* Driver-specific system values. */
260 enum {
261 /* Values from set_tess_state. */
262 TGSI_SEMANTIC_DEFAULT_TESSOUTER_SI = TGSI_SEMANTIC_COUNT,
263 TGSI_SEMANTIC_DEFAULT_TESSINNER_SI,
264
265 /* Up to 4 dwords in user SGPRs for compute shaders. */
266 TGSI_SEMANTIC_CS_USER_DATA,
267 };
268
269 enum {
270 /* Use a property enum that CS wouldn't use. */
271 TGSI_PROPERTY_CS_LOCAL_SIZE = TGSI_PROPERTY_FS_COORD_ORIGIN,
272
273 /* The number of used user data dwords in the range [1, 4]. */
274 TGSI_PROPERTY_CS_USER_DATA_DWORDS = TGSI_PROPERTY_FS_COORD_PIXEL_CENTER,
275
276 /* Use a property enum that VS wouldn't use. */
277 TGSI_PROPERTY_VS_BLIT_SGPRS = TGSI_PROPERTY_FS_COORD_ORIGIN,
278
279 /* These represent the number of SGPRs the shader uses. */
280 SI_VS_BLIT_SGPRS_POS = 3,
281 SI_VS_BLIT_SGPRS_POS_COLOR = 7,
282 SI_VS_BLIT_SGPRS_POS_TEXCOORD = 9,
283 };
284
285 /**
286 * For VS shader keys, describe any fixups required for vertex fetch.
287 *
288 * \ref log_size, \ref format, and the number of channels are interpreted as
289 * by \ref ac_build_opencoded_load_format.
290 *
291 * Note: all bits 0 (size = 1 byte, num channels = 1, format = float) is an
292 * impossible format and indicates that no fixup is needed (just use
293 * buffer_load_format_xyzw).
294 */
295 union si_vs_fix_fetch {
296 struct {
297 uint8_t log_size : 2; /* 1, 2, 4, 8 or bytes per channel */
298 uint8_t num_channels_m1 : 2; /* number of channels minus 1 */
299 uint8_t format : 3; /* AC_FETCH_FORMAT_xxx */
300 uint8_t reverse : 1; /* reverse XYZ channels */
301 } u;
302 uint8_t bits;
303 };
304
305 struct si_shader;
306
307 /* State of the context creating the shader object. */
308 struct si_compiler_ctx_state {
309 /* Should only be used by si_init_shader_selector_async and
310 * si_build_shader_variant if thread_index == -1 (non-threaded). */
311 struct ac_llvm_compiler *compiler;
312
313 /* Used if thread_index == -1 or if debug.async is true. */
314 struct pipe_debug_callback debug;
315
316 /* Used for creating the log string for gallium/ddebug. */
317 bool is_debug_context;
318 };
319
320 /* A shader selector is a gallium CSO and contains shader variants and
321 * binaries for one TGSI program. This can be shared by multiple contexts.
322 */
323 struct si_shader_selector {
324 struct pipe_reference reference;
325 struct si_screen *screen;
326 struct util_queue_fence ready;
327 struct si_compiler_ctx_state compiler_ctx_state;
328
329 mtx_t mutex;
330 struct si_shader *first_variant; /* immutable after the first variant */
331 struct si_shader *last_variant; /* mutable */
332
333 /* The compiled TGSI shader expecting a prolog and/or epilog (not
334 * uploaded to a buffer).
335 */
336 struct si_shader *main_shader_part;
337 struct si_shader *main_shader_part_ls; /* as_ls is set in the key */
338 struct si_shader *main_shader_part_es; /* as_es is set in the key */
339 struct si_shader *main_shader_part_ngg; /* as_ngg is set in the key */
340
341 struct si_shader *gs_copy_shader;
342
343 struct tgsi_token *tokens;
344 struct nir_shader *nir;
345 struct pipe_stream_output_info so;
346 struct tgsi_shader_info info;
347 struct tgsi_tessctrl_info tcs_info;
348
349 /* PIPE_SHADER_[VERTEX|FRAGMENT|...] */
350 enum pipe_shader_type type;
351 bool vs_needs_prolog;
352 bool force_correct_derivs_after_kill;
353 bool prim_discard_cs_allowed;
354 unsigned pa_cl_vs_out_cntl;
355 ubyte clipdist_mask;
356 ubyte culldist_mask;
357 unsigned rast_prim;
358
359 /* ES parameters. */
360 unsigned esgs_itemsize; /* vertex stride */
361 unsigned lshs_vertex_stride;
362
363 /* GS parameters. */
364 unsigned gs_input_verts_per_prim;
365 unsigned gs_output_prim;
366 unsigned gs_max_out_vertices;
367 unsigned gs_num_invocations;
368 unsigned max_gs_stream; /* count - 1 */
369 unsigned gsvs_vertex_size;
370 unsigned max_gsvs_emit_size;
371 unsigned enabled_streamout_buffer_mask;
372
373 /* PS parameters. */
374 unsigned color_attr_index[2];
375 unsigned db_shader_control;
376 /* Set 0xf or 0x0 (4 bits) per each written output.
377 * ANDed with spi_shader_col_format.
378 */
379 unsigned colors_written_4bit;
380
381 uint64_t outputs_written_before_ps; /* "get_unique_index" bits */
382 uint64_t outputs_written; /* "get_unique_index" bits */
383 uint32_t patch_outputs_written; /* "get_unique_index_patch" bits */
384
385 uint64_t inputs_read; /* "get_unique_index" bits */
386
387 /* bitmasks of used descriptor slots */
388 uint32_t active_const_and_shader_buffers;
389 uint64_t active_samplers_and_images;
390 };
391
392 /* Valid shader configurations:
393 *
394 * API shaders VS | TCS | TES | GS |pass| PS
395 * are compiled as: | | | |thru|
396 * | | | | |
397 * Only VS & PS: VS | | | | | PS
398 * GFX6 - with GS: ES | | | GS | VS | PS
399 * - with tess: LS | HS | VS | | | PS
400 * - with both: LS | HS | ES | GS | VS | PS
401 * GFX9 - with GS: -> | | | GS | VS | PS
402 * - with tess: -> | HS | VS | | | PS
403 * - with both: -> | HS | -> | GS | VS | PS
404 * | | | | |
405 * NGG - VS & PS: GS | | | | | PS
406 * (GFX10+) - with GS: -> | | | GS | | PS
407 * - with tess: -> | HS | GS | | | PS
408 * - with both: -> | HS | -> | GS | | PS
409 *
410 * -> = merged with the next stage
411 */
412
413 /* Use the byte alignment for all following structure members for optimal
414 * shader key memory footprint.
415 */
416 #pragma pack(push, 1)
417
418 /* Common VS bits between the shader key and the prolog key. */
419 struct si_vs_prolog_bits {
420 /* - If neither "is_one" nor "is_fetched" has a bit set, the instance
421 * divisor is 0.
422 * - If "is_one" has a bit set, the instance divisor is 1.
423 * - If "is_fetched" has a bit set, the instance divisor will be loaded
424 * from the constant buffer.
425 */
426 uint16_t instance_divisor_is_one; /* bitmask of inputs */
427 uint16_t instance_divisor_is_fetched; /* bitmask of inputs */
428 unsigned ls_vgpr_fix:1;
429 unsigned unpack_instance_id_from_vertex_id:1;
430 };
431
432 /* Common TCS bits between the shader key and the epilog key. */
433 struct si_tcs_epilog_bits {
434 unsigned prim_mode:3;
435 unsigned invoc0_tess_factors_are_def:1;
436 unsigned tes_reads_tess_factors:1;
437 };
438
439 struct si_gs_prolog_bits {
440 unsigned tri_strip_adj_fix:1;
441 unsigned gfx9_prev_is_vs:1;
442 };
443
444 /* Common PS bits between the shader key and the prolog key. */
445 struct si_ps_prolog_bits {
446 unsigned color_two_side:1;
447 unsigned flatshade_colors:1;
448 unsigned poly_stipple:1;
449 unsigned force_persp_sample_interp:1;
450 unsigned force_linear_sample_interp:1;
451 unsigned force_persp_center_interp:1;
452 unsigned force_linear_center_interp:1;
453 unsigned bc_optimize_for_persp:1;
454 unsigned bc_optimize_for_linear:1;
455 unsigned samplemask_log_ps_iter:3;
456 };
457
458 /* Common PS bits between the shader key and the epilog key. */
459 struct si_ps_epilog_bits {
460 unsigned spi_shader_col_format;
461 unsigned color_is_int8:8;
462 unsigned color_is_int10:8;
463 unsigned last_cbuf:3;
464 unsigned alpha_func:3;
465 unsigned alpha_to_one:1;
466 unsigned poly_line_smoothing:1;
467 unsigned clamp_color:1;
468 };
469
470 union si_shader_part_key {
471 struct {
472 struct si_vs_prolog_bits states;
473 unsigned num_input_sgprs:6;
474 /* For merged stages such as LS-HS, HS input VGPRs are first. */
475 unsigned num_merged_next_stage_vgprs:3;
476 unsigned last_input:4;
477 unsigned as_ls:1;
478 unsigned as_es:1;
479 unsigned as_ngg:1;
480 /* Prologs for monolithic shaders shouldn't set EXEC. */
481 unsigned is_monolithic:1;
482 } vs_prolog;
483 struct {
484 struct si_tcs_epilog_bits states;
485 } tcs_epilog;
486 struct {
487 struct si_gs_prolog_bits states;
488 /* Prologs of monolithic shaders shouldn't set EXEC. */
489 unsigned is_monolithic:1;
490 } gs_prolog;
491 struct {
492 struct si_ps_prolog_bits states;
493 unsigned num_input_sgprs:6;
494 unsigned num_input_vgprs:5;
495 /* Color interpolation and two-side color selection. */
496 unsigned colors_read:8; /* color input components read */
497 unsigned num_interp_inputs:5; /* BCOLOR is at this location */
498 unsigned face_vgpr_index:5;
499 unsigned ancillary_vgpr_index:5;
500 unsigned wqm:1;
501 char color_attr_index[2];
502 signed char color_interp_vgpr_index[2]; /* -1 == constant */
503 } ps_prolog;
504 struct {
505 struct si_ps_epilog_bits states;
506 unsigned colors_written:8;
507 unsigned writes_z:1;
508 unsigned writes_stencil:1;
509 unsigned writes_samplemask:1;
510 } ps_epilog;
511 };
512
513 struct si_shader_key {
514 /* Prolog and epilog flags. */
515 union {
516 struct {
517 struct si_vs_prolog_bits prolog;
518 } vs;
519 struct {
520 struct si_vs_prolog_bits ls_prolog; /* for merged LS-HS */
521 struct si_shader_selector *ls; /* for merged LS-HS */
522 struct si_tcs_epilog_bits epilog;
523 } tcs; /* tessellation control shader */
524 struct {
525 struct si_vs_prolog_bits vs_prolog; /* for merged ES-GS */
526 struct si_shader_selector *es; /* for merged ES-GS */
527 struct si_gs_prolog_bits prolog;
528 } gs;
529 struct {
530 struct si_ps_prolog_bits prolog;
531 struct si_ps_epilog_bits epilog;
532 } ps;
533 } part;
534
535 /* These three are initially set according to the NEXT_SHADER property,
536 * or guessed if the property doesn't seem correct.
537 */
538 unsigned as_es:1; /* export shader, which precedes GS */
539 unsigned as_ls:1; /* local shader, which precedes TCS */
540 unsigned as_ngg:1; /* VS, TES, or GS compiled as NGG primitive shader */
541
542 /* Flags for monolithic compilation only. */
543 struct {
544 /* Whether fetch should be opencoded according to vs_fix_fetch.
545 * Otherwise, if vs_fix_fetch is non-zero, buffer_load_format_xyzw
546 * with minimal fixups is used. */
547 uint16_t vs_fetch_opencode;
548 union si_vs_fix_fetch vs_fix_fetch[SI_MAX_ATTRIBS];
549
550 union {
551 uint64_t ff_tcs_inputs_to_copy; /* for fixed-func TCS */
552 /* When PS needs PrimID and GS is disabled. */
553 unsigned vs_export_prim_id:1;
554 struct {
555 unsigned interpolate_at_sample_force_center:1;
556 unsigned fbfetch_msaa;
557 unsigned fbfetch_is_1D;
558 unsigned fbfetch_layered;
559 } ps;
560 } u;
561 } mono;
562
563 /* Optimization flags for asynchronous compilation only. */
564 struct {
565 /* For HW VS (it can be VS, TES, GS) */
566 uint64_t kill_outputs; /* "get_unique_index" bits */
567 unsigned clip_disable:1;
568
569 /* For shaders where monolithic variants have better code.
570 *
571 * This is a flag that has no effect on code generation,
572 * but forces monolithic shaders to be used as soon as
573 * possible, because it's in the "opt" group.
574 */
575 unsigned prefer_mono:1;
576
577 /* Primitive discard compute shader. */
578 unsigned vs_as_prim_discard_cs:1;
579 unsigned cs_prim_type:4;
580 unsigned cs_indexed:1;
581 unsigned cs_instancing:1;
582 unsigned cs_primitive_restart:1;
583 unsigned cs_provoking_vertex_first:1;
584 unsigned cs_need_correct_orientation:1;
585 unsigned cs_cull_front:1;
586 unsigned cs_cull_back:1;
587 unsigned cs_cull_z:1;
588 unsigned cs_halfz_clip_space:1;
589 } opt;
590 };
591
592 /* Restore the pack alignment to default. */
593 #pragma pack(pop)
594
595 /* GCN-specific shader info. */
596 struct si_shader_info {
597 ubyte vs_output_param_offset[SI_MAX_VS_OUTPUTS];
598 ubyte num_input_sgprs;
599 ubyte num_input_vgprs;
600 signed char face_vgpr_index;
601 signed char ancillary_vgpr_index;
602 bool uses_instanceid;
603 ubyte nr_pos_exports;
604 ubyte nr_param_exports;
605 unsigned private_mem_vgprs;
606 unsigned max_simd_waves;
607 };
608
609 struct si_shader_binary {
610 const char *elf_buffer;
611 size_t elf_size;
612
613 char *llvm_ir_string;
614 };
615
616 struct gfx9_gs_info {
617 unsigned es_verts_per_subgroup;
618 unsigned gs_prims_per_subgroup;
619 unsigned gs_inst_prims_in_subgroup;
620 unsigned max_prims_per_subgroup;
621 unsigned esgs_ring_size; /* in bytes */
622 };
623
624 struct si_shader {
625 struct si_compiler_ctx_state compiler_ctx_state;
626
627 struct si_shader_selector *selector;
628 struct si_shader_selector *previous_stage_sel; /* for refcounting */
629 struct si_shader *next_variant;
630
631 struct si_shader_part *prolog;
632 struct si_shader *previous_stage; /* for GFX9 */
633 struct si_shader_part *prolog2;
634 struct si_shader_part *epilog;
635
636 struct si_pm4_state *pm4;
637 struct si_resource *bo;
638 struct si_resource *scratch_bo;
639 struct si_shader_key key;
640 struct util_queue_fence ready;
641 bool compilation_failed;
642 bool is_monolithic;
643 bool is_optimized;
644 bool is_binary_shared;
645 bool is_gs_copy_shader;
646
647 /* The following data is all that's needed for binary shaders. */
648 struct si_shader_binary binary;
649 struct ac_shader_config config;
650 struct si_shader_info info;
651
652 struct {
653 uint16_t ngg_emit_size; /* in dwords */
654 uint16_t hw_max_esverts;
655 uint16_t max_gsprims;
656 uint16_t max_out_verts;
657 uint16_t prim_amp_factor;
658 bool max_vert_out_per_gs_instance;
659 } ngg;
660
661 /* Shader key + LLVM IR + disassembly + statistics.
662 * Generated for debug contexts only.
663 */
664 char *shader_log;
665 size_t shader_log_size;
666
667 struct gfx9_gs_info gs_info;
668
669 /* For save precompute context registers values. */
670 union {
671 struct {
672 unsigned vgt_gsvs_ring_offset_1;
673 unsigned vgt_gsvs_ring_offset_2;
674 unsigned vgt_gsvs_ring_offset_3;
675 unsigned vgt_gsvs_ring_itemsize;
676 unsigned vgt_gs_max_vert_out;
677 unsigned vgt_gs_vert_itemsize;
678 unsigned vgt_gs_vert_itemsize_1;
679 unsigned vgt_gs_vert_itemsize_2;
680 unsigned vgt_gs_vert_itemsize_3;
681 unsigned vgt_gs_instance_cnt;
682 unsigned vgt_gs_onchip_cntl;
683 unsigned vgt_gs_max_prims_per_subgroup;
684 unsigned vgt_esgs_ring_itemsize;
685 } gs;
686
687 struct {
688 unsigned ge_max_output_per_subgroup;
689 unsigned ge_ngg_subgrp_cntl;
690 unsigned vgt_primitiveid_en;
691 unsigned vgt_gs_onchip_cntl;
692 unsigned vgt_gs_instance_cnt;
693 unsigned vgt_esgs_ring_itemsize;
694 unsigned vgt_reuse_off;
695 unsigned spi_vs_out_config;
696 unsigned spi_shader_idx_format;
697 unsigned spi_shader_pos_format;
698 unsigned pa_cl_vte_cntl;
699 unsigned pa_cl_ngg_cntl;
700 unsigned vgt_gs_max_vert_out; /* for API GS */
701 } ngg;
702
703 struct {
704 unsigned vgt_gs_mode;
705 unsigned vgt_primitiveid_en;
706 unsigned vgt_reuse_off;
707 unsigned spi_vs_out_config;
708 unsigned spi_shader_pos_format;
709 unsigned pa_cl_vte_cntl;
710 } vs;
711
712 struct {
713 unsigned spi_ps_input_ena;
714 unsigned spi_ps_input_addr;
715 unsigned spi_baryc_cntl;
716 unsigned spi_ps_in_control;
717 unsigned spi_shader_z_format;
718 unsigned spi_shader_col_format;
719 unsigned cb_shader_mask;
720 } ps;
721 } ctx_reg;
722
723 /*For save precompute registers value */
724 unsigned vgt_tf_param; /* VGT_TF_PARAM */
725 unsigned vgt_vertex_reuse_block_cntl; /* VGT_VERTEX_REUSE_BLOCK_CNTL */
726 unsigned ge_cntl;
727 };
728
729 struct si_shader_part {
730 struct si_shader_part *next;
731 union si_shader_part_key key;
732 struct si_shader_binary binary;
733 struct ac_shader_config config;
734 };
735
736 /* si_shader.c */
737 struct si_shader *
738 si_generate_gs_copy_shader(struct si_screen *sscreen,
739 struct ac_llvm_compiler *compiler,
740 struct si_shader_selector *gs_selector,
741 struct pipe_debug_callback *debug);
742 int si_compile_tgsi_shader(struct si_screen *sscreen,
743 struct ac_llvm_compiler *compiler,
744 struct si_shader *shader,
745 struct pipe_debug_callback *debug);
746 bool si_shader_create(struct si_screen *sscreen, struct ac_llvm_compiler *compiler,
747 struct si_shader *shader,
748 struct pipe_debug_callback *debug);
749 void si_shader_destroy(struct si_shader *shader);
750 unsigned si_shader_io_get_unique_index_patch(unsigned semantic_name, unsigned index);
751 unsigned si_shader_io_get_unique_index(unsigned semantic_name, unsigned index,
752 unsigned is_varying);
753 bool si_shader_binary_upload(struct si_screen *sscreen, struct si_shader *shader,
754 uint64_t scratch_va);
755 void si_shader_dump(struct si_screen *sscreen, struct si_shader *shader,
756 struct pipe_debug_callback *debug,
757 FILE *f, bool check_debug_option);
758 void si_shader_dump_stats_for_shader_db(struct si_screen *screen,
759 struct si_shader *shader,
760 struct pipe_debug_callback *debug);
761 void si_multiwave_lds_size_workaround(struct si_screen *sscreen,
762 unsigned *lds_size);
763 const char *si_get_shader_name(const struct si_shader *shader);
764 void si_shader_binary_clean(struct si_shader_binary *binary);
765
766 /* si_shader_nir.c */
767 void si_nir_scan_shader(const struct nir_shader *nir,
768 struct tgsi_shader_info *info);
769 void si_nir_scan_tess_ctrl(const struct nir_shader *nir,
770 struct tgsi_tessctrl_info *out);
771 void si_lower_nir(struct si_shader_selector *sel);
772 void si_nir_opts(struct nir_shader *nir);
773
774 /* si_state_shaders.c */
775 void gfx9_get_gs_info(struct si_shader_selector *es,
776 struct si_shader_selector *gs,
777 struct gfx9_gs_info *out);
778
779 /* Inline helpers. */
780
781 /* Return the pointer to the main shader part's pointer. */
782 static inline struct si_shader **
783 si_get_main_shader_part(struct si_shader_selector *sel,
784 struct si_shader_key *key)
785 {
786 if (key->as_ls)
787 return &sel->main_shader_part_ls;
788 if (key->as_es)
789 return &sel->main_shader_part_es;
790 if (key->as_ngg)
791 return &sel->main_shader_part_ngg;
792 return &sel->main_shader_part;
793 }
794
795 static inline bool
796 si_shader_uses_bindless_samplers(struct si_shader_selector *selector)
797 {
798 return selector ? selector->info.uses_bindless_samplers : false;
799 }
800
801 static inline bool
802 si_shader_uses_bindless_images(struct si_shader_selector *selector)
803 {
804 return selector ? selector->info.uses_bindless_images : false;
805 }
806
807 void si_destroy_shader_selector(struct si_context *sctx,
808 struct si_shader_selector *sel);
809
810 static inline void
811 si_shader_selector_reference(struct si_context *sctx,
812 struct si_shader_selector **dst,
813 struct si_shader_selector *src)
814 {
815 if (pipe_reference(&(*dst)->reference, &src->reference))
816 si_destroy_shader_selector(sctx, *dst);
817
818 *dst = src;
819 }
820
821 #endif