radeonsi/gfx10: don't insert NGG streamout atomics if they are never used
[mesa.git] / src / gallium / drivers / radeonsi / gfx10_shader_ngg.c
1 /*
2 * Copyright 2017 Advanced Micro Devices, Inc.
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 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the 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 NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23
24 #include "si_pipe.h"
25 #include "si_shader_internal.h"
26
27 #include "sid.h"
28
29 #include "util/u_memory.h"
30 #include "util/u_prim.h"
31
32 static LLVMValueRef get_wave_id_in_tg(struct si_shader_context *ctx)
33 {
34 return si_unpack_param(ctx, ctx->merged_wave_info, 24, 4);
35 }
36
37 static LLVMValueRef get_tgsize(struct si_shader_context *ctx)
38 {
39 return si_unpack_param(ctx, ctx->merged_wave_info, 28, 4);
40 }
41
42 static LLVMValueRef get_thread_id_in_tg(struct si_shader_context *ctx)
43 {
44 LLVMBuilderRef builder = ctx->ac.builder;
45 LLVMValueRef tmp;
46 tmp = LLVMBuildMul(builder, get_wave_id_in_tg(ctx),
47 LLVMConstInt(ctx->ac.i32, ctx->ac.wave_size, false), "");
48 return LLVMBuildAdd(builder, tmp, ac_get_thread_id(&ctx->ac), "");
49 }
50
51 static LLVMValueRef ngg_get_vtx_cnt(struct si_shader_context *ctx)
52 {
53 return si_unpack_param(ctx, ctx->gs_tg_info, 12, 9);
54 }
55
56 static LLVMValueRef ngg_get_prim_cnt(struct si_shader_context *ctx)
57 {
58 return si_unpack_param(ctx, ctx->gs_tg_info, 22, 9);
59 }
60
61 static LLVMValueRef ngg_get_ordered_id(struct si_shader_context *ctx)
62 {
63 return si_unpack_param(ctx, ctx->gs_tg_info, 0, 11);
64 }
65
66 static LLVMValueRef ngg_get_query_buf(struct si_shader_context *ctx)
67 {
68 LLVMValueRef buf_ptr = ac_get_arg(&ctx->ac, ctx->rw_buffers);
69
70 return ac_build_load_to_sgpr(&ctx->ac, buf_ptr,
71 LLVMConstInt(ctx->i32, GFX10_GS_QUERY_BUF, false));
72 }
73
74 /* Send GS Alloc Req message from the first wave of the group to SPI.
75 * Message payload is:
76 * - bits 0..10: vertices in group
77 * - bits 12..22: primitives in group
78 */
79 static void build_sendmsg_gs_alloc_req(struct si_shader_context *ctx,
80 LLVMValueRef vtx_cnt,
81 LLVMValueRef prim_cnt)
82 {
83 LLVMBuilderRef builder = ctx->ac.builder;
84 LLVMValueRef tmp;
85
86 tmp = LLVMBuildICmp(builder, LLVMIntEQ, get_wave_id_in_tg(ctx), ctx->ac.i32_0, "");
87 ac_build_ifcc(&ctx->ac, tmp, 5020);
88
89 tmp = LLVMBuildShl(builder, prim_cnt, LLVMConstInt(ctx->ac.i32, 12, false),"");
90 tmp = LLVMBuildOr(builder, tmp, vtx_cnt, "");
91 ac_build_sendmsg(&ctx->ac, AC_SENDMSG_GS_ALLOC_REQ, tmp);
92
93 ac_build_endif(&ctx->ac, 5020);
94 }
95
96 struct ngg_prim {
97 unsigned num_vertices;
98 LLVMValueRef isnull;
99 LLVMValueRef index[3];
100 LLVMValueRef edgeflag[3];
101 };
102
103 static void build_export_prim(struct si_shader_context *ctx,
104 const struct ngg_prim *prim)
105 {
106 LLVMBuilderRef builder = ctx->ac.builder;
107 struct ac_export_args args;
108 LLVMValueRef tmp;
109
110 tmp = LLVMBuildZExt(builder, prim->isnull, ctx->ac.i32, "");
111 args.out[0] = LLVMBuildShl(builder, tmp, LLVMConstInt(ctx->ac.i32, 31, false), "");
112
113 for (unsigned i = 0; i < prim->num_vertices; ++i) {
114 tmp = LLVMBuildShl(builder, prim->index[i],
115 LLVMConstInt(ctx->ac.i32, 10 * i, false), "");
116 args.out[0] = LLVMBuildOr(builder, args.out[0], tmp, "");
117 tmp = LLVMBuildZExt(builder, prim->edgeflag[i], ctx->ac.i32, "");
118 tmp = LLVMBuildShl(builder, tmp,
119 LLVMConstInt(ctx->ac.i32, 10 * i + 9, false), "");
120 args.out[0] = LLVMBuildOr(builder, args.out[0], tmp, "");
121 }
122
123 args.out[0] = LLVMBuildBitCast(builder, args.out[0], ctx->ac.f32, "");
124 args.out[1] = LLVMGetUndef(ctx->ac.f32);
125 args.out[2] = LLVMGetUndef(ctx->ac.f32);
126 args.out[3] = LLVMGetUndef(ctx->ac.f32);
127
128 args.target = V_008DFC_SQ_EXP_PRIM;
129 args.enabled_channels = 1;
130 args.done = true;
131 args.valid_mask = false;
132 args.compr = false;
133
134 ac_build_export(&ctx->ac, &args);
135 }
136
137 static void build_streamout_vertex(struct si_shader_context *ctx,
138 LLVMValueRef *so_buffer, LLVMValueRef *wg_offset_dw,
139 unsigned stream, LLVMValueRef offset_vtx,
140 LLVMValueRef vertexptr)
141 {
142 struct tgsi_shader_info *info = &ctx->shader->selector->info;
143 struct pipe_stream_output_info *so = &ctx->shader->selector->so;
144 LLVMBuilderRef builder = ctx->ac.builder;
145 LLVMValueRef offset[4] = {};
146 LLVMValueRef tmp;
147
148 for (unsigned buffer = 0; buffer < 4; ++buffer) {
149 if (!wg_offset_dw[buffer])
150 continue;
151
152 tmp = LLVMBuildMul(builder, offset_vtx,
153 LLVMConstInt(ctx->i32, so->stride[buffer], false), "");
154 tmp = LLVMBuildAdd(builder, wg_offset_dw[buffer], tmp, "");
155 offset[buffer] = LLVMBuildShl(builder, tmp, LLVMConstInt(ctx->i32, 2, false), "");
156 }
157
158 for (unsigned i = 0; i < so->num_outputs; ++i) {
159 if (so->output[i].stream != stream)
160 continue;
161
162 unsigned reg = so->output[i].register_index;
163 struct si_shader_output_values out;
164 out.semantic_name = info->output_semantic_name[reg];
165 out.semantic_index = info->output_semantic_index[reg];
166
167 for (unsigned comp = 0; comp < 4; comp++) {
168 tmp = ac_build_gep0(&ctx->ac, vertexptr,
169 LLVMConstInt(ctx->i32, 4 * reg + comp, false));
170 out.values[comp] = LLVMBuildLoad(builder, tmp, "");
171 out.vertex_stream[comp] =
172 (info->output_streams[reg] >> (2 * comp)) & 3;
173 }
174
175 si_emit_streamout_output(ctx, so_buffer, offset, &so->output[i], &out);
176 }
177 }
178
179 struct ngg_streamout {
180 LLVMValueRef num_vertices;
181
182 /* per-thread data */
183 LLVMValueRef prim_enable[4]; /* i1 per stream */
184 LLVMValueRef vertices[3]; /* [N x i32] addrspace(LDS)* */
185
186 /* Output */
187 LLVMValueRef emit[4]; /* per-stream emitted primitives (only valid for used streams) */
188 };
189
190 /**
191 * Build streamout logic.
192 *
193 * Implies a barrier.
194 *
195 * Writes number of emitted primitives to gs_ngg_scratch[4:8].
196 *
197 * Clobbers gs_ngg_scratch[8:].
198 */
199 static void build_streamout(struct si_shader_context *ctx,
200 struct ngg_streamout *nggso)
201 {
202 struct tgsi_shader_info *info = &ctx->shader->selector->info;
203 struct pipe_stream_output_info *so = &ctx->shader->selector->so;
204 LLVMBuilderRef builder = ctx->ac.builder;
205 LLVMValueRef buf_ptr = ac_get_arg(&ctx->ac, ctx->rw_buffers);
206 LLVMValueRef tid = get_thread_id_in_tg(ctx);
207 LLVMValueRef tmp, tmp2;
208 LLVMValueRef i32_2 = LLVMConstInt(ctx->i32, 2, false);
209 LLVMValueRef i32_4 = LLVMConstInt(ctx->i32, 4, false);
210 LLVMValueRef i32_8 = LLVMConstInt(ctx->i32, 8, false);
211 LLVMValueRef so_buffer[4] = {};
212 unsigned max_num_vertices = 1 + (nggso->vertices[1] ? 1 : 0) +
213 (nggso->vertices[2] ? 1 : 0);
214 LLVMValueRef prim_stride_dw[4] = {};
215 LLVMValueRef prim_stride_dw_vgpr = LLVMGetUndef(ctx->i32);
216 int stream_for_buffer[4] = { -1, -1, -1, -1 };
217 unsigned bufmask_for_stream[4] = {};
218 bool isgs = ctx->type == PIPE_SHADER_GEOMETRY;
219 unsigned scratch_emit_base = isgs ? 4 : 0;
220 LLVMValueRef scratch_emit_basev = isgs ? i32_4 : ctx->i32_0;
221 unsigned scratch_offset_base = isgs ? 8 : 4;
222 LLVMValueRef scratch_offset_basev = isgs ? i32_8 : i32_4;
223
224 ac_llvm_add_target_dep_function_attr(ctx->main_fn, "amdgpu-gds-size", 256);
225
226 /* Determine the mapping of streamout buffers to vertex streams. */
227 for (unsigned i = 0; i < so->num_outputs; ++i) {
228 unsigned buf = so->output[i].output_buffer;
229 unsigned stream = so->output[i].stream;
230 assert(stream_for_buffer[buf] < 0 || stream_for_buffer[buf] == stream);
231 stream_for_buffer[buf] = stream;
232 bufmask_for_stream[stream] |= 1 << buf;
233 }
234
235 for (unsigned buffer = 0; buffer < 4; ++buffer) {
236 if (stream_for_buffer[buffer] == -1)
237 continue;
238
239 assert(so->stride[buffer]);
240
241 tmp = LLVMConstInt(ctx->i32, so->stride[buffer], false);
242 prim_stride_dw[buffer] = LLVMBuildMul(builder, tmp, nggso->num_vertices, "");
243 prim_stride_dw_vgpr = ac_build_writelane(
244 &ctx->ac, prim_stride_dw_vgpr, prim_stride_dw[buffer],
245 LLVMConstInt(ctx->i32, buffer, false));
246
247 so_buffer[buffer] = ac_build_load_to_sgpr(
248 &ctx->ac, buf_ptr,
249 LLVMConstInt(ctx->i32, SI_VS_STREAMOUT_BUF0 + buffer, false));
250 }
251
252 tmp = LLVMBuildICmp(builder, LLVMIntEQ, get_wave_id_in_tg(ctx), ctx->i32_0, "");
253 ac_build_ifcc(&ctx->ac, tmp, 5200);
254 {
255 LLVMTypeRef gdsptr = LLVMPointerType(ctx->i32, AC_ADDR_SPACE_GDS);
256 LLVMValueRef gdsbase = LLVMBuildIntToPtr(builder, ctx->i32_0, gdsptr, "");
257
258 /* Advance the streamout offsets in GDS. */
259 LLVMValueRef offsets_vgpr = ac_build_alloca_undef(&ctx->ac, ctx->i32, "");
260 LLVMValueRef generated_by_stream_vgpr = ac_build_alloca_undef(&ctx->ac, ctx->i32, "");
261
262 tmp = LLVMBuildICmp(builder, LLVMIntULT, ac_get_thread_id(&ctx->ac), i32_4, "");
263 ac_build_ifcc(&ctx->ac, tmp, 5210);
264 {
265 if (isgs) {
266 tmp = ac_build_gep0(&ctx->ac, ctx->gs_ngg_scratch, tid);
267 tmp = LLVMBuildLoad(builder, tmp, "");
268 } else {
269 tmp = ac_build_writelane(&ctx->ac, ctx->i32_0,
270 ngg_get_prim_cnt(ctx), ctx->i32_0);
271 }
272 LLVMBuildStore(builder, tmp, generated_by_stream_vgpr);
273
274 unsigned swizzle[4];
275 int unused_stream = -1;
276 for (unsigned stream = 0; stream < 4; ++stream) {
277 if (!info->num_stream_output_components[stream]) {
278 unused_stream = stream;
279 break;
280 }
281 }
282 for (unsigned buffer = 0; buffer < 4; ++buffer) {
283 if (stream_for_buffer[buffer] >= 0) {
284 swizzle[buffer] = stream_for_buffer[buffer];
285 } else {
286 assert(unused_stream >= 0);
287 swizzle[buffer] = unused_stream;
288 }
289 }
290
291 tmp = ac_build_quad_swizzle(&ctx->ac, tmp,
292 swizzle[0], swizzle[1], swizzle[2], swizzle[3]);
293 tmp = LLVMBuildMul(builder, tmp, prim_stride_dw_vgpr, "");
294
295 LLVMValueRef args[] = {
296 LLVMBuildIntToPtr(builder, ngg_get_ordered_id(ctx), gdsptr, ""),
297 tmp,
298 ctx->i32_0, // ordering
299 ctx->i32_0, // scope
300 ctx->ac.i1false, // isVolatile
301 LLVMConstInt(ctx->i32, 4 << 24, false), // OA index
302 ctx->ac.i1true, // wave release
303 ctx->ac.i1true, // wave done
304 };
305 tmp = ac_build_intrinsic(&ctx->ac, "llvm.amdgcn.ds.ordered.add",
306 ctx->i32, args, ARRAY_SIZE(args), 0);
307
308 /* Keep offsets in a VGPR for quick retrieval via readlane by
309 * the first wave for bounds checking, and also store in LDS
310 * for retrieval by all waves later. */
311 LLVMBuildStore(builder, tmp, offsets_vgpr);
312
313 tmp2 = LLVMBuildAdd(builder, ac_get_thread_id(&ctx->ac),
314 scratch_offset_basev, "");
315 tmp2 = ac_build_gep0(&ctx->ac, ctx->gs_ngg_scratch, tmp2);
316 LLVMBuildStore(builder, tmp, tmp2);
317 }
318 ac_build_endif(&ctx->ac, 5210);
319
320 /* Determine the max emit per buffer. This is done via the SALU, in part
321 * because LLVM can't generate divide-by-multiply if we try to do this
322 * via VALU with one lane per buffer.
323 */
324 LLVMValueRef max_emit[4] = {};
325 for (unsigned buffer = 0; buffer < 4; ++buffer) {
326 if (stream_for_buffer[buffer] == -1)
327 continue;
328
329 LLVMValueRef bufsize_dw =
330 LLVMBuildLShr(builder,
331 LLVMBuildExtractElement(builder, so_buffer[buffer], i32_2, ""),
332 i32_2, "");
333
334 tmp = LLVMBuildLoad(builder, offsets_vgpr, "");
335 LLVMValueRef offset_dw =
336 ac_build_readlane(&ctx->ac, tmp,
337 LLVMConstInt(ctx->i32, buffer, false));
338
339 tmp = LLVMBuildSub(builder, bufsize_dw, offset_dw, "");
340 tmp = LLVMBuildUDiv(builder, tmp, prim_stride_dw[buffer], "");
341
342 tmp2 = LLVMBuildICmp(builder, LLVMIntULT, bufsize_dw, offset_dw, "");
343 max_emit[buffer] = LLVMBuildSelect(builder, tmp2, ctx->i32_0, tmp, "");
344 }
345
346 /* Determine the number of emitted primitives per stream and fixup the
347 * GDS counter if necessary.
348 *
349 * This is complicated by the fact that a single stream can emit to
350 * multiple buffers (but luckily not vice versa).
351 */
352 LLVMValueRef emit_vgpr = ctx->i32_0;
353
354 for (unsigned stream = 0; stream < 4; ++stream) {
355 if (!info->num_stream_output_components[stream])
356 continue;
357
358 tmp = LLVMBuildLoad(builder, generated_by_stream_vgpr, "");
359 LLVMValueRef generated =
360 ac_build_readlane(&ctx->ac, tmp,
361 LLVMConstInt(ctx->i32, stream, false));
362
363 LLVMValueRef emit = generated;
364 for (unsigned buffer = 0; buffer < 4; ++buffer) {
365 if (stream_for_buffer[buffer] == stream)
366 emit = ac_build_umin(&ctx->ac, emit, max_emit[buffer]);
367 }
368
369 emit_vgpr = ac_build_writelane(&ctx->ac, emit_vgpr, emit,
370 LLVMConstInt(ctx->i32, stream, false));
371
372 /* Fixup the offset using a plain GDS atomic if we overflowed. */
373 tmp = LLVMBuildICmp(builder, LLVMIntULT, emit, generated, "");
374 ac_build_ifcc(&ctx->ac, tmp, 5221); /* scalar branch */
375 tmp = LLVMBuildLShr(builder,
376 LLVMConstInt(ctx->i32, bufmask_for_stream[stream], false),
377 ac_get_thread_id(&ctx->ac), "");
378 tmp = LLVMBuildTrunc(builder, tmp, ctx->i1, "");
379 ac_build_ifcc(&ctx->ac, tmp, 5222);
380 {
381 tmp = LLVMBuildSub(builder, generated, emit, "");
382 tmp = LLVMBuildMul(builder, tmp, prim_stride_dw_vgpr, "");
383 tmp2 = LLVMBuildGEP(builder, gdsbase, &tid, 1, "");
384 LLVMBuildAtomicRMW(builder, LLVMAtomicRMWBinOpSub, tmp2, tmp,
385 LLVMAtomicOrderingMonotonic, false);
386 }
387 ac_build_endif(&ctx->ac, 5222);
388 ac_build_endif(&ctx->ac, 5221);
389 }
390
391 tmp = LLVMBuildICmp(builder, LLVMIntULT, ac_get_thread_id(&ctx->ac), i32_4, "");
392 ac_build_ifcc(&ctx->ac, tmp, 5225);
393 {
394 tmp = LLVMBuildAdd(builder, ac_get_thread_id(&ctx->ac),
395 scratch_emit_basev, "");
396 tmp = ac_build_gep0(&ctx->ac, ctx->gs_ngg_scratch, tmp);
397 LLVMBuildStore(builder, emit_vgpr, tmp);
398 }
399 ac_build_endif(&ctx->ac, 5225);
400 }
401 ac_build_endif(&ctx->ac, 5200);
402
403 /* Determine the workgroup-relative per-thread / primitive offset into
404 * the streamout buffers */
405 struct ac_wg_scan primemit_scan[4] = {};
406
407 if (isgs) {
408 for (unsigned stream = 0; stream < 4; ++stream) {
409 if (!info->num_stream_output_components[stream])
410 continue;
411
412 primemit_scan[stream].enable_exclusive = true;
413 primemit_scan[stream].op = nir_op_iadd;
414 primemit_scan[stream].src = nggso->prim_enable[stream];
415 primemit_scan[stream].scratch =
416 ac_build_gep0(&ctx->ac, ctx->gs_ngg_scratch,
417 LLVMConstInt(ctx->i32, 12 + 8 * stream, false));
418 primemit_scan[stream].waveidx = get_wave_id_in_tg(ctx);
419 primemit_scan[stream].numwaves = get_tgsize(ctx);
420 primemit_scan[stream].maxwaves = 8;
421 ac_build_wg_scan_top(&ctx->ac, &primemit_scan[stream]);
422 }
423 }
424
425 ac_build_s_barrier(&ctx->ac);
426
427 /* Fetch the per-buffer offsets and per-stream emit counts in all waves. */
428 LLVMValueRef wgoffset_dw[4] = {};
429
430 {
431 LLVMValueRef scratch_vgpr;
432
433 tmp = ac_build_gep0(&ctx->ac, ctx->gs_ngg_scratch, ac_get_thread_id(&ctx->ac));
434 scratch_vgpr = LLVMBuildLoad(builder, tmp, "");
435
436 for (unsigned buffer = 0; buffer < 4; ++buffer) {
437 if (stream_for_buffer[buffer] >= 0) {
438 wgoffset_dw[buffer] = ac_build_readlane(
439 &ctx->ac, scratch_vgpr,
440 LLVMConstInt(ctx->i32, scratch_offset_base + buffer, false));
441 }
442 }
443
444 for (unsigned stream = 0; stream < 4; ++stream) {
445 if (info->num_stream_output_components[stream]) {
446 nggso->emit[stream] = ac_build_readlane(
447 &ctx->ac, scratch_vgpr,
448 LLVMConstInt(ctx->i32, scratch_emit_base + stream, false));
449 }
450 }
451 }
452
453 /* Write out primitive data */
454 for (unsigned stream = 0; stream < 4; ++stream) {
455 if (!info->num_stream_output_components[stream])
456 continue;
457
458 if (isgs) {
459 ac_build_wg_scan_bottom(&ctx->ac, &primemit_scan[stream]);
460 } else {
461 primemit_scan[stream].result_exclusive = tid;
462 }
463
464 tmp = LLVMBuildICmp(builder, LLVMIntULT,
465 primemit_scan[stream].result_exclusive,
466 nggso->emit[stream], "");
467 tmp = LLVMBuildAnd(builder, tmp, nggso->prim_enable[stream], "");
468 ac_build_ifcc(&ctx->ac, tmp, 5240);
469 {
470 LLVMValueRef offset_vtx =
471 LLVMBuildMul(builder, primemit_scan[stream].result_exclusive,
472 nggso->num_vertices, "");
473
474 for (unsigned i = 0; i < max_num_vertices; ++i) {
475 tmp = LLVMBuildICmp(builder, LLVMIntULT,
476 LLVMConstInt(ctx->i32, i, false),
477 nggso->num_vertices, "");
478 ac_build_ifcc(&ctx->ac, tmp, 5241);
479 build_streamout_vertex(ctx, so_buffer, wgoffset_dw,
480 stream, offset_vtx, nggso->vertices[i]);
481 ac_build_endif(&ctx->ac, 5241);
482 offset_vtx = LLVMBuildAdd(builder, offset_vtx, ctx->i32_1, "");
483 }
484 }
485 ac_build_endif(&ctx->ac, 5240);
486 }
487 }
488
489 static unsigned ngg_nogs_vertex_size(struct si_shader *shader)
490 {
491 unsigned lds_vertex_size = 0;
492
493 /* The edgeflag is always stored in the last element that's also
494 * used for padding to reduce LDS bank conflicts. */
495 if (shader->selector->so.num_outputs)
496 lds_vertex_size = 4 * shader->selector->info.num_outputs + 1;
497 if (shader->selector->info.writes_edgeflag)
498 lds_vertex_size = MAX2(lds_vertex_size, 1);
499
500 return lds_vertex_size;
501 }
502
503 /**
504 * Returns an `[N x i32] addrspace(LDS)*` pointing at contiguous LDS storage
505 * for the vertex outputs.
506 */
507 static LLVMValueRef ngg_nogs_vertex_ptr(struct si_shader_context *ctx,
508 LLVMValueRef vtxid)
509 {
510 /* The extra dword is used to avoid LDS bank conflicts. */
511 unsigned vertex_size = ngg_nogs_vertex_size(ctx->shader);
512 LLVMTypeRef ai32 = LLVMArrayType(ctx->i32, vertex_size);
513 LLVMTypeRef pai32 = LLVMPointerType(ai32, AC_ADDR_SPACE_LDS);
514 LLVMValueRef tmp = LLVMBuildBitCast(ctx->ac.builder, ctx->esgs_ring, pai32, "");
515 return LLVMBuildGEP(ctx->ac.builder, tmp, &vtxid, 1, "");
516 }
517
518 /**
519 * Emit the epilogue of an API VS or TES shader compiled as ESGS shader.
520 */
521 void gfx10_emit_ngg_epilogue(struct ac_shader_abi *abi,
522 unsigned max_outputs,
523 LLVMValueRef *addrs)
524 {
525 struct si_shader_context *ctx = si_shader_context_from_abi(abi);
526 struct si_shader_selector *sel = ctx->shader->selector;
527 struct tgsi_shader_info *info = &sel->info;
528 struct si_shader_output_values outputs[PIPE_MAX_SHADER_OUTPUTS];
529 LLVMBuilderRef builder = ctx->ac.builder;
530 LLVMValueRef tmp, tmp2;
531
532 assert(!ctx->shader->is_gs_copy_shader);
533 assert(info->num_outputs <= max_outputs);
534
535 LLVMValueRef vertex_ptr = NULL;
536
537 if (sel->so.num_outputs || sel->info.writes_edgeflag)
538 vertex_ptr = ngg_nogs_vertex_ptr(ctx, get_thread_id_in_tg(ctx));
539
540 for (unsigned i = 0; i < info->num_outputs; i++) {
541 outputs[i].semantic_name = info->output_semantic_name[i];
542 outputs[i].semantic_index = info->output_semantic_index[i];
543
544 for (unsigned j = 0; j < 4; j++) {
545 outputs[i].vertex_stream[j] =
546 (info->output_streams[i] >> (2 * j)) & 3;
547
548 /* TODO: we may store more outputs than streamout needs,
549 * but streamout performance isn't that important.
550 */
551 if (sel->so.num_outputs) {
552 tmp = ac_build_gep0(&ctx->ac, vertex_ptr,
553 LLVMConstInt(ctx->i32, 4 * i + j, false));
554 tmp2 = LLVMBuildLoad(builder, addrs[4 * i + j], "");
555 tmp2 = ac_to_integer(&ctx->ac, tmp2);
556 LLVMBuildStore(builder, tmp2, tmp);
557 }
558 }
559
560 /* Store the edgeflag at the end (if streamout is enabled) */
561 if (info->output_semantic_name[i] == TGSI_SEMANTIC_EDGEFLAG &&
562 sel->info.writes_edgeflag) {
563 LLVMValueRef edgeflag = LLVMBuildLoad(builder, addrs[4 * i], "");
564 /* The output is a float, but the hw expects a 1-bit integer. */
565 edgeflag = LLVMBuildFPToUI(ctx->ac.builder, edgeflag, ctx->i32, "");
566 edgeflag = ac_build_umin(&ctx->ac, edgeflag, ctx->i32_1);
567
568 tmp = LLVMConstInt(ctx->i32, ngg_nogs_vertex_size(ctx->shader) - 1, 0);
569 tmp = ac_build_gep0(&ctx->ac, vertex_ptr, tmp);
570 LLVMBuildStore(builder, edgeflag, tmp);
571 }
572 }
573
574 ac_build_endif(&ctx->ac, ctx->merged_wrap_if_label);
575
576 LLVMValueRef is_gs_thread = si_is_gs_thread(ctx);
577 LLVMValueRef is_es_thread = si_is_es_thread(ctx);
578 LLVMValueRef vtxindex[] = {
579 si_unpack_param(ctx, ctx->gs_vtx01_offset, 0, 16),
580 si_unpack_param(ctx, ctx->gs_vtx01_offset, 16, 16),
581 si_unpack_param(ctx, ctx->gs_vtx23_offset, 0, 16),
582 };
583
584 /* Determine the number of vertices per primitive. */
585 unsigned num_vertices;
586 LLVMValueRef num_vertices_val;
587
588 if (ctx->type == PIPE_SHADER_VERTEX) {
589 if (info->properties[TGSI_PROPERTY_VS_BLIT_SGPRS_AMD]) {
590 /* Blits always use axis-aligned rectangles with 3 vertices. */
591 num_vertices = 3;
592 num_vertices_val = LLVMConstInt(ctx->i32, 3, 0);
593 } else {
594 /* Extract OUTPRIM field. */
595 tmp = si_unpack_param(ctx, ctx->vs_state_bits, 2, 2);
596 num_vertices_val = LLVMBuildAdd(builder, tmp, ctx->i32_1, "");
597 num_vertices = 3; /* TODO: optimize for points & lines */
598 }
599 } else {
600 assert(ctx->type == PIPE_SHADER_TESS_EVAL);
601
602 if (info->properties[TGSI_PROPERTY_TES_POINT_MODE])
603 num_vertices = 1;
604 else if (info->properties[TGSI_PROPERTY_TES_PRIM_MODE] == PIPE_PRIM_LINES)
605 num_vertices = 2;
606 else
607 num_vertices = 3;
608
609 num_vertices_val = LLVMConstInt(ctx->i32, num_vertices, false);
610 }
611
612 /* Streamout */
613 LLVMValueRef emitted_prims = NULL;
614
615 if (sel->so.num_outputs) {
616 struct ngg_streamout nggso = {};
617
618 nggso.num_vertices = num_vertices_val;
619 nggso.prim_enable[0] = is_gs_thread;
620
621 for (unsigned i = 0; i < num_vertices; ++i)
622 nggso.vertices[i] = ngg_nogs_vertex_ptr(ctx, vtxindex[i]);
623
624 build_streamout(ctx, &nggso);
625 emitted_prims = nggso.emit[0];
626 }
627
628 LLVMValueRef user_edgeflags[3] = {};
629
630 if (sel->info.writes_edgeflag) {
631 /* Streamout already inserted the barrier, so don't insert it again. */
632 if (!sel->so.num_outputs)
633 ac_build_s_barrier(&ctx->ac);
634
635 ac_build_ifcc(&ctx->ac, is_gs_thread, 5400);
636 /* Load edge flags from ES threads and store them into VGPRs in GS threads. */
637 for (unsigned i = 0; i < num_vertices; i++) {
638 tmp = ngg_nogs_vertex_ptr(ctx, vtxindex[i]);
639 tmp2 = LLVMConstInt(ctx->i32, ngg_nogs_vertex_size(ctx->shader) - 1, 0);
640 tmp = ac_build_gep0(&ctx->ac, tmp, tmp2);
641 tmp = LLVMBuildLoad(builder, tmp, "");
642 tmp = LLVMBuildTrunc(builder, tmp, ctx->i1, "");
643
644 user_edgeflags[i] = ac_build_alloca_undef(&ctx->ac, ctx->i1, "");
645 LLVMBuildStore(builder, tmp, user_edgeflags[i]);
646 }
647 ac_build_endif(&ctx->ac, 5400);
648 }
649
650 /* Copy Primitive IDs from GS threads to the LDS address corresponding
651 * to the ES thread of the provoking vertex.
652 */
653 if (ctx->type == PIPE_SHADER_VERTEX &&
654 ctx->shader->key.mono.u.vs_export_prim_id) {
655 /* Streamout and edge flags use LDS. Make it idle, so that we can reuse it. */
656 if (sel->so.num_outputs || sel->info.writes_edgeflag)
657 ac_build_s_barrier(&ctx->ac);
658
659 ac_build_ifcc(&ctx->ac, is_gs_thread, 5400);
660 /* Extract the PROVOKING_VTX_INDEX field. */
661 LLVMValueRef provoking_vtx_in_prim =
662 si_unpack_param(ctx, ctx->vs_state_bits, 4, 2);
663
664 /* provoking_vtx_index = vtxindex[provoking_vtx_in_prim]; */
665 LLVMValueRef indices = ac_build_gather_values(&ctx->ac, vtxindex, 3);
666 LLVMValueRef provoking_vtx_index =
667 LLVMBuildExtractElement(builder, indices, provoking_vtx_in_prim, "");
668
669 LLVMBuildStore(builder, ac_get_arg(&ctx->ac, ctx->args.gs_prim_id),
670 ac_build_gep0(&ctx->ac, ctx->esgs_ring, provoking_vtx_index));
671 ac_build_endif(&ctx->ac, 5400);
672 }
673
674 build_sendmsg_gs_alloc_req(ctx, ngg_get_vtx_cnt(ctx), ngg_get_prim_cnt(ctx));
675
676 /* Update query buffer */
677 /* TODO: this won't catch 96-bit clear_buffer via transform feedback. */
678 if (ctx->screen->use_ngg_streamout &&
679 !info->properties[TGSI_PROPERTY_VS_BLIT_SGPRS_AMD]) {
680 tmp = si_unpack_param(ctx, ctx->vs_state_bits, 6, 1);
681 tmp = LLVMBuildTrunc(builder, tmp, ctx->i1, "");
682 ac_build_ifcc(&ctx->ac, tmp, 5029); /* if (STREAMOUT_QUERY_ENABLED) */
683 tmp = LLVMBuildICmp(builder, LLVMIntEQ, get_wave_id_in_tg(ctx), ctx->ac.i32_0, "");
684 ac_build_ifcc(&ctx->ac, tmp, 5030);
685 tmp = LLVMBuildICmp(builder, LLVMIntULE, ac_get_thread_id(&ctx->ac),
686 sel->so.num_outputs ? ctx->ac.i32_1 : ctx->ac.i32_0, "");
687 ac_build_ifcc(&ctx->ac, tmp, 5031);
688 {
689 LLVMValueRef args[] = {
690 ngg_get_prim_cnt(ctx),
691 ngg_get_query_buf(ctx),
692 LLVMConstInt(ctx->i32, 16, false), /* offset of stream[0].generated_primitives */
693 ctx->i32_0, /* soffset */
694 ctx->i32_0, /* cachepolicy */
695 };
696
697 if (sel->so.num_outputs) {
698 args[0] = ac_build_writelane(&ctx->ac, args[0], emitted_prims, ctx->i32_1);
699 args[2] = ac_build_writelane(&ctx->ac, args[2],
700 LLVMConstInt(ctx->i32, 24, false), ctx->i32_1);
701 }
702
703 /* TODO: should this be 64-bit atomics? */
704 ac_build_intrinsic(&ctx->ac, "llvm.amdgcn.raw.buffer.atomic.add.i32",
705 ctx->i32, args, 5, 0);
706 }
707 ac_build_endif(&ctx->ac, 5031);
708 ac_build_endif(&ctx->ac, 5030);
709 ac_build_endif(&ctx->ac, 5029);
710 }
711
712 /* Export primitive data to the index buffer. Format is:
713 * - bits 0..8: index 0
714 * - bit 9: edge flag 0
715 * - bits 10..18: index 1
716 * - bit 19: edge flag 1
717 * - bits 20..28: index 2
718 * - bit 29: edge flag 2
719 * - bit 31: null primitive (skip)
720 *
721 * For the first version, we will always build up all three indices
722 * independent of the primitive type. The additional garbage data
723 * shouldn't hurt.
724 *
725 * TODO: culling depends on the primitive type, so can have some
726 * interaction here.
727 */
728 ac_build_ifcc(&ctx->ac, is_gs_thread, 6001);
729 {
730 struct ngg_prim prim = {};
731
732 prim.num_vertices = num_vertices;
733 prim.isnull = ctx->ac.i1false;
734 memcpy(prim.index, vtxindex, sizeof(vtxindex[0]) * 3);
735
736 for (unsigned i = 0; i < num_vertices; ++i) {
737 if (ctx->type != PIPE_SHADER_VERTEX) {
738 prim.edgeflag[i] = ctx->i1false;
739 continue;
740 }
741
742 tmp = LLVMBuildLShr(builder,
743 ac_get_arg(&ctx->ac, ctx->args.gs_invocation_id),
744 LLVMConstInt(ctx->ac.i32, 8 + i, false), "");
745 prim.edgeflag[i] = LLVMBuildTrunc(builder, tmp, ctx->ac.i1, "");
746
747 if (sel->info.writes_edgeflag) {
748 tmp2 = LLVMBuildLoad(builder, user_edgeflags[i], "");
749 prim.edgeflag[i] = LLVMBuildAnd(builder, prim.edgeflag[i],
750 tmp2, "");
751 }
752 }
753
754 build_export_prim(ctx, &prim);
755 }
756 ac_build_endif(&ctx->ac, 6001);
757
758 /* Export per-vertex data (positions and parameters). */
759 ac_build_ifcc(&ctx->ac, is_es_thread, 6002);
760 {
761 unsigned i;
762
763 /* Unconditionally (re-)load the values for proper SSA form. */
764 for (i = 0; i < info->num_outputs; i++) {
765 for (unsigned j = 0; j < 4; j++) {
766 outputs[i].values[j] =
767 LLVMBuildLoad(builder,
768 addrs[4 * i + j],
769 "");
770 }
771 }
772
773 if (ctx->shader->key.mono.u.vs_export_prim_id) {
774 outputs[i].semantic_name = TGSI_SEMANTIC_PRIMID;
775 outputs[i].semantic_index = 0;
776
777 if (ctx->type == PIPE_SHADER_VERTEX) {
778 /* Wait for GS stores to finish. */
779 ac_build_s_barrier(&ctx->ac);
780
781 tmp = ac_build_gep0(&ctx->ac, ctx->esgs_ring,
782 get_thread_id_in_tg(ctx));
783 outputs[i].values[0] = LLVMBuildLoad(builder, tmp, "");
784 } else {
785 assert(ctx->type == PIPE_SHADER_TESS_EVAL);
786 outputs[i].values[0] = si_get_primitive_id(ctx, 0);
787 }
788
789 outputs[i].values[0] = ac_to_float(&ctx->ac, outputs[i].values[0]);
790 for (unsigned j = 1; j < 4; j++)
791 outputs[i].values[j] = LLVMGetUndef(ctx->f32);
792
793 memset(outputs[i].vertex_stream, 0,
794 sizeof(outputs[i].vertex_stream));
795 i++;
796 }
797
798 si_llvm_export_vs(ctx, outputs, i);
799 }
800 ac_build_endif(&ctx->ac, 6002);
801 }
802
803 static LLVMValueRef
804 ngg_gs_get_vertex_storage(struct si_shader_context *ctx)
805 {
806 const struct si_shader_selector *sel = ctx->shader->selector;
807 const struct tgsi_shader_info *info = &sel->info;
808
809 LLVMTypeRef elements[2] = {
810 LLVMArrayType(ctx->ac.i32, 4 * info->num_outputs),
811 LLVMArrayType(ctx->ac.i8, 4),
812 };
813 LLVMTypeRef type = LLVMStructTypeInContext(ctx->ac.context, elements, 2, false);
814 type = LLVMPointerType(LLVMArrayType(type, 0), AC_ADDR_SPACE_LDS);
815 return LLVMBuildBitCast(ctx->ac.builder, ctx->gs_ngg_emit, type, "");
816 }
817
818 /**
819 * Return a pointer to the LDS storage reserved for the N'th vertex, where N
820 * is in emit order; that is:
821 * - during the epilogue, N is the threadidx (relative to the entire threadgroup)
822 * - during vertex emit, i.e. while the API GS shader invocation is running,
823 * N = threadidx * gs_max_out_vertices + emitidx
824 *
825 * Goals of the LDS memory layout:
826 * 1. Eliminate bank conflicts on write for geometry shaders that have all emits
827 * in uniform control flow
828 * 2. Eliminate bank conflicts on read for export if, additionally, there is no
829 * culling
830 * 3. Agnostic to the number of waves (since we don't know it before compiling)
831 * 4. Allow coalescing of LDS instructions (ds_write_b128 etc.)
832 * 5. Avoid wasting memory.
833 *
834 * We use an AoS layout due to point 4 (this also helps point 3). In an AoS
835 * layout, elimination of bank conflicts requires that each vertex occupy an
836 * odd number of dwords. We use the additional dword to store the output stream
837 * index as well as a flag to indicate whether this vertex ends a primitive
838 * for rasterization.
839 *
840 * Swizzling is required to satisfy points 1 and 2 simultaneously.
841 *
842 * Vertices are stored in export order (gsthread * gs_max_out_vertices + emitidx).
843 * Indices are swizzled in groups of 32, which ensures point 1 without
844 * disturbing point 2.
845 *
846 * \return an LDS pointer to type {[N x i32], [4 x i8]}
847 */
848 static LLVMValueRef
849 ngg_gs_vertex_ptr(struct si_shader_context *ctx, LLVMValueRef vertexidx)
850 {
851 struct si_shader_selector *sel = ctx->shader->selector;
852 LLVMBuilderRef builder = ctx->ac.builder;
853 LLVMValueRef storage = ngg_gs_get_vertex_storage(ctx);
854
855 /* gs_max_out_vertices = 2^(write_stride_2exp) * some odd number */
856 unsigned write_stride_2exp = ffs(sel->gs_max_out_vertices) - 1;
857 if (write_stride_2exp) {
858 LLVMValueRef row =
859 LLVMBuildLShr(builder, vertexidx,
860 LLVMConstInt(ctx->ac.i32, 5, false), "");
861 LLVMValueRef swizzle =
862 LLVMBuildAnd(builder, row,
863 LLVMConstInt(ctx->ac.i32, (1u << write_stride_2exp) - 1,
864 false), "");
865 vertexidx = LLVMBuildXor(builder, vertexidx, swizzle, "");
866 }
867
868 return ac_build_gep0(&ctx->ac, storage, vertexidx);
869 }
870
871 static LLVMValueRef
872 ngg_gs_emit_vertex_ptr(struct si_shader_context *ctx, LLVMValueRef gsthread,
873 LLVMValueRef emitidx)
874 {
875 struct si_shader_selector *sel = ctx->shader->selector;
876 LLVMBuilderRef builder = ctx->ac.builder;
877 LLVMValueRef tmp;
878
879 tmp = LLVMConstInt(ctx->ac.i32, sel->gs_max_out_vertices, false);
880 tmp = LLVMBuildMul(builder, tmp, gsthread, "");
881 const LLVMValueRef vertexidx = LLVMBuildAdd(builder, tmp, emitidx, "");
882 return ngg_gs_vertex_ptr(ctx, vertexidx);
883 }
884
885 static LLVMValueRef
886 ngg_gs_get_emit_output_ptr(struct si_shader_context *ctx, LLVMValueRef vertexptr,
887 unsigned out_idx)
888 {
889 LLVMValueRef gep_idx[3] = {
890 ctx->ac.i32_0, /* implied C-style array */
891 ctx->ac.i32_0, /* first struct entry */
892 LLVMConstInt(ctx->ac.i32, out_idx, false),
893 };
894 return LLVMBuildGEP(ctx->ac.builder, vertexptr, gep_idx, 3, "");
895 }
896
897 static LLVMValueRef
898 ngg_gs_get_emit_primflag_ptr(struct si_shader_context *ctx, LLVMValueRef vertexptr,
899 unsigned stream)
900 {
901 LLVMValueRef gep_idx[3] = {
902 ctx->ac.i32_0, /* implied C-style array */
903 ctx->ac.i32_1, /* second struct entry */
904 LLVMConstInt(ctx->ac.i32, stream, false),
905 };
906 return LLVMBuildGEP(ctx->ac.builder, vertexptr, gep_idx, 3, "");
907 }
908
909 void gfx10_ngg_gs_emit_vertex(struct si_shader_context *ctx,
910 unsigned stream,
911 LLVMValueRef *addrs)
912 {
913 const struct si_shader_selector *sel = ctx->shader->selector;
914 const struct tgsi_shader_info *info = &sel->info;
915 LLVMBuilderRef builder = ctx->ac.builder;
916 LLVMValueRef tmp;
917 const LLVMValueRef vertexidx =
918 LLVMBuildLoad(builder, ctx->gs_next_vertex[stream], "");
919
920 /* If this thread has already emitted the declared maximum number of
921 * vertices, skip the write: excessive vertex emissions are not
922 * supposed to have any effect.
923 */
924 const LLVMValueRef can_emit =
925 LLVMBuildICmp(builder, LLVMIntULT, vertexidx,
926 LLVMConstInt(ctx->i32, sel->gs_max_out_vertices, false), "");
927
928 tmp = LLVMBuildAdd(builder, vertexidx, ctx->ac.i32_1, "");
929 tmp = LLVMBuildSelect(builder, can_emit, tmp, vertexidx, "");
930 LLVMBuildStore(builder, tmp, ctx->gs_next_vertex[stream]);
931
932 ac_build_ifcc(&ctx->ac, can_emit, 9001);
933
934 const LLVMValueRef vertexptr =
935 ngg_gs_emit_vertex_ptr(ctx, get_thread_id_in_tg(ctx), vertexidx);
936 unsigned out_idx = 0;
937 for (unsigned i = 0; i < info->num_outputs; i++) {
938 for (unsigned chan = 0; chan < 4; chan++, out_idx++) {
939 if (!(info->output_usagemask[i] & (1 << chan)) ||
940 ((info->output_streams[i] >> (2 * chan)) & 3) != stream)
941 continue;
942
943 LLVMValueRef out_val = LLVMBuildLoad(builder, addrs[4 * i + chan], "");
944 out_val = ac_to_integer(&ctx->ac, out_val);
945 LLVMBuildStore(builder, out_val,
946 ngg_gs_get_emit_output_ptr(ctx, vertexptr, out_idx));
947 }
948 }
949 assert(out_idx * 4 == sel->gsvs_vertex_size);
950
951 /* Determine and store whether this vertex completed a primitive. */
952 const LLVMValueRef curverts = LLVMBuildLoad(builder, ctx->gs_curprim_verts[stream], "");
953
954 tmp = LLVMConstInt(ctx->ac.i32, u_vertices_per_prim(sel->gs_output_prim) - 1, false);
955 const LLVMValueRef iscompleteprim =
956 LLVMBuildICmp(builder, LLVMIntUGE, curverts, tmp, "");
957
958 /* Since the geometry shader emits triangle strips, we need to
959 * track which primitive is odd and swap vertex indices to get
960 * the correct vertex order.
961 */
962 LLVMValueRef is_odd = ctx->i1false;
963 if (stream == 0 && u_vertices_per_prim(sel->gs_output_prim) == 3) {
964 tmp = LLVMBuildAnd(builder, curverts, ctx->i32_1, "");
965 is_odd = LLVMBuildICmp(builder, LLVMIntEQ, tmp, ctx->i32_1, "");
966 }
967
968 tmp = LLVMBuildAdd(builder, curverts, ctx->ac.i32_1, "");
969 LLVMBuildStore(builder, tmp, ctx->gs_curprim_verts[stream]);
970
971 /* The per-vertex primitive flag encoding:
972 * bit 0: whether this vertex finishes a primitive
973 * bit 1: whether the primitive is odd (if we are emitting triangle strips)
974 */
975 tmp = LLVMBuildZExt(builder, iscompleteprim, ctx->ac.i8, "");
976 tmp = LLVMBuildOr(builder, tmp,
977 LLVMBuildShl(builder,
978 LLVMBuildZExt(builder, is_odd, ctx->ac.i8, ""),
979 ctx->ac.i8_1, ""), "");
980 LLVMBuildStore(builder, tmp, ngg_gs_get_emit_primflag_ptr(ctx, vertexptr, stream));
981
982 tmp = LLVMBuildLoad(builder, ctx->gs_generated_prims[stream], "");
983 tmp = LLVMBuildAdd(builder, tmp, LLVMBuildZExt(builder, iscompleteprim, ctx->ac.i32, ""), "");
984 LLVMBuildStore(builder, tmp, ctx->gs_generated_prims[stream]);
985
986 ac_build_endif(&ctx->ac, 9001);
987 }
988
989 void gfx10_ngg_gs_emit_prologue(struct si_shader_context *ctx)
990 {
991 /* Zero out the part of LDS scratch that is used to accumulate the
992 * per-stream generated primitive count.
993 */
994 LLVMBuilderRef builder = ctx->ac.builder;
995 LLVMValueRef scratchptr = ctx->gs_ngg_scratch;
996 LLVMValueRef tid = get_thread_id_in_tg(ctx);
997 LLVMValueRef tmp;
998
999 tmp = LLVMBuildICmp(builder, LLVMIntULT, tid, LLVMConstInt(ctx->i32, 4, false), "");
1000 ac_build_ifcc(&ctx->ac, tmp, 5090);
1001 {
1002 LLVMValueRef ptr = ac_build_gep0(&ctx->ac, scratchptr, tid);
1003 LLVMBuildStore(builder, ctx->i32_0, ptr);
1004 }
1005 ac_build_endif(&ctx->ac, 5090);
1006
1007 ac_build_s_barrier(&ctx->ac);
1008 }
1009
1010 void gfx10_ngg_gs_emit_epilogue(struct si_shader_context *ctx)
1011 {
1012 const struct si_shader_selector *sel = ctx->shader->selector;
1013 const struct tgsi_shader_info *info = &sel->info;
1014 const unsigned verts_per_prim = u_vertices_per_prim(sel->gs_output_prim);
1015 LLVMBuilderRef builder = ctx->ac.builder;
1016 LLVMValueRef i8_0 = LLVMConstInt(ctx->ac.i8, 0, false);
1017 LLVMValueRef tmp, tmp2;
1018
1019 /* Zero out remaining (non-emitted) primitive flags.
1020 *
1021 * Note: Alternatively, we could pass the relevant gs_next_vertex to
1022 * the emit threads via LDS. This is likely worse in the expected
1023 * typical case where each GS thread emits the full set of
1024 * vertices.
1025 */
1026 for (unsigned stream = 0; stream < 4; ++stream) {
1027 if (!info->num_stream_output_components[stream])
1028 continue;
1029
1030 const LLVMValueRef gsthread = get_thread_id_in_tg(ctx);
1031
1032 ac_build_bgnloop(&ctx->ac, 5100);
1033
1034 const LLVMValueRef vertexidx =
1035 LLVMBuildLoad(builder, ctx->gs_next_vertex[stream], "");
1036 tmp = LLVMBuildICmp(builder, LLVMIntUGE, vertexidx,
1037 LLVMConstInt(ctx->ac.i32, sel->gs_max_out_vertices, false), "");
1038 ac_build_ifcc(&ctx->ac, tmp, 5101);
1039 ac_build_break(&ctx->ac);
1040 ac_build_endif(&ctx->ac, 5101);
1041
1042 tmp = LLVMBuildAdd(builder, vertexidx, ctx->ac.i32_1, "");
1043 LLVMBuildStore(builder, tmp, ctx->gs_next_vertex[stream]);
1044
1045 tmp = ngg_gs_emit_vertex_ptr(ctx, gsthread, vertexidx);
1046 LLVMBuildStore(builder, i8_0, ngg_gs_get_emit_primflag_ptr(ctx, tmp, stream));
1047
1048 ac_build_endloop(&ctx->ac, 5100);
1049 }
1050
1051 /* Accumulate generated primitives counts across the entire threadgroup. */
1052 for (unsigned stream = 0; stream < 4; ++stream) {
1053 if (!info->num_stream_output_components[stream])
1054 continue;
1055
1056 LLVMValueRef numprims =
1057 LLVMBuildLoad(builder, ctx->gs_generated_prims[stream], "");
1058 numprims = ac_build_reduce(&ctx->ac, numprims, nir_op_iadd, ctx->ac.wave_size);
1059
1060 tmp = LLVMBuildICmp(builder, LLVMIntEQ, ac_get_thread_id(&ctx->ac), ctx->i32_0, "");
1061 ac_build_ifcc(&ctx->ac, tmp, 5105);
1062 {
1063 LLVMBuildAtomicRMW(builder, LLVMAtomicRMWBinOpAdd,
1064 ac_build_gep0(&ctx->ac, ctx->gs_ngg_scratch,
1065 LLVMConstInt(ctx->i32, stream, false)),
1066 numprims, LLVMAtomicOrderingMonotonic, false);
1067 }
1068 ac_build_endif(&ctx->ac, 5105);
1069 }
1070
1071 ac_build_endif(&ctx->ac, ctx->merged_wrap_if_label);
1072
1073 ac_build_s_barrier(&ctx->ac);
1074
1075 const LLVMValueRef tid = get_thread_id_in_tg(ctx);
1076 LLVMValueRef num_emit_threads = ngg_get_prim_cnt(ctx);
1077
1078 /* Streamout */
1079 if (sel->so.num_outputs) {
1080 struct ngg_streamout nggso = {};
1081
1082 nggso.num_vertices = LLVMConstInt(ctx->i32, verts_per_prim, false);
1083
1084 LLVMValueRef vertexptr = ngg_gs_vertex_ptr(ctx, tid);
1085 for (unsigned stream = 0; stream < 4; ++stream) {
1086 if (!info->num_stream_output_components[stream])
1087 continue;
1088
1089 tmp = LLVMBuildLoad(builder, ngg_gs_get_emit_primflag_ptr(ctx, vertexptr, stream), "");
1090 tmp = LLVMBuildTrunc(builder, tmp, ctx->i1, "");
1091 tmp2 = LLVMBuildICmp(builder, LLVMIntULT, tid, num_emit_threads, "");
1092 nggso.prim_enable[stream] = LLVMBuildAnd(builder, tmp, tmp2, "");
1093 }
1094
1095 for (unsigned i = 0; i < verts_per_prim; ++i) {
1096 tmp = LLVMBuildSub(builder, tid,
1097 LLVMConstInt(ctx->i32, verts_per_prim - i - 1, false), "");
1098 tmp = ngg_gs_vertex_ptr(ctx, tmp);
1099 nggso.vertices[i] = ac_build_gep0(&ctx->ac, tmp, ctx->i32_0);
1100 }
1101
1102 build_streamout(ctx, &nggso);
1103 }
1104
1105 /* Write shader query data. */
1106 if (ctx->screen->use_ngg_streamout) {
1107 tmp = si_unpack_param(ctx, ctx->vs_state_bits, 6, 1);
1108 tmp = LLVMBuildTrunc(builder, tmp, ctx->i1, "");
1109 ac_build_ifcc(&ctx->ac, tmp, 5109); /* if (STREAMOUT_QUERY_ENABLED) */
1110 unsigned num_query_comps = sel->so.num_outputs ? 8 : 4;
1111 tmp = LLVMBuildICmp(builder, LLVMIntULT, tid,
1112 LLVMConstInt(ctx->i32, num_query_comps, false), "");
1113 ac_build_ifcc(&ctx->ac, tmp, 5110);
1114 {
1115 LLVMValueRef offset;
1116 tmp = tid;
1117 if (sel->so.num_outputs)
1118 tmp = LLVMBuildAnd(builder, tmp, LLVMConstInt(ctx->i32, 3, false), "");
1119 offset = LLVMBuildNUWMul(builder, tmp, LLVMConstInt(ctx->i32, 32, false), "");
1120 if (sel->so.num_outputs) {
1121 tmp = LLVMBuildLShr(builder, tid, LLVMConstInt(ctx->i32, 2, false), "");
1122 tmp = LLVMBuildNUWMul(builder, tmp, LLVMConstInt(ctx->i32, 8, false), "");
1123 offset = LLVMBuildAdd(builder, offset, tmp, "");
1124 }
1125
1126 tmp = LLVMBuildLoad(builder, ac_build_gep0(&ctx->ac, ctx->gs_ngg_scratch, tid), "");
1127 LLVMValueRef args[] = {
1128 tmp,
1129 ngg_get_query_buf(ctx),
1130 offset,
1131 LLVMConstInt(ctx->i32, 16, false), /* soffset */
1132 ctx->i32_0, /* cachepolicy */
1133 };
1134 ac_build_intrinsic(&ctx->ac, "llvm.amdgcn.raw.buffer.atomic.add.i32",
1135 ctx->i32, args, 5, 0);
1136 }
1137 ac_build_endif(&ctx->ac, 5110);
1138 ac_build_endif(&ctx->ac, 5109);
1139 }
1140
1141 /* TODO: culling */
1142
1143 /* Determine vertex liveness. */
1144 LLVMValueRef vertliveptr = ac_build_alloca(&ctx->ac, ctx->ac.i1, "vertexlive");
1145
1146 tmp = LLVMBuildICmp(builder, LLVMIntULT, tid, num_emit_threads, "");
1147 ac_build_ifcc(&ctx->ac, tmp, 5120);
1148 {
1149 for (unsigned i = 0; i < verts_per_prim; ++i) {
1150 const LLVMValueRef primidx =
1151 LLVMBuildAdd(builder, tid,
1152 LLVMConstInt(ctx->ac.i32, i, false), "");
1153
1154 if (i > 0) {
1155 tmp = LLVMBuildICmp(builder, LLVMIntULT, primidx, num_emit_threads, "");
1156 ac_build_ifcc(&ctx->ac, tmp, 5121 + i);
1157 }
1158
1159 /* Load primitive liveness */
1160 tmp = ngg_gs_vertex_ptr(ctx, primidx);
1161 tmp = LLVMBuildLoad(builder, ngg_gs_get_emit_primflag_ptr(ctx, tmp, 0), "");
1162 const LLVMValueRef primlive =
1163 LLVMBuildTrunc(builder, tmp, ctx->ac.i1, "");
1164
1165 tmp = LLVMBuildLoad(builder, vertliveptr, "");
1166 tmp = LLVMBuildOr(builder, tmp, primlive, ""),
1167 LLVMBuildStore(builder, tmp, vertliveptr);
1168
1169 if (i > 0)
1170 ac_build_endif(&ctx->ac, 5121 + i);
1171 }
1172 }
1173 ac_build_endif(&ctx->ac, 5120);
1174
1175 /* Inclusive scan addition across the current wave. */
1176 LLVMValueRef vertlive = LLVMBuildLoad(builder, vertliveptr, "");
1177 struct ac_wg_scan vertlive_scan = {};
1178 vertlive_scan.op = nir_op_iadd;
1179 vertlive_scan.enable_reduce = true;
1180 vertlive_scan.enable_exclusive = true;
1181 vertlive_scan.src = vertlive;
1182 vertlive_scan.scratch = ac_build_gep0(&ctx->ac, ctx->gs_ngg_scratch, ctx->i32_0);
1183 vertlive_scan.waveidx = get_wave_id_in_tg(ctx);
1184 vertlive_scan.numwaves = get_tgsize(ctx);
1185 vertlive_scan.maxwaves = 8;
1186
1187 ac_build_wg_scan(&ctx->ac, &vertlive_scan);
1188
1189 /* Skip all exports (including index exports) when possible. At least on
1190 * early gfx10 revisions this is also to avoid hangs.
1191 */
1192 LLVMValueRef have_exports =
1193 LLVMBuildICmp(builder, LLVMIntNE, vertlive_scan.result_reduce, ctx->ac.i32_0, "");
1194 num_emit_threads =
1195 LLVMBuildSelect(builder, have_exports, num_emit_threads, ctx->ac.i32_0, "");
1196
1197 /* Allocate export space. Send this message as early as possible, to
1198 * hide the latency of the SQ <-> SPI roundtrip.
1199 *
1200 * Note: We could consider compacting primitives for export as well.
1201 * PA processes 1 non-null prim / clock, but it fetches 4 DW of
1202 * prim data per clock and skips null primitives at no additional
1203 * cost. So compacting primitives can only be beneficial when
1204 * there are 4 or more contiguous null primitives in the export
1205 * (in the common case of single-dword prim exports).
1206 */
1207 build_sendmsg_gs_alloc_req(ctx, vertlive_scan.result_reduce, num_emit_threads);
1208
1209 /* Setup the reverse vertex compaction permutation. We re-use stream 1
1210 * of the primitive liveness flags, relying on the fact that each
1211 * threadgroup can have at most 256 threads. */
1212 ac_build_ifcc(&ctx->ac, vertlive, 5130);
1213 {
1214 tmp = ngg_gs_vertex_ptr(ctx, vertlive_scan.result_exclusive);
1215 tmp2 = LLVMBuildTrunc(builder, tid, ctx->ac.i8, "");
1216 LLVMBuildStore(builder, tmp2, ngg_gs_get_emit_primflag_ptr(ctx, tmp, 1));
1217 }
1218 ac_build_endif(&ctx->ac, 5130);
1219
1220 ac_build_s_barrier(&ctx->ac);
1221
1222 /* Export primitive data */
1223 tmp = LLVMBuildICmp(builder, LLVMIntULT, tid, num_emit_threads, "");
1224 ac_build_ifcc(&ctx->ac, tmp, 5140);
1225 {
1226 LLVMValueRef flags;
1227 struct ngg_prim prim = {};
1228 prim.num_vertices = verts_per_prim;
1229
1230 tmp = ngg_gs_vertex_ptr(ctx, tid);
1231 flags = LLVMBuildLoad(builder, ngg_gs_get_emit_primflag_ptr(ctx, tmp, 0), "");
1232 prim.isnull = LLVMBuildNot(builder, LLVMBuildTrunc(builder, flags, ctx->i1, ""), "");
1233
1234 for (unsigned i = 0; i < verts_per_prim; ++i) {
1235 prim.index[i] = LLVMBuildSub(builder, vertlive_scan.result_exclusive,
1236 LLVMConstInt(ctx->ac.i32, verts_per_prim - i - 1, false), "");
1237 prim.edgeflag[i] = ctx->ac.i1false;
1238 }
1239
1240 /* Geometry shaders output triangle strips, but NGG expects triangles.
1241 * We need to change the vertex order for odd triangles to get correct
1242 * front/back facing by swapping 2 vertex indices, but we also have to
1243 * keep the provoking vertex in the same place.
1244 *
1245 * If the first vertex is provoking, swap index 1 and 2.
1246 * If the last vertex is provoking, swap index 0 and 1.
1247 */
1248 if (verts_per_prim == 3) {
1249 LLVMValueRef is_odd = LLVMBuildLShr(builder, flags, ctx->ac.i8_1, "");
1250 is_odd = LLVMBuildTrunc(builder, is_odd, ctx->i1, "");
1251 LLVMValueRef flatshade_first =
1252 LLVMBuildICmp(builder, LLVMIntEQ,
1253 si_unpack_param(ctx, ctx->vs_state_bits, 4, 2),
1254 ctx->i32_0, "");
1255
1256 struct ngg_prim in = prim;
1257 prim.index[0] = LLVMBuildSelect(builder, flatshade_first,
1258 in.index[0],
1259 LLVMBuildSelect(builder, is_odd,
1260 in.index[1], in.index[0], ""), "");
1261 prim.index[1] = LLVMBuildSelect(builder, flatshade_first,
1262 LLVMBuildSelect(builder, is_odd,
1263 in.index[2], in.index[1], ""),
1264 LLVMBuildSelect(builder, is_odd,
1265 in.index[0], in.index[1], ""), "");
1266 prim.index[2] = LLVMBuildSelect(builder, flatshade_first,
1267 LLVMBuildSelect(builder, is_odd,
1268 in.index[1], in.index[2], ""),
1269 in.index[2], "");
1270 }
1271
1272 build_export_prim(ctx, &prim);
1273 }
1274 ac_build_endif(&ctx->ac, 5140);
1275
1276 /* Export position and parameter data */
1277 tmp = LLVMBuildICmp(builder, LLVMIntULT, tid, vertlive_scan.result_reduce, "");
1278 ac_build_ifcc(&ctx->ac, tmp, 5145);
1279 {
1280 struct si_shader_output_values outputs[PIPE_MAX_SHADER_OUTPUTS];
1281
1282 tmp = ngg_gs_vertex_ptr(ctx, tid);
1283 tmp = LLVMBuildLoad(builder, ngg_gs_get_emit_primflag_ptr(ctx, tmp, 1), "");
1284 tmp = LLVMBuildZExt(builder, tmp, ctx->ac.i32, "");
1285 const LLVMValueRef vertexptr = ngg_gs_vertex_ptr(ctx, tmp);
1286
1287 unsigned out_idx = 0;
1288 for (unsigned i = 0; i < info->num_outputs; i++) {
1289 outputs[i].semantic_name = info->output_semantic_name[i];
1290 outputs[i].semantic_index = info->output_semantic_index[i];
1291
1292 for (unsigned j = 0; j < 4; j++, out_idx++) {
1293 tmp = ngg_gs_get_emit_output_ptr(ctx, vertexptr, out_idx);
1294 tmp = LLVMBuildLoad(builder, tmp, "");
1295 outputs[i].values[j] = ac_to_float(&ctx->ac, tmp);
1296 outputs[i].vertex_stream[j] =
1297 (info->output_streams[i] >> (2 * j)) & 3;
1298 }
1299 }
1300
1301 si_llvm_export_vs(ctx, outputs, info->num_outputs);
1302 }
1303 ac_build_endif(&ctx->ac, 5145);
1304 }
1305
1306 static void clamp_gsprims_to_esverts(unsigned *max_gsprims, unsigned max_esverts,
1307 unsigned min_verts_per_prim, bool use_adjacency)
1308 {
1309 unsigned max_reuse = max_esverts - min_verts_per_prim;
1310 if (use_adjacency)
1311 max_reuse /= 2;
1312 *max_gsprims = MIN2(*max_gsprims, 1 + max_reuse);
1313 }
1314
1315 /**
1316 * Determine subgroup information like maximum number of vertices and prims.
1317 *
1318 * This happens before the shader is uploaded, since LDS relocations during
1319 * upload depend on the subgroup size.
1320 */
1321 void gfx10_ngg_calculate_subgroup_info(struct si_shader *shader)
1322 {
1323 const struct si_shader_selector *gs_sel = shader->selector;
1324 const struct si_shader_selector *es_sel =
1325 shader->previous_stage_sel ? shader->previous_stage_sel : gs_sel;
1326 const enum pipe_shader_type gs_type = gs_sel->type;
1327 const unsigned gs_num_invocations = MAX2(gs_sel->gs_num_invocations, 1);
1328 const unsigned input_prim = si_get_input_prim(gs_sel);
1329 const bool use_adjacency = input_prim >= PIPE_PRIM_LINES_ADJACENCY &&
1330 input_prim <= PIPE_PRIM_TRIANGLE_STRIP_ADJACENCY;
1331 const unsigned max_verts_per_prim = u_vertices_per_prim(input_prim);
1332 const unsigned min_verts_per_prim =
1333 gs_type == PIPE_SHADER_GEOMETRY ? max_verts_per_prim : 1;
1334
1335 /* All these are in dwords: */
1336 /* We can't allow using the whole LDS, because GS waves compete with
1337 * other shader stages for LDS space.
1338 *
1339 * TODO: We should really take the shader's internal LDS use into
1340 * account. The linker will fail if the size is greater than
1341 * 8K dwords.
1342 */
1343 const unsigned max_lds_size = 8 * 1024 - 768;
1344 const unsigned target_lds_size = max_lds_size;
1345 unsigned esvert_lds_size = 0;
1346 unsigned gsprim_lds_size = 0;
1347
1348 /* All these are per subgroup: */
1349 bool max_vert_out_per_gs_instance = false;
1350 unsigned max_esverts_base = 128;
1351 unsigned max_gsprims_base = 128; /* default prim group size clamp */
1352
1353 /* Hardware has the following non-natural restrictions on the value
1354 * of GE_CNTL.VERT_GRP_SIZE based on based on the primitive type of
1355 * the draw:
1356 * - at most 252 for any line input primitive type
1357 * - at most 251 for any quad input primitive type
1358 * - at most 251 for triangle strips with adjacency (this happens to
1359 * be the natural limit for triangle *lists* with adjacency)
1360 */
1361 max_esverts_base = MIN2(max_esverts_base, 251 + max_verts_per_prim - 1);
1362
1363 if (gs_type == PIPE_SHADER_GEOMETRY) {
1364 unsigned max_out_verts_per_gsprim =
1365 gs_sel->gs_max_out_vertices * gs_num_invocations;
1366
1367 if (max_out_verts_per_gsprim <= 256) {
1368 if (max_out_verts_per_gsprim) {
1369 max_gsprims_base = MIN2(max_gsprims_base,
1370 256 / max_out_verts_per_gsprim);
1371 }
1372 } else {
1373 /* Use special multi-cycling mode in which each GS
1374 * instance gets its own subgroup. Does not work with
1375 * tessellation. */
1376 max_vert_out_per_gs_instance = true;
1377 max_gsprims_base = 1;
1378 max_out_verts_per_gsprim = gs_sel->gs_max_out_vertices;
1379 }
1380
1381 esvert_lds_size = es_sel->esgs_itemsize / 4;
1382 gsprim_lds_size = (gs_sel->gsvs_vertex_size / 4 + 1) * max_out_verts_per_gsprim;
1383 } else {
1384 /* VS and TES. */
1385 /* LDS size for passing data from ES to GS. */
1386 esvert_lds_size = ngg_nogs_vertex_size(shader);
1387
1388 /* LDS size for passing data from GS to ES.
1389 * GS stores Primitive IDs into LDS at the address corresponding
1390 * to the ES thread of the provoking vertex. All ES threads
1391 * load and export PrimitiveID for their thread.
1392 */
1393 if (gs_sel->type == PIPE_SHADER_VERTEX &&
1394 shader->key.mono.u.vs_export_prim_id)
1395 esvert_lds_size = MAX2(esvert_lds_size, 1);
1396 }
1397
1398 unsigned max_gsprims = max_gsprims_base;
1399 unsigned max_esverts = max_esverts_base;
1400
1401 if (esvert_lds_size)
1402 max_esverts = MIN2(max_esverts, target_lds_size / esvert_lds_size);
1403 if (gsprim_lds_size)
1404 max_gsprims = MIN2(max_gsprims, target_lds_size / gsprim_lds_size);
1405
1406 max_esverts = MIN2(max_esverts, max_gsprims * max_verts_per_prim);
1407 clamp_gsprims_to_esverts(&max_gsprims, max_esverts, min_verts_per_prim, use_adjacency);
1408 assert(max_esverts >= max_verts_per_prim && max_gsprims >= 1);
1409
1410 if (esvert_lds_size || gsprim_lds_size) {
1411 /* Now that we have a rough proportionality between esverts
1412 * and gsprims based on the primitive type, scale both of them
1413 * down simultaneously based on required LDS space.
1414 *
1415 * We could be smarter about this if we knew how much vertex
1416 * reuse to expect.
1417 */
1418 unsigned lds_total = max_esverts * esvert_lds_size +
1419 max_gsprims * gsprim_lds_size;
1420 if (lds_total > target_lds_size) {
1421 max_esverts = max_esverts * target_lds_size / lds_total;
1422 max_gsprims = max_gsprims * target_lds_size / lds_total;
1423
1424 max_esverts = MIN2(max_esverts, max_gsprims * max_verts_per_prim);
1425 clamp_gsprims_to_esverts(&max_gsprims, max_esverts,
1426 min_verts_per_prim, use_adjacency);
1427 assert(max_esverts >= max_verts_per_prim && max_gsprims >= 1);
1428 }
1429 }
1430
1431 /* Round up towards full wave sizes for better ALU utilization. */
1432 if (!max_vert_out_per_gs_instance) {
1433 const unsigned wavesize = gs_sel->screen->ge_wave_size;
1434 unsigned orig_max_esverts;
1435 unsigned orig_max_gsprims;
1436 do {
1437 orig_max_esverts = max_esverts;
1438 orig_max_gsprims = max_gsprims;
1439
1440 max_esverts = align(max_esverts, wavesize);
1441 max_esverts = MIN2(max_esverts, max_esverts_base);
1442 if (esvert_lds_size)
1443 max_esverts = MIN2(max_esverts,
1444 (max_lds_size - max_gsprims * gsprim_lds_size) /
1445 esvert_lds_size);
1446 max_esverts = MIN2(max_esverts, max_gsprims * max_verts_per_prim);
1447
1448 max_gsprims = align(max_gsprims, wavesize);
1449 max_gsprims = MIN2(max_gsprims, max_gsprims_base);
1450 if (gsprim_lds_size)
1451 max_gsprims = MIN2(max_gsprims,
1452 (max_lds_size - max_esverts * esvert_lds_size) /
1453 gsprim_lds_size);
1454 clamp_gsprims_to_esverts(&max_gsprims, max_esverts,
1455 min_verts_per_prim, use_adjacency);
1456 assert(max_esverts >= max_verts_per_prim && max_gsprims >= 1);
1457 } while (orig_max_esverts != max_esverts || orig_max_gsprims != max_gsprims);
1458 }
1459
1460 /* Hardware restriction: minimum value of max_esverts */
1461 max_esverts = MAX2(max_esverts, 23 + max_verts_per_prim);
1462
1463 unsigned max_out_vertices =
1464 max_vert_out_per_gs_instance ? gs_sel->gs_max_out_vertices :
1465 gs_type == PIPE_SHADER_GEOMETRY ?
1466 max_gsprims * gs_num_invocations * gs_sel->gs_max_out_vertices :
1467 max_esverts;
1468 assert(max_out_vertices <= 256);
1469
1470 unsigned prim_amp_factor = 1;
1471 if (gs_type == PIPE_SHADER_GEOMETRY) {
1472 /* Number of output primitives per GS input primitive after
1473 * GS instancing. */
1474 prim_amp_factor = gs_sel->gs_max_out_vertices;
1475 }
1476
1477 /* The GE only checks against the maximum number of ES verts after
1478 * allocating a full GS primitive. So we need to ensure that whenever
1479 * this check passes, there is enough space for a full primitive without
1480 * vertex reuse.
1481 */
1482 shader->ngg.hw_max_esverts = max_esverts - max_verts_per_prim + 1;
1483 shader->ngg.max_gsprims = max_gsprims;
1484 shader->ngg.max_out_verts = max_out_vertices;
1485 shader->ngg.prim_amp_factor = prim_amp_factor;
1486 shader->ngg.max_vert_out_per_gs_instance = max_vert_out_per_gs_instance;
1487
1488 shader->gs_info.esgs_ring_size = 4 * max_esverts * esvert_lds_size;
1489 shader->ngg.ngg_emit_size = max_gsprims * gsprim_lds_size;
1490
1491 assert(shader->ngg.hw_max_esverts >= 24); /* HW limitation */
1492 }