radeonsi: allow generating VS prologs with 0 inputs
[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 #include "util/simple_mtx.h"
140
141 #include "ac_binary.h"
142 #include "ac_llvm_build.h"
143 #include "ac_llvm_util.h"
144
145 #include <stdio.h>
146
147 // Use LDS symbols when supported by LLVM. Can be disabled for testing the old
148 // path on newer LLVM for now. Should be removed in the long term.
149 #define USE_LDS_SYMBOLS (true)
150
151 struct nir_shader;
152 struct si_shader;
153 struct si_context;
154
155 #define SI_MAX_ATTRIBS 16
156 #define SI_MAX_VS_OUTPUTS 40
157
158 /* Shader IO unique indices are supported for TGSI_SEMANTIC_GENERIC with an
159 * index smaller than this.
160 */
161 #define SI_MAX_IO_GENERIC 32
162
163 /* SGPR user data indices */
164 enum {
165 SI_SGPR_RW_BUFFERS, /* rings (& stream-out, VS only) */
166 SI_SGPR_BINDLESS_SAMPLERS_AND_IMAGES,
167 SI_SGPR_CONST_AND_SHADER_BUFFERS, /* or just a constant buffer 0 pointer */
168 SI_SGPR_SAMPLERS_AND_IMAGES,
169 SI_NUM_RESOURCE_SGPRS,
170
171 /* API VS, TES without GS, GS copy shader */
172 SI_SGPR_VS_STATE_BITS = SI_NUM_RESOURCE_SGPRS,
173 SI_NUM_VS_STATE_RESOURCE_SGPRS,
174
175 /* all VS variants */
176 SI_SGPR_BASE_VERTEX = SI_NUM_VS_STATE_RESOURCE_SGPRS,
177 SI_SGPR_START_INSTANCE,
178 SI_SGPR_DRAWID,
179 SI_VS_NUM_USER_SGPR,
180
181 SI_SGPR_VS_BLIT_DATA = SI_SGPR_CONST_AND_SHADER_BUFFERS,
182
183 /* TES */
184 SI_SGPR_TES_OFFCHIP_LAYOUT = SI_NUM_VS_STATE_RESOURCE_SGPRS,
185 SI_SGPR_TES_OFFCHIP_ADDR,
186 SI_TES_NUM_USER_SGPR,
187
188 /* GFX6-8: TCS only */
189 GFX6_SGPR_TCS_OFFCHIP_LAYOUT = SI_NUM_RESOURCE_SGPRS,
190 GFX6_SGPR_TCS_OUT_OFFSETS,
191 GFX6_SGPR_TCS_OUT_LAYOUT,
192 GFX6_SGPR_TCS_IN_LAYOUT,
193 GFX6_TCS_NUM_USER_SGPR,
194
195 /* GFX9: Merged shaders. */
196 /* 2ND_CONST_AND_SHADER_BUFFERS is set in USER_DATA_ADDR_LO (SGPR0). */
197 /* 2ND_SAMPLERS_AND_IMAGES is set in USER_DATA_ADDR_HI (SGPR1). */
198 GFX9_MERGED_NUM_USER_SGPR = SI_VS_NUM_USER_SGPR,
199
200 /* GFX9: Merged LS-HS (VS-TCS) only. */
201 GFX9_SGPR_TCS_OFFCHIP_LAYOUT = GFX9_MERGED_NUM_USER_SGPR,
202 GFX9_SGPR_TCS_OUT_OFFSETS,
203 GFX9_SGPR_TCS_OUT_LAYOUT,
204 GFX9_TCS_NUM_USER_SGPR,
205
206 /* GS limits */
207 GFX6_GS_NUM_USER_SGPR = SI_NUM_RESOURCE_SGPRS,
208 GFX9_VSGS_NUM_USER_SGPR = SI_VS_NUM_USER_SGPR,
209 GFX9_TESGS_NUM_USER_SGPR = SI_TES_NUM_USER_SGPR,
210 SI_GSCOPY_NUM_USER_SGPR = SI_NUM_VS_STATE_RESOURCE_SGPRS,
211
212 /* PS only */
213 SI_SGPR_ALPHA_REF = SI_NUM_RESOURCE_SGPRS,
214 SI_PS_NUM_USER_SGPR,
215 };
216
217 /* LLVM function parameter indices */
218 enum {
219 SI_NUM_RESOURCE_PARAMS = 4,
220
221 /* PS only parameters */
222 SI_PARAM_ALPHA_REF = SI_NUM_RESOURCE_PARAMS,
223 SI_PARAM_PRIM_MASK,
224 SI_PARAM_PERSP_SAMPLE,
225 SI_PARAM_PERSP_CENTER,
226 SI_PARAM_PERSP_CENTROID,
227 SI_PARAM_PERSP_PULL_MODEL,
228 SI_PARAM_LINEAR_SAMPLE,
229 SI_PARAM_LINEAR_CENTER,
230 SI_PARAM_LINEAR_CENTROID,
231 SI_PARAM_LINE_STIPPLE_TEX,
232 SI_PARAM_POS_X_FLOAT,
233 SI_PARAM_POS_Y_FLOAT,
234 SI_PARAM_POS_Z_FLOAT,
235 SI_PARAM_POS_W_FLOAT,
236 SI_PARAM_FRONT_FACE,
237 SI_PARAM_ANCILLARY,
238 SI_PARAM_SAMPLE_COVERAGE,
239 SI_PARAM_POS_FIXED_PT,
240
241 SI_NUM_PARAMS = SI_PARAM_POS_FIXED_PT + 9, /* +8 for COLOR[0..1] */
242 };
243
244 /* Fields of driver-defined VS state SGPR. */
245 #define S_VS_STATE_CLAMP_VERTEX_COLOR(x) (((unsigned)(x) & 0x1) << 0)
246 #define C_VS_STATE_CLAMP_VERTEX_COLOR 0xFFFFFFFE
247 #define S_VS_STATE_INDEXED(x) (((unsigned)(x) & 0x1) << 1)
248 #define C_VS_STATE_INDEXED 0xFFFFFFFD
249 #define S_VS_STATE_OUTPRIM(x) (((unsigned)(x) & 0x3) << 2)
250 #define C_VS_STATE_OUTPRIM 0xFFFFFFF3
251 #define S_VS_STATE_PROVOKING_VTX_INDEX(x) (((unsigned)(x) & 0x3) << 4)
252 #define C_VS_STATE_PROVOKING_VTX_INDEX 0xFFFFFFCF
253 #define S_VS_STATE_STREAMOUT_QUERY_ENABLED(x) (((unsigned)(x) & 0x1) << 6)
254 #define C_VS_STATE_STREAMOUT_QUERY_ENABLED 0xFFFFFFBF
255 #define S_VS_STATE_LS_OUT_PATCH_SIZE(x) (((unsigned)(x) & 0x1FFF) << 8)
256 #define C_VS_STATE_LS_OUT_PATCH_SIZE 0xFFE000FF
257 #define S_VS_STATE_LS_OUT_VERTEX_SIZE(x) (((unsigned)(x) & 0xFF) << 24)
258 #define C_VS_STATE_LS_OUT_VERTEX_SIZE 0x00FFFFFF
259
260 enum {
261 /* Use a property enum that CS wouldn't use. */
262 TGSI_PROPERTY_CS_LOCAL_SIZE = TGSI_PROPERTY_FS_COORD_ORIGIN,
263
264 /* These represent the number of SGPRs the shader uses. */
265 SI_VS_BLIT_SGPRS_POS = 3,
266 SI_VS_BLIT_SGPRS_POS_COLOR = 7,
267 SI_VS_BLIT_SGPRS_POS_TEXCOORD = 9,
268 };
269
270 /**
271 * For VS shader keys, describe any fixups required for vertex fetch.
272 *
273 * \ref log_size, \ref format, and the number of channels are interpreted as
274 * by \ref ac_build_opencoded_load_format.
275 *
276 * Note: all bits 0 (size = 1 byte, num channels = 1, format = float) is an
277 * impossible format and indicates that no fixup is needed (just use
278 * buffer_load_format_xyzw).
279 */
280 union si_vs_fix_fetch {
281 struct {
282 uint8_t log_size : 2; /* 1, 2, 4, 8 or bytes per channel */
283 uint8_t num_channels_m1 : 2; /* number of channels minus 1 */
284 uint8_t format : 3; /* AC_FETCH_FORMAT_xxx */
285 uint8_t reverse : 1; /* reverse XYZ channels */
286 } u;
287 uint8_t bits;
288 };
289
290 struct si_shader;
291
292 /* State of the context creating the shader object. */
293 struct si_compiler_ctx_state {
294 /* Should only be used by si_init_shader_selector_async and
295 * si_build_shader_variant if thread_index == -1 (non-threaded). */
296 struct ac_llvm_compiler *compiler;
297
298 /* Used if thread_index == -1 or if debug.async is true. */
299 struct pipe_debug_callback debug;
300
301 /* Used for creating the log string for gallium/ddebug. */
302 bool is_debug_context;
303 };
304
305 /* A shader selector is a gallium CSO and contains shader variants and
306 * binaries for one TGSI program. This can be shared by multiple contexts.
307 */
308 struct si_shader_selector {
309 struct pipe_reference reference;
310 struct si_screen *screen;
311 struct util_queue_fence ready;
312 struct si_compiler_ctx_state compiler_ctx_state;
313
314 simple_mtx_t mutex;
315 struct si_shader *first_variant; /* immutable after the first variant */
316 struct si_shader *last_variant; /* mutable */
317
318 /* The compiled TGSI shader expecting a prolog and/or epilog (not
319 * uploaded to a buffer).
320 */
321 struct si_shader *main_shader_part;
322 struct si_shader *main_shader_part_ls; /* as_ls is set in the key */
323 struct si_shader *main_shader_part_es; /* as_es is set in the key */
324 struct si_shader *main_shader_part_ngg; /* as_ngg is set in the key */
325 struct si_shader *main_shader_part_ngg_es; /* for Wave32 TES before legacy GS */
326
327 struct si_shader *gs_copy_shader;
328
329 struct tgsi_token *tokens;
330 struct nir_shader *nir;
331 void *nir_binary;
332 unsigned nir_size;
333
334 struct pipe_stream_output_info so;
335 struct tgsi_shader_info info;
336 struct tgsi_tessctrl_info tcs_info;
337
338 /* PIPE_SHADER_[VERTEX|FRAGMENT|...] */
339 enum pipe_shader_type type;
340 bool vs_needs_prolog;
341 bool force_correct_derivs_after_kill;
342 bool prim_discard_cs_allowed;
343 unsigned pa_cl_vs_out_cntl;
344 ubyte clipdist_mask;
345 ubyte culldist_mask;
346 unsigned rast_prim;
347
348 /* ES parameters. */
349 unsigned esgs_itemsize; /* vertex stride */
350 unsigned lshs_vertex_stride;
351
352 /* GS parameters. */
353 unsigned gs_input_verts_per_prim;
354 unsigned gs_output_prim;
355 unsigned gs_max_out_vertices;
356 unsigned gs_num_invocations;
357 unsigned max_gs_stream; /* count - 1 */
358 unsigned gsvs_vertex_size;
359 unsigned max_gsvs_emit_size;
360 unsigned enabled_streamout_buffer_mask;
361 bool tess_turns_off_ngg;
362
363 /* PS parameters. */
364 unsigned color_attr_index[2];
365 unsigned db_shader_control;
366 /* Set 0xf or 0x0 (4 bits) per each written output.
367 * ANDed with spi_shader_col_format.
368 */
369 unsigned colors_written_4bit;
370
371 uint64_t outputs_written_before_ps; /* "get_unique_index" bits */
372 uint64_t outputs_written; /* "get_unique_index" bits */
373 uint32_t patch_outputs_written; /* "get_unique_index_patch" bits */
374
375 uint64_t inputs_read; /* "get_unique_index" bits */
376
377 /* bitmasks of used descriptor slots */
378 uint32_t active_const_and_shader_buffers;
379 uint64_t active_samplers_and_images;
380 };
381
382 /* Valid shader configurations:
383 *
384 * API shaders VS | TCS | TES | GS |pass| PS
385 * are compiled as: | | | |thru|
386 * | | | | |
387 * Only VS & PS: VS | | | | | PS
388 * GFX6 - with GS: ES | | | GS | VS | PS
389 * - with tess: LS | HS | VS | | | PS
390 * - with both: LS | HS | ES | GS | VS | PS
391 * GFX9 - with GS: -> | | | GS | VS | PS
392 * - with tess: -> | HS | VS | | | PS
393 * - with both: -> | HS | -> | GS | VS | PS
394 * | | | | |
395 * NGG - VS & PS: GS | | | | | PS
396 * (GFX10+) - with GS: -> | | | GS | | PS
397 * - with tess: -> | HS | GS | | | PS
398 * - with both: -> | HS | -> | GS | | PS
399 *
400 * -> = merged with the next stage
401 */
402
403 /* Use the byte alignment for all following structure members for optimal
404 * shader key memory footprint.
405 */
406 #pragma pack(push, 1)
407
408 /* Common VS bits between the shader key and the prolog key. */
409 struct si_vs_prolog_bits {
410 /* - If neither "is_one" nor "is_fetched" has a bit set, the instance
411 * divisor is 0.
412 * - If "is_one" has a bit set, the instance divisor is 1.
413 * - If "is_fetched" has a bit set, the instance divisor will be loaded
414 * from the constant buffer.
415 */
416 uint16_t instance_divisor_is_one; /* bitmask of inputs */
417 uint16_t instance_divisor_is_fetched; /* bitmask of inputs */
418 unsigned ls_vgpr_fix:1;
419 unsigned unpack_instance_id_from_vertex_id:1;
420 };
421
422 /* Common TCS bits between the shader key and the epilog key. */
423 struct si_tcs_epilog_bits {
424 unsigned prim_mode:3;
425 unsigned invoc0_tess_factors_are_def:1;
426 unsigned tes_reads_tess_factors:1;
427 };
428
429 struct si_gs_prolog_bits {
430 unsigned tri_strip_adj_fix:1;
431 unsigned gfx9_prev_is_vs:1;
432 };
433
434 /* Common PS bits between the shader key and the prolog key. */
435 struct si_ps_prolog_bits {
436 unsigned color_two_side:1;
437 unsigned flatshade_colors:1;
438 unsigned poly_stipple:1;
439 unsigned force_persp_sample_interp:1;
440 unsigned force_linear_sample_interp:1;
441 unsigned force_persp_center_interp:1;
442 unsigned force_linear_center_interp:1;
443 unsigned bc_optimize_for_persp:1;
444 unsigned bc_optimize_for_linear:1;
445 unsigned samplemask_log_ps_iter:3;
446 };
447
448 /* Common PS bits between the shader key and the epilog key. */
449 struct si_ps_epilog_bits {
450 unsigned spi_shader_col_format;
451 unsigned color_is_int8:8;
452 unsigned color_is_int10:8;
453 unsigned last_cbuf:3;
454 unsigned alpha_func:3;
455 unsigned alpha_to_one:1;
456 unsigned poly_line_smoothing:1;
457 unsigned clamp_color:1;
458 };
459
460 union si_shader_part_key {
461 struct {
462 struct si_vs_prolog_bits states;
463 unsigned num_input_sgprs:6;
464 /* For merged stages such as LS-HS, HS input VGPRs are first. */
465 unsigned num_merged_next_stage_vgprs:3;
466 unsigned num_inputs:5;
467 unsigned as_ls:1;
468 unsigned as_es:1;
469 unsigned as_ngg:1;
470 /* Prologs for monolithic shaders shouldn't set EXEC. */
471 unsigned is_monolithic:1;
472 } vs_prolog;
473 struct {
474 struct si_tcs_epilog_bits states;
475 } tcs_epilog;
476 struct {
477 struct si_gs_prolog_bits states;
478 /* Prologs of monolithic shaders shouldn't set EXEC. */
479 unsigned is_monolithic:1;
480 unsigned as_ngg:1;
481 } gs_prolog;
482 struct {
483 struct si_ps_prolog_bits states;
484 unsigned num_input_sgprs:6;
485 unsigned num_input_vgprs:5;
486 /* Color interpolation and two-side color selection. */
487 unsigned colors_read:8; /* color input components read */
488 unsigned num_interp_inputs:5; /* BCOLOR is at this location */
489 unsigned face_vgpr_index:5;
490 unsigned ancillary_vgpr_index:5;
491 unsigned wqm:1;
492 char color_attr_index[2];
493 signed char color_interp_vgpr_index[2]; /* -1 == constant */
494 } ps_prolog;
495 struct {
496 struct si_ps_epilog_bits states;
497 unsigned colors_written:8;
498 unsigned writes_z:1;
499 unsigned writes_stencil:1;
500 unsigned writes_samplemask:1;
501 } ps_epilog;
502 };
503
504 struct si_shader_key {
505 /* Prolog and epilog flags. */
506 union {
507 struct {
508 struct si_vs_prolog_bits prolog;
509 } vs;
510 struct {
511 struct si_vs_prolog_bits ls_prolog; /* for merged LS-HS */
512 struct si_shader_selector *ls; /* for merged LS-HS */
513 struct si_tcs_epilog_bits epilog;
514 } tcs; /* tessellation control shader */
515 struct {
516 struct si_vs_prolog_bits vs_prolog; /* for merged ES-GS */
517 struct si_shader_selector *es; /* for merged ES-GS */
518 struct si_gs_prolog_bits prolog;
519 } gs;
520 struct {
521 struct si_ps_prolog_bits prolog;
522 struct si_ps_epilog_bits epilog;
523 } ps;
524 } part;
525
526 /* These three are initially set according to the NEXT_SHADER property,
527 * or guessed if the property doesn't seem correct.
528 */
529 unsigned as_es:1; /* export shader, which precedes GS */
530 unsigned as_ls:1; /* local shader, which precedes TCS */
531 unsigned as_ngg:1; /* VS, TES, or GS compiled as NGG primitive shader */
532
533 /* Flags for monolithic compilation only. */
534 struct {
535 /* Whether fetch should be opencoded according to vs_fix_fetch.
536 * Otherwise, if vs_fix_fetch is non-zero, buffer_load_format_xyzw
537 * with minimal fixups is used. */
538 uint16_t vs_fetch_opencode;
539 union si_vs_fix_fetch vs_fix_fetch[SI_MAX_ATTRIBS];
540
541 union {
542 uint64_t ff_tcs_inputs_to_copy; /* for fixed-func TCS */
543 /* When PS needs PrimID and GS is disabled. */
544 unsigned vs_export_prim_id:1;
545 struct {
546 unsigned interpolate_at_sample_force_center:1;
547 unsigned fbfetch_msaa:1;
548 unsigned fbfetch_is_1D:1;
549 unsigned fbfetch_layered:1;
550 } ps;
551 } u;
552 } mono;
553
554 /* Optimization flags for asynchronous compilation only. */
555 struct {
556 /* For HW VS (it can be VS, TES, GS) */
557 uint64_t kill_outputs; /* "get_unique_index" bits */
558 unsigned clip_disable:1;
559
560 /* For shaders where monolithic variants have better code.
561 *
562 * This is a flag that has no effect on code generation,
563 * but forces monolithic shaders to be used as soon as
564 * possible, because it's in the "opt" group.
565 */
566 unsigned prefer_mono:1;
567
568 /* Primitive discard compute shader. */
569 unsigned vs_as_prim_discard_cs:1;
570 unsigned cs_prim_type:4;
571 unsigned cs_indexed:1;
572 unsigned cs_instancing:1;
573 unsigned cs_primitive_restart:1;
574 unsigned cs_provoking_vertex_first:1;
575 unsigned cs_need_correct_orientation:1;
576 unsigned cs_cull_front:1;
577 unsigned cs_cull_back:1;
578 unsigned cs_cull_z:1;
579 unsigned cs_halfz_clip_space:1;
580 } opt;
581 };
582
583 /* Restore the pack alignment to default. */
584 #pragma pack(pop)
585
586 /* GCN-specific shader info. */
587 struct si_shader_info {
588 ubyte vs_output_param_offset[SI_MAX_VS_OUTPUTS];
589 ubyte num_input_sgprs;
590 ubyte num_input_vgprs;
591 signed char face_vgpr_index;
592 signed char ancillary_vgpr_index;
593 bool uses_instanceid;
594 ubyte nr_pos_exports;
595 ubyte nr_param_exports;
596 unsigned private_mem_vgprs;
597 unsigned max_simd_waves;
598 };
599
600 struct si_shader_binary {
601 const char *elf_buffer;
602 size_t elf_size;
603
604 char *llvm_ir_string;
605 };
606
607 struct gfx9_gs_info {
608 unsigned es_verts_per_subgroup;
609 unsigned gs_prims_per_subgroup;
610 unsigned gs_inst_prims_in_subgroup;
611 unsigned max_prims_per_subgroup;
612 unsigned esgs_ring_size; /* in bytes */
613 };
614
615 struct si_shader {
616 struct si_compiler_ctx_state compiler_ctx_state;
617
618 struct si_shader_selector *selector;
619 struct si_shader_selector *previous_stage_sel; /* for refcounting */
620 struct si_shader *next_variant;
621
622 struct si_shader_part *prolog;
623 struct si_shader *previous_stage; /* for GFX9 */
624 struct si_shader_part *prolog2;
625 struct si_shader_part *epilog;
626
627 struct si_pm4_state *pm4;
628 struct si_resource *bo;
629 struct si_resource *scratch_bo;
630 struct si_shader_key key;
631 struct util_queue_fence ready;
632 bool compilation_failed;
633 bool is_monolithic;
634 bool is_optimized;
635 bool is_binary_shared;
636 bool is_gs_copy_shader;
637
638 /* The following data is all that's needed for binary shaders. */
639 struct si_shader_binary binary;
640 struct ac_shader_config config;
641 struct si_shader_info info;
642
643 struct {
644 uint16_t ngg_emit_size; /* in dwords */
645 uint16_t hw_max_esverts;
646 uint16_t max_gsprims;
647 uint16_t max_out_verts;
648 uint16_t prim_amp_factor;
649 bool max_vert_out_per_gs_instance;
650 } ngg;
651
652 /* Shader key + LLVM IR + disassembly + statistics.
653 * Generated for debug contexts only.
654 */
655 char *shader_log;
656 size_t shader_log_size;
657
658 struct gfx9_gs_info gs_info;
659
660 /* For save precompute context registers values. */
661 union {
662 struct {
663 unsigned vgt_gsvs_ring_offset_1;
664 unsigned vgt_gsvs_ring_offset_2;
665 unsigned vgt_gsvs_ring_offset_3;
666 unsigned vgt_gsvs_ring_itemsize;
667 unsigned vgt_gs_max_vert_out;
668 unsigned vgt_gs_vert_itemsize;
669 unsigned vgt_gs_vert_itemsize_1;
670 unsigned vgt_gs_vert_itemsize_2;
671 unsigned vgt_gs_vert_itemsize_3;
672 unsigned vgt_gs_instance_cnt;
673 unsigned vgt_gs_onchip_cntl;
674 unsigned vgt_gs_max_prims_per_subgroup;
675 unsigned vgt_esgs_ring_itemsize;
676 } gs;
677
678 struct {
679 unsigned ge_max_output_per_subgroup;
680 unsigned ge_ngg_subgrp_cntl;
681 unsigned vgt_primitiveid_en;
682 unsigned vgt_gs_onchip_cntl;
683 unsigned vgt_gs_instance_cnt;
684 unsigned vgt_esgs_ring_itemsize;
685 unsigned spi_vs_out_config;
686 unsigned spi_shader_idx_format;
687 unsigned spi_shader_pos_format;
688 unsigned pa_cl_vte_cntl;
689 unsigned pa_cl_ngg_cntl;
690 unsigned vgt_gs_max_vert_out; /* for API GS */
691 } ngg;
692
693 struct {
694 unsigned vgt_gs_mode;
695 unsigned vgt_primitiveid_en;
696 unsigned vgt_reuse_off;
697 unsigned spi_vs_out_config;
698 unsigned spi_shader_pos_format;
699 unsigned pa_cl_vte_cntl;
700 } vs;
701
702 struct {
703 unsigned spi_ps_input_ena;
704 unsigned spi_ps_input_addr;
705 unsigned spi_baryc_cntl;
706 unsigned spi_ps_in_control;
707 unsigned spi_shader_z_format;
708 unsigned spi_shader_col_format;
709 unsigned cb_shader_mask;
710 } ps;
711 } ctx_reg;
712
713 /*For save precompute registers value */
714 unsigned vgt_tf_param; /* VGT_TF_PARAM */
715 unsigned vgt_vertex_reuse_block_cntl; /* VGT_VERTEX_REUSE_BLOCK_CNTL */
716 unsigned pa_cl_vs_out_cntl;
717 unsigned ge_cntl;
718 };
719
720 struct si_shader_part {
721 struct si_shader_part *next;
722 union si_shader_part_key key;
723 struct si_shader_binary binary;
724 struct ac_shader_config config;
725 };
726
727 /* si_shader.c */
728 struct si_shader *
729 si_generate_gs_copy_shader(struct si_screen *sscreen,
730 struct ac_llvm_compiler *compiler,
731 struct si_shader_selector *gs_selector,
732 struct pipe_debug_callback *debug);
733 int si_compile_tgsi_shader(struct si_screen *sscreen,
734 struct ac_llvm_compiler *compiler,
735 struct si_shader *shader,
736 struct pipe_debug_callback *debug);
737 bool si_shader_create(struct si_screen *sscreen, struct ac_llvm_compiler *compiler,
738 struct si_shader *shader,
739 struct pipe_debug_callback *debug);
740 void si_shader_destroy(struct si_shader *shader);
741 unsigned si_shader_io_get_unique_index_patch(unsigned semantic_name, unsigned index);
742 unsigned si_shader_io_get_unique_index(unsigned semantic_name, unsigned index,
743 unsigned is_varying);
744 bool si_shader_binary_upload(struct si_screen *sscreen, struct si_shader *shader,
745 uint64_t scratch_va);
746 void si_shader_dump(struct si_screen *sscreen, struct si_shader *shader,
747 struct pipe_debug_callback *debug,
748 FILE *f, bool check_debug_option);
749 void si_shader_dump_stats_for_shader_db(struct si_screen *screen,
750 struct si_shader *shader,
751 struct pipe_debug_callback *debug);
752 void si_multiwave_lds_size_workaround(struct si_screen *sscreen,
753 unsigned *lds_size);
754 const char *si_get_shader_name(const struct si_shader *shader);
755 void si_shader_binary_clean(struct si_shader_binary *binary);
756
757 /* si_shader_nir.c */
758 void si_nir_scan_shader(const struct nir_shader *nir,
759 struct tgsi_shader_info *info);
760 void si_nir_scan_tess_ctrl(const struct nir_shader *nir,
761 struct tgsi_tessctrl_info *out);
762 void si_nir_adjust_driver_locations(struct nir_shader *nir);
763 void si_finalize_nir(struct pipe_screen *screen, void *nirptr, bool optimize);
764
765 /* si_state_shaders.c */
766 void gfx9_get_gs_info(struct si_shader_selector *es,
767 struct si_shader_selector *gs,
768 struct gfx9_gs_info *out);
769
770 /* Inline helpers. */
771
772 /* Return the pointer to the main shader part's pointer. */
773 static inline struct si_shader **
774 si_get_main_shader_part(struct si_shader_selector *sel,
775 struct si_shader_key *key)
776 {
777 if (key->as_ls)
778 return &sel->main_shader_part_ls;
779 if (key->as_es && key->as_ngg)
780 return &sel->main_shader_part_ngg_es;
781 if (key->as_es)
782 return &sel->main_shader_part_es;
783 if (key->as_ngg)
784 return &sel->main_shader_part_ngg;
785 return &sel->main_shader_part;
786 }
787
788 static inline bool
789 si_shader_uses_bindless_samplers(struct si_shader_selector *selector)
790 {
791 return selector ? selector->info.uses_bindless_samplers : false;
792 }
793
794 static inline bool
795 si_shader_uses_bindless_images(struct si_shader_selector *selector)
796 {
797 return selector ? selector->info.uses_bindless_images : false;
798 }
799
800 void si_destroy_shader_selector(struct si_context *sctx,
801 struct si_shader_selector *sel);
802
803 static inline void
804 si_shader_selector_reference(struct si_context *sctx,
805 struct si_shader_selector **dst,
806 struct si_shader_selector *src)
807 {
808 if (pipe_reference(&(*dst)->reference, &src->reference))
809 si_destroy_shader_selector(sctx, *dst);
810
811 *dst = src;
812 }
813
814 #endif