radeonsi: count and report temp arrays in scratch separately
[mesa.git] / src / gallium / drivers / radeonsi / si_shader.c
1 /*
2 * Copyright 2012 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 * Authors:
24 * Tom Stellard <thomas.stellard@amd.com>
25 * Michel Dänzer <michel.daenzer@amd.com>
26 * Christian König <christian.koenig@amd.com>
27 */
28
29 #include "gallivm/lp_bld_const.h"
30 #include "gallivm/lp_bld_gather.h"
31 #include "gallivm/lp_bld_intr.h"
32 #include "gallivm/lp_bld_logic.h"
33 #include "gallivm/lp_bld_arit.h"
34 #include "gallivm/lp_bld_flow.h"
35 #include "gallivm/lp_bld_misc.h"
36 #include "radeon/radeon_elf_util.h"
37 #include "util/u_memory.h"
38 #include "util/u_string.h"
39 #include "tgsi/tgsi_build.h"
40 #include "tgsi/tgsi_util.h"
41 #include "tgsi/tgsi_dump.h"
42
43 #include "ac_llvm_util.h"
44 #include "si_shader_internal.h"
45 #include "si_pipe.h"
46 #include "sid.h"
47
48
49 static const char *scratch_rsrc_dword0_symbol =
50 "SCRATCH_RSRC_DWORD0";
51
52 static const char *scratch_rsrc_dword1_symbol =
53 "SCRATCH_RSRC_DWORD1";
54
55 struct si_shader_output_values
56 {
57 LLVMValueRef values[4];
58 unsigned name;
59 unsigned sid;
60 };
61
62 static void si_init_shader_ctx(struct si_shader_context *ctx,
63 struct si_screen *sscreen,
64 struct si_shader *shader,
65 LLVMTargetMachineRef tm);
66
67 static void si_llvm_emit_barrier(const struct lp_build_tgsi_action *action,
68 struct lp_build_tgsi_context *bld_base,
69 struct lp_build_emit_data *emit_data);
70
71 static void si_dump_shader_key(unsigned shader, struct si_shader_key *key,
72 FILE *f);
73
74 static void si_build_vs_prolog_function(struct si_shader_context *ctx,
75 union si_shader_part_key *key);
76 static void si_build_vs_epilog_function(struct si_shader_context *ctx,
77 union si_shader_part_key *key);
78 static void si_build_tcs_epilog_function(struct si_shader_context *ctx,
79 union si_shader_part_key *key);
80 static void si_build_ps_prolog_function(struct si_shader_context *ctx,
81 union si_shader_part_key *key);
82 static void si_build_ps_epilog_function(struct si_shader_context *ctx,
83 union si_shader_part_key *key);
84
85 /* Ideally pass the sample mask input to the PS epilog as v13, which
86 * is its usual location, so that the shader doesn't have to add v_mov.
87 */
88 #define PS_EPILOG_SAMPLEMASK_MIN_LOC 13
89
90 /* The VS location of the PrimitiveID input is the same in the epilog,
91 * so that the main shader part doesn't have to move it.
92 */
93 #define VS_EPILOG_PRIMID_LOC 2
94
95 enum {
96 CONST_ADDR_SPACE = 2,
97 LOCAL_ADDR_SPACE = 3,
98 };
99
100 #define SENDMSG_GS 2
101 #define SENDMSG_GS_DONE 3
102
103 #define SENDMSG_GS_OP_NOP (0 << 4)
104 #define SENDMSG_GS_OP_CUT (1 << 4)
105 #define SENDMSG_GS_OP_EMIT (2 << 4)
106 #define SENDMSG_GS_OP_EMIT_CUT (3 << 4)
107
108 /**
109 * Returns a unique index for a semantic name and index. The index must be
110 * less than 64, so that a 64-bit bitmask of used inputs or outputs can be
111 * calculated.
112 */
113 unsigned si_shader_io_get_unique_index(unsigned semantic_name, unsigned index)
114 {
115 switch (semantic_name) {
116 case TGSI_SEMANTIC_POSITION:
117 return 0;
118 case TGSI_SEMANTIC_PSIZE:
119 return 1;
120 case TGSI_SEMANTIC_CLIPDIST:
121 assert(index <= 1);
122 return 2 + index;
123 case TGSI_SEMANTIC_GENERIC:
124 if (index <= 63-4)
125 return 4 + index;
126
127 assert(!"invalid generic index");
128 return 0;
129
130 /* patch indices are completely separate and thus start from 0 */
131 case TGSI_SEMANTIC_TESSOUTER:
132 return 0;
133 case TGSI_SEMANTIC_TESSINNER:
134 return 1;
135 case TGSI_SEMANTIC_PATCH:
136 return 2 + index;
137
138 default:
139 assert(!"invalid semantic name");
140 return 0;
141 }
142 }
143
144 unsigned si_shader_io_get_unique_index2(unsigned name, unsigned index)
145 {
146 switch (name) {
147 case TGSI_SEMANTIC_FOG:
148 return 0;
149 case TGSI_SEMANTIC_LAYER:
150 return 1;
151 case TGSI_SEMANTIC_VIEWPORT_INDEX:
152 return 2;
153 case TGSI_SEMANTIC_PRIMID:
154 return 3;
155 case TGSI_SEMANTIC_COLOR: /* these alias */
156 case TGSI_SEMANTIC_BCOLOR:
157 return 4 + index;
158 case TGSI_SEMANTIC_TEXCOORD:
159 return 6 + index;
160 default:
161 assert(!"invalid semantic name");
162 return 0;
163 }
164 }
165
166 /**
167 * Get the value of a shader input parameter and extract a bitfield.
168 */
169 static LLVMValueRef unpack_param(struct si_shader_context *ctx,
170 unsigned param, unsigned rshift,
171 unsigned bitwidth)
172 {
173 struct gallivm_state *gallivm = &ctx->gallivm;
174 LLVMValueRef value = LLVMGetParam(ctx->main_fn,
175 param);
176
177 if (LLVMGetTypeKind(LLVMTypeOf(value)) == LLVMFloatTypeKind)
178 value = bitcast(&ctx->soa.bld_base,
179 TGSI_TYPE_UNSIGNED, value);
180
181 if (rshift)
182 value = LLVMBuildLShr(gallivm->builder, value,
183 lp_build_const_int32(gallivm, rshift), "");
184
185 if (rshift + bitwidth < 32) {
186 unsigned mask = (1 << bitwidth) - 1;
187 value = LLVMBuildAnd(gallivm->builder, value,
188 lp_build_const_int32(gallivm, mask), "");
189 }
190
191 return value;
192 }
193
194 static LLVMValueRef get_rel_patch_id(struct si_shader_context *ctx)
195 {
196 switch (ctx->type) {
197 case PIPE_SHADER_TESS_CTRL:
198 return unpack_param(ctx, SI_PARAM_REL_IDS, 0, 8);
199
200 case PIPE_SHADER_TESS_EVAL:
201 return LLVMGetParam(ctx->main_fn,
202 ctx->param_tes_rel_patch_id);
203
204 default:
205 assert(0);
206 return NULL;
207 }
208 }
209
210 /* Tessellation shaders pass outputs to the next shader using LDS.
211 *
212 * LS outputs = TCS inputs
213 * TCS outputs = TES inputs
214 *
215 * The LDS layout is:
216 * - TCS inputs for patch 0
217 * - TCS inputs for patch 1
218 * - TCS inputs for patch 2 = get_tcs_in_current_patch_offset (if RelPatchID==2)
219 * - ...
220 * - TCS outputs for patch 0 = get_tcs_out_patch0_offset
221 * - Per-patch TCS outputs for patch 0 = get_tcs_out_patch0_patch_data_offset
222 * - TCS outputs for patch 1
223 * - Per-patch TCS outputs for patch 1
224 * - TCS outputs for patch 2 = get_tcs_out_current_patch_offset (if RelPatchID==2)
225 * - Per-patch TCS outputs for patch 2 = get_tcs_out_current_patch_data_offset (if RelPatchID==2)
226 * - ...
227 *
228 * All three shaders VS(LS), TCS, TES share the same LDS space.
229 */
230
231 static LLVMValueRef
232 get_tcs_in_patch_stride(struct si_shader_context *ctx)
233 {
234 if (ctx->type == PIPE_SHADER_VERTEX)
235 return unpack_param(ctx, SI_PARAM_LS_OUT_LAYOUT, 0, 13);
236 else if (ctx->type == PIPE_SHADER_TESS_CTRL)
237 return unpack_param(ctx, SI_PARAM_TCS_IN_LAYOUT, 0, 13);
238 else {
239 assert(0);
240 return NULL;
241 }
242 }
243
244 static LLVMValueRef
245 get_tcs_out_patch_stride(struct si_shader_context *ctx)
246 {
247 return unpack_param(ctx, SI_PARAM_TCS_OUT_LAYOUT, 0, 13);
248 }
249
250 static LLVMValueRef
251 get_tcs_out_patch0_offset(struct si_shader_context *ctx)
252 {
253 return lp_build_mul_imm(&ctx->soa.bld_base.uint_bld,
254 unpack_param(ctx,
255 SI_PARAM_TCS_OUT_OFFSETS,
256 0, 16),
257 4);
258 }
259
260 static LLVMValueRef
261 get_tcs_out_patch0_patch_data_offset(struct si_shader_context *ctx)
262 {
263 return lp_build_mul_imm(&ctx->soa.bld_base.uint_bld,
264 unpack_param(ctx,
265 SI_PARAM_TCS_OUT_OFFSETS,
266 16, 16),
267 4);
268 }
269
270 static LLVMValueRef
271 get_tcs_in_current_patch_offset(struct si_shader_context *ctx)
272 {
273 struct gallivm_state *gallivm = &ctx->gallivm;
274 LLVMValueRef patch_stride = get_tcs_in_patch_stride(ctx);
275 LLVMValueRef rel_patch_id = get_rel_patch_id(ctx);
276
277 return LLVMBuildMul(gallivm->builder, patch_stride, rel_patch_id, "");
278 }
279
280 static LLVMValueRef
281 get_tcs_out_current_patch_offset(struct si_shader_context *ctx)
282 {
283 struct gallivm_state *gallivm = &ctx->gallivm;
284 LLVMValueRef patch0_offset = get_tcs_out_patch0_offset(ctx);
285 LLVMValueRef patch_stride = get_tcs_out_patch_stride(ctx);
286 LLVMValueRef rel_patch_id = get_rel_patch_id(ctx);
287
288 return LLVMBuildAdd(gallivm->builder, patch0_offset,
289 LLVMBuildMul(gallivm->builder, patch_stride,
290 rel_patch_id, ""),
291 "");
292 }
293
294 static LLVMValueRef
295 get_tcs_out_current_patch_data_offset(struct si_shader_context *ctx)
296 {
297 struct gallivm_state *gallivm = &ctx->gallivm;
298 LLVMValueRef patch0_patch_data_offset =
299 get_tcs_out_patch0_patch_data_offset(ctx);
300 LLVMValueRef patch_stride = get_tcs_out_patch_stride(ctx);
301 LLVMValueRef rel_patch_id = get_rel_patch_id(ctx);
302
303 return LLVMBuildAdd(gallivm->builder, patch0_patch_data_offset,
304 LLVMBuildMul(gallivm->builder, patch_stride,
305 rel_patch_id, ""),
306 "");
307 }
308
309 static LLVMValueRef build_gep0(struct si_shader_context *ctx,
310 LLVMValueRef base_ptr, LLVMValueRef index)
311 {
312 LLVMValueRef indices[2] = {
313 LLVMConstInt(ctx->i32, 0, 0),
314 index,
315 };
316 return LLVMBuildGEP(ctx->gallivm.builder, base_ptr,
317 indices, 2, "");
318 }
319
320 static void build_indexed_store(struct si_shader_context *ctx,
321 LLVMValueRef base_ptr, LLVMValueRef index,
322 LLVMValueRef value)
323 {
324 struct lp_build_tgsi_context *bld_base = &ctx->soa.bld_base;
325 struct gallivm_state *gallivm = bld_base->base.gallivm;
326
327 LLVMBuildStore(gallivm->builder, value,
328 build_gep0(ctx, base_ptr, index));
329 }
330
331 /**
332 * Build an LLVM bytecode indexed load using LLVMBuildGEP + LLVMBuildLoad.
333 * It's equivalent to doing a load from &base_ptr[index].
334 *
335 * \param base_ptr Where the array starts.
336 * \param index The element index into the array.
337 * \param uniform Whether the base_ptr and index can be assumed to be
338 * dynamically uniform
339 */
340 static LLVMValueRef build_indexed_load(struct si_shader_context *ctx,
341 LLVMValueRef base_ptr, LLVMValueRef index,
342 bool uniform)
343 {
344 struct lp_build_tgsi_context *bld_base = &ctx->soa.bld_base;
345 struct gallivm_state *gallivm = bld_base->base.gallivm;
346 LLVMValueRef pointer;
347
348 pointer = build_gep0(ctx, base_ptr, index);
349 if (uniform)
350 LLVMSetMetadata(pointer, ctx->uniform_md_kind, ctx->empty_md);
351 return LLVMBuildLoad(gallivm->builder, pointer, "");
352 }
353
354 /**
355 * Do a load from &base_ptr[index], but also add a flag that it's loading
356 * a constant from a dynamically uniform index.
357 */
358 static LLVMValueRef build_indexed_load_const(
359 struct si_shader_context *ctx,
360 LLVMValueRef base_ptr, LLVMValueRef index)
361 {
362 LLVMValueRef result = build_indexed_load(ctx, base_ptr, index, true);
363 LLVMSetMetadata(result, ctx->invariant_load_md_kind, ctx->empty_md);
364 return result;
365 }
366
367 static LLVMValueRef get_instance_index_for_fetch(
368 struct si_shader_context *radeon_bld,
369 unsigned param_start_instance, unsigned divisor)
370 {
371 struct si_shader_context *ctx =
372 si_shader_context(&radeon_bld->soa.bld_base);
373 struct gallivm_state *gallivm = radeon_bld->soa.bld_base.base.gallivm;
374
375 LLVMValueRef result = LLVMGetParam(radeon_bld->main_fn,
376 ctx->param_instance_id);
377
378 /* The division must be done before START_INSTANCE is added. */
379 if (divisor > 1)
380 result = LLVMBuildUDiv(gallivm->builder, result,
381 lp_build_const_int32(gallivm, divisor), "");
382
383 return LLVMBuildAdd(gallivm->builder, result,
384 LLVMGetParam(radeon_bld->main_fn, param_start_instance), "");
385 }
386
387 static void declare_input_vs(
388 struct si_shader_context *ctx,
389 unsigned input_index,
390 const struct tgsi_full_declaration *decl,
391 LLVMValueRef out[4])
392 {
393 struct lp_build_context *base = &ctx->soa.bld_base.base;
394 struct gallivm_state *gallivm = base->gallivm;
395
396 unsigned chan;
397 unsigned fix_fetch;
398
399 LLVMValueRef t_list_ptr;
400 LLVMValueRef t_offset;
401 LLVMValueRef t_list;
402 LLVMValueRef attribute_offset;
403 LLVMValueRef buffer_index;
404 LLVMValueRef args[3];
405 LLVMValueRef input;
406
407 /* Load the T list */
408 t_list_ptr = LLVMGetParam(ctx->main_fn, SI_PARAM_VERTEX_BUFFERS);
409
410 t_offset = lp_build_const_int32(gallivm, input_index);
411
412 t_list = build_indexed_load_const(ctx, t_list_ptr, t_offset);
413
414 /* Build the attribute offset */
415 attribute_offset = lp_build_const_int32(gallivm, 0);
416
417 buffer_index = LLVMGetParam(ctx->main_fn,
418 ctx->param_vertex_index0 +
419 input_index);
420
421 args[0] = t_list;
422 args[1] = attribute_offset;
423 args[2] = buffer_index;
424 input = lp_build_intrinsic(gallivm->builder,
425 "llvm.SI.vs.load.input", ctx->v4f32, args, 3,
426 LP_FUNC_ATTR_READNONE);
427
428 /* Break up the vec4 into individual components */
429 for (chan = 0; chan < 4; chan++) {
430 LLVMValueRef llvm_chan = lp_build_const_int32(gallivm, chan);
431 out[chan] = LLVMBuildExtractElement(gallivm->builder,
432 input, llvm_chan, "");
433 }
434
435 fix_fetch = (ctx->shader->key.mono.vs.fix_fetch >> (2 * input_index)) & 3;
436 if (fix_fetch) {
437 /* The hardware returns an unsigned value; convert it to a
438 * signed one.
439 */
440 LLVMValueRef tmp = out[3];
441 LLVMValueRef c30 = LLVMConstInt(ctx->i32, 30, 0);
442
443 /* First, recover the sign-extended signed integer value. */
444 if (fix_fetch == SI_FIX_FETCH_A2_SSCALED)
445 tmp = LLVMBuildFPToUI(gallivm->builder, tmp, ctx->i32, "");
446 else
447 tmp = LLVMBuildBitCast(gallivm->builder, tmp, ctx->i32, "");
448
449 /* For the integer-like cases, do a natural sign extension.
450 *
451 * For the SNORM case, the values are 0.0, 0.333, 0.666, 1.0
452 * and happen to contain 0, 1, 2, 3 as the two LSBs of the
453 * exponent.
454 */
455 tmp = LLVMBuildShl(gallivm->builder, tmp,
456 fix_fetch == SI_FIX_FETCH_A2_SNORM ?
457 LLVMConstInt(ctx->i32, 7, 0) : c30, "");
458 tmp = LLVMBuildAShr(gallivm->builder, tmp, c30, "");
459
460 /* Convert back to the right type. */
461 if (fix_fetch == SI_FIX_FETCH_A2_SNORM) {
462 LLVMValueRef clamp;
463 LLVMValueRef neg_one = LLVMConstReal(ctx->f32, -1.0);
464 tmp = LLVMBuildSIToFP(gallivm->builder, tmp, ctx->f32, "");
465 clamp = LLVMBuildFCmp(gallivm->builder, LLVMRealULT, tmp, neg_one, "");
466 tmp = LLVMBuildSelect(gallivm->builder, clamp, neg_one, tmp, "");
467 } else if (fix_fetch == SI_FIX_FETCH_A2_SSCALED) {
468 tmp = LLVMBuildSIToFP(gallivm->builder, tmp, ctx->f32, "");
469 }
470
471 out[3] = tmp;
472 }
473 }
474
475 static LLVMValueRef get_primitive_id(struct lp_build_tgsi_context *bld_base,
476 unsigned swizzle)
477 {
478 struct si_shader_context *ctx = si_shader_context(bld_base);
479
480 if (swizzle > 0)
481 return bld_base->uint_bld.zero;
482
483 switch (ctx->type) {
484 case PIPE_SHADER_VERTEX:
485 return LLVMGetParam(ctx->main_fn,
486 ctx->param_vs_prim_id);
487 case PIPE_SHADER_TESS_CTRL:
488 return LLVMGetParam(ctx->main_fn,
489 SI_PARAM_PATCH_ID);
490 case PIPE_SHADER_TESS_EVAL:
491 return LLVMGetParam(ctx->main_fn,
492 ctx->param_tes_patch_id);
493 case PIPE_SHADER_GEOMETRY:
494 return LLVMGetParam(ctx->main_fn,
495 SI_PARAM_PRIMITIVE_ID);
496 default:
497 assert(0);
498 return bld_base->uint_bld.zero;
499 }
500 }
501
502 /**
503 * Return the value of tgsi_ind_register for indexing.
504 * This is the indirect index with the constant offset added to it.
505 */
506 static LLVMValueRef get_indirect_index(struct si_shader_context *ctx,
507 const struct tgsi_ind_register *ind,
508 int rel_index)
509 {
510 struct gallivm_state *gallivm = ctx->soa.bld_base.base.gallivm;
511 LLVMValueRef result;
512
513 result = ctx->soa.addr[ind->Index][ind->Swizzle];
514 result = LLVMBuildLoad(gallivm->builder, result, "");
515 result = LLVMBuildAdd(gallivm->builder, result,
516 lp_build_const_int32(gallivm, rel_index), "");
517 return result;
518 }
519
520 /**
521 * Like get_indirect_index, but restricts the return value to a (possibly
522 * undefined) value inside [0..num).
523 */
524 static LLVMValueRef get_bounded_indirect_index(struct si_shader_context *ctx,
525 const struct tgsi_ind_register *ind,
526 int rel_index, unsigned num)
527 {
528 LLVMValueRef result = get_indirect_index(ctx, ind, rel_index);
529
530 /* LLVM 3.8: If indirect resource indexing is used:
531 * - SI & CIK hang
532 * - VI crashes
533 */
534 if (HAVE_LLVM <= 0x0308)
535 return LLVMGetUndef(ctx->i32);
536
537 return si_llvm_bound_index(ctx, result, num);
538 }
539
540
541 /**
542 * Calculate a dword address given an input or output register and a stride.
543 */
544 static LLVMValueRef get_dw_address(struct si_shader_context *ctx,
545 const struct tgsi_full_dst_register *dst,
546 const struct tgsi_full_src_register *src,
547 LLVMValueRef vertex_dw_stride,
548 LLVMValueRef base_addr)
549 {
550 struct gallivm_state *gallivm = ctx->soa.bld_base.base.gallivm;
551 struct tgsi_shader_info *info = &ctx->shader->selector->info;
552 ubyte *name, *index, *array_first;
553 int first, param;
554 struct tgsi_full_dst_register reg;
555
556 /* Set the register description. The address computation is the same
557 * for sources and destinations. */
558 if (src) {
559 reg.Register.File = src->Register.File;
560 reg.Register.Index = src->Register.Index;
561 reg.Register.Indirect = src->Register.Indirect;
562 reg.Register.Dimension = src->Register.Dimension;
563 reg.Indirect = src->Indirect;
564 reg.Dimension = src->Dimension;
565 reg.DimIndirect = src->DimIndirect;
566 } else
567 reg = *dst;
568
569 /* If the register is 2-dimensional (e.g. an array of vertices
570 * in a primitive), calculate the base address of the vertex. */
571 if (reg.Register.Dimension) {
572 LLVMValueRef index;
573
574 if (reg.Dimension.Indirect)
575 index = get_indirect_index(ctx, &reg.DimIndirect,
576 reg.Dimension.Index);
577 else
578 index = lp_build_const_int32(gallivm, reg.Dimension.Index);
579
580 base_addr = LLVMBuildAdd(gallivm->builder, base_addr,
581 LLVMBuildMul(gallivm->builder, index,
582 vertex_dw_stride, ""), "");
583 }
584
585 /* Get information about the register. */
586 if (reg.Register.File == TGSI_FILE_INPUT) {
587 name = info->input_semantic_name;
588 index = info->input_semantic_index;
589 array_first = info->input_array_first;
590 } else if (reg.Register.File == TGSI_FILE_OUTPUT) {
591 name = info->output_semantic_name;
592 index = info->output_semantic_index;
593 array_first = info->output_array_first;
594 } else {
595 assert(0);
596 return NULL;
597 }
598
599 if (reg.Register.Indirect) {
600 /* Add the relative address of the element. */
601 LLVMValueRef ind_index;
602
603 if (reg.Indirect.ArrayID)
604 first = array_first[reg.Indirect.ArrayID];
605 else
606 first = reg.Register.Index;
607
608 ind_index = get_indirect_index(ctx, &reg.Indirect,
609 reg.Register.Index - first);
610
611 base_addr = LLVMBuildAdd(gallivm->builder, base_addr,
612 LLVMBuildMul(gallivm->builder, ind_index,
613 lp_build_const_int32(gallivm, 4), ""), "");
614
615 param = si_shader_io_get_unique_index(name[first], index[first]);
616 } else {
617 param = si_shader_io_get_unique_index(name[reg.Register.Index],
618 index[reg.Register.Index]);
619 }
620
621 /* Add the base address of the element. */
622 return LLVMBuildAdd(gallivm->builder, base_addr,
623 lp_build_const_int32(gallivm, param * 4), "");
624 }
625
626 /* The offchip buffer layout for TCS->TES is
627 *
628 * - attribute 0 of patch 0 vertex 0
629 * - attribute 0 of patch 0 vertex 1
630 * - attribute 0 of patch 0 vertex 2
631 * ...
632 * - attribute 0 of patch 1 vertex 0
633 * - attribute 0 of patch 1 vertex 1
634 * ...
635 * - attribute 1 of patch 0 vertex 0
636 * - attribute 1 of patch 0 vertex 1
637 * ...
638 * - per patch attribute 0 of patch 0
639 * - per patch attribute 0 of patch 1
640 * ...
641 *
642 * Note that every attribute has 4 components.
643 */
644 static LLVMValueRef get_tcs_tes_buffer_address(struct si_shader_context *ctx,
645 LLVMValueRef vertex_index,
646 LLVMValueRef param_index)
647 {
648 struct gallivm_state *gallivm = ctx->soa.bld_base.base.gallivm;
649 LLVMValueRef base_addr, vertices_per_patch, num_patches, total_vertices;
650 LLVMValueRef param_stride, constant16;
651
652 vertices_per_patch = unpack_param(ctx, SI_PARAM_TCS_OFFCHIP_LAYOUT, 9, 6);
653 num_patches = unpack_param(ctx, SI_PARAM_TCS_OFFCHIP_LAYOUT, 0, 9);
654 total_vertices = LLVMBuildMul(gallivm->builder, vertices_per_patch,
655 num_patches, "");
656
657 constant16 = lp_build_const_int32(gallivm, 16);
658 if (vertex_index) {
659 base_addr = LLVMBuildMul(gallivm->builder, get_rel_patch_id(ctx),
660 vertices_per_patch, "");
661
662 base_addr = LLVMBuildAdd(gallivm->builder, base_addr,
663 vertex_index, "");
664
665 param_stride = total_vertices;
666 } else {
667 base_addr = get_rel_patch_id(ctx);
668 param_stride = num_patches;
669 }
670
671 base_addr = LLVMBuildAdd(gallivm->builder, base_addr,
672 LLVMBuildMul(gallivm->builder, param_index,
673 param_stride, ""), "");
674
675 base_addr = LLVMBuildMul(gallivm->builder, base_addr, constant16, "");
676
677 if (!vertex_index) {
678 LLVMValueRef patch_data_offset =
679 unpack_param(ctx, SI_PARAM_TCS_OFFCHIP_LAYOUT, 16, 16);
680
681 base_addr = LLVMBuildAdd(gallivm->builder, base_addr,
682 patch_data_offset, "");
683 }
684 return base_addr;
685 }
686
687 static LLVMValueRef get_tcs_tes_buffer_address_from_reg(
688 struct si_shader_context *ctx,
689 const struct tgsi_full_dst_register *dst,
690 const struct tgsi_full_src_register *src)
691 {
692 struct gallivm_state *gallivm = ctx->soa.bld_base.base.gallivm;
693 struct tgsi_shader_info *info = &ctx->shader->selector->info;
694 ubyte *name, *index, *array_first;
695 struct tgsi_full_src_register reg;
696 LLVMValueRef vertex_index = NULL;
697 LLVMValueRef param_index = NULL;
698 unsigned param_index_base, param_base;
699
700 reg = src ? *src : tgsi_full_src_register_from_dst(dst);
701
702 if (reg.Register.Dimension) {
703
704 if (reg.Dimension.Indirect)
705 vertex_index = get_indirect_index(ctx, &reg.DimIndirect,
706 reg.Dimension.Index);
707 else
708 vertex_index = lp_build_const_int32(gallivm,
709 reg.Dimension.Index);
710 }
711
712 /* Get information about the register. */
713 if (reg.Register.File == TGSI_FILE_INPUT) {
714 name = info->input_semantic_name;
715 index = info->input_semantic_index;
716 array_first = info->input_array_first;
717 } else if (reg.Register.File == TGSI_FILE_OUTPUT) {
718 name = info->output_semantic_name;
719 index = info->output_semantic_index;
720 array_first = info->output_array_first;
721 } else {
722 assert(0);
723 return NULL;
724 }
725
726 if (reg.Register.Indirect) {
727 if (reg.Indirect.ArrayID)
728 param_base = array_first[reg.Indirect.ArrayID];
729 else
730 param_base = reg.Register.Index;
731
732 param_index = get_indirect_index(ctx, &reg.Indirect,
733 reg.Register.Index - param_base);
734
735 } else {
736 param_base = reg.Register.Index;
737 param_index = lp_build_const_int32(gallivm, 0);
738 }
739
740 param_index_base = si_shader_io_get_unique_index(name[param_base],
741 index[param_base]);
742
743 param_index = LLVMBuildAdd(gallivm->builder, param_index,
744 lp_build_const_int32(gallivm, param_index_base),
745 "");
746
747 return get_tcs_tes_buffer_address(ctx, vertex_index, param_index);
748 }
749
750 /* TBUFFER_STORE_FORMAT_{X,XY,XYZ,XYZW} <- the suffix is selected by num_channels=1..4.
751 * The type of vdata must be one of i32 (num_channels=1), v2i32 (num_channels=2),
752 * or v4i32 (num_channels=3,4). */
753 static void build_tbuffer_store(struct si_shader_context *ctx,
754 LLVMValueRef rsrc,
755 LLVMValueRef vdata,
756 unsigned num_channels,
757 LLVMValueRef vaddr,
758 LLVMValueRef soffset,
759 unsigned inst_offset,
760 unsigned dfmt,
761 unsigned nfmt,
762 unsigned offen,
763 unsigned idxen,
764 unsigned glc,
765 unsigned slc,
766 unsigned tfe)
767 {
768 struct gallivm_state *gallivm = &ctx->gallivm;
769 LLVMValueRef args[] = {
770 rsrc,
771 vdata,
772 LLVMConstInt(ctx->i32, num_channels, 0),
773 vaddr,
774 soffset,
775 LLVMConstInt(ctx->i32, inst_offset, 0),
776 LLVMConstInt(ctx->i32, dfmt, 0),
777 LLVMConstInt(ctx->i32, nfmt, 0),
778 LLVMConstInt(ctx->i32, offen, 0),
779 LLVMConstInt(ctx->i32, idxen, 0),
780 LLVMConstInt(ctx->i32, glc, 0),
781 LLVMConstInt(ctx->i32, slc, 0),
782 LLVMConstInt(ctx->i32, tfe, 0)
783 };
784
785 /* The instruction offset field has 12 bits */
786 assert(offen || inst_offset < (1 << 12));
787
788 /* The intrinsic is overloaded, we need to add a type suffix for overloading to work. */
789 unsigned func = CLAMP(num_channels, 1, 3) - 1;
790 const char *types[] = {"i32", "v2i32", "v4i32"};
791 char name[256];
792 snprintf(name, sizeof(name), "llvm.SI.tbuffer.store.%s", types[func]);
793
794 lp_build_intrinsic(gallivm->builder, name, ctx->voidt,
795 args, ARRAY_SIZE(args), 0);
796 }
797
798 static void build_tbuffer_store_dwords(struct si_shader_context *ctx,
799 LLVMValueRef rsrc,
800 LLVMValueRef vdata,
801 unsigned num_channels,
802 LLVMValueRef vaddr,
803 LLVMValueRef soffset,
804 unsigned inst_offset)
805 {
806 static unsigned dfmt[] = {
807 V_008F0C_BUF_DATA_FORMAT_32,
808 V_008F0C_BUF_DATA_FORMAT_32_32,
809 V_008F0C_BUF_DATA_FORMAT_32_32_32,
810 V_008F0C_BUF_DATA_FORMAT_32_32_32_32
811 };
812 assert(num_channels >= 1 && num_channels <= 4);
813
814 build_tbuffer_store(ctx, rsrc, vdata, num_channels, vaddr, soffset,
815 inst_offset, dfmt[num_channels-1],
816 V_008F0C_BUF_NUM_FORMAT_UINT, 1, 0, 1, 1, 0);
817 }
818
819 static LLVMValueRef build_buffer_load(struct si_shader_context *ctx,
820 LLVMValueRef rsrc,
821 int num_channels,
822 LLVMValueRef vindex,
823 LLVMValueRef voffset,
824 LLVMValueRef soffset,
825 unsigned inst_offset,
826 unsigned glc,
827 unsigned slc)
828 {
829 struct gallivm_state *gallivm = &ctx->gallivm;
830 unsigned func = CLAMP(num_channels, 1, 3) - 1;
831
832 if (HAVE_LLVM >= 0x309) {
833 LLVMValueRef args[] = {
834 LLVMBuildBitCast(gallivm->builder, rsrc, ctx->v4i32, ""),
835 vindex ? vindex : LLVMConstInt(ctx->i32, 0, 0),
836 LLVMConstInt(ctx->i32, inst_offset, 0),
837 LLVMConstInt(ctx->i1, glc, 0),
838 LLVMConstInt(ctx->i1, slc, 0)
839 };
840
841 LLVMTypeRef types[] = {ctx->f32, LLVMVectorType(ctx->f32, 2),
842 ctx->v4f32};
843 const char *type_names[] = {"f32", "v2f32", "v4f32"};
844 char name[256];
845
846 if (voffset) {
847 args[2] = LLVMBuildAdd(gallivm->builder, args[2], voffset,
848 "");
849 }
850
851 if (soffset) {
852 args[2] = LLVMBuildAdd(gallivm->builder, args[2], soffset,
853 "");
854 }
855
856 snprintf(name, sizeof(name), "llvm.amdgcn.buffer.load.%s",
857 type_names[func]);
858
859 return lp_build_intrinsic(gallivm->builder, name, types[func], args,
860 ARRAY_SIZE(args), LP_FUNC_ATTR_READONLY);
861 } else {
862 LLVMValueRef args[] = {
863 LLVMBuildBitCast(gallivm->builder, rsrc, ctx->v16i8, ""),
864 voffset ? voffset : vindex,
865 soffset,
866 LLVMConstInt(ctx->i32, inst_offset, 0),
867 LLVMConstInt(ctx->i32, voffset ? 1 : 0, 0), // offen
868 LLVMConstInt(ctx->i32, vindex ? 1 : 0, 0), //idxen
869 LLVMConstInt(ctx->i32, glc, 0),
870 LLVMConstInt(ctx->i32, slc, 0),
871 LLVMConstInt(ctx->i32, 0, 0), // TFE
872 };
873
874 LLVMTypeRef types[] = {ctx->i32, LLVMVectorType(ctx->i32, 2),
875 ctx->v4i32};
876 const char *type_names[] = {"i32", "v2i32", "v4i32"};
877 const char *arg_type = "i32";
878 char name[256];
879
880 if (voffset && vindex) {
881 LLVMValueRef vaddr[] = {vindex, voffset};
882
883 arg_type = "v2i32";
884 args[1] = lp_build_gather_values(gallivm, vaddr, 2);
885 }
886
887 snprintf(name, sizeof(name), "llvm.SI.buffer.load.dword.%s.%s",
888 type_names[func], arg_type);
889
890 return lp_build_intrinsic(gallivm->builder, name, types[func], args,
891 ARRAY_SIZE(args), LP_FUNC_ATTR_READONLY);
892 }
893 }
894
895 static LLVMValueRef buffer_load(struct lp_build_tgsi_context *bld_base,
896 enum tgsi_opcode_type type, unsigned swizzle,
897 LLVMValueRef buffer, LLVMValueRef offset,
898 LLVMValueRef base)
899 {
900 struct si_shader_context *ctx = si_shader_context(bld_base);
901 struct gallivm_state *gallivm = bld_base->base.gallivm;
902 LLVMValueRef value, value2;
903 LLVMTypeRef llvm_type = tgsi2llvmtype(bld_base, type);
904 LLVMTypeRef vec_type = LLVMVectorType(llvm_type, 4);
905
906 if (swizzle == ~0) {
907 value = build_buffer_load(ctx, buffer, 4, NULL, base, offset,
908 0, 1, 0);
909
910 return LLVMBuildBitCast(gallivm->builder, value, vec_type, "");
911 }
912
913 if (!tgsi_type_is_64bit(type)) {
914 value = build_buffer_load(ctx, buffer, 4, NULL, base, offset,
915 0, 1, 0);
916
917 value = LLVMBuildBitCast(gallivm->builder, value, vec_type, "");
918 return LLVMBuildExtractElement(gallivm->builder, value,
919 lp_build_const_int32(gallivm, swizzle), "");
920 }
921
922 value = build_buffer_load(ctx, buffer, 1, NULL, base, offset,
923 swizzle * 4, 1, 0);
924
925 value2 = build_buffer_load(ctx, buffer, 1, NULL, base, offset,
926 swizzle * 4 + 4, 1, 0);
927
928 return si_llvm_emit_fetch_64bit(bld_base, type, value, value2);
929 }
930
931 /**
932 * Load from LDS.
933 *
934 * \param type output value type
935 * \param swizzle offset (typically 0..3); it can be ~0, which loads a vec4
936 * \param dw_addr address in dwords
937 */
938 static LLVMValueRef lds_load(struct lp_build_tgsi_context *bld_base,
939 enum tgsi_opcode_type type, unsigned swizzle,
940 LLVMValueRef dw_addr)
941 {
942 struct si_shader_context *ctx = si_shader_context(bld_base);
943 struct gallivm_state *gallivm = bld_base->base.gallivm;
944 LLVMValueRef value;
945
946 if (swizzle == ~0) {
947 LLVMValueRef values[TGSI_NUM_CHANNELS];
948
949 for (unsigned chan = 0; chan < TGSI_NUM_CHANNELS; chan++)
950 values[chan] = lds_load(bld_base, type, chan, dw_addr);
951
952 return lp_build_gather_values(bld_base->base.gallivm, values,
953 TGSI_NUM_CHANNELS);
954 }
955
956 dw_addr = lp_build_add(&bld_base->uint_bld, dw_addr,
957 lp_build_const_int32(gallivm, swizzle));
958
959 value = build_indexed_load(ctx, ctx->lds, dw_addr, false);
960 if (tgsi_type_is_64bit(type)) {
961 LLVMValueRef value2;
962 dw_addr = lp_build_add(&bld_base->uint_bld, dw_addr,
963 lp_build_const_int32(gallivm, 1));
964 value2 = build_indexed_load(ctx, ctx->lds, dw_addr, false);
965 return si_llvm_emit_fetch_64bit(bld_base, type, value, value2);
966 }
967
968 return LLVMBuildBitCast(gallivm->builder, value,
969 tgsi2llvmtype(bld_base, type), "");
970 }
971
972 /**
973 * Store to LDS.
974 *
975 * \param swizzle offset (typically 0..3)
976 * \param dw_addr address in dwords
977 * \param value value to store
978 */
979 static void lds_store(struct lp_build_tgsi_context *bld_base,
980 unsigned swizzle, LLVMValueRef dw_addr,
981 LLVMValueRef value)
982 {
983 struct si_shader_context *ctx = si_shader_context(bld_base);
984 struct gallivm_state *gallivm = bld_base->base.gallivm;
985
986 dw_addr = lp_build_add(&bld_base->uint_bld, dw_addr,
987 lp_build_const_int32(gallivm, swizzle));
988
989 value = LLVMBuildBitCast(gallivm->builder, value, ctx->i32, "");
990 build_indexed_store(ctx, ctx->lds,
991 dw_addr, value);
992 }
993
994 static LLVMValueRef fetch_input_tcs(
995 struct lp_build_tgsi_context *bld_base,
996 const struct tgsi_full_src_register *reg,
997 enum tgsi_opcode_type type, unsigned swizzle)
998 {
999 struct si_shader_context *ctx = si_shader_context(bld_base);
1000 LLVMValueRef dw_addr, stride;
1001
1002 stride = unpack_param(ctx, SI_PARAM_TCS_IN_LAYOUT, 13, 8);
1003 dw_addr = get_tcs_in_current_patch_offset(ctx);
1004 dw_addr = get_dw_address(ctx, NULL, reg, stride, dw_addr);
1005
1006 return lds_load(bld_base, type, swizzle, dw_addr);
1007 }
1008
1009 static LLVMValueRef fetch_output_tcs(
1010 struct lp_build_tgsi_context *bld_base,
1011 const struct tgsi_full_src_register *reg,
1012 enum tgsi_opcode_type type, unsigned swizzle)
1013 {
1014 struct si_shader_context *ctx = si_shader_context(bld_base);
1015 LLVMValueRef dw_addr, stride;
1016
1017 if (reg->Register.Dimension) {
1018 stride = unpack_param(ctx, SI_PARAM_TCS_OUT_LAYOUT, 13, 8);
1019 dw_addr = get_tcs_out_current_patch_offset(ctx);
1020 dw_addr = get_dw_address(ctx, NULL, reg, stride, dw_addr);
1021 } else {
1022 dw_addr = get_tcs_out_current_patch_data_offset(ctx);
1023 dw_addr = get_dw_address(ctx, NULL, reg, NULL, dw_addr);
1024 }
1025
1026 return lds_load(bld_base, type, swizzle, dw_addr);
1027 }
1028
1029 static LLVMValueRef fetch_input_tes(
1030 struct lp_build_tgsi_context *bld_base,
1031 const struct tgsi_full_src_register *reg,
1032 enum tgsi_opcode_type type, unsigned swizzle)
1033 {
1034 struct si_shader_context *ctx = si_shader_context(bld_base);
1035 struct gallivm_state *gallivm = bld_base->base.gallivm;
1036 LLVMValueRef rw_buffers, buffer, base, addr;
1037
1038 rw_buffers = LLVMGetParam(ctx->main_fn,
1039 SI_PARAM_RW_BUFFERS);
1040 buffer = build_indexed_load_const(ctx, rw_buffers,
1041 lp_build_const_int32(gallivm, SI_HS_RING_TESS_OFFCHIP));
1042
1043 base = LLVMGetParam(ctx->main_fn, ctx->param_oc_lds);
1044 addr = get_tcs_tes_buffer_address_from_reg(ctx, NULL, reg);
1045
1046 return buffer_load(bld_base, type, swizzle, buffer, base, addr);
1047 }
1048
1049 static void store_output_tcs(struct lp_build_tgsi_context *bld_base,
1050 const struct tgsi_full_instruction *inst,
1051 const struct tgsi_opcode_info *info,
1052 LLVMValueRef dst[4])
1053 {
1054 struct si_shader_context *ctx = si_shader_context(bld_base);
1055 struct gallivm_state *gallivm = bld_base->base.gallivm;
1056 const struct tgsi_full_dst_register *reg = &inst->Dst[0];
1057 unsigned chan_index;
1058 LLVMValueRef dw_addr, stride;
1059 LLVMValueRef rw_buffers, buffer, base, buf_addr;
1060 LLVMValueRef values[4];
1061
1062 /* Only handle per-patch and per-vertex outputs here.
1063 * Vectors will be lowered to scalars and this function will be called again.
1064 */
1065 if (reg->Register.File != TGSI_FILE_OUTPUT ||
1066 (dst[0] && LLVMGetTypeKind(LLVMTypeOf(dst[0])) == LLVMVectorTypeKind)) {
1067 si_llvm_emit_store(bld_base, inst, info, dst);
1068 return;
1069 }
1070
1071 if (reg->Register.Dimension) {
1072 stride = unpack_param(ctx, SI_PARAM_TCS_OUT_LAYOUT, 13, 8);
1073 dw_addr = get_tcs_out_current_patch_offset(ctx);
1074 dw_addr = get_dw_address(ctx, reg, NULL, stride, dw_addr);
1075 } else {
1076 dw_addr = get_tcs_out_current_patch_data_offset(ctx);
1077 dw_addr = get_dw_address(ctx, reg, NULL, NULL, dw_addr);
1078 }
1079
1080 rw_buffers = LLVMGetParam(ctx->main_fn,
1081 SI_PARAM_RW_BUFFERS);
1082 buffer = build_indexed_load_const(ctx, rw_buffers,
1083 lp_build_const_int32(gallivm, SI_HS_RING_TESS_OFFCHIP));
1084
1085 base = LLVMGetParam(ctx->main_fn, ctx->param_oc_lds);
1086 buf_addr = get_tcs_tes_buffer_address_from_reg(ctx, reg, NULL);
1087
1088
1089 TGSI_FOR_EACH_DST0_ENABLED_CHANNEL(inst, chan_index) {
1090 LLVMValueRef value = dst[chan_index];
1091
1092 if (inst->Instruction.Saturate)
1093 value = si_llvm_saturate(bld_base, value);
1094
1095 lds_store(bld_base, chan_index, dw_addr, value);
1096
1097 value = LLVMBuildBitCast(gallivm->builder, value, ctx->i32, "");
1098 values[chan_index] = value;
1099
1100 if (inst->Dst[0].Register.WriteMask != 0xF) {
1101 build_tbuffer_store_dwords(ctx, buffer, value, 1,
1102 buf_addr, base,
1103 4 * chan_index);
1104 }
1105 }
1106
1107 if (inst->Dst[0].Register.WriteMask == 0xF) {
1108 LLVMValueRef value = lp_build_gather_values(bld_base->base.gallivm,
1109 values, 4);
1110 build_tbuffer_store_dwords(ctx, buffer, value, 4, buf_addr,
1111 base, 0);
1112 }
1113 }
1114
1115 static LLVMValueRef fetch_input_gs(
1116 struct lp_build_tgsi_context *bld_base,
1117 const struct tgsi_full_src_register *reg,
1118 enum tgsi_opcode_type type,
1119 unsigned swizzle)
1120 {
1121 struct lp_build_context *base = &bld_base->base;
1122 struct si_shader_context *ctx = si_shader_context(bld_base);
1123 struct si_shader *shader = ctx->shader;
1124 struct lp_build_context *uint = &ctx->soa.bld_base.uint_bld;
1125 struct gallivm_state *gallivm = base->gallivm;
1126 LLVMValueRef vtx_offset;
1127 LLVMValueRef args[9];
1128 unsigned vtx_offset_param;
1129 struct tgsi_shader_info *info = &shader->selector->info;
1130 unsigned semantic_name = info->input_semantic_name[reg->Register.Index];
1131 unsigned semantic_index = info->input_semantic_index[reg->Register.Index];
1132 unsigned param;
1133 LLVMValueRef value;
1134
1135 if (swizzle != ~0 && semantic_name == TGSI_SEMANTIC_PRIMID)
1136 return get_primitive_id(bld_base, swizzle);
1137
1138 if (!reg->Register.Dimension)
1139 return NULL;
1140
1141 if (swizzle == ~0) {
1142 LLVMValueRef values[TGSI_NUM_CHANNELS];
1143 unsigned chan;
1144 for (chan = 0; chan < TGSI_NUM_CHANNELS; chan++) {
1145 values[chan] = fetch_input_gs(bld_base, reg, type, chan);
1146 }
1147 return lp_build_gather_values(bld_base->base.gallivm, values,
1148 TGSI_NUM_CHANNELS);
1149 }
1150
1151 /* Get the vertex offset parameter */
1152 vtx_offset_param = reg->Dimension.Index;
1153 if (vtx_offset_param < 2) {
1154 vtx_offset_param += SI_PARAM_VTX0_OFFSET;
1155 } else {
1156 assert(vtx_offset_param < 6);
1157 vtx_offset_param += SI_PARAM_VTX2_OFFSET - 2;
1158 }
1159 vtx_offset = lp_build_mul_imm(uint,
1160 LLVMGetParam(ctx->main_fn,
1161 vtx_offset_param),
1162 4);
1163
1164 param = si_shader_io_get_unique_index(semantic_name, semantic_index);
1165 args[0] = ctx->esgs_ring;
1166 args[1] = vtx_offset;
1167 args[2] = lp_build_const_int32(gallivm, (param * 4 + swizzle) * 256);
1168 args[3] = uint->zero;
1169 args[4] = uint->one; /* OFFEN */
1170 args[5] = uint->zero; /* IDXEN */
1171 args[6] = uint->one; /* GLC */
1172 args[7] = uint->zero; /* SLC */
1173 args[8] = uint->zero; /* TFE */
1174
1175 value = lp_build_intrinsic(gallivm->builder,
1176 "llvm.SI.buffer.load.dword.i32.i32",
1177 ctx->i32, args, 9,
1178 LP_FUNC_ATTR_READONLY);
1179 if (tgsi_type_is_64bit(type)) {
1180 LLVMValueRef value2;
1181 args[2] = lp_build_const_int32(gallivm, (param * 4 + swizzle + 1) * 256);
1182 value2 = lp_build_intrinsic(gallivm->builder,
1183 "llvm.SI.buffer.load.dword.i32.i32",
1184 ctx->i32, args, 9,
1185 LP_FUNC_ATTR_READONLY);
1186 return si_llvm_emit_fetch_64bit(bld_base, type,
1187 value, value2);
1188 }
1189 return LLVMBuildBitCast(gallivm->builder,
1190 value,
1191 tgsi2llvmtype(bld_base, type), "");
1192 }
1193
1194 static int lookup_interp_param_index(unsigned interpolate, unsigned location)
1195 {
1196 switch (interpolate) {
1197 case TGSI_INTERPOLATE_CONSTANT:
1198 return 0;
1199
1200 case TGSI_INTERPOLATE_LINEAR:
1201 if (location == TGSI_INTERPOLATE_LOC_SAMPLE)
1202 return SI_PARAM_LINEAR_SAMPLE;
1203 else if (location == TGSI_INTERPOLATE_LOC_CENTROID)
1204 return SI_PARAM_LINEAR_CENTROID;
1205 else
1206 return SI_PARAM_LINEAR_CENTER;
1207 break;
1208 case TGSI_INTERPOLATE_COLOR:
1209 case TGSI_INTERPOLATE_PERSPECTIVE:
1210 if (location == TGSI_INTERPOLATE_LOC_SAMPLE)
1211 return SI_PARAM_PERSP_SAMPLE;
1212 else if (location == TGSI_INTERPOLATE_LOC_CENTROID)
1213 return SI_PARAM_PERSP_CENTROID;
1214 else
1215 return SI_PARAM_PERSP_CENTER;
1216 break;
1217 default:
1218 fprintf(stderr, "Warning: Unhandled interpolation mode.\n");
1219 return -1;
1220 }
1221 }
1222
1223 /**
1224 * Interpolate a fragment shader input.
1225 *
1226 * @param ctx context
1227 * @param input_index index of the input in hardware
1228 * @param semantic_name TGSI_SEMANTIC_*
1229 * @param semantic_index semantic index
1230 * @param num_interp_inputs number of all interpolated inputs (= BCOLOR offset)
1231 * @param colors_read_mask color components read (4 bits for each color, 8 bits in total)
1232 * @param interp_param interpolation weights (i,j)
1233 * @param prim_mask SI_PARAM_PRIM_MASK
1234 * @param face SI_PARAM_FRONT_FACE
1235 * @param result the return value (4 components)
1236 */
1237 static void interp_fs_input(struct si_shader_context *ctx,
1238 unsigned input_index,
1239 unsigned semantic_name,
1240 unsigned semantic_index,
1241 unsigned num_interp_inputs,
1242 unsigned colors_read_mask,
1243 LLVMValueRef interp_param,
1244 LLVMValueRef prim_mask,
1245 LLVMValueRef face,
1246 LLVMValueRef result[4])
1247 {
1248 struct lp_build_context *base = &ctx->soa.bld_base.base;
1249 struct lp_build_context *uint = &ctx->soa.bld_base.uint_bld;
1250 struct gallivm_state *gallivm = base->gallivm;
1251 const char *intr_name;
1252 LLVMValueRef attr_number;
1253
1254 unsigned chan;
1255
1256 attr_number = lp_build_const_int32(gallivm, input_index);
1257
1258 /* fs.constant returns the param from the middle vertex, so it's not
1259 * really useful for flat shading. It's meant to be used for custom
1260 * interpolation (but the intrinsic can't fetch from the other two
1261 * vertices).
1262 *
1263 * Luckily, it doesn't matter, because we rely on the FLAT_SHADE state
1264 * to do the right thing. The only reason we use fs.constant is that
1265 * fs.interp cannot be used on integers, because they can be equal
1266 * to NaN.
1267 */
1268 intr_name = interp_param ? "llvm.SI.fs.interp" : "llvm.SI.fs.constant";
1269
1270 if (semantic_name == TGSI_SEMANTIC_COLOR &&
1271 ctx->shader->key.part.ps.prolog.color_two_side) {
1272 LLVMValueRef args[4];
1273 LLVMValueRef is_face_positive;
1274 LLVMValueRef back_attr_number;
1275
1276 /* If BCOLOR0 is used, BCOLOR1 is at offset "num_inputs + 1",
1277 * otherwise it's at offset "num_inputs".
1278 */
1279 unsigned back_attr_offset = num_interp_inputs;
1280 if (semantic_index == 1 && colors_read_mask & 0xf)
1281 back_attr_offset += 1;
1282
1283 back_attr_number = lp_build_const_int32(gallivm, back_attr_offset);
1284
1285 is_face_positive = LLVMBuildICmp(gallivm->builder, LLVMIntNE,
1286 face, uint->zero, "");
1287
1288 args[2] = prim_mask;
1289 args[3] = interp_param;
1290 for (chan = 0; chan < TGSI_NUM_CHANNELS; chan++) {
1291 LLVMValueRef llvm_chan = lp_build_const_int32(gallivm, chan);
1292 LLVMValueRef front, back;
1293
1294 args[0] = llvm_chan;
1295 args[1] = attr_number;
1296 front = lp_build_intrinsic(gallivm->builder, intr_name,
1297 ctx->f32, args, args[3] ? 4 : 3,
1298 LP_FUNC_ATTR_READNONE);
1299
1300 args[1] = back_attr_number;
1301 back = lp_build_intrinsic(gallivm->builder, intr_name,
1302 ctx->f32, args, args[3] ? 4 : 3,
1303 LP_FUNC_ATTR_READNONE);
1304
1305 result[chan] = LLVMBuildSelect(gallivm->builder,
1306 is_face_positive,
1307 front,
1308 back,
1309 "");
1310 }
1311 } else if (semantic_name == TGSI_SEMANTIC_FOG) {
1312 LLVMValueRef args[4];
1313
1314 args[0] = uint->zero;
1315 args[1] = attr_number;
1316 args[2] = prim_mask;
1317 args[3] = interp_param;
1318 result[0] = lp_build_intrinsic(gallivm->builder, intr_name,
1319 ctx->f32, args, args[3] ? 4 : 3,
1320 LP_FUNC_ATTR_READNONE);
1321 result[1] =
1322 result[2] = lp_build_const_float(gallivm, 0.0f);
1323 result[3] = lp_build_const_float(gallivm, 1.0f);
1324 } else {
1325 for (chan = 0; chan < TGSI_NUM_CHANNELS; chan++) {
1326 LLVMValueRef args[4];
1327 LLVMValueRef llvm_chan = lp_build_const_int32(gallivm, chan);
1328
1329 args[0] = llvm_chan;
1330 args[1] = attr_number;
1331 args[2] = prim_mask;
1332 args[3] = interp_param;
1333 result[chan] = lp_build_intrinsic(gallivm->builder, intr_name,
1334 ctx->f32, args, args[3] ? 4 : 3,
1335 LP_FUNC_ATTR_READNONE);
1336 }
1337 }
1338 }
1339
1340 static void declare_input_fs(
1341 struct si_shader_context *radeon_bld,
1342 unsigned input_index,
1343 const struct tgsi_full_declaration *decl,
1344 LLVMValueRef out[4])
1345 {
1346 struct lp_build_context *base = &radeon_bld->soa.bld_base.base;
1347 struct si_shader_context *ctx =
1348 si_shader_context(&radeon_bld->soa.bld_base);
1349 struct si_shader *shader = ctx->shader;
1350 LLVMValueRef main_fn = radeon_bld->main_fn;
1351 LLVMValueRef interp_param = NULL;
1352 int interp_param_idx;
1353
1354 /* Get colors from input VGPRs (set by the prolog). */
1355 if (decl->Semantic.Name == TGSI_SEMANTIC_COLOR) {
1356 unsigned i = decl->Semantic.Index;
1357 unsigned colors_read = shader->selector->info.colors_read;
1358 unsigned mask = colors_read >> (i * 4);
1359 unsigned offset = SI_PARAM_POS_FIXED_PT + 1 +
1360 (i ? util_bitcount(colors_read & 0xf) : 0);
1361
1362 out[0] = mask & 0x1 ? LLVMGetParam(main_fn, offset++) : base->undef;
1363 out[1] = mask & 0x2 ? LLVMGetParam(main_fn, offset++) : base->undef;
1364 out[2] = mask & 0x4 ? LLVMGetParam(main_fn, offset++) : base->undef;
1365 out[3] = mask & 0x8 ? LLVMGetParam(main_fn, offset++) : base->undef;
1366 return;
1367 }
1368
1369 interp_param_idx = lookup_interp_param_index(decl->Interp.Interpolate,
1370 decl->Interp.Location);
1371 if (interp_param_idx == -1)
1372 return;
1373 else if (interp_param_idx) {
1374 interp_param = LLVMGetParam(ctx->main_fn, interp_param_idx);
1375 }
1376
1377 if (decl->Semantic.Name == TGSI_SEMANTIC_COLOR &&
1378 decl->Interp.Interpolate == TGSI_INTERPOLATE_COLOR &&
1379 ctx->shader->key.part.ps.prolog.flatshade_colors)
1380 interp_param = NULL; /* load the constant color */
1381
1382 interp_fs_input(ctx, input_index, decl->Semantic.Name,
1383 decl->Semantic.Index, shader->selector->info.num_inputs,
1384 shader->selector->info.colors_read, interp_param,
1385 LLVMGetParam(main_fn, SI_PARAM_PRIM_MASK),
1386 LLVMGetParam(main_fn, SI_PARAM_FRONT_FACE),
1387 &out[0]);
1388 }
1389
1390 static LLVMValueRef get_sample_id(struct si_shader_context *radeon_bld)
1391 {
1392 return unpack_param(si_shader_context(&radeon_bld->soa.bld_base),
1393 SI_PARAM_ANCILLARY, 8, 4);
1394 }
1395
1396 /**
1397 * Set range metadata on an instruction. This can only be used on load and
1398 * call instructions. If you know an instruction can only produce the values
1399 * 0, 1, 2, you would do set_range_metadata(value, 0, 3);
1400 * \p lo is the minimum value inclusive.
1401 * \p hi is the maximum value exclusive.
1402 */
1403 static void set_range_metadata(struct si_shader_context *ctx,
1404 LLVMValueRef value, unsigned lo, unsigned hi)
1405 {
1406 LLVMValueRef range_md, md_args[2];
1407 LLVMTypeRef type = LLVMTypeOf(value);
1408 LLVMContextRef context = LLVMGetTypeContext(type);
1409
1410 md_args[0] = LLVMConstInt(type, lo, false);
1411 md_args[1] = LLVMConstInt(type, hi, false);
1412 range_md = LLVMMDNodeInContext(context, md_args, 2);
1413 LLVMSetMetadata(value, ctx->range_md_kind, range_md);
1414 }
1415
1416 static LLVMValueRef get_thread_id(struct si_shader_context *ctx)
1417 {
1418 struct gallivm_state *gallivm = &ctx->gallivm;
1419 LLVMValueRef tid;
1420
1421 if (HAVE_LLVM < 0x0308) {
1422 tid = lp_build_intrinsic(gallivm->builder, "llvm.SI.tid",
1423 ctx->i32, NULL, 0, LP_FUNC_ATTR_READNONE);
1424 } else {
1425 LLVMValueRef tid_args[2];
1426 tid_args[0] = lp_build_const_int32(gallivm, 0xffffffff);
1427 tid_args[1] = lp_build_const_int32(gallivm, 0);
1428 tid_args[1] = lp_build_intrinsic(gallivm->builder,
1429 "llvm.amdgcn.mbcnt.lo", ctx->i32,
1430 tid_args, 2, LP_FUNC_ATTR_READNONE);
1431
1432 tid = lp_build_intrinsic(gallivm->builder,
1433 "llvm.amdgcn.mbcnt.hi", ctx->i32,
1434 tid_args, 2, LP_FUNC_ATTR_READNONE);
1435 }
1436 set_range_metadata(ctx, tid, 0, 64);
1437 return tid;
1438 }
1439
1440 /**
1441 * Load a dword from a constant buffer.
1442 */
1443 static LLVMValueRef buffer_load_const(struct si_shader_context *ctx,
1444 LLVMValueRef resource,
1445 LLVMValueRef offset)
1446 {
1447 LLVMBuilderRef builder = ctx->gallivm.builder;
1448 LLVMValueRef args[2] = {resource, offset};
1449
1450 return lp_build_intrinsic(builder, "llvm.SI.load.const", ctx->f32, args, 2,
1451 LP_FUNC_ATTR_READNONE);
1452 }
1453
1454 static LLVMValueRef load_sample_position(struct si_shader_context *radeon_bld, LLVMValueRef sample_id)
1455 {
1456 struct si_shader_context *ctx =
1457 si_shader_context(&radeon_bld->soa.bld_base);
1458 struct lp_build_context *uint_bld = &radeon_bld->soa.bld_base.uint_bld;
1459 struct gallivm_state *gallivm = &radeon_bld->gallivm;
1460 LLVMBuilderRef builder = gallivm->builder;
1461 LLVMValueRef desc = LLVMGetParam(ctx->main_fn, SI_PARAM_RW_BUFFERS);
1462 LLVMValueRef buf_index = lp_build_const_int32(gallivm, SI_PS_CONST_SAMPLE_POSITIONS);
1463 LLVMValueRef resource = build_indexed_load_const(ctx, desc, buf_index);
1464
1465 /* offset = sample_id * 8 (8 = 2 floats containing samplepos.xy) */
1466 LLVMValueRef offset0 = lp_build_mul_imm(uint_bld, sample_id, 8);
1467 LLVMValueRef offset1 = LLVMBuildAdd(builder, offset0, lp_build_const_int32(gallivm, 4), "");
1468
1469 LLVMValueRef pos[4] = {
1470 buffer_load_const(ctx, resource, offset0),
1471 buffer_load_const(ctx, resource, offset1),
1472 lp_build_const_float(gallivm, 0),
1473 lp_build_const_float(gallivm, 0)
1474 };
1475
1476 return lp_build_gather_values(gallivm, pos, 4);
1477 }
1478
1479 static void declare_system_value(
1480 struct si_shader_context *radeon_bld,
1481 unsigned index,
1482 const struct tgsi_full_declaration *decl)
1483 {
1484 struct si_shader_context *ctx =
1485 si_shader_context(&radeon_bld->soa.bld_base);
1486 struct lp_build_context *bld = &radeon_bld->soa.bld_base.base;
1487 struct gallivm_state *gallivm = &radeon_bld->gallivm;
1488 LLVMValueRef value = 0;
1489
1490 switch (decl->Semantic.Name) {
1491 case TGSI_SEMANTIC_INSTANCEID:
1492 value = LLVMGetParam(radeon_bld->main_fn,
1493 ctx->param_instance_id);
1494 break;
1495
1496 case TGSI_SEMANTIC_VERTEXID:
1497 value = LLVMBuildAdd(gallivm->builder,
1498 LLVMGetParam(radeon_bld->main_fn,
1499 ctx->param_vertex_id),
1500 LLVMGetParam(radeon_bld->main_fn,
1501 SI_PARAM_BASE_VERTEX), "");
1502 break;
1503
1504 case TGSI_SEMANTIC_VERTEXID_NOBASE:
1505 value = LLVMGetParam(radeon_bld->main_fn,
1506 ctx->param_vertex_id);
1507 break;
1508
1509 case TGSI_SEMANTIC_BASEVERTEX:
1510 value = LLVMGetParam(radeon_bld->main_fn,
1511 SI_PARAM_BASE_VERTEX);
1512 break;
1513
1514 case TGSI_SEMANTIC_BASEINSTANCE:
1515 value = LLVMGetParam(radeon_bld->main_fn,
1516 SI_PARAM_START_INSTANCE);
1517 break;
1518
1519 case TGSI_SEMANTIC_DRAWID:
1520 value = LLVMGetParam(radeon_bld->main_fn,
1521 SI_PARAM_DRAWID);
1522 break;
1523
1524 case TGSI_SEMANTIC_INVOCATIONID:
1525 if (ctx->type == PIPE_SHADER_TESS_CTRL)
1526 value = unpack_param(ctx, SI_PARAM_REL_IDS, 8, 5);
1527 else if (ctx->type == PIPE_SHADER_GEOMETRY)
1528 value = LLVMGetParam(radeon_bld->main_fn,
1529 SI_PARAM_GS_INSTANCE_ID);
1530 else
1531 assert(!"INVOCATIONID not implemented");
1532 break;
1533
1534 case TGSI_SEMANTIC_POSITION:
1535 {
1536 LLVMValueRef pos[4] = {
1537 LLVMGetParam(radeon_bld->main_fn, SI_PARAM_POS_X_FLOAT),
1538 LLVMGetParam(radeon_bld->main_fn, SI_PARAM_POS_Y_FLOAT),
1539 LLVMGetParam(radeon_bld->main_fn, SI_PARAM_POS_Z_FLOAT),
1540 lp_build_emit_llvm_unary(&radeon_bld->soa.bld_base, TGSI_OPCODE_RCP,
1541 LLVMGetParam(radeon_bld->main_fn,
1542 SI_PARAM_POS_W_FLOAT)),
1543 };
1544 value = lp_build_gather_values(gallivm, pos, 4);
1545 break;
1546 }
1547
1548 case TGSI_SEMANTIC_FACE:
1549 value = LLVMGetParam(radeon_bld->main_fn, SI_PARAM_FRONT_FACE);
1550 break;
1551
1552 case TGSI_SEMANTIC_SAMPLEID:
1553 value = get_sample_id(radeon_bld);
1554 break;
1555
1556 case TGSI_SEMANTIC_SAMPLEPOS: {
1557 LLVMValueRef pos[4] = {
1558 LLVMGetParam(radeon_bld->main_fn, SI_PARAM_POS_X_FLOAT),
1559 LLVMGetParam(radeon_bld->main_fn, SI_PARAM_POS_Y_FLOAT),
1560 lp_build_const_float(gallivm, 0),
1561 lp_build_const_float(gallivm, 0)
1562 };
1563 pos[0] = lp_build_emit_llvm_unary(&radeon_bld->soa.bld_base,
1564 TGSI_OPCODE_FRC, pos[0]);
1565 pos[1] = lp_build_emit_llvm_unary(&radeon_bld->soa.bld_base,
1566 TGSI_OPCODE_FRC, pos[1]);
1567 value = lp_build_gather_values(gallivm, pos, 4);
1568 break;
1569 }
1570
1571 case TGSI_SEMANTIC_SAMPLEMASK:
1572 /* This can only occur with the OpenGL Core profile, which
1573 * doesn't support smoothing.
1574 */
1575 value = LLVMGetParam(radeon_bld->main_fn, SI_PARAM_SAMPLE_COVERAGE);
1576 break;
1577
1578 case TGSI_SEMANTIC_TESSCOORD:
1579 {
1580 LLVMValueRef coord[4] = {
1581 LLVMGetParam(radeon_bld->main_fn, ctx->param_tes_u),
1582 LLVMGetParam(radeon_bld->main_fn, ctx->param_tes_v),
1583 bld->zero,
1584 bld->zero
1585 };
1586
1587 /* For triangles, the vector should be (u, v, 1-u-v). */
1588 if (ctx->shader->selector->info.properties[TGSI_PROPERTY_TES_PRIM_MODE] ==
1589 PIPE_PRIM_TRIANGLES)
1590 coord[2] = lp_build_sub(bld, bld->one,
1591 lp_build_add(bld, coord[0], coord[1]));
1592
1593 value = lp_build_gather_values(gallivm, coord, 4);
1594 break;
1595 }
1596
1597 case TGSI_SEMANTIC_VERTICESIN:
1598 if (ctx->type == PIPE_SHADER_TESS_CTRL)
1599 value = unpack_param(ctx, SI_PARAM_TCS_OUT_LAYOUT, 26, 6);
1600 else if (ctx->type == PIPE_SHADER_TESS_EVAL)
1601 value = unpack_param(ctx, SI_PARAM_TCS_OFFCHIP_LAYOUT, 9, 7);
1602 else
1603 assert(!"invalid shader stage for TGSI_SEMANTIC_VERTICESIN");
1604 break;
1605
1606 case TGSI_SEMANTIC_TESSINNER:
1607 case TGSI_SEMANTIC_TESSOUTER:
1608 {
1609 LLVMValueRef rw_buffers, buffer, base, addr;
1610 int param = si_shader_io_get_unique_index(decl->Semantic.Name, 0);
1611
1612 rw_buffers = LLVMGetParam(ctx->main_fn,
1613 SI_PARAM_RW_BUFFERS);
1614 buffer = build_indexed_load_const(ctx, rw_buffers,
1615 lp_build_const_int32(gallivm, SI_HS_RING_TESS_OFFCHIP));
1616
1617 base = LLVMGetParam(ctx->main_fn, ctx->param_oc_lds);
1618 addr = get_tcs_tes_buffer_address(ctx, NULL,
1619 lp_build_const_int32(gallivm, param));
1620
1621 value = buffer_load(&radeon_bld->soa.bld_base, TGSI_TYPE_FLOAT,
1622 ~0, buffer, base, addr);
1623
1624 break;
1625 }
1626
1627 case TGSI_SEMANTIC_DEFAULT_TESSOUTER_SI:
1628 case TGSI_SEMANTIC_DEFAULT_TESSINNER_SI:
1629 {
1630 LLVMValueRef buf, slot, val[4];
1631 int i, offset;
1632
1633 slot = lp_build_const_int32(gallivm, SI_HS_CONST_DEFAULT_TESS_LEVELS);
1634 buf = LLVMGetParam(ctx->main_fn, SI_PARAM_RW_BUFFERS);
1635 buf = build_indexed_load_const(ctx, buf, slot);
1636 offset = decl->Semantic.Name == TGSI_SEMANTIC_DEFAULT_TESSINNER_SI ? 4 : 0;
1637
1638 for (i = 0; i < 4; i++)
1639 val[i] = buffer_load_const(ctx, buf,
1640 lp_build_const_int32(gallivm, (offset + i) * 4));
1641 value = lp_build_gather_values(gallivm, val, 4);
1642 break;
1643 }
1644
1645 case TGSI_SEMANTIC_PRIMID:
1646 value = get_primitive_id(&radeon_bld->soa.bld_base, 0);
1647 break;
1648
1649 case TGSI_SEMANTIC_GRID_SIZE:
1650 value = LLVMGetParam(radeon_bld->main_fn, SI_PARAM_GRID_SIZE);
1651 break;
1652
1653 case TGSI_SEMANTIC_BLOCK_SIZE:
1654 {
1655 LLVMValueRef values[3];
1656 unsigned i;
1657 unsigned *properties = ctx->shader->selector->info.properties;
1658
1659 if (properties[TGSI_PROPERTY_CS_FIXED_BLOCK_WIDTH] != 0) {
1660 unsigned sizes[3] = {
1661 properties[TGSI_PROPERTY_CS_FIXED_BLOCK_WIDTH],
1662 properties[TGSI_PROPERTY_CS_FIXED_BLOCK_HEIGHT],
1663 properties[TGSI_PROPERTY_CS_FIXED_BLOCK_DEPTH]
1664 };
1665
1666 for (i = 0; i < 3; ++i)
1667 values[i] = lp_build_const_int32(gallivm, sizes[i]);
1668
1669 value = lp_build_gather_values(gallivm, values, 3);
1670 } else {
1671 value = LLVMGetParam(radeon_bld->main_fn, SI_PARAM_BLOCK_SIZE);
1672 }
1673 break;
1674 }
1675
1676 case TGSI_SEMANTIC_BLOCK_ID:
1677 value = LLVMGetParam(radeon_bld->main_fn, SI_PARAM_BLOCK_ID);
1678 break;
1679
1680 case TGSI_SEMANTIC_THREAD_ID:
1681 value = LLVMGetParam(radeon_bld->main_fn, SI_PARAM_THREAD_ID);
1682 break;
1683
1684 #if HAVE_LLVM >= 0x0309
1685 case TGSI_SEMANTIC_HELPER_INVOCATION:
1686 value = lp_build_intrinsic(gallivm->builder,
1687 "llvm.amdgcn.ps.live",
1688 ctx->i1, NULL, 0,
1689 LP_FUNC_ATTR_READNONE);
1690 value = LLVMBuildNot(gallivm->builder, value, "");
1691 value = LLVMBuildSExt(gallivm->builder, value, ctx->i32, "");
1692 break;
1693 #endif
1694
1695 default:
1696 assert(!"unknown system value");
1697 return;
1698 }
1699
1700 radeon_bld->system_values[index] = value;
1701 }
1702
1703 static void declare_compute_memory(struct si_shader_context *radeon_bld,
1704 const struct tgsi_full_declaration *decl)
1705 {
1706 struct si_shader_context *ctx =
1707 si_shader_context(&radeon_bld->soa.bld_base);
1708 struct si_shader_selector *sel = ctx->shader->selector;
1709 struct gallivm_state *gallivm = &radeon_bld->gallivm;
1710
1711 LLVMTypeRef i8p = LLVMPointerType(ctx->i8, LOCAL_ADDR_SPACE);
1712 LLVMValueRef var;
1713
1714 assert(decl->Declaration.MemType == TGSI_MEMORY_TYPE_SHARED);
1715 assert(decl->Range.First == decl->Range.Last);
1716 assert(!ctx->shared_memory);
1717
1718 var = LLVMAddGlobalInAddressSpace(gallivm->module,
1719 LLVMArrayType(ctx->i8, sel->local_size),
1720 "compute_lds",
1721 LOCAL_ADDR_SPACE);
1722 LLVMSetAlignment(var, 4);
1723
1724 ctx->shared_memory = LLVMBuildBitCast(gallivm->builder, var, i8p, "");
1725 }
1726
1727 static LLVMValueRef load_const_buffer_desc(struct si_shader_context *ctx, int i)
1728 {
1729 LLVMValueRef list_ptr = LLVMGetParam(ctx->main_fn,
1730 SI_PARAM_CONST_BUFFERS);
1731
1732 return build_indexed_load_const(ctx, list_ptr,
1733 LLVMConstInt(ctx->i32, i, 0));
1734 }
1735
1736 static LLVMValueRef fetch_constant(
1737 struct lp_build_tgsi_context *bld_base,
1738 const struct tgsi_full_src_register *reg,
1739 enum tgsi_opcode_type type,
1740 unsigned swizzle)
1741 {
1742 struct si_shader_context *ctx = si_shader_context(bld_base);
1743 struct lp_build_context *base = &bld_base->base;
1744 const struct tgsi_ind_register *ireg = &reg->Indirect;
1745 unsigned buf, idx;
1746
1747 LLVMValueRef addr, bufp;
1748 LLVMValueRef result;
1749
1750 if (swizzle == LP_CHAN_ALL) {
1751 unsigned chan;
1752 LLVMValueRef values[4];
1753 for (chan = 0; chan < TGSI_NUM_CHANNELS; ++chan)
1754 values[chan] = fetch_constant(bld_base, reg, type, chan);
1755
1756 return lp_build_gather_values(bld_base->base.gallivm, values, 4);
1757 }
1758
1759 buf = reg->Register.Dimension ? reg->Dimension.Index : 0;
1760 idx = reg->Register.Index * 4 + swizzle;
1761
1762 if (reg->Register.Dimension && reg->Dimension.Indirect) {
1763 LLVMValueRef ptr = LLVMGetParam(ctx->main_fn, SI_PARAM_CONST_BUFFERS);
1764 LLVMValueRef index;
1765 index = get_bounded_indirect_index(ctx, &reg->DimIndirect,
1766 reg->Dimension.Index,
1767 SI_NUM_CONST_BUFFERS);
1768 bufp = build_indexed_load_const(ctx, ptr, index);
1769 } else
1770 bufp = load_const_buffer_desc(ctx, buf);
1771
1772 if (reg->Register.Indirect) {
1773 addr = ctx->soa.addr[ireg->Index][ireg->Swizzle];
1774 addr = LLVMBuildLoad(base->gallivm->builder, addr, "load addr reg");
1775 addr = lp_build_mul_imm(&bld_base->uint_bld, addr, 16);
1776 addr = lp_build_add(&bld_base->uint_bld, addr,
1777 lp_build_const_int32(base->gallivm, idx * 4));
1778 } else {
1779 addr = LLVMConstInt(ctx->i32, idx * 4, 0);
1780 }
1781
1782 result = buffer_load_const(ctx, bufp, addr);
1783
1784 if (!tgsi_type_is_64bit(type))
1785 result = bitcast(bld_base, type, result);
1786 else {
1787 LLVMValueRef addr2, result2;
1788
1789 addr2 = lp_build_add(&bld_base->uint_bld, addr,
1790 LLVMConstInt(ctx->i32, 4, 0));
1791 result2 = buffer_load_const(ctx, bufp, addr2);
1792
1793 result = si_llvm_emit_fetch_64bit(bld_base, type,
1794 result, result2);
1795 }
1796 return result;
1797 }
1798
1799 /* Upper 16 bits must be zero. */
1800 static LLVMValueRef si_llvm_pack_two_int16(struct gallivm_state *gallivm,
1801 LLVMValueRef val[2])
1802 {
1803 return LLVMBuildOr(gallivm->builder, val[0],
1804 LLVMBuildShl(gallivm->builder, val[1],
1805 lp_build_const_int32(gallivm, 16),
1806 ""), "");
1807 }
1808
1809 /* Upper 16 bits are ignored and will be dropped. */
1810 static LLVMValueRef si_llvm_pack_two_int32_as_int16(struct gallivm_state *gallivm,
1811 LLVMValueRef val[2])
1812 {
1813 LLVMValueRef v[2] = {
1814 LLVMBuildAnd(gallivm->builder, val[0],
1815 lp_build_const_int32(gallivm, 0xffff), ""),
1816 val[1],
1817 };
1818 return si_llvm_pack_two_int16(gallivm, v);
1819 }
1820
1821 /* Initialize arguments for the shader export intrinsic */
1822 static void si_llvm_init_export_args(struct lp_build_tgsi_context *bld_base,
1823 LLVMValueRef *values,
1824 unsigned target,
1825 LLVMValueRef *args)
1826 {
1827 struct si_shader_context *ctx = si_shader_context(bld_base);
1828 struct lp_build_context *uint =
1829 &ctx->soa.bld_base.uint_bld;
1830 struct lp_build_context *base = &bld_base->base;
1831 struct gallivm_state *gallivm = base->gallivm;
1832 LLVMBuilderRef builder = base->gallivm->builder;
1833 LLVMValueRef val[4];
1834 unsigned spi_shader_col_format = V_028714_SPI_SHADER_32_ABGR;
1835 unsigned chan;
1836 bool is_int8;
1837
1838 /* Default is 0xf. Adjusted below depending on the format. */
1839 args[0] = lp_build_const_int32(base->gallivm, 0xf); /* writemask */
1840
1841 /* Specify whether the EXEC mask represents the valid mask */
1842 args[1] = uint->zero;
1843
1844 /* Specify whether this is the last export */
1845 args[2] = uint->zero;
1846
1847 /* Specify the target we are exporting */
1848 args[3] = lp_build_const_int32(base->gallivm, target);
1849
1850 if (ctx->type == PIPE_SHADER_FRAGMENT) {
1851 const struct si_shader_key *key = &ctx->shader->key;
1852 unsigned col_formats = key->part.ps.epilog.spi_shader_col_format;
1853 int cbuf = target - V_008DFC_SQ_EXP_MRT;
1854
1855 assert(cbuf >= 0 && cbuf < 8);
1856 spi_shader_col_format = (col_formats >> (cbuf * 4)) & 0xf;
1857 is_int8 = (key->part.ps.epilog.color_is_int8 >> cbuf) & 0x1;
1858 }
1859
1860 args[4] = uint->zero; /* COMPR flag */
1861 args[5] = base->undef;
1862 args[6] = base->undef;
1863 args[7] = base->undef;
1864 args[8] = base->undef;
1865
1866 switch (spi_shader_col_format) {
1867 case V_028714_SPI_SHADER_ZERO:
1868 args[0] = uint->zero; /* writemask */
1869 args[3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_NULL);
1870 break;
1871
1872 case V_028714_SPI_SHADER_32_R:
1873 args[0] = uint->one; /* writemask */
1874 args[5] = values[0];
1875 break;
1876
1877 case V_028714_SPI_SHADER_32_GR:
1878 args[0] = lp_build_const_int32(base->gallivm, 0x3); /* writemask */
1879 args[5] = values[0];
1880 args[6] = values[1];
1881 break;
1882
1883 case V_028714_SPI_SHADER_32_AR:
1884 args[0] = lp_build_const_int32(base->gallivm, 0x9); /* writemask */
1885 args[5] = values[0];
1886 args[8] = values[3];
1887 break;
1888
1889 case V_028714_SPI_SHADER_FP16_ABGR:
1890 args[4] = uint->one; /* COMPR flag */
1891
1892 for (chan = 0; chan < 2; chan++) {
1893 LLVMValueRef pack_args[2] = {
1894 values[2 * chan],
1895 values[2 * chan + 1]
1896 };
1897 LLVMValueRef packed;
1898
1899 packed = lp_build_intrinsic(base->gallivm->builder,
1900 "llvm.SI.packf16",
1901 ctx->i32, pack_args, 2,
1902 LP_FUNC_ATTR_READNONE);
1903 args[chan + 5] =
1904 LLVMBuildBitCast(base->gallivm->builder,
1905 packed, ctx->f32, "");
1906 }
1907 break;
1908
1909 case V_028714_SPI_SHADER_UNORM16_ABGR:
1910 for (chan = 0; chan < 4; chan++) {
1911 val[chan] = si_llvm_saturate(bld_base, values[chan]);
1912 val[chan] = LLVMBuildFMul(builder, val[chan],
1913 lp_build_const_float(gallivm, 65535), "");
1914 val[chan] = LLVMBuildFAdd(builder, val[chan],
1915 lp_build_const_float(gallivm, 0.5), "");
1916 val[chan] = LLVMBuildFPToUI(builder, val[chan],
1917 ctx->i32, "");
1918 }
1919
1920 args[4] = uint->one; /* COMPR flag */
1921 args[5] = bitcast(bld_base, TGSI_TYPE_FLOAT,
1922 si_llvm_pack_two_int16(gallivm, val));
1923 args[6] = bitcast(bld_base, TGSI_TYPE_FLOAT,
1924 si_llvm_pack_two_int16(gallivm, val+2));
1925 break;
1926
1927 case V_028714_SPI_SHADER_SNORM16_ABGR:
1928 for (chan = 0; chan < 4; chan++) {
1929 /* Clamp between [-1, 1]. */
1930 val[chan] = lp_build_emit_llvm_binary(bld_base, TGSI_OPCODE_MIN,
1931 values[chan],
1932 lp_build_const_float(gallivm, 1));
1933 val[chan] = lp_build_emit_llvm_binary(bld_base, TGSI_OPCODE_MAX,
1934 val[chan],
1935 lp_build_const_float(gallivm, -1));
1936 /* Convert to a signed integer in [-32767, 32767]. */
1937 val[chan] = LLVMBuildFMul(builder, val[chan],
1938 lp_build_const_float(gallivm, 32767), "");
1939 /* If positive, add 0.5, else add -0.5. */
1940 val[chan] = LLVMBuildFAdd(builder, val[chan],
1941 LLVMBuildSelect(builder,
1942 LLVMBuildFCmp(builder, LLVMRealOGE,
1943 val[chan], base->zero, ""),
1944 lp_build_const_float(gallivm, 0.5),
1945 lp_build_const_float(gallivm, -0.5), ""), "");
1946 val[chan] = LLVMBuildFPToSI(builder, val[chan], ctx->i32, "");
1947 }
1948
1949 args[4] = uint->one; /* COMPR flag */
1950 args[5] = bitcast(bld_base, TGSI_TYPE_FLOAT,
1951 si_llvm_pack_two_int32_as_int16(gallivm, val));
1952 args[6] = bitcast(bld_base, TGSI_TYPE_FLOAT,
1953 si_llvm_pack_two_int32_as_int16(gallivm, val+2));
1954 break;
1955
1956 case V_028714_SPI_SHADER_UINT16_ABGR: {
1957 LLVMValueRef max = lp_build_const_int32(gallivm, is_int8 ?
1958 255 : 65535);
1959 /* Clamp. */
1960 for (chan = 0; chan < 4; chan++) {
1961 val[chan] = bitcast(bld_base, TGSI_TYPE_UNSIGNED, values[chan]);
1962 val[chan] = lp_build_emit_llvm_binary(bld_base, TGSI_OPCODE_UMIN,
1963 val[chan], max);
1964 }
1965
1966 args[4] = uint->one; /* COMPR flag */
1967 args[5] = bitcast(bld_base, TGSI_TYPE_FLOAT,
1968 si_llvm_pack_two_int16(gallivm, val));
1969 args[6] = bitcast(bld_base, TGSI_TYPE_FLOAT,
1970 si_llvm_pack_two_int16(gallivm, val+2));
1971 break;
1972 }
1973
1974 case V_028714_SPI_SHADER_SINT16_ABGR: {
1975 LLVMValueRef max = lp_build_const_int32(gallivm, is_int8 ?
1976 127 : 32767);
1977 LLVMValueRef min = lp_build_const_int32(gallivm, is_int8 ?
1978 -128 : -32768);
1979 /* Clamp. */
1980 for (chan = 0; chan < 4; chan++) {
1981 val[chan] = bitcast(bld_base, TGSI_TYPE_UNSIGNED, values[chan]);
1982 val[chan] = lp_build_emit_llvm_binary(bld_base,
1983 TGSI_OPCODE_IMIN,
1984 val[chan], max);
1985 val[chan] = lp_build_emit_llvm_binary(bld_base,
1986 TGSI_OPCODE_IMAX,
1987 val[chan], min);
1988 }
1989
1990 args[4] = uint->one; /* COMPR flag */
1991 args[5] = bitcast(bld_base, TGSI_TYPE_FLOAT,
1992 si_llvm_pack_two_int32_as_int16(gallivm, val));
1993 args[6] = bitcast(bld_base, TGSI_TYPE_FLOAT,
1994 si_llvm_pack_two_int32_as_int16(gallivm, val+2));
1995 break;
1996 }
1997
1998 case V_028714_SPI_SHADER_32_ABGR:
1999 memcpy(&args[5], values, sizeof(values[0]) * 4);
2000 break;
2001 }
2002 }
2003
2004 static void si_alpha_test(struct lp_build_tgsi_context *bld_base,
2005 LLVMValueRef alpha)
2006 {
2007 struct si_shader_context *ctx = si_shader_context(bld_base);
2008 struct gallivm_state *gallivm = bld_base->base.gallivm;
2009
2010 if (ctx->shader->key.part.ps.epilog.alpha_func != PIPE_FUNC_NEVER) {
2011 LLVMValueRef alpha_ref = LLVMGetParam(ctx->main_fn,
2012 SI_PARAM_ALPHA_REF);
2013
2014 LLVMValueRef alpha_pass =
2015 lp_build_cmp(&bld_base->base,
2016 ctx->shader->key.part.ps.epilog.alpha_func,
2017 alpha, alpha_ref);
2018 LLVMValueRef arg =
2019 lp_build_select(&bld_base->base,
2020 alpha_pass,
2021 lp_build_const_float(gallivm, 1.0f),
2022 lp_build_const_float(gallivm, -1.0f));
2023
2024 lp_build_intrinsic(gallivm->builder, "llvm.AMDGPU.kill",
2025 ctx->voidt, &arg, 1, 0);
2026 } else {
2027 lp_build_intrinsic(gallivm->builder, "llvm.AMDGPU.kilp",
2028 ctx->voidt, NULL, 0, 0);
2029 }
2030 }
2031
2032 static LLVMValueRef si_scale_alpha_by_sample_mask(struct lp_build_tgsi_context *bld_base,
2033 LLVMValueRef alpha,
2034 unsigned samplemask_param)
2035 {
2036 struct si_shader_context *ctx = si_shader_context(bld_base);
2037 struct gallivm_state *gallivm = bld_base->base.gallivm;
2038 LLVMValueRef coverage;
2039
2040 /* alpha = alpha * popcount(coverage) / SI_NUM_SMOOTH_AA_SAMPLES */
2041 coverage = LLVMGetParam(ctx->main_fn,
2042 samplemask_param);
2043 coverage = bitcast(bld_base, TGSI_TYPE_SIGNED, coverage);
2044
2045 coverage = lp_build_intrinsic(gallivm->builder, "llvm.ctpop.i32",
2046 ctx->i32,
2047 &coverage, 1, LP_FUNC_ATTR_READNONE);
2048
2049 coverage = LLVMBuildUIToFP(gallivm->builder, coverage,
2050 ctx->f32, "");
2051
2052 coverage = LLVMBuildFMul(gallivm->builder, coverage,
2053 lp_build_const_float(gallivm,
2054 1.0 / SI_NUM_SMOOTH_AA_SAMPLES), "");
2055
2056 return LLVMBuildFMul(gallivm->builder, alpha, coverage, "");
2057 }
2058
2059 static void si_llvm_emit_clipvertex(struct lp_build_tgsi_context *bld_base,
2060 LLVMValueRef (*pos)[9], LLVMValueRef *out_elts)
2061 {
2062 struct si_shader_context *ctx = si_shader_context(bld_base);
2063 struct lp_build_context *base = &bld_base->base;
2064 struct lp_build_context *uint = &ctx->soa.bld_base.uint_bld;
2065 unsigned reg_index;
2066 unsigned chan;
2067 unsigned const_chan;
2068 LLVMValueRef base_elt;
2069 LLVMValueRef ptr = LLVMGetParam(ctx->main_fn, SI_PARAM_RW_BUFFERS);
2070 LLVMValueRef constbuf_index = lp_build_const_int32(base->gallivm,
2071 SI_VS_CONST_CLIP_PLANES);
2072 LLVMValueRef const_resource = build_indexed_load_const(ctx, ptr, constbuf_index);
2073
2074 for (reg_index = 0; reg_index < 2; reg_index ++) {
2075 LLVMValueRef *args = pos[2 + reg_index];
2076
2077 args[5] =
2078 args[6] =
2079 args[7] =
2080 args[8] = lp_build_const_float(base->gallivm, 0.0f);
2081
2082 /* Compute dot products of position and user clip plane vectors */
2083 for (chan = 0; chan < TGSI_NUM_CHANNELS; chan++) {
2084 for (const_chan = 0; const_chan < TGSI_NUM_CHANNELS; const_chan++) {
2085 args[1] = lp_build_const_int32(base->gallivm,
2086 ((reg_index * 4 + chan) * 4 +
2087 const_chan) * 4);
2088 base_elt = buffer_load_const(ctx, const_resource,
2089 args[1]);
2090 args[5 + chan] =
2091 lp_build_add(base, args[5 + chan],
2092 lp_build_mul(base, base_elt,
2093 out_elts[const_chan]));
2094 }
2095 }
2096
2097 args[0] = lp_build_const_int32(base->gallivm, 0xf);
2098 args[1] = uint->zero;
2099 args[2] = uint->zero;
2100 args[3] = lp_build_const_int32(base->gallivm,
2101 V_008DFC_SQ_EXP_POS + 2 + reg_index);
2102 args[4] = uint->zero;
2103 }
2104 }
2105
2106 static void si_dump_streamout(struct pipe_stream_output_info *so)
2107 {
2108 unsigned i;
2109
2110 if (so->num_outputs)
2111 fprintf(stderr, "STREAMOUT\n");
2112
2113 for (i = 0; i < so->num_outputs; i++) {
2114 unsigned mask = ((1 << so->output[i].num_components) - 1) <<
2115 so->output[i].start_component;
2116 fprintf(stderr, " %i: BUF%i[%i..%i] <- OUT[%i].%s%s%s%s\n",
2117 i, so->output[i].output_buffer,
2118 so->output[i].dst_offset, so->output[i].dst_offset + so->output[i].num_components - 1,
2119 so->output[i].register_index,
2120 mask & 1 ? "x" : "",
2121 mask & 2 ? "y" : "",
2122 mask & 4 ? "z" : "",
2123 mask & 8 ? "w" : "");
2124 }
2125 }
2126
2127 /* On SI, the vertex shader is responsible for writing streamout data
2128 * to buffers. */
2129 static void si_llvm_emit_streamout(struct si_shader_context *ctx,
2130 struct si_shader_output_values *outputs,
2131 unsigned noutput)
2132 {
2133 struct pipe_stream_output_info *so = &ctx->shader->selector->so;
2134 struct gallivm_state *gallivm = &ctx->gallivm;
2135 LLVMBuilderRef builder = gallivm->builder;
2136 int i, j;
2137 struct lp_build_if_state if_ctx;
2138 LLVMValueRef so_buffers[4];
2139 LLVMValueRef buf_ptr = LLVMGetParam(ctx->main_fn,
2140 SI_PARAM_RW_BUFFERS);
2141
2142 /* Load the descriptors. */
2143 for (i = 0; i < 4; ++i) {
2144 if (ctx->shader->selector->so.stride[i]) {
2145 LLVMValueRef offset = lp_build_const_int32(gallivm,
2146 SI_VS_STREAMOUT_BUF0 + i);
2147
2148 so_buffers[i] = build_indexed_load_const(ctx, buf_ptr, offset);
2149 }
2150 }
2151
2152 /* Get bits [22:16], i.e. (so_param >> 16) & 127; */
2153 LLVMValueRef so_vtx_count =
2154 unpack_param(ctx, ctx->param_streamout_config, 16, 7);
2155
2156 LLVMValueRef tid = get_thread_id(ctx);
2157
2158 /* can_emit = tid < so_vtx_count; */
2159 LLVMValueRef can_emit =
2160 LLVMBuildICmp(builder, LLVMIntULT, tid, so_vtx_count, "");
2161
2162 LLVMValueRef stream_id =
2163 unpack_param(ctx, ctx->param_streamout_config, 24, 2);
2164
2165 /* Emit the streamout code conditionally. This actually avoids
2166 * out-of-bounds buffer access. The hw tells us via the SGPR
2167 * (so_vtx_count) which threads are allowed to emit streamout data. */
2168 lp_build_if(&if_ctx, gallivm, can_emit);
2169 {
2170 /* The buffer offset is computed as follows:
2171 * ByteOffset = streamout_offset[buffer_id]*4 +
2172 * (streamout_write_index + thread_id)*stride[buffer_id] +
2173 * attrib_offset
2174 */
2175
2176 LLVMValueRef so_write_index =
2177 LLVMGetParam(ctx->main_fn,
2178 ctx->param_streamout_write_index);
2179
2180 /* Compute (streamout_write_index + thread_id). */
2181 so_write_index = LLVMBuildAdd(builder, so_write_index, tid, "");
2182
2183 /* Compute the write offset for each enabled buffer. */
2184 LLVMValueRef so_write_offset[4] = {};
2185 for (i = 0; i < 4; i++) {
2186 if (!so->stride[i])
2187 continue;
2188
2189 LLVMValueRef so_offset = LLVMGetParam(ctx->main_fn,
2190 ctx->param_streamout_offset[i]);
2191 so_offset = LLVMBuildMul(builder, so_offset, LLVMConstInt(ctx->i32, 4, 0), "");
2192
2193 so_write_offset[i] = LLVMBuildMul(builder, so_write_index,
2194 LLVMConstInt(ctx->i32, so->stride[i]*4, 0), "");
2195 so_write_offset[i] = LLVMBuildAdd(builder, so_write_offset[i], so_offset, "");
2196 }
2197
2198 /* Write streamout data. */
2199 for (i = 0; i < so->num_outputs; i++) {
2200 unsigned buf_idx = so->output[i].output_buffer;
2201 unsigned reg = so->output[i].register_index;
2202 unsigned start = so->output[i].start_component;
2203 unsigned num_comps = so->output[i].num_components;
2204 unsigned stream = so->output[i].stream;
2205 LLVMValueRef out[4];
2206 struct lp_build_if_state if_ctx_stream;
2207
2208 assert(num_comps && num_comps <= 4);
2209 if (!num_comps || num_comps > 4)
2210 continue;
2211
2212 if (reg >= noutput)
2213 continue;
2214
2215 /* Load the output as int. */
2216 for (j = 0; j < num_comps; j++) {
2217 out[j] = LLVMBuildBitCast(builder,
2218 outputs[reg].values[start+j],
2219 ctx->i32, "");
2220 }
2221
2222 /* Pack the output. */
2223 LLVMValueRef vdata = NULL;
2224
2225 switch (num_comps) {
2226 case 1: /* as i32 */
2227 vdata = out[0];
2228 break;
2229 case 2: /* as v2i32 */
2230 case 3: /* as v4i32 (aligned to 4) */
2231 case 4: /* as v4i32 */
2232 vdata = LLVMGetUndef(LLVMVectorType(ctx->i32, util_next_power_of_two(num_comps)));
2233 for (j = 0; j < num_comps; j++) {
2234 vdata = LLVMBuildInsertElement(builder, vdata, out[j],
2235 LLVMConstInt(ctx->i32, j, 0), "");
2236 }
2237 break;
2238 }
2239
2240 LLVMValueRef can_emit_stream =
2241 LLVMBuildICmp(builder, LLVMIntEQ,
2242 stream_id,
2243 lp_build_const_int32(gallivm, stream), "");
2244
2245 lp_build_if(&if_ctx_stream, gallivm, can_emit_stream);
2246 build_tbuffer_store_dwords(ctx, so_buffers[buf_idx],
2247 vdata, num_comps,
2248 so_write_offset[buf_idx],
2249 LLVMConstInt(ctx->i32, 0, 0),
2250 so->output[i].dst_offset*4);
2251 lp_build_endif(&if_ctx_stream);
2252 }
2253 }
2254 lp_build_endif(&if_ctx);
2255 }
2256
2257
2258 /* Generate export instructions for hardware VS shader stage */
2259 static void si_llvm_export_vs(struct lp_build_tgsi_context *bld_base,
2260 struct si_shader_output_values *outputs,
2261 unsigned noutput)
2262 {
2263 struct si_shader_context *ctx = si_shader_context(bld_base);
2264 struct si_shader *shader = ctx->shader;
2265 struct lp_build_context *base = &bld_base->base;
2266 struct lp_build_context *uint =
2267 &ctx->soa.bld_base.uint_bld;
2268 LLVMValueRef args[9];
2269 LLVMValueRef pos_args[4][9] = { { 0 } };
2270 LLVMValueRef psize_value = NULL, edgeflag_value = NULL, layer_value = NULL, viewport_index_value = NULL;
2271 unsigned semantic_name, semantic_index;
2272 unsigned target;
2273 unsigned param_count = 0;
2274 unsigned pos_idx;
2275 int i;
2276
2277 if (outputs && ctx->shader->selector->so.num_outputs) {
2278 si_llvm_emit_streamout(ctx, outputs, noutput);
2279 }
2280
2281 for (i = 0; i < noutput; i++) {
2282 semantic_name = outputs[i].name;
2283 semantic_index = outputs[i].sid;
2284 bool export_param = true;
2285
2286 switch (semantic_name) {
2287 case TGSI_SEMANTIC_POSITION: /* ignore these */
2288 case TGSI_SEMANTIC_PSIZE:
2289 case TGSI_SEMANTIC_CLIPVERTEX:
2290 case TGSI_SEMANTIC_EDGEFLAG:
2291 break;
2292 case TGSI_SEMANTIC_GENERIC:
2293 case TGSI_SEMANTIC_CLIPDIST:
2294 if (shader->key.opt.hw_vs.kill_outputs &
2295 (1ull << si_shader_io_get_unique_index(semantic_name, semantic_index)))
2296 export_param = false;
2297 break;
2298 default:
2299 if (shader->key.opt.hw_vs.kill_outputs2 &
2300 (1u << si_shader_io_get_unique_index2(semantic_name, semantic_index)))
2301 export_param = false;
2302 break;
2303 }
2304
2305 handle_semantic:
2306 /* Select the correct target */
2307 switch(semantic_name) {
2308 case TGSI_SEMANTIC_PSIZE:
2309 psize_value = outputs[i].values[0];
2310 continue;
2311 case TGSI_SEMANTIC_EDGEFLAG:
2312 edgeflag_value = outputs[i].values[0];
2313 continue;
2314 case TGSI_SEMANTIC_LAYER:
2315 layer_value = outputs[i].values[0];
2316 semantic_name = TGSI_SEMANTIC_GENERIC;
2317 goto handle_semantic;
2318 case TGSI_SEMANTIC_VIEWPORT_INDEX:
2319 viewport_index_value = outputs[i].values[0];
2320 semantic_name = TGSI_SEMANTIC_GENERIC;
2321 goto handle_semantic;
2322 case TGSI_SEMANTIC_POSITION:
2323 target = V_008DFC_SQ_EXP_POS;
2324 break;
2325 case TGSI_SEMANTIC_COLOR:
2326 case TGSI_SEMANTIC_BCOLOR:
2327 if (!export_param)
2328 continue;
2329 target = V_008DFC_SQ_EXP_PARAM + param_count;
2330 assert(i < ARRAY_SIZE(shader->info.vs_output_param_offset));
2331 shader->info.vs_output_param_offset[i] = param_count;
2332 param_count++;
2333 break;
2334 case TGSI_SEMANTIC_CLIPDIST:
2335 if (shader->key.opt.hw_vs.clip_disable) {
2336 semantic_name = TGSI_SEMANTIC_GENERIC;
2337 goto handle_semantic;
2338 }
2339 target = V_008DFC_SQ_EXP_POS + 2 + semantic_index;
2340 break;
2341 case TGSI_SEMANTIC_CLIPVERTEX:
2342 if (shader->key.opt.hw_vs.clip_disable)
2343 continue;
2344 si_llvm_emit_clipvertex(bld_base, pos_args, outputs[i].values);
2345 continue;
2346 case TGSI_SEMANTIC_PRIMID:
2347 case TGSI_SEMANTIC_FOG:
2348 case TGSI_SEMANTIC_TEXCOORD:
2349 case TGSI_SEMANTIC_GENERIC:
2350 if (!export_param)
2351 continue;
2352 target = V_008DFC_SQ_EXP_PARAM + param_count;
2353 assert(i < ARRAY_SIZE(shader->info.vs_output_param_offset));
2354 shader->info.vs_output_param_offset[i] = param_count;
2355 param_count++;
2356 break;
2357 default:
2358 target = 0;
2359 fprintf(stderr,
2360 "Warning: SI unhandled vs output type:%d\n",
2361 semantic_name);
2362 }
2363
2364 si_llvm_init_export_args(bld_base, outputs[i].values, target, args);
2365
2366 if (target >= V_008DFC_SQ_EXP_POS &&
2367 target <= (V_008DFC_SQ_EXP_POS + 3)) {
2368 memcpy(pos_args[target - V_008DFC_SQ_EXP_POS],
2369 args, sizeof(args));
2370 } else {
2371 lp_build_intrinsic(base->gallivm->builder,
2372 "llvm.SI.export", ctx->voidt,
2373 args, 9, 0);
2374 }
2375
2376 if (semantic_name == TGSI_SEMANTIC_CLIPDIST) {
2377 semantic_name = TGSI_SEMANTIC_GENERIC;
2378 goto handle_semantic;
2379 }
2380 }
2381
2382 shader->info.nr_param_exports = param_count;
2383
2384 /* We need to add the position output manually if it's missing. */
2385 if (!pos_args[0][0]) {
2386 pos_args[0][0] = lp_build_const_int32(base->gallivm, 0xf); /* writemask */
2387 pos_args[0][1] = uint->zero; /* EXEC mask */
2388 pos_args[0][2] = uint->zero; /* last export? */
2389 pos_args[0][3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_POS);
2390 pos_args[0][4] = uint->zero; /* COMPR flag */
2391 pos_args[0][5] = base->zero; /* X */
2392 pos_args[0][6] = base->zero; /* Y */
2393 pos_args[0][7] = base->zero; /* Z */
2394 pos_args[0][8] = base->one; /* W */
2395 }
2396
2397 /* Write the misc vector (point size, edgeflag, layer, viewport). */
2398 if (shader->selector->info.writes_psize ||
2399 shader->selector->info.writes_edgeflag ||
2400 shader->selector->info.writes_viewport_index ||
2401 shader->selector->info.writes_layer) {
2402 pos_args[1][0] = lp_build_const_int32(base->gallivm, /* writemask */
2403 shader->selector->info.writes_psize |
2404 (shader->selector->info.writes_edgeflag << 1) |
2405 (shader->selector->info.writes_layer << 2) |
2406 (shader->selector->info.writes_viewport_index << 3));
2407 pos_args[1][1] = uint->zero; /* EXEC mask */
2408 pos_args[1][2] = uint->zero; /* last export? */
2409 pos_args[1][3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_POS + 1);
2410 pos_args[1][4] = uint->zero; /* COMPR flag */
2411 pos_args[1][5] = base->zero; /* X */
2412 pos_args[1][6] = base->zero; /* Y */
2413 pos_args[1][7] = base->zero; /* Z */
2414 pos_args[1][8] = base->zero; /* W */
2415
2416 if (shader->selector->info.writes_psize)
2417 pos_args[1][5] = psize_value;
2418
2419 if (shader->selector->info.writes_edgeflag) {
2420 /* The output is a float, but the hw expects an integer
2421 * with the first bit containing the edge flag. */
2422 edgeflag_value = LLVMBuildFPToUI(base->gallivm->builder,
2423 edgeflag_value,
2424 ctx->i32, "");
2425 edgeflag_value = lp_build_min(&bld_base->int_bld,
2426 edgeflag_value,
2427 bld_base->int_bld.one);
2428
2429 /* The LLVM intrinsic expects a float. */
2430 pos_args[1][6] = LLVMBuildBitCast(base->gallivm->builder,
2431 edgeflag_value,
2432 ctx->f32, "");
2433 }
2434
2435 if (shader->selector->info.writes_layer)
2436 pos_args[1][7] = layer_value;
2437
2438 if (shader->selector->info.writes_viewport_index)
2439 pos_args[1][8] = viewport_index_value;
2440 }
2441
2442 for (i = 0; i < 4; i++)
2443 if (pos_args[i][0])
2444 shader->info.nr_pos_exports++;
2445
2446 pos_idx = 0;
2447 for (i = 0; i < 4; i++) {
2448 if (!pos_args[i][0])
2449 continue;
2450
2451 /* Specify the target we are exporting */
2452 pos_args[i][3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_POS + pos_idx++);
2453
2454 if (pos_idx == shader->info.nr_pos_exports)
2455 /* Specify that this is the last export */
2456 pos_args[i][2] = uint->one;
2457
2458 lp_build_intrinsic(base->gallivm->builder, "llvm.SI.export",
2459 ctx->voidt, pos_args[i], 9, 0);
2460 }
2461 }
2462
2463 /**
2464 * Forward all outputs from the vertex shader to the TES. This is only used
2465 * for the fixed function TCS.
2466 */
2467 static void si_copy_tcs_inputs(struct lp_build_tgsi_context *bld_base)
2468 {
2469 struct si_shader_context *ctx = si_shader_context(bld_base);
2470 struct gallivm_state *gallivm = bld_base->base.gallivm;
2471 LLVMValueRef invocation_id, rw_buffers, buffer, buffer_offset;
2472 LLVMValueRef lds_vertex_stride, lds_vertex_offset, lds_base;
2473 uint64_t inputs;
2474
2475 invocation_id = unpack_param(ctx, SI_PARAM_REL_IDS, 8, 5);
2476
2477 rw_buffers = LLVMGetParam(ctx->main_fn, SI_PARAM_RW_BUFFERS);
2478 buffer = build_indexed_load_const(ctx, rw_buffers,
2479 lp_build_const_int32(gallivm, SI_HS_RING_TESS_OFFCHIP));
2480
2481 buffer_offset = LLVMGetParam(ctx->main_fn, ctx->param_oc_lds);
2482
2483 lds_vertex_stride = unpack_param(ctx, SI_PARAM_TCS_IN_LAYOUT, 13, 8);
2484 lds_vertex_offset = LLVMBuildMul(gallivm->builder, invocation_id,
2485 lds_vertex_stride, "");
2486 lds_base = get_tcs_in_current_patch_offset(ctx);
2487 lds_base = LLVMBuildAdd(gallivm->builder, lds_base, lds_vertex_offset, "");
2488
2489 inputs = ctx->shader->key.mono.tcs.inputs_to_copy;
2490 while (inputs) {
2491 unsigned i = u_bit_scan64(&inputs);
2492
2493 LLVMValueRef lds_ptr = LLVMBuildAdd(gallivm->builder, lds_base,
2494 lp_build_const_int32(gallivm, 4 * i),
2495 "");
2496
2497 LLVMValueRef buffer_addr = get_tcs_tes_buffer_address(ctx,
2498 invocation_id,
2499 lp_build_const_int32(gallivm, i));
2500
2501 LLVMValueRef value = lds_load(bld_base, TGSI_TYPE_SIGNED, ~0,
2502 lds_ptr);
2503
2504 build_tbuffer_store_dwords(ctx, buffer, value, 4, buffer_addr,
2505 buffer_offset, 0);
2506 }
2507 }
2508
2509 static void si_write_tess_factors(struct lp_build_tgsi_context *bld_base,
2510 LLVMValueRef rel_patch_id,
2511 LLVMValueRef invocation_id,
2512 LLVMValueRef tcs_out_current_patch_data_offset)
2513 {
2514 struct si_shader_context *ctx = si_shader_context(bld_base);
2515 struct gallivm_state *gallivm = bld_base->base.gallivm;
2516 struct si_shader *shader = ctx->shader;
2517 unsigned tess_inner_index, tess_outer_index;
2518 LLVMValueRef lds_base, lds_inner, lds_outer, byteoffset, buffer;
2519 LLVMValueRef out[6], vec0, vec1, rw_buffers, tf_base;
2520 unsigned stride, outer_comps, inner_comps, i;
2521 struct lp_build_if_state if_ctx, inner_if_ctx;
2522
2523 si_llvm_emit_barrier(NULL, bld_base, NULL);
2524
2525 /* Do this only for invocation 0, because the tess levels are per-patch,
2526 * not per-vertex.
2527 *
2528 * This can't jump, because invocation 0 executes this. It should
2529 * at least mask out the loads and stores for other invocations.
2530 */
2531 lp_build_if(&if_ctx, gallivm,
2532 LLVMBuildICmp(gallivm->builder, LLVMIntEQ,
2533 invocation_id, bld_base->uint_bld.zero, ""));
2534
2535 /* Determine the layout of one tess factor element in the buffer. */
2536 switch (shader->key.part.tcs.epilog.prim_mode) {
2537 case PIPE_PRIM_LINES:
2538 stride = 2; /* 2 dwords, 1 vec2 store */
2539 outer_comps = 2;
2540 inner_comps = 0;
2541 break;
2542 case PIPE_PRIM_TRIANGLES:
2543 stride = 4; /* 4 dwords, 1 vec4 store */
2544 outer_comps = 3;
2545 inner_comps = 1;
2546 break;
2547 case PIPE_PRIM_QUADS:
2548 stride = 6; /* 6 dwords, 2 stores (vec4 + vec2) */
2549 outer_comps = 4;
2550 inner_comps = 2;
2551 break;
2552 default:
2553 assert(0);
2554 return;
2555 }
2556
2557 /* Load tess_inner and tess_outer from LDS.
2558 * Any invocation can write them, so we can't get them from a temporary.
2559 */
2560 tess_inner_index = si_shader_io_get_unique_index(TGSI_SEMANTIC_TESSINNER, 0);
2561 tess_outer_index = si_shader_io_get_unique_index(TGSI_SEMANTIC_TESSOUTER, 0);
2562
2563 lds_base = tcs_out_current_patch_data_offset;
2564 lds_inner = LLVMBuildAdd(gallivm->builder, lds_base,
2565 lp_build_const_int32(gallivm,
2566 tess_inner_index * 4), "");
2567 lds_outer = LLVMBuildAdd(gallivm->builder, lds_base,
2568 lp_build_const_int32(gallivm,
2569 tess_outer_index * 4), "");
2570
2571 for (i = 0; i < outer_comps; i++)
2572 out[i] = lds_load(bld_base, TGSI_TYPE_SIGNED, i, lds_outer);
2573 for (i = 0; i < inner_comps; i++)
2574 out[outer_comps+i] = lds_load(bld_base, TGSI_TYPE_SIGNED, i, lds_inner);
2575
2576 /* Convert the outputs to vectors for stores. */
2577 vec0 = lp_build_gather_values(gallivm, out, MIN2(stride, 4));
2578 vec1 = NULL;
2579
2580 if (stride > 4)
2581 vec1 = lp_build_gather_values(gallivm, out+4, stride - 4);
2582
2583 /* Get the buffer. */
2584 rw_buffers = LLVMGetParam(ctx->main_fn,
2585 SI_PARAM_RW_BUFFERS);
2586 buffer = build_indexed_load_const(ctx, rw_buffers,
2587 lp_build_const_int32(gallivm, SI_HS_RING_TESS_FACTOR));
2588
2589 /* Get the offset. */
2590 tf_base = LLVMGetParam(ctx->main_fn,
2591 SI_PARAM_TESS_FACTOR_OFFSET);
2592 byteoffset = LLVMBuildMul(gallivm->builder, rel_patch_id,
2593 lp_build_const_int32(gallivm, 4 * stride), "");
2594
2595 lp_build_if(&inner_if_ctx, gallivm,
2596 LLVMBuildICmp(gallivm->builder, LLVMIntEQ,
2597 rel_patch_id, bld_base->uint_bld.zero, ""));
2598
2599 /* Store the dynamic HS control word. */
2600 build_tbuffer_store_dwords(ctx, buffer,
2601 lp_build_const_int32(gallivm, 0x80000000),
2602 1, lp_build_const_int32(gallivm, 0), tf_base, 0);
2603
2604 lp_build_endif(&inner_if_ctx);
2605
2606 /* Store the tessellation factors. */
2607 build_tbuffer_store_dwords(ctx, buffer, vec0,
2608 MIN2(stride, 4), byteoffset, tf_base, 4);
2609 if (vec1)
2610 build_tbuffer_store_dwords(ctx, buffer, vec1,
2611 stride - 4, byteoffset, tf_base, 20);
2612 lp_build_endif(&if_ctx);
2613 }
2614
2615 /* This only writes the tessellation factor levels. */
2616 static void si_llvm_emit_tcs_epilogue(struct lp_build_tgsi_context *bld_base)
2617 {
2618 struct si_shader_context *ctx = si_shader_context(bld_base);
2619 LLVMValueRef rel_patch_id, invocation_id, tf_lds_offset;
2620
2621 si_copy_tcs_inputs(bld_base);
2622
2623 rel_patch_id = get_rel_patch_id(ctx);
2624 invocation_id = unpack_param(ctx, SI_PARAM_REL_IDS, 8, 5);
2625 tf_lds_offset = get_tcs_out_current_patch_data_offset(ctx);
2626
2627 /* Return epilog parameters from this function. */
2628 LLVMBuilderRef builder = bld_base->base.gallivm->builder;
2629 LLVMValueRef ret = ctx->return_value;
2630 LLVMValueRef rw_buffers, rw0, rw1, tf_soffset;
2631 unsigned vgpr;
2632
2633 /* RW_BUFFERS pointer */
2634 rw_buffers = LLVMGetParam(ctx->main_fn,
2635 SI_PARAM_RW_BUFFERS);
2636 rw_buffers = LLVMBuildPtrToInt(builder, rw_buffers, ctx->i64, "");
2637 rw_buffers = LLVMBuildBitCast(builder, rw_buffers, ctx->v2i32, "");
2638 rw0 = LLVMBuildExtractElement(builder, rw_buffers,
2639 bld_base->uint_bld.zero, "");
2640 rw1 = LLVMBuildExtractElement(builder, rw_buffers,
2641 bld_base->uint_bld.one, "");
2642 ret = LLVMBuildInsertValue(builder, ret, rw0, 0, "");
2643 ret = LLVMBuildInsertValue(builder, ret, rw1, 1, "");
2644
2645 /* Tess factor buffer soffset is after user SGPRs. */
2646 tf_soffset = LLVMGetParam(ctx->main_fn,
2647 SI_PARAM_TESS_FACTOR_OFFSET);
2648 ret = LLVMBuildInsertValue(builder, ret, tf_soffset,
2649 SI_TCS_NUM_USER_SGPR + 1, "");
2650
2651 /* VGPRs */
2652 rel_patch_id = bitcast(bld_base, TGSI_TYPE_FLOAT, rel_patch_id);
2653 invocation_id = bitcast(bld_base, TGSI_TYPE_FLOAT, invocation_id);
2654 tf_lds_offset = bitcast(bld_base, TGSI_TYPE_FLOAT, tf_lds_offset);
2655
2656 vgpr = SI_TCS_NUM_USER_SGPR + 2;
2657 ret = LLVMBuildInsertValue(builder, ret, rel_patch_id, vgpr++, "");
2658 ret = LLVMBuildInsertValue(builder, ret, invocation_id, vgpr++, "");
2659 ret = LLVMBuildInsertValue(builder, ret, tf_lds_offset, vgpr++, "");
2660 ctx->return_value = ret;
2661 }
2662
2663 static void si_llvm_emit_ls_epilogue(struct lp_build_tgsi_context *bld_base)
2664 {
2665 struct si_shader_context *ctx = si_shader_context(bld_base);
2666 struct si_shader *shader = ctx->shader;
2667 struct tgsi_shader_info *info = &shader->selector->info;
2668 struct gallivm_state *gallivm = bld_base->base.gallivm;
2669 unsigned i, chan;
2670 LLVMValueRef vertex_id = LLVMGetParam(ctx->main_fn,
2671 ctx->param_rel_auto_id);
2672 LLVMValueRef vertex_dw_stride =
2673 unpack_param(ctx, SI_PARAM_LS_OUT_LAYOUT, 13, 8);
2674 LLVMValueRef base_dw_addr = LLVMBuildMul(gallivm->builder, vertex_id,
2675 vertex_dw_stride, "");
2676
2677 /* Write outputs to LDS. The next shader (TCS aka HS) will read
2678 * its inputs from it. */
2679 for (i = 0; i < info->num_outputs; i++) {
2680 LLVMValueRef *out_ptr = ctx->soa.outputs[i];
2681 unsigned name = info->output_semantic_name[i];
2682 unsigned index = info->output_semantic_index[i];
2683 int param = si_shader_io_get_unique_index(name, index);
2684 LLVMValueRef dw_addr = LLVMBuildAdd(gallivm->builder, base_dw_addr,
2685 lp_build_const_int32(gallivm, param * 4), "");
2686
2687 for (chan = 0; chan < 4; chan++) {
2688 lds_store(bld_base, chan, dw_addr,
2689 LLVMBuildLoad(gallivm->builder, out_ptr[chan], ""));
2690 }
2691 }
2692 }
2693
2694 static void si_llvm_emit_es_epilogue(struct lp_build_tgsi_context *bld_base)
2695 {
2696 struct si_shader_context *ctx = si_shader_context(bld_base);
2697 struct gallivm_state *gallivm = bld_base->base.gallivm;
2698 struct si_shader *es = ctx->shader;
2699 struct tgsi_shader_info *info = &es->selector->info;
2700 LLVMValueRef soffset = LLVMGetParam(ctx->main_fn,
2701 ctx->param_es2gs_offset);
2702 unsigned chan;
2703 int i;
2704
2705 for (i = 0; i < info->num_outputs; i++) {
2706 LLVMValueRef *out_ptr =
2707 ctx->soa.outputs[i];
2708 int param_index;
2709
2710 if (info->output_semantic_name[i] == TGSI_SEMANTIC_VIEWPORT_INDEX ||
2711 info->output_semantic_name[i] == TGSI_SEMANTIC_LAYER)
2712 continue;
2713
2714 param_index = si_shader_io_get_unique_index(info->output_semantic_name[i],
2715 info->output_semantic_index[i]);
2716
2717 for (chan = 0; chan < 4; chan++) {
2718 LLVMValueRef out_val = LLVMBuildLoad(gallivm->builder, out_ptr[chan], "");
2719 out_val = LLVMBuildBitCast(gallivm->builder, out_val, ctx->i32, "");
2720
2721 build_tbuffer_store(ctx,
2722 ctx->esgs_ring,
2723 out_val, 1,
2724 LLVMGetUndef(ctx->i32), soffset,
2725 (4 * param_index + chan) * 4,
2726 V_008F0C_BUF_DATA_FORMAT_32,
2727 V_008F0C_BUF_NUM_FORMAT_UINT,
2728 0, 0, 1, 1, 0);
2729 }
2730 }
2731 }
2732
2733 static void si_llvm_emit_gs_epilogue(struct lp_build_tgsi_context *bld_base)
2734 {
2735 struct si_shader_context *ctx = si_shader_context(bld_base);
2736 struct gallivm_state *gallivm = bld_base->base.gallivm;
2737 LLVMValueRef args[2];
2738
2739 args[0] = lp_build_const_int32(gallivm, SENDMSG_GS_OP_NOP | SENDMSG_GS_DONE);
2740 args[1] = LLVMGetParam(ctx->main_fn, SI_PARAM_GS_WAVE_ID);
2741 lp_build_intrinsic(gallivm->builder, "llvm.SI.sendmsg",
2742 ctx->voidt, args, 2, 0);
2743 }
2744
2745 static void si_llvm_emit_vs_epilogue(struct lp_build_tgsi_context *bld_base)
2746 {
2747 struct si_shader_context *ctx = si_shader_context(bld_base);
2748 struct gallivm_state *gallivm = bld_base->base.gallivm;
2749 struct tgsi_shader_info *info = &ctx->shader->selector->info;
2750 struct si_shader_output_values *outputs = NULL;
2751 int i,j;
2752
2753 assert(!ctx->shader->is_gs_copy_shader);
2754
2755 outputs = MALLOC((info->num_outputs + 1) * sizeof(outputs[0]));
2756
2757 /* Vertex color clamping.
2758 *
2759 * This uses a state constant loaded in a user data SGPR and
2760 * an IF statement is added that clamps all colors if the constant
2761 * is true.
2762 */
2763 if (ctx->type == PIPE_SHADER_VERTEX) {
2764 struct lp_build_if_state if_ctx;
2765 LLVMValueRef cond = NULL;
2766 LLVMValueRef addr, val;
2767
2768 for (i = 0; i < info->num_outputs; i++) {
2769 if (info->output_semantic_name[i] != TGSI_SEMANTIC_COLOR &&
2770 info->output_semantic_name[i] != TGSI_SEMANTIC_BCOLOR)
2771 continue;
2772
2773 /* We've found a color. */
2774 if (!cond) {
2775 /* The state is in the first bit of the user SGPR. */
2776 cond = LLVMGetParam(ctx->main_fn,
2777 SI_PARAM_VS_STATE_BITS);
2778 cond = LLVMBuildTrunc(gallivm->builder, cond,
2779 ctx->i1, "");
2780 lp_build_if(&if_ctx, gallivm, cond);
2781 }
2782
2783 for (j = 0; j < 4; j++) {
2784 addr = ctx->soa.outputs[i][j];
2785 val = LLVMBuildLoad(gallivm->builder, addr, "");
2786 val = si_llvm_saturate(bld_base, val);
2787 LLVMBuildStore(gallivm->builder, val, addr);
2788 }
2789 }
2790
2791 if (cond)
2792 lp_build_endif(&if_ctx);
2793 }
2794
2795 for (i = 0; i < info->num_outputs; i++) {
2796 outputs[i].name = info->output_semantic_name[i];
2797 outputs[i].sid = info->output_semantic_index[i];
2798
2799 for (j = 0; j < 4; j++)
2800 outputs[i].values[j] =
2801 LLVMBuildLoad(gallivm->builder,
2802 ctx->soa.outputs[i][j],
2803 "");
2804 }
2805
2806 /* Return the primitive ID from the LLVM function. */
2807 ctx->return_value =
2808 LLVMBuildInsertValue(gallivm->builder,
2809 ctx->return_value,
2810 bitcast(bld_base, TGSI_TYPE_FLOAT,
2811 get_primitive_id(bld_base, 0)),
2812 VS_EPILOG_PRIMID_LOC, "");
2813
2814 si_llvm_export_vs(bld_base, outputs, i);
2815 FREE(outputs);
2816 }
2817
2818 struct si_ps_exports {
2819 unsigned num;
2820 LLVMValueRef args[10][9];
2821 };
2822
2823 unsigned si_get_spi_shader_z_format(bool writes_z, bool writes_stencil,
2824 bool writes_samplemask)
2825 {
2826 if (writes_z) {
2827 /* Z needs 32 bits. */
2828 if (writes_samplemask)
2829 return V_028710_SPI_SHADER_32_ABGR;
2830 else if (writes_stencil)
2831 return V_028710_SPI_SHADER_32_GR;
2832 else
2833 return V_028710_SPI_SHADER_32_R;
2834 } else if (writes_stencil || writes_samplemask) {
2835 /* Both stencil and sample mask need only 16 bits. */
2836 return V_028710_SPI_SHADER_UINT16_ABGR;
2837 } else {
2838 return V_028710_SPI_SHADER_ZERO;
2839 }
2840 }
2841
2842 static void si_export_mrt_z(struct lp_build_tgsi_context *bld_base,
2843 LLVMValueRef depth, LLVMValueRef stencil,
2844 LLVMValueRef samplemask, struct si_ps_exports *exp)
2845 {
2846 struct si_shader_context *ctx = si_shader_context(bld_base);
2847 struct lp_build_context *base = &bld_base->base;
2848 struct lp_build_context *uint = &bld_base->uint_bld;
2849 LLVMValueRef args[9];
2850 unsigned mask = 0;
2851 unsigned format = si_get_spi_shader_z_format(depth != NULL,
2852 stencil != NULL,
2853 samplemask != NULL);
2854
2855 assert(depth || stencil || samplemask);
2856
2857 args[1] = uint->one; /* whether the EXEC mask is valid */
2858 args[2] = uint->one; /* DONE bit */
2859
2860 /* Specify the target we are exporting */
2861 args[3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_MRTZ);
2862
2863 args[4] = uint->zero; /* COMP flag */
2864 args[5] = base->undef; /* R, depth */
2865 args[6] = base->undef; /* G, stencil test value[0:7], stencil op value[8:15] */
2866 args[7] = base->undef; /* B, sample mask */
2867 args[8] = base->undef; /* A, alpha to mask */
2868
2869 if (format == V_028710_SPI_SHADER_UINT16_ABGR) {
2870 assert(!depth);
2871 args[4] = uint->one; /* COMPR flag */
2872
2873 if (stencil) {
2874 /* Stencil should be in X[23:16]. */
2875 stencil = bitcast(bld_base, TGSI_TYPE_UNSIGNED, stencil);
2876 stencil = LLVMBuildShl(base->gallivm->builder, stencil,
2877 LLVMConstInt(ctx->i32, 16, 0), "");
2878 args[5] = bitcast(bld_base, TGSI_TYPE_FLOAT, stencil);
2879 mask |= 0x3;
2880 }
2881 if (samplemask) {
2882 /* SampleMask should be in Y[15:0]. */
2883 args[6] = samplemask;
2884 mask |= 0xc;
2885 }
2886 } else {
2887 if (depth) {
2888 args[5] = depth;
2889 mask |= 0x1;
2890 }
2891 if (stencil) {
2892 args[6] = stencil;
2893 mask |= 0x2;
2894 }
2895 if (samplemask) {
2896 args[7] = samplemask;
2897 mask |= 0x4;
2898 }
2899 }
2900
2901 /* SI (except OLAND) has a bug that it only looks
2902 * at the X writemask component. */
2903 if (ctx->screen->b.chip_class == SI &&
2904 ctx->screen->b.family != CHIP_OLAND)
2905 mask |= 0x1;
2906
2907 /* Specify which components to enable */
2908 args[0] = lp_build_const_int32(base->gallivm, mask);
2909
2910 memcpy(exp->args[exp->num++], args, sizeof(args));
2911 }
2912
2913 static void si_export_mrt_color(struct lp_build_tgsi_context *bld_base,
2914 LLVMValueRef *color, unsigned index,
2915 unsigned samplemask_param,
2916 bool is_last, struct si_ps_exports *exp)
2917 {
2918 struct si_shader_context *ctx = si_shader_context(bld_base);
2919 struct lp_build_context *base = &bld_base->base;
2920 int i;
2921
2922 /* Clamp color */
2923 if (ctx->shader->key.part.ps.epilog.clamp_color)
2924 for (i = 0; i < 4; i++)
2925 color[i] = si_llvm_saturate(bld_base, color[i]);
2926
2927 /* Alpha to one */
2928 if (ctx->shader->key.part.ps.epilog.alpha_to_one)
2929 color[3] = base->one;
2930
2931 /* Alpha test */
2932 if (index == 0 &&
2933 ctx->shader->key.part.ps.epilog.alpha_func != PIPE_FUNC_ALWAYS)
2934 si_alpha_test(bld_base, color[3]);
2935
2936 /* Line & polygon smoothing */
2937 if (ctx->shader->key.part.ps.epilog.poly_line_smoothing)
2938 color[3] = si_scale_alpha_by_sample_mask(bld_base, color[3],
2939 samplemask_param);
2940
2941 /* If last_cbuf > 0, FS_COLOR0_WRITES_ALL_CBUFS is true. */
2942 if (ctx->shader->key.part.ps.epilog.last_cbuf > 0) {
2943 LLVMValueRef args[8][9];
2944 int c, last = -1;
2945
2946 /* Get the export arguments, also find out what the last one is. */
2947 for (c = 0; c <= ctx->shader->key.part.ps.epilog.last_cbuf; c++) {
2948 si_llvm_init_export_args(bld_base, color,
2949 V_008DFC_SQ_EXP_MRT + c, args[c]);
2950 if (args[c][0] != bld_base->uint_bld.zero)
2951 last = c;
2952 }
2953
2954 /* Emit all exports. */
2955 for (c = 0; c <= ctx->shader->key.part.ps.epilog.last_cbuf; c++) {
2956 if (is_last && last == c) {
2957 args[c][1] = bld_base->uint_bld.one; /* whether the EXEC mask is valid */
2958 args[c][2] = bld_base->uint_bld.one; /* DONE bit */
2959 } else if (args[c][0] == bld_base->uint_bld.zero)
2960 continue; /* unnecessary NULL export */
2961
2962 memcpy(exp->args[exp->num++], args[c], sizeof(args[c]));
2963 }
2964 } else {
2965 LLVMValueRef args[9];
2966
2967 /* Export */
2968 si_llvm_init_export_args(bld_base, color, V_008DFC_SQ_EXP_MRT + index,
2969 args);
2970 if (is_last) {
2971 args[1] = bld_base->uint_bld.one; /* whether the EXEC mask is valid */
2972 args[2] = bld_base->uint_bld.one; /* DONE bit */
2973 } else if (args[0] == bld_base->uint_bld.zero)
2974 return; /* unnecessary NULL export */
2975
2976 memcpy(exp->args[exp->num++], args, sizeof(args));
2977 }
2978 }
2979
2980 static void si_emit_ps_exports(struct si_shader_context *ctx,
2981 struct si_ps_exports *exp)
2982 {
2983 for (unsigned i = 0; i < exp->num; i++)
2984 lp_build_intrinsic(ctx->gallivm.builder,
2985 "llvm.SI.export", ctx->voidt,
2986 exp->args[i], 9, 0);
2987 }
2988
2989 static void si_export_null(struct lp_build_tgsi_context *bld_base)
2990 {
2991 struct si_shader_context *ctx = si_shader_context(bld_base);
2992 struct lp_build_context *base = &bld_base->base;
2993 struct lp_build_context *uint = &bld_base->uint_bld;
2994 LLVMValueRef args[9];
2995
2996 args[0] = lp_build_const_int32(base->gallivm, 0x0); /* enabled channels */
2997 args[1] = uint->one; /* whether the EXEC mask is valid */
2998 args[2] = uint->one; /* DONE bit */
2999 args[3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_NULL);
3000 args[4] = uint->zero; /* COMPR flag (0 = 32-bit export) */
3001 args[5] = base->undef; /* R */
3002 args[6] = base->undef; /* G */
3003 args[7] = base->undef; /* B */
3004 args[8] = base->undef; /* A */
3005
3006 lp_build_intrinsic(base->gallivm->builder, "llvm.SI.export",
3007 ctx->voidt, args, 9, 0);
3008 }
3009
3010 /**
3011 * Return PS outputs in this order:
3012 *
3013 * v[0:3] = color0.xyzw
3014 * v[4:7] = color1.xyzw
3015 * ...
3016 * vN+0 = Depth
3017 * vN+1 = Stencil
3018 * vN+2 = SampleMask
3019 * vN+3 = SampleMaskIn (used for OpenGL smoothing)
3020 *
3021 * The alpha-ref SGPR is returned via its original location.
3022 */
3023 static void si_llvm_return_fs_outputs(struct lp_build_tgsi_context *bld_base)
3024 {
3025 struct si_shader_context *ctx = si_shader_context(bld_base);
3026 struct si_shader *shader = ctx->shader;
3027 struct lp_build_context *base = &bld_base->base;
3028 struct tgsi_shader_info *info = &shader->selector->info;
3029 LLVMBuilderRef builder = base->gallivm->builder;
3030 unsigned i, j, first_vgpr, vgpr;
3031
3032 LLVMValueRef color[8][4] = {};
3033 LLVMValueRef depth = NULL, stencil = NULL, samplemask = NULL;
3034 LLVMValueRef ret;
3035
3036 /* Read the output values. */
3037 for (i = 0; i < info->num_outputs; i++) {
3038 unsigned semantic_name = info->output_semantic_name[i];
3039 unsigned semantic_index = info->output_semantic_index[i];
3040
3041 switch (semantic_name) {
3042 case TGSI_SEMANTIC_COLOR:
3043 assert(semantic_index < 8);
3044 for (j = 0; j < 4; j++) {
3045 LLVMValueRef ptr = ctx->soa.outputs[i][j];
3046 LLVMValueRef result = LLVMBuildLoad(builder, ptr, "");
3047 color[semantic_index][j] = result;
3048 }
3049 break;
3050 case TGSI_SEMANTIC_POSITION:
3051 depth = LLVMBuildLoad(builder,
3052 ctx->soa.outputs[i][2], "");
3053 break;
3054 case TGSI_SEMANTIC_STENCIL:
3055 stencil = LLVMBuildLoad(builder,
3056 ctx->soa.outputs[i][1], "");
3057 break;
3058 case TGSI_SEMANTIC_SAMPLEMASK:
3059 samplemask = LLVMBuildLoad(builder,
3060 ctx->soa.outputs[i][0], "");
3061 break;
3062 default:
3063 fprintf(stderr, "Warning: SI unhandled fs output type:%d\n",
3064 semantic_name);
3065 }
3066 }
3067
3068 /* Fill the return structure. */
3069 ret = ctx->return_value;
3070
3071 /* Set SGPRs. */
3072 ret = LLVMBuildInsertValue(builder, ret,
3073 bitcast(bld_base, TGSI_TYPE_SIGNED,
3074 LLVMGetParam(ctx->main_fn,
3075 SI_PARAM_ALPHA_REF)),
3076 SI_SGPR_ALPHA_REF, "");
3077
3078 /* Set VGPRs */
3079 first_vgpr = vgpr = SI_SGPR_ALPHA_REF + 1;
3080 for (i = 0; i < ARRAY_SIZE(color); i++) {
3081 if (!color[i][0])
3082 continue;
3083
3084 for (j = 0; j < 4; j++)
3085 ret = LLVMBuildInsertValue(builder, ret, color[i][j], vgpr++, "");
3086 }
3087 if (depth)
3088 ret = LLVMBuildInsertValue(builder, ret, depth, vgpr++, "");
3089 if (stencil)
3090 ret = LLVMBuildInsertValue(builder, ret, stencil, vgpr++, "");
3091 if (samplemask)
3092 ret = LLVMBuildInsertValue(builder, ret, samplemask, vgpr++, "");
3093
3094 /* Add the input sample mask for smoothing at the end. */
3095 if (vgpr < first_vgpr + PS_EPILOG_SAMPLEMASK_MIN_LOC)
3096 vgpr = first_vgpr + PS_EPILOG_SAMPLEMASK_MIN_LOC;
3097 ret = LLVMBuildInsertValue(builder, ret,
3098 LLVMGetParam(ctx->main_fn,
3099 SI_PARAM_SAMPLE_COVERAGE), vgpr++, "");
3100
3101 ctx->return_value = ret;
3102 }
3103
3104 /**
3105 * Given a v8i32 resource descriptor for a buffer, extract the size of the
3106 * buffer in number of elements and return it as an i32.
3107 */
3108 static LLVMValueRef get_buffer_size(
3109 struct lp_build_tgsi_context *bld_base,
3110 LLVMValueRef descriptor)
3111 {
3112 struct si_shader_context *ctx = si_shader_context(bld_base);
3113 struct gallivm_state *gallivm = bld_base->base.gallivm;
3114 LLVMBuilderRef builder = gallivm->builder;
3115 LLVMValueRef size =
3116 LLVMBuildExtractElement(builder, descriptor,
3117 lp_build_const_int32(gallivm, 6), "");
3118
3119 if (ctx->screen->b.chip_class >= VI) {
3120 /* On VI, the descriptor contains the size in bytes,
3121 * but TXQ must return the size in elements.
3122 * The stride is always non-zero for resources using TXQ.
3123 */
3124 LLVMValueRef stride =
3125 LLVMBuildExtractElement(builder, descriptor,
3126 lp_build_const_int32(gallivm, 5), "");
3127 stride = LLVMBuildLShr(builder, stride,
3128 lp_build_const_int32(gallivm, 16), "");
3129 stride = LLVMBuildAnd(builder, stride,
3130 lp_build_const_int32(gallivm, 0x3FFF), "");
3131
3132 size = LLVMBuildUDiv(builder, size, stride, "");
3133 }
3134
3135 return size;
3136 }
3137
3138 /**
3139 * Given the i32 or vNi32 \p type, generate the textual name (e.g. for use with
3140 * intrinsic names).
3141 */
3142 static void build_type_name_for_intr(
3143 LLVMTypeRef type,
3144 char *buf, unsigned bufsize)
3145 {
3146 LLVMTypeRef elem_type = type;
3147
3148 assert(bufsize >= 8);
3149
3150 if (LLVMGetTypeKind(type) == LLVMVectorTypeKind) {
3151 int ret = snprintf(buf, bufsize, "v%u",
3152 LLVMGetVectorSize(type));
3153 if (ret < 0) {
3154 char *type_name = LLVMPrintTypeToString(type);
3155 fprintf(stderr, "Error building type name for: %s\n",
3156 type_name);
3157 return;
3158 }
3159 elem_type = LLVMGetElementType(type);
3160 buf += ret;
3161 bufsize -= ret;
3162 }
3163 switch (LLVMGetTypeKind(elem_type)) {
3164 default: break;
3165 case LLVMIntegerTypeKind:
3166 snprintf(buf, bufsize, "i%d", LLVMGetIntTypeWidth(elem_type));
3167 break;
3168 case LLVMFloatTypeKind:
3169 snprintf(buf, bufsize, "f32");
3170 break;
3171 case LLVMDoubleTypeKind:
3172 snprintf(buf, bufsize, "f64");
3173 break;
3174 }
3175 }
3176
3177 static void build_tex_intrinsic(const struct lp_build_tgsi_action *action,
3178 struct lp_build_tgsi_context *bld_base,
3179 struct lp_build_emit_data *emit_data);
3180
3181 /* Prevent optimizations (at least of memory accesses) across the current
3182 * point in the program by emitting empty inline assembly that is marked as
3183 * having side effects.
3184 */
3185 static void emit_optimization_barrier(struct si_shader_context *ctx)
3186 {
3187 LLVMBuilderRef builder = ctx->gallivm.builder;
3188 LLVMTypeRef ftype = LLVMFunctionType(ctx->voidt, NULL, 0, false);
3189 LLVMValueRef inlineasm = LLVMConstInlineAsm(ftype, "", "", true, false);
3190 LLVMBuildCall(builder, inlineasm, NULL, 0, "");
3191 }
3192
3193 static void emit_waitcnt(struct si_shader_context *ctx)
3194 {
3195 struct gallivm_state *gallivm = &ctx->gallivm;
3196 LLVMBuilderRef builder = gallivm->builder;
3197 LLVMValueRef args[1] = {
3198 lp_build_const_int32(gallivm, 0xf70)
3199 };
3200 lp_build_intrinsic(builder, "llvm.amdgcn.s.waitcnt",
3201 ctx->voidt, args, 1, 0);
3202 }
3203
3204 static void membar_emit(
3205 const struct lp_build_tgsi_action *action,
3206 struct lp_build_tgsi_context *bld_base,
3207 struct lp_build_emit_data *emit_data)
3208 {
3209 struct si_shader_context *ctx = si_shader_context(bld_base);
3210
3211 emit_waitcnt(ctx);
3212 }
3213
3214 static LLVMValueRef
3215 shader_buffer_fetch_rsrc(struct si_shader_context *ctx,
3216 const struct tgsi_full_src_register *reg)
3217 {
3218 LLVMValueRef index;
3219 LLVMValueRef rsrc_ptr = LLVMGetParam(ctx->main_fn,
3220 SI_PARAM_SHADER_BUFFERS);
3221
3222 if (!reg->Register.Indirect)
3223 index = LLVMConstInt(ctx->i32, reg->Register.Index, 0);
3224 else
3225 index = get_bounded_indirect_index(ctx, &reg->Indirect,
3226 reg->Register.Index,
3227 SI_NUM_SHADER_BUFFERS);
3228
3229 return build_indexed_load_const(ctx, rsrc_ptr, index);
3230 }
3231
3232 static bool tgsi_is_array_sampler(unsigned target)
3233 {
3234 return target == TGSI_TEXTURE_1D_ARRAY ||
3235 target == TGSI_TEXTURE_SHADOW1D_ARRAY ||
3236 target == TGSI_TEXTURE_2D_ARRAY ||
3237 target == TGSI_TEXTURE_SHADOW2D_ARRAY ||
3238 target == TGSI_TEXTURE_CUBE_ARRAY ||
3239 target == TGSI_TEXTURE_SHADOWCUBE_ARRAY ||
3240 target == TGSI_TEXTURE_2D_ARRAY_MSAA;
3241 }
3242
3243 static bool tgsi_is_array_image(unsigned target)
3244 {
3245 return target == TGSI_TEXTURE_3D ||
3246 target == TGSI_TEXTURE_CUBE ||
3247 target == TGSI_TEXTURE_1D_ARRAY ||
3248 target == TGSI_TEXTURE_2D_ARRAY ||
3249 target == TGSI_TEXTURE_CUBE_ARRAY ||
3250 target == TGSI_TEXTURE_2D_ARRAY_MSAA;
3251 }
3252
3253 /**
3254 * Given a 256-bit resource descriptor, force the DCC enable bit to off.
3255 *
3256 * At least on Tonga, executing image stores on images with DCC enabled and
3257 * non-trivial can eventually lead to lockups. This can occur when an
3258 * application binds an image as read-only but then uses a shader that writes
3259 * to it. The OpenGL spec allows almost arbitrarily bad behavior (including
3260 * program termination) in this case, but it doesn't cost much to be a bit
3261 * nicer: disabling DCC in the shader still leads to undefined results but
3262 * avoids the lockup.
3263 */
3264 static LLVMValueRef force_dcc_off(struct si_shader_context *ctx,
3265 LLVMValueRef rsrc)
3266 {
3267 if (ctx->screen->b.chip_class <= CIK) {
3268 return rsrc;
3269 } else {
3270 LLVMBuilderRef builder = ctx->gallivm.builder;
3271 LLVMValueRef i32_6 = LLVMConstInt(ctx->i32, 6, 0);
3272 LLVMValueRef i32_C = LLVMConstInt(ctx->i32, C_008F28_COMPRESSION_EN, 0);
3273 LLVMValueRef tmp;
3274
3275 tmp = LLVMBuildExtractElement(builder, rsrc, i32_6, "");
3276 tmp = LLVMBuildAnd(builder, tmp, i32_C, "");
3277 return LLVMBuildInsertElement(builder, rsrc, tmp, i32_6, "");
3278 }
3279 }
3280
3281 /**
3282 * Load the resource descriptor for \p image.
3283 */
3284 static void
3285 image_fetch_rsrc(
3286 struct lp_build_tgsi_context *bld_base,
3287 const struct tgsi_full_src_register *image,
3288 bool is_store, unsigned target,
3289 LLVMValueRef *rsrc)
3290 {
3291 struct si_shader_context *ctx = si_shader_context(bld_base);
3292 LLVMValueRef rsrc_ptr = LLVMGetParam(ctx->main_fn,
3293 SI_PARAM_IMAGES);
3294 LLVMValueRef index, tmp;
3295 bool dcc_off = target != TGSI_TEXTURE_BUFFER && is_store;
3296
3297 assert(image->Register.File == TGSI_FILE_IMAGE);
3298
3299 if (!image->Register.Indirect) {
3300 const struct tgsi_shader_info *info = bld_base->info;
3301
3302 index = LLVMConstInt(ctx->i32, image->Register.Index, 0);
3303
3304 if (info->images_writemask & (1 << image->Register.Index) &&
3305 target != TGSI_TEXTURE_BUFFER)
3306 dcc_off = true;
3307 } else {
3308 /* From the GL_ARB_shader_image_load_store extension spec:
3309 *
3310 * If a shader performs an image load, store, or atomic
3311 * operation using an image variable declared as an array,
3312 * and if the index used to select an individual element is
3313 * negative or greater than or equal to the size of the
3314 * array, the results of the operation are undefined but may
3315 * not lead to termination.
3316 */
3317 index = get_bounded_indirect_index(ctx, &image->Indirect,
3318 image->Register.Index,
3319 SI_NUM_IMAGES);
3320 }
3321
3322 tmp = build_indexed_load_const(ctx, rsrc_ptr, index);
3323 if (dcc_off)
3324 tmp = force_dcc_off(ctx, tmp);
3325 *rsrc = tmp;
3326 }
3327
3328 static LLVMValueRef image_fetch_coords(
3329 struct lp_build_tgsi_context *bld_base,
3330 const struct tgsi_full_instruction *inst,
3331 unsigned src)
3332 {
3333 struct gallivm_state *gallivm = bld_base->base.gallivm;
3334 LLVMBuilderRef builder = gallivm->builder;
3335 unsigned target = inst->Memory.Texture;
3336 unsigned num_coords = tgsi_util_get_texture_coord_dim(target);
3337 LLVMValueRef coords[4];
3338 LLVMValueRef tmp;
3339 int chan;
3340
3341 for (chan = 0; chan < num_coords; ++chan) {
3342 tmp = lp_build_emit_fetch(bld_base, inst, src, chan);
3343 tmp = LLVMBuildBitCast(builder, tmp, bld_base->uint_bld.elem_type, "");
3344 coords[chan] = tmp;
3345 }
3346
3347 if (num_coords == 1)
3348 return coords[0];
3349
3350 if (num_coords == 3) {
3351 /* LLVM has difficulties lowering 3-element vectors. */
3352 coords[3] = bld_base->uint_bld.undef;
3353 num_coords = 4;
3354 }
3355
3356 return lp_build_gather_values(gallivm, coords, num_coords);
3357 }
3358
3359 /**
3360 * Append the extra mode bits that are used by image load and store.
3361 */
3362 static void image_append_args(
3363 struct si_shader_context *ctx,
3364 struct lp_build_emit_data * emit_data,
3365 unsigned target,
3366 bool atomic)
3367 {
3368 const struct tgsi_full_instruction *inst = emit_data->inst;
3369 LLVMValueRef i1false = LLVMConstInt(ctx->i1, 0, 0);
3370 LLVMValueRef i1true = LLVMConstInt(ctx->i1, 1, 0);
3371 LLVMValueRef r128 = i1false;
3372 LLVMValueRef da = tgsi_is_array_image(target) ? i1true : i1false;
3373 LLVMValueRef glc =
3374 inst->Memory.Qualifier & (TGSI_MEMORY_COHERENT | TGSI_MEMORY_VOLATILE) ?
3375 i1true : i1false;
3376 LLVMValueRef slc = i1false;
3377 LLVMValueRef lwe = i1false;
3378
3379 if (atomic || (HAVE_LLVM <= 0x0309)) {
3380 emit_data->args[emit_data->arg_count++] = r128;
3381 emit_data->args[emit_data->arg_count++] = da;
3382 if (!atomic) {
3383 emit_data->args[emit_data->arg_count++] = glc;
3384 }
3385 emit_data->args[emit_data->arg_count++] = slc;
3386 return;
3387 }
3388
3389 /* HAVE_LLVM >= 0x0400 */
3390 emit_data->args[emit_data->arg_count++] = glc;
3391 emit_data->args[emit_data->arg_count++] = slc;
3392 emit_data->args[emit_data->arg_count++] = lwe;
3393 emit_data->args[emit_data->arg_count++] = da;
3394 }
3395
3396 /**
3397 * Given a 256 bit resource, extract the top half (which stores the buffer
3398 * resource in the case of textures and images).
3399 */
3400 static LLVMValueRef extract_rsrc_top_half(
3401 struct si_shader_context *ctx,
3402 LLVMValueRef rsrc)
3403 {
3404 struct gallivm_state *gallivm = &ctx->gallivm;
3405 struct lp_build_tgsi_context *bld_base = &ctx->soa.bld_base;
3406 LLVMTypeRef v2i128 = LLVMVectorType(ctx->i128, 2);
3407
3408 rsrc = LLVMBuildBitCast(gallivm->builder, rsrc, v2i128, "");
3409 rsrc = LLVMBuildExtractElement(gallivm->builder, rsrc, bld_base->uint_bld.one, "");
3410 rsrc = LLVMBuildBitCast(gallivm->builder, rsrc, ctx->v4i32, "");
3411
3412 return rsrc;
3413 }
3414
3415 /**
3416 * Append the resource and indexing arguments for buffer intrinsics.
3417 *
3418 * \param rsrc the v4i32 buffer resource
3419 * \param index index into the buffer (stride-based)
3420 * \param offset byte offset into the buffer
3421 */
3422 static void buffer_append_args(
3423 struct si_shader_context *ctx,
3424 struct lp_build_emit_data *emit_data,
3425 LLVMValueRef rsrc,
3426 LLVMValueRef index,
3427 LLVMValueRef offset,
3428 bool atomic)
3429 {
3430 const struct tgsi_full_instruction *inst = emit_data->inst;
3431 LLVMValueRef i1false = LLVMConstInt(ctx->i1, 0, 0);
3432 LLVMValueRef i1true = LLVMConstInt(ctx->i1, 1, 0);
3433
3434 emit_data->args[emit_data->arg_count++] = rsrc;
3435 emit_data->args[emit_data->arg_count++] = index; /* vindex */
3436 emit_data->args[emit_data->arg_count++] = offset; /* voffset */
3437 if (!atomic) {
3438 emit_data->args[emit_data->arg_count++] =
3439 inst->Memory.Qualifier & (TGSI_MEMORY_COHERENT | TGSI_MEMORY_VOLATILE) ?
3440 i1true : i1false; /* glc */
3441 }
3442 emit_data->args[emit_data->arg_count++] = i1false; /* slc */
3443 }
3444
3445 static void load_fetch_args(
3446 struct lp_build_tgsi_context * bld_base,
3447 struct lp_build_emit_data * emit_data)
3448 {
3449 struct si_shader_context *ctx = si_shader_context(bld_base);
3450 struct gallivm_state *gallivm = bld_base->base.gallivm;
3451 const struct tgsi_full_instruction * inst = emit_data->inst;
3452 unsigned target = inst->Memory.Texture;
3453 LLVMValueRef rsrc;
3454
3455 emit_data->dst_type = LLVMVectorType(bld_base->base.elem_type, 4);
3456
3457 if (inst->Src[0].Register.File == TGSI_FILE_BUFFER) {
3458 LLVMBuilderRef builder = gallivm->builder;
3459 LLVMValueRef offset;
3460 LLVMValueRef tmp;
3461
3462 rsrc = shader_buffer_fetch_rsrc(ctx, &inst->Src[0]);
3463
3464 tmp = lp_build_emit_fetch(bld_base, inst, 1, 0);
3465 offset = LLVMBuildBitCast(builder, tmp, bld_base->uint_bld.elem_type, "");
3466
3467 buffer_append_args(ctx, emit_data, rsrc, bld_base->uint_bld.zero,
3468 offset, false);
3469 } else if (inst->Src[0].Register.File == TGSI_FILE_IMAGE) {
3470 LLVMValueRef coords;
3471
3472 image_fetch_rsrc(bld_base, &inst->Src[0], false, target, &rsrc);
3473 coords = image_fetch_coords(bld_base, inst, 1);
3474
3475 if (target == TGSI_TEXTURE_BUFFER) {
3476 rsrc = extract_rsrc_top_half(ctx, rsrc);
3477 buffer_append_args(ctx, emit_data, rsrc, coords,
3478 bld_base->uint_bld.zero, false);
3479 } else {
3480 emit_data->args[0] = coords;
3481 emit_data->args[1] = rsrc;
3482 emit_data->args[2] = lp_build_const_int32(gallivm, 15); /* dmask */
3483 emit_data->arg_count = 3;
3484
3485 image_append_args(ctx, emit_data, target, false);
3486 }
3487 }
3488 }
3489
3490 static void load_emit_buffer(struct si_shader_context *ctx,
3491 struct lp_build_emit_data *emit_data)
3492 {
3493 const struct tgsi_full_instruction *inst = emit_data->inst;
3494 struct gallivm_state *gallivm = &ctx->gallivm;
3495 LLVMBuilderRef builder = gallivm->builder;
3496 uint writemask = inst->Dst[0].Register.WriteMask;
3497 uint count = util_last_bit(writemask);
3498 const char *intrinsic_name;
3499 LLVMTypeRef dst_type;
3500
3501 switch (count) {
3502 case 1:
3503 intrinsic_name = "llvm.amdgcn.buffer.load.f32";
3504 dst_type = ctx->f32;
3505 break;
3506 case 2:
3507 intrinsic_name = "llvm.amdgcn.buffer.load.v2f32";
3508 dst_type = LLVMVectorType(ctx->f32, 2);
3509 break;
3510 default: // 3 & 4
3511 intrinsic_name = "llvm.amdgcn.buffer.load.v4f32";
3512 dst_type = ctx->v4f32;
3513 count = 4;
3514 }
3515
3516 emit_data->output[emit_data->chan] = lp_build_intrinsic(
3517 builder, intrinsic_name, dst_type,
3518 emit_data->args, emit_data->arg_count,
3519 LP_FUNC_ATTR_READONLY);
3520 }
3521
3522 static LLVMValueRef get_memory_ptr(struct si_shader_context *ctx,
3523 const struct tgsi_full_instruction *inst,
3524 LLVMTypeRef type, int arg)
3525 {
3526 struct gallivm_state *gallivm = &ctx->gallivm;
3527 LLVMBuilderRef builder = gallivm->builder;
3528 LLVMValueRef offset, ptr;
3529 int addr_space;
3530
3531 offset = lp_build_emit_fetch(&ctx->soa.bld_base, inst, arg, 0);
3532 offset = LLVMBuildBitCast(builder, offset, ctx->i32, "");
3533
3534 ptr = ctx->shared_memory;
3535 ptr = LLVMBuildGEP(builder, ptr, &offset, 1, "");
3536 addr_space = LLVMGetPointerAddressSpace(LLVMTypeOf(ptr));
3537 ptr = LLVMBuildBitCast(builder, ptr, LLVMPointerType(type, addr_space), "");
3538
3539 return ptr;
3540 }
3541
3542 static void load_emit_memory(
3543 struct si_shader_context *ctx,
3544 struct lp_build_emit_data *emit_data)
3545 {
3546 const struct tgsi_full_instruction *inst = emit_data->inst;
3547 struct lp_build_context *base = &ctx->soa.bld_base.base;
3548 struct gallivm_state *gallivm = &ctx->gallivm;
3549 LLVMBuilderRef builder = gallivm->builder;
3550 unsigned writemask = inst->Dst[0].Register.WriteMask;
3551 LLVMValueRef channels[4], ptr, derived_ptr, index;
3552 int chan;
3553
3554 ptr = get_memory_ptr(ctx, inst, base->elem_type, 1);
3555
3556 for (chan = 0; chan < 4; ++chan) {
3557 if (!(writemask & (1 << chan))) {
3558 channels[chan] = LLVMGetUndef(base->elem_type);
3559 continue;
3560 }
3561
3562 index = lp_build_const_int32(gallivm, chan);
3563 derived_ptr = LLVMBuildGEP(builder, ptr, &index, 1, "");
3564 channels[chan] = LLVMBuildLoad(builder, derived_ptr, "");
3565 }
3566 emit_data->output[emit_data->chan] = lp_build_gather_values(gallivm, channels, 4);
3567 }
3568
3569 static void get_image_intr_name(const char *base_name,
3570 LLVMTypeRef data_type,
3571 LLVMTypeRef coords_type,
3572 LLVMTypeRef rsrc_type,
3573 char *out_name, unsigned out_len)
3574 {
3575 char coords_type_name[8];
3576
3577 build_type_name_for_intr(coords_type, coords_type_name,
3578 sizeof(coords_type_name));
3579
3580 if (HAVE_LLVM <= 0x0309) {
3581 snprintf(out_name, out_len, "%s.%s", base_name, coords_type_name);
3582 } else {
3583 char data_type_name[8];
3584 char rsrc_type_name[8];
3585
3586 build_type_name_for_intr(data_type, data_type_name,
3587 sizeof(data_type_name));
3588 build_type_name_for_intr(rsrc_type, rsrc_type_name,
3589 sizeof(rsrc_type_name));
3590 snprintf(out_name, out_len, "%s.%s.%s.%s", base_name,
3591 data_type_name, coords_type_name, rsrc_type_name);
3592 }
3593 }
3594
3595 static void load_emit(
3596 const struct lp_build_tgsi_action *action,
3597 struct lp_build_tgsi_context *bld_base,
3598 struct lp_build_emit_data *emit_data)
3599 {
3600 struct si_shader_context *ctx = si_shader_context(bld_base);
3601 struct gallivm_state *gallivm = bld_base->base.gallivm;
3602 LLVMBuilderRef builder = gallivm->builder;
3603 const struct tgsi_full_instruction * inst = emit_data->inst;
3604 char intrinsic_name[64];
3605
3606 if (inst->Src[0].Register.File == TGSI_FILE_MEMORY) {
3607 load_emit_memory(ctx, emit_data);
3608 return;
3609 }
3610
3611 if (inst->Memory.Qualifier & TGSI_MEMORY_VOLATILE)
3612 emit_waitcnt(ctx);
3613
3614 if (inst->Src[0].Register.File == TGSI_FILE_BUFFER) {
3615 load_emit_buffer(ctx, emit_data);
3616 return;
3617 }
3618
3619 if (inst->Memory.Texture == TGSI_TEXTURE_BUFFER) {
3620 emit_data->output[emit_data->chan] =
3621 lp_build_intrinsic(
3622 builder, "llvm.amdgcn.buffer.load.format.v4f32", emit_data->dst_type,
3623 emit_data->args, emit_data->arg_count,
3624 LP_FUNC_ATTR_READONLY);
3625 } else {
3626 get_image_intr_name("llvm.amdgcn.image.load",
3627 emit_data->dst_type, /* vdata */
3628 LLVMTypeOf(emit_data->args[0]), /* coords */
3629 LLVMTypeOf(emit_data->args[1]), /* rsrc */
3630 intrinsic_name, sizeof(intrinsic_name));
3631
3632 emit_data->output[emit_data->chan] =
3633 lp_build_intrinsic(
3634 builder, intrinsic_name, emit_data->dst_type,
3635 emit_data->args, emit_data->arg_count,
3636 LP_FUNC_ATTR_READONLY);
3637 }
3638 }
3639
3640 static void store_fetch_args(
3641 struct lp_build_tgsi_context * bld_base,
3642 struct lp_build_emit_data * emit_data)
3643 {
3644 struct si_shader_context *ctx = si_shader_context(bld_base);
3645 struct gallivm_state *gallivm = bld_base->base.gallivm;
3646 LLVMBuilderRef builder = gallivm->builder;
3647 const struct tgsi_full_instruction * inst = emit_data->inst;
3648 struct tgsi_full_src_register memory;
3649 LLVMValueRef chans[4];
3650 LLVMValueRef data;
3651 LLVMValueRef rsrc;
3652 unsigned chan;
3653
3654 emit_data->dst_type = LLVMVoidTypeInContext(gallivm->context);
3655
3656 for (chan = 0; chan < 4; ++chan) {
3657 chans[chan] = lp_build_emit_fetch(bld_base, inst, 1, chan);
3658 }
3659 data = lp_build_gather_values(gallivm, chans, 4);
3660
3661 emit_data->args[emit_data->arg_count++] = data;
3662
3663 memory = tgsi_full_src_register_from_dst(&inst->Dst[0]);
3664
3665 if (inst->Dst[0].Register.File == TGSI_FILE_BUFFER) {
3666 LLVMValueRef offset;
3667 LLVMValueRef tmp;
3668
3669 rsrc = shader_buffer_fetch_rsrc(ctx, &memory);
3670
3671 tmp = lp_build_emit_fetch(bld_base, inst, 0, 0);
3672 offset = LLVMBuildBitCast(builder, tmp, bld_base->uint_bld.elem_type, "");
3673
3674 buffer_append_args(ctx, emit_data, rsrc, bld_base->uint_bld.zero,
3675 offset, false);
3676 } else if (inst->Dst[0].Register.File == TGSI_FILE_IMAGE) {
3677 unsigned target = inst->Memory.Texture;
3678 LLVMValueRef coords;
3679
3680 coords = image_fetch_coords(bld_base, inst, 0);
3681
3682 if (target == TGSI_TEXTURE_BUFFER) {
3683 image_fetch_rsrc(bld_base, &memory, true, target, &rsrc);
3684
3685 rsrc = extract_rsrc_top_half(ctx, rsrc);
3686 buffer_append_args(ctx, emit_data, rsrc, coords,
3687 bld_base->uint_bld.zero, false);
3688 } else {
3689 emit_data->args[1] = coords;
3690 image_fetch_rsrc(bld_base, &memory, true, target,
3691 &emit_data->args[2]);
3692 emit_data->args[3] = lp_build_const_int32(gallivm, 15); /* dmask */
3693 emit_data->arg_count = 4;
3694
3695 image_append_args(ctx, emit_data, target, false);
3696 }
3697 }
3698 }
3699
3700 static void store_emit_buffer(
3701 struct si_shader_context *ctx,
3702 struct lp_build_emit_data *emit_data)
3703 {
3704 const struct tgsi_full_instruction *inst = emit_data->inst;
3705 struct gallivm_state *gallivm = &ctx->gallivm;
3706 LLVMBuilderRef builder = gallivm->builder;
3707 struct lp_build_context *uint_bld = &ctx->soa.bld_base.uint_bld;
3708 LLVMValueRef base_data = emit_data->args[0];
3709 LLVMValueRef base_offset = emit_data->args[3];
3710 unsigned writemask = inst->Dst[0].Register.WriteMask;
3711
3712 while (writemask) {
3713 int start, count;
3714 const char *intrinsic_name;
3715 LLVMValueRef data;
3716 LLVMValueRef offset;
3717 LLVMValueRef tmp;
3718
3719 u_bit_scan_consecutive_range(&writemask, &start, &count);
3720
3721 /* Due to an LLVM limitation, split 3-element writes
3722 * into a 2-element and a 1-element write. */
3723 if (count == 3) {
3724 writemask |= 1 << (start + 2);
3725 count = 2;
3726 }
3727
3728 if (count == 4) {
3729 data = base_data;
3730 intrinsic_name = "llvm.amdgcn.buffer.store.v4f32";
3731 } else if (count == 2) {
3732 LLVMTypeRef v2f32 = LLVMVectorType(ctx->f32, 2);
3733
3734 tmp = LLVMBuildExtractElement(
3735 builder, base_data,
3736 lp_build_const_int32(gallivm, start), "");
3737 data = LLVMBuildInsertElement(
3738 builder, LLVMGetUndef(v2f32), tmp,
3739 uint_bld->zero, "");
3740
3741 tmp = LLVMBuildExtractElement(
3742 builder, base_data,
3743 lp_build_const_int32(gallivm, start + 1), "");
3744 data = LLVMBuildInsertElement(
3745 builder, data, tmp, uint_bld->one, "");
3746
3747 intrinsic_name = "llvm.amdgcn.buffer.store.v2f32";
3748 } else {
3749 assert(count == 1);
3750 data = LLVMBuildExtractElement(
3751 builder, base_data,
3752 lp_build_const_int32(gallivm, start), "");
3753 intrinsic_name = "llvm.amdgcn.buffer.store.f32";
3754 }
3755
3756 offset = base_offset;
3757 if (start != 0) {
3758 offset = LLVMBuildAdd(
3759 builder, offset,
3760 lp_build_const_int32(gallivm, start * 4), "");
3761 }
3762
3763 emit_data->args[0] = data;
3764 emit_data->args[3] = offset;
3765
3766 lp_build_intrinsic(
3767 builder, intrinsic_name, emit_data->dst_type,
3768 emit_data->args, emit_data->arg_count, 0);
3769 }
3770 }
3771
3772 static void store_emit_memory(
3773 struct si_shader_context *ctx,
3774 struct lp_build_emit_data *emit_data)
3775 {
3776 const struct tgsi_full_instruction *inst = emit_data->inst;
3777 struct gallivm_state *gallivm = &ctx->gallivm;
3778 struct lp_build_context *base = &ctx->soa.bld_base.base;
3779 LLVMBuilderRef builder = gallivm->builder;
3780 unsigned writemask = inst->Dst[0].Register.WriteMask;
3781 LLVMValueRef ptr, derived_ptr, data, index;
3782 int chan;
3783
3784 ptr = get_memory_ptr(ctx, inst, base->elem_type, 0);
3785
3786 for (chan = 0; chan < 4; ++chan) {
3787 if (!(writemask & (1 << chan))) {
3788 continue;
3789 }
3790 data = lp_build_emit_fetch(&ctx->soa.bld_base, inst, 1, chan);
3791 index = lp_build_const_int32(gallivm, chan);
3792 derived_ptr = LLVMBuildGEP(builder, ptr, &index, 1, "");
3793 LLVMBuildStore(builder, data, derived_ptr);
3794 }
3795 }
3796
3797 static void store_emit(
3798 const struct lp_build_tgsi_action *action,
3799 struct lp_build_tgsi_context *bld_base,
3800 struct lp_build_emit_data *emit_data)
3801 {
3802 struct si_shader_context *ctx = si_shader_context(bld_base);
3803 struct gallivm_state *gallivm = bld_base->base.gallivm;
3804 LLVMBuilderRef builder = gallivm->builder;
3805 const struct tgsi_full_instruction * inst = emit_data->inst;
3806 unsigned target = inst->Memory.Texture;
3807 char intrinsic_name[64];
3808
3809 if (inst->Dst[0].Register.File == TGSI_FILE_MEMORY) {
3810 store_emit_memory(ctx, emit_data);
3811 return;
3812 }
3813
3814 if (inst->Memory.Qualifier & TGSI_MEMORY_VOLATILE)
3815 emit_waitcnt(ctx);
3816
3817 if (inst->Dst[0].Register.File == TGSI_FILE_BUFFER) {
3818 store_emit_buffer(ctx, emit_data);
3819 return;
3820 }
3821
3822 if (target == TGSI_TEXTURE_BUFFER) {
3823 emit_data->output[emit_data->chan] = lp_build_intrinsic(
3824 builder, "llvm.amdgcn.buffer.store.format.v4f32",
3825 emit_data->dst_type, emit_data->args,
3826 emit_data->arg_count, 0);
3827 } else {
3828 get_image_intr_name("llvm.amdgcn.image.store",
3829 LLVMTypeOf(emit_data->args[0]), /* vdata */
3830 LLVMTypeOf(emit_data->args[1]), /* coords */
3831 LLVMTypeOf(emit_data->args[2]), /* rsrc */
3832 intrinsic_name, sizeof(intrinsic_name));
3833
3834 emit_data->output[emit_data->chan] =
3835 lp_build_intrinsic(
3836 builder, intrinsic_name, emit_data->dst_type,
3837 emit_data->args, emit_data->arg_count, 0);
3838 }
3839 }
3840
3841 static void atomic_fetch_args(
3842 struct lp_build_tgsi_context * bld_base,
3843 struct lp_build_emit_data * emit_data)
3844 {
3845 struct si_shader_context *ctx = si_shader_context(bld_base);
3846 struct gallivm_state *gallivm = bld_base->base.gallivm;
3847 LLVMBuilderRef builder = gallivm->builder;
3848 const struct tgsi_full_instruction * inst = emit_data->inst;
3849 LLVMValueRef data1, data2;
3850 LLVMValueRef rsrc;
3851 LLVMValueRef tmp;
3852
3853 emit_data->dst_type = bld_base->base.elem_type;
3854
3855 tmp = lp_build_emit_fetch(bld_base, inst, 2, 0);
3856 data1 = LLVMBuildBitCast(builder, tmp, bld_base->uint_bld.elem_type, "");
3857
3858 if (inst->Instruction.Opcode == TGSI_OPCODE_ATOMCAS) {
3859 tmp = lp_build_emit_fetch(bld_base, inst, 3, 0);
3860 data2 = LLVMBuildBitCast(builder, tmp, bld_base->uint_bld.elem_type, "");
3861 }
3862
3863 /* llvm.amdgcn.image/buffer.atomic.cmpswap reflect the hardware order
3864 * of arguments, which is reversed relative to TGSI (and GLSL)
3865 */
3866 if (inst->Instruction.Opcode == TGSI_OPCODE_ATOMCAS)
3867 emit_data->args[emit_data->arg_count++] = data2;
3868 emit_data->args[emit_data->arg_count++] = data1;
3869
3870 if (inst->Src[0].Register.File == TGSI_FILE_BUFFER) {
3871 LLVMValueRef offset;
3872
3873 rsrc = shader_buffer_fetch_rsrc(ctx, &inst->Src[0]);
3874
3875 tmp = lp_build_emit_fetch(bld_base, inst, 1, 0);
3876 offset = LLVMBuildBitCast(builder, tmp, bld_base->uint_bld.elem_type, "");
3877
3878 buffer_append_args(ctx, emit_data, rsrc, bld_base->uint_bld.zero,
3879 offset, true);
3880 } else if (inst->Src[0].Register.File == TGSI_FILE_IMAGE) {
3881 unsigned target = inst->Memory.Texture;
3882 LLVMValueRef coords;
3883
3884 image_fetch_rsrc(bld_base, &inst->Src[0], true, target, &rsrc);
3885 coords = image_fetch_coords(bld_base, inst, 1);
3886
3887 if (target == TGSI_TEXTURE_BUFFER) {
3888 rsrc = extract_rsrc_top_half(ctx, rsrc);
3889 buffer_append_args(ctx, emit_data, rsrc, coords,
3890 bld_base->uint_bld.zero, true);
3891 } else {
3892 emit_data->args[emit_data->arg_count++] = coords;
3893 emit_data->args[emit_data->arg_count++] = rsrc;
3894
3895 image_append_args(ctx, emit_data, target, true);
3896 }
3897 }
3898 }
3899
3900 static void atomic_emit_memory(struct si_shader_context *ctx,
3901 struct lp_build_emit_data *emit_data) {
3902 struct gallivm_state *gallivm = &ctx->gallivm;
3903 LLVMBuilderRef builder = gallivm->builder;
3904 const struct tgsi_full_instruction * inst = emit_data->inst;
3905 LLVMValueRef ptr, result, arg;
3906
3907 ptr = get_memory_ptr(ctx, inst, ctx->i32, 1);
3908
3909 arg = lp_build_emit_fetch(&ctx->soa.bld_base, inst, 2, 0);
3910 arg = LLVMBuildBitCast(builder, arg, ctx->i32, "");
3911
3912 if (inst->Instruction.Opcode == TGSI_OPCODE_ATOMCAS) {
3913 LLVMValueRef new_data;
3914 new_data = lp_build_emit_fetch(&ctx->soa.bld_base,
3915 inst, 3, 0);
3916
3917 new_data = LLVMBuildBitCast(builder, new_data, ctx->i32, "");
3918
3919 #if HAVE_LLVM >= 0x309
3920 result = LLVMBuildAtomicCmpXchg(builder, ptr, arg, new_data,
3921 LLVMAtomicOrderingSequentiallyConsistent,
3922 LLVMAtomicOrderingSequentiallyConsistent,
3923 false);
3924 #endif
3925
3926 result = LLVMBuildExtractValue(builder, result, 0, "");
3927 } else {
3928 LLVMAtomicRMWBinOp op;
3929
3930 switch(inst->Instruction.Opcode) {
3931 case TGSI_OPCODE_ATOMUADD:
3932 op = LLVMAtomicRMWBinOpAdd;
3933 break;
3934 case TGSI_OPCODE_ATOMXCHG:
3935 op = LLVMAtomicRMWBinOpXchg;
3936 break;
3937 case TGSI_OPCODE_ATOMAND:
3938 op = LLVMAtomicRMWBinOpAnd;
3939 break;
3940 case TGSI_OPCODE_ATOMOR:
3941 op = LLVMAtomicRMWBinOpOr;
3942 break;
3943 case TGSI_OPCODE_ATOMXOR:
3944 op = LLVMAtomicRMWBinOpXor;
3945 break;
3946 case TGSI_OPCODE_ATOMUMIN:
3947 op = LLVMAtomicRMWBinOpUMin;
3948 break;
3949 case TGSI_OPCODE_ATOMUMAX:
3950 op = LLVMAtomicRMWBinOpUMax;
3951 break;
3952 case TGSI_OPCODE_ATOMIMIN:
3953 op = LLVMAtomicRMWBinOpMin;
3954 break;
3955 case TGSI_OPCODE_ATOMIMAX:
3956 op = LLVMAtomicRMWBinOpMax;
3957 break;
3958 default:
3959 unreachable("unknown atomic opcode");
3960 }
3961
3962 result = LLVMBuildAtomicRMW(builder, op, ptr, arg,
3963 LLVMAtomicOrderingSequentiallyConsistent,
3964 false);
3965 }
3966 emit_data->output[emit_data->chan] = LLVMBuildBitCast(builder, result, emit_data->dst_type, "");
3967 }
3968
3969 static void atomic_emit(
3970 const struct lp_build_tgsi_action *action,
3971 struct lp_build_tgsi_context *bld_base,
3972 struct lp_build_emit_data *emit_data)
3973 {
3974 struct si_shader_context *ctx = si_shader_context(bld_base);
3975 struct gallivm_state *gallivm = bld_base->base.gallivm;
3976 LLVMBuilderRef builder = gallivm->builder;
3977 const struct tgsi_full_instruction * inst = emit_data->inst;
3978 char intrinsic_name[40];
3979 LLVMValueRef tmp;
3980
3981 if (inst->Src[0].Register.File == TGSI_FILE_MEMORY) {
3982 atomic_emit_memory(ctx, emit_data);
3983 return;
3984 }
3985
3986 if (inst->Src[0].Register.File == TGSI_FILE_BUFFER ||
3987 inst->Memory.Texture == TGSI_TEXTURE_BUFFER) {
3988 snprintf(intrinsic_name, sizeof(intrinsic_name),
3989 "llvm.amdgcn.buffer.atomic.%s", action->intr_name);
3990 } else {
3991 LLVMValueRef coords;
3992 char coords_type[8];
3993
3994 if (inst->Instruction.Opcode == TGSI_OPCODE_ATOMCAS)
3995 coords = emit_data->args[2];
3996 else
3997 coords = emit_data->args[1];
3998
3999 build_type_name_for_intr(LLVMTypeOf(coords), coords_type, sizeof(coords_type));
4000 snprintf(intrinsic_name, sizeof(intrinsic_name),
4001 "llvm.amdgcn.image.atomic.%s.%s",
4002 action->intr_name, coords_type);
4003 }
4004
4005 tmp = lp_build_intrinsic(
4006 builder, intrinsic_name, bld_base->uint_bld.elem_type,
4007 emit_data->args, emit_data->arg_count, 0);
4008 emit_data->output[emit_data->chan] =
4009 LLVMBuildBitCast(builder, tmp, bld_base->base.elem_type, "");
4010 }
4011
4012 static void resq_fetch_args(
4013 struct lp_build_tgsi_context * bld_base,
4014 struct lp_build_emit_data * emit_data)
4015 {
4016 struct si_shader_context *ctx = si_shader_context(bld_base);
4017 struct gallivm_state *gallivm = bld_base->base.gallivm;
4018 const struct tgsi_full_instruction *inst = emit_data->inst;
4019 const struct tgsi_full_src_register *reg = &inst->Src[0];
4020
4021 emit_data->dst_type = ctx->v4i32;
4022
4023 if (reg->Register.File == TGSI_FILE_BUFFER) {
4024 emit_data->args[0] = shader_buffer_fetch_rsrc(ctx, reg);
4025 emit_data->arg_count = 1;
4026 } else if (inst->Memory.Texture == TGSI_TEXTURE_BUFFER) {
4027 image_fetch_rsrc(bld_base, reg, false, inst->Memory.Texture,
4028 &emit_data->args[0]);
4029 emit_data->arg_count = 1;
4030 } else {
4031 emit_data->args[0] = bld_base->uint_bld.zero; /* mip level */
4032 image_fetch_rsrc(bld_base, reg, false, inst->Memory.Texture,
4033 &emit_data->args[1]);
4034 emit_data->args[2] = lp_build_const_int32(gallivm, 15); /* dmask */
4035 emit_data->args[3] = bld_base->uint_bld.zero; /* unorm */
4036 emit_data->args[4] = bld_base->uint_bld.zero; /* r128 */
4037 emit_data->args[5] = tgsi_is_array_image(inst->Memory.Texture) ?
4038 bld_base->uint_bld.one : bld_base->uint_bld.zero; /* da */
4039 emit_data->args[6] = bld_base->uint_bld.zero; /* glc */
4040 emit_data->args[7] = bld_base->uint_bld.zero; /* slc */
4041 emit_data->args[8] = bld_base->uint_bld.zero; /* tfe */
4042 emit_data->args[9] = bld_base->uint_bld.zero; /* lwe */
4043 emit_data->arg_count = 10;
4044 }
4045 }
4046
4047 static void resq_emit(
4048 const struct lp_build_tgsi_action *action,
4049 struct lp_build_tgsi_context *bld_base,
4050 struct lp_build_emit_data *emit_data)
4051 {
4052 struct gallivm_state *gallivm = bld_base->base.gallivm;
4053 LLVMBuilderRef builder = gallivm->builder;
4054 const struct tgsi_full_instruction *inst = emit_data->inst;
4055 LLVMValueRef out;
4056
4057 if (inst->Src[0].Register.File == TGSI_FILE_BUFFER) {
4058 out = LLVMBuildExtractElement(builder, emit_data->args[0],
4059 lp_build_const_int32(gallivm, 2), "");
4060 } else if (inst->Memory.Texture == TGSI_TEXTURE_BUFFER) {
4061 out = get_buffer_size(bld_base, emit_data->args[0]);
4062 } else {
4063 out = lp_build_intrinsic(
4064 builder, "llvm.SI.getresinfo.i32", emit_data->dst_type,
4065 emit_data->args, emit_data->arg_count,
4066 LP_FUNC_ATTR_READNONE);
4067
4068 /* Divide the number of layers by 6 to get the number of cubes. */
4069 if (inst->Memory.Texture == TGSI_TEXTURE_CUBE_ARRAY) {
4070 LLVMValueRef imm2 = lp_build_const_int32(gallivm, 2);
4071 LLVMValueRef imm6 = lp_build_const_int32(gallivm, 6);
4072
4073 LLVMValueRef z = LLVMBuildExtractElement(builder, out, imm2, "");
4074 z = LLVMBuildSDiv(builder, z, imm6, "");
4075 out = LLVMBuildInsertElement(builder, out, z, imm2, "");
4076 }
4077 }
4078
4079 emit_data->output[emit_data->chan] = out;
4080 }
4081
4082 static void set_tex_fetch_args(struct si_shader_context *ctx,
4083 struct lp_build_emit_data *emit_data,
4084 unsigned opcode, unsigned target,
4085 LLVMValueRef res_ptr, LLVMValueRef samp_ptr,
4086 LLVMValueRef *param, unsigned count,
4087 unsigned dmask)
4088 {
4089 struct gallivm_state *gallivm = &ctx->gallivm;
4090 unsigned num_args;
4091 unsigned is_rect = target == TGSI_TEXTURE_RECT;
4092
4093 /* Pad to power of two vector */
4094 while (count < util_next_power_of_two(count))
4095 param[count++] = LLVMGetUndef(ctx->i32);
4096
4097 /* Texture coordinates. */
4098 if (count > 1)
4099 emit_data->args[0] = lp_build_gather_values(gallivm, param, count);
4100 else
4101 emit_data->args[0] = param[0];
4102
4103 /* Resource. */
4104 emit_data->args[1] = res_ptr;
4105 num_args = 2;
4106
4107 if (opcode == TGSI_OPCODE_TXF || opcode == TGSI_OPCODE_TXQ)
4108 emit_data->dst_type = ctx->v4i32;
4109 else {
4110 emit_data->dst_type = ctx->v4f32;
4111
4112 emit_data->args[num_args++] = samp_ptr;
4113 }
4114
4115 emit_data->args[num_args++] = lp_build_const_int32(gallivm, dmask);
4116 emit_data->args[num_args++] = lp_build_const_int32(gallivm, is_rect); /* unorm */
4117 emit_data->args[num_args++] = lp_build_const_int32(gallivm, 0); /* r128 */
4118 emit_data->args[num_args++] = lp_build_const_int32(gallivm,
4119 tgsi_is_array_sampler(target)); /* da */
4120 emit_data->args[num_args++] = lp_build_const_int32(gallivm, 0); /* glc */
4121 emit_data->args[num_args++] = lp_build_const_int32(gallivm, 0); /* slc */
4122 emit_data->args[num_args++] = lp_build_const_int32(gallivm, 0); /* tfe */
4123 emit_data->args[num_args++] = lp_build_const_int32(gallivm, 0); /* lwe */
4124
4125 emit_data->arg_count = num_args;
4126 }
4127
4128 static const struct lp_build_tgsi_action tex_action;
4129
4130 enum desc_type {
4131 DESC_IMAGE,
4132 DESC_FMASK,
4133 DESC_SAMPLER
4134 };
4135
4136 static LLVMTypeRef const_array(LLVMTypeRef elem_type, int num_elements)
4137 {
4138 return LLVMPointerType(LLVMArrayType(elem_type, num_elements),
4139 CONST_ADDR_SPACE);
4140 }
4141
4142 /**
4143 * Load an image view, fmask view. or sampler state descriptor.
4144 */
4145 static LLVMValueRef load_sampler_desc_custom(struct si_shader_context *ctx,
4146 LLVMValueRef list, LLVMValueRef index,
4147 enum desc_type type)
4148 {
4149 struct gallivm_state *gallivm = &ctx->gallivm;
4150 LLVMBuilderRef builder = gallivm->builder;
4151
4152 switch (type) {
4153 case DESC_IMAGE:
4154 /* The image is at [0:7]. */
4155 index = LLVMBuildMul(builder, index, LLVMConstInt(ctx->i32, 2, 0), "");
4156 break;
4157 case DESC_FMASK:
4158 /* The FMASK is at [8:15]. */
4159 index = LLVMBuildMul(builder, index, LLVMConstInt(ctx->i32, 2, 0), "");
4160 index = LLVMBuildAdd(builder, index, LLVMConstInt(ctx->i32, 1, 0), "");
4161 break;
4162 case DESC_SAMPLER:
4163 /* The sampler state is at [12:15]. */
4164 index = LLVMBuildMul(builder, index, LLVMConstInt(ctx->i32, 4, 0), "");
4165 index = LLVMBuildAdd(builder, index, LLVMConstInt(ctx->i32, 3, 0), "");
4166 list = LLVMBuildPointerCast(builder, list,
4167 const_array(ctx->v4i32, 0), "");
4168 break;
4169 }
4170
4171 return build_indexed_load_const(ctx, list, index);
4172 }
4173
4174 static LLVMValueRef load_sampler_desc(struct si_shader_context *ctx,
4175 LLVMValueRef index, enum desc_type type)
4176 {
4177 LLVMValueRef list = LLVMGetParam(ctx->main_fn,
4178 SI_PARAM_SAMPLERS);
4179
4180 return load_sampler_desc_custom(ctx, list, index, type);
4181 }
4182
4183 /* Disable anisotropic filtering if BASE_LEVEL == LAST_LEVEL.
4184 *
4185 * SI-CI:
4186 * If BASE_LEVEL == LAST_LEVEL, the shader must disable anisotropic
4187 * filtering manually. The driver sets img7 to a mask clearing
4188 * MAX_ANISO_RATIO if BASE_LEVEL == LAST_LEVEL. The shader must do:
4189 * s_and_b32 samp0, samp0, img7
4190 *
4191 * VI:
4192 * The ANISO_OVERRIDE sampler field enables this fix in TA.
4193 */
4194 static LLVMValueRef sici_fix_sampler_aniso(struct si_shader_context *ctx,
4195 LLVMValueRef res, LLVMValueRef samp)
4196 {
4197 LLVMBuilderRef builder = ctx->gallivm.builder;
4198 LLVMValueRef img7, samp0;
4199
4200 if (ctx->screen->b.chip_class >= VI)
4201 return samp;
4202
4203 img7 = LLVMBuildExtractElement(builder, res,
4204 LLVMConstInt(ctx->i32, 7, 0), "");
4205 samp0 = LLVMBuildExtractElement(builder, samp,
4206 LLVMConstInt(ctx->i32, 0, 0), "");
4207 samp0 = LLVMBuildAnd(builder, samp0, img7, "");
4208 return LLVMBuildInsertElement(builder, samp, samp0,
4209 LLVMConstInt(ctx->i32, 0, 0), "");
4210 }
4211
4212 static void tex_fetch_ptrs(
4213 struct lp_build_tgsi_context *bld_base,
4214 struct lp_build_emit_data *emit_data,
4215 LLVMValueRef *res_ptr, LLVMValueRef *samp_ptr, LLVMValueRef *fmask_ptr)
4216 {
4217 struct si_shader_context *ctx = si_shader_context(bld_base);
4218 const struct tgsi_full_instruction *inst = emit_data->inst;
4219 unsigned target = inst->Texture.Texture;
4220 unsigned sampler_src;
4221 unsigned sampler_index;
4222 LLVMValueRef index;
4223
4224 sampler_src = emit_data->inst->Instruction.NumSrcRegs - 1;
4225 sampler_index = emit_data->inst->Src[sampler_src].Register.Index;
4226
4227 if (emit_data->inst->Src[sampler_src].Register.Indirect) {
4228 const struct tgsi_full_src_register *reg = &emit_data->inst->Src[sampler_src];
4229
4230 index = get_bounded_indirect_index(ctx,
4231 &reg->Indirect,
4232 reg->Register.Index,
4233 SI_NUM_SAMPLERS);
4234 } else {
4235 index = LLVMConstInt(ctx->i32, sampler_index, 0);
4236 }
4237
4238 *res_ptr = load_sampler_desc(ctx, index, DESC_IMAGE);
4239
4240 if (target == TGSI_TEXTURE_2D_MSAA ||
4241 target == TGSI_TEXTURE_2D_ARRAY_MSAA) {
4242 if (samp_ptr)
4243 *samp_ptr = NULL;
4244 if (fmask_ptr)
4245 *fmask_ptr = load_sampler_desc(ctx, index, DESC_FMASK);
4246 } else {
4247 if (samp_ptr) {
4248 *samp_ptr = load_sampler_desc(ctx, index, DESC_SAMPLER);
4249 *samp_ptr = sici_fix_sampler_aniso(ctx, *res_ptr, *samp_ptr);
4250 }
4251 if (fmask_ptr)
4252 *fmask_ptr = NULL;
4253 }
4254 }
4255
4256 static void txq_fetch_args(
4257 struct lp_build_tgsi_context *bld_base,
4258 struct lp_build_emit_data *emit_data)
4259 {
4260 struct si_shader_context *ctx = si_shader_context(bld_base);
4261 struct gallivm_state *gallivm = bld_base->base.gallivm;
4262 LLVMBuilderRef builder = gallivm->builder;
4263 const struct tgsi_full_instruction *inst = emit_data->inst;
4264 unsigned target = inst->Texture.Texture;
4265 LLVMValueRef res_ptr;
4266 LLVMValueRef address;
4267
4268 tex_fetch_ptrs(bld_base, emit_data, &res_ptr, NULL, NULL);
4269
4270 if (target == TGSI_TEXTURE_BUFFER) {
4271 /* Read the size from the buffer descriptor directly. */
4272 LLVMValueRef res = LLVMBuildBitCast(builder, res_ptr, ctx->v8i32, "");
4273 emit_data->args[0] = get_buffer_size(bld_base, res);
4274 return;
4275 }
4276
4277 /* Textures - set the mip level. */
4278 address = lp_build_emit_fetch(bld_base, inst, 0, TGSI_CHAN_X);
4279
4280 set_tex_fetch_args(ctx, emit_data, TGSI_OPCODE_TXQ, target, res_ptr,
4281 NULL, &address, 1, 0xf);
4282 }
4283
4284 static void txq_emit(const struct lp_build_tgsi_action *action,
4285 struct lp_build_tgsi_context *bld_base,
4286 struct lp_build_emit_data *emit_data)
4287 {
4288 struct lp_build_context *base = &bld_base->base;
4289 unsigned target = emit_data->inst->Texture.Texture;
4290
4291 if (target == TGSI_TEXTURE_BUFFER) {
4292 /* Just return the buffer size. */
4293 emit_data->output[emit_data->chan] = emit_data->args[0];
4294 return;
4295 }
4296
4297 emit_data->output[emit_data->chan] = lp_build_intrinsic(
4298 base->gallivm->builder, "llvm.SI.getresinfo.i32",
4299 emit_data->dst_type, emit_data->args, emit_data->arg_count,
4300 LP_FUNC_ATTR_READNONE);
4301
4302 /* Divide the number of layers by 6 to get the number of cubes. */
4303 if (target == TGSI_TEXTURE_CUBE_ARRAY ||
4304 target == TGSI_TEXTURE_SHADOWCUBE_ARRAY) {
4305 LLVMBuilderRef builder = bld_base->base.gallivm->builder;
4306 LLVMValueRef two = lp_build_const_int32(bld_base->base.gallivm, 2);
4307 LLVMValueRef six = lp_build_const_int32(bld_base->base.gallivm, 6);
4308
4309 LLVMValueRef v4 = emit_data->output[emit_data->chan];
4310 LLVMValueRef z = LLVMBuildExtractElement(builder, v4, two, "");
4311 z = LLVMBuildSDiv(builder, z, six, "");
4312
4313 emit_data->output[emit_data->chan] =
4314 LLVMBuildInsertElement(builder, v4, z, two, "");
4315 }
4316 }
4317
4318 static void tex_fetch_args(
4319 struct lp_build_tgsi_context *bld_base,
4320 struct lp_build_emit_data *emit_data)
4321 {
4322 struct si_shader_context *ctx = si_shader_context(bld_base);
4323 struct gallivm_state *gallivm = bld_base->base.gallivm;
4324 const struct tgsi_full_instruction *inst = emit_data->inst;
4325 unsigned opcode = inst->Instruction.Opcode;
4326 unsigned target = inst->Texture.Texture;
4327 LLVMValueRef coords[5], derivs[6];
4328 LLVMValueRef address[16];
4329 unsigned num_coords = tgsi_util_get_texture_coord_dim(target);
4330 int ref_pos = tgsi_util_get_shadow_ref_src_index(target);
4331 unsigned count = 0;
4332 unsigned chan;
4333 unsigned num_deriv_channels = 0;
4334 bool has_offset = inst->Texture.NumOffsets > 0;
4335 LLVMValueRef res_ptr, samp_ptr, fmask_ptr = NULL;
4336 unsigned dmask = 0xf;
4337
4338 tex_fetch_ptrs(bld_base, emit_data, &res_ptr, &samp_ptr, &fmask_ptr);
4339
4340 if (target == TGSI_TEXTURE_BUFFER) {
4341 LLVMTypeRef v2i128 = LLVMVectorType(ctx->i128, 2);
4342
4343 /* Bitcast and truncate v8i32 to v16i8. */
4344 LLVMValueRef res = res_ptr;
4345 res = LLVMBuildBitCast(gallivm->builder, res, v2i128, "");
4346 res = LLVMBuildExtractElement(gallivm->builder, res, bld_base->uint_bld.one, "");
4347 res = LLVMBuildBitCast(gallivm->builder, res, ctx->v16i8, "");
4348
4349 emit_data->dst_type = ctx->v4f32;
4350 emit_data->args[0] = res;
4351 emit_data->args[1] = bld_base->uint_bld.zero;
4352 emit_data->args[2] = lp_build_emit_fetch(bld_base, emit_data->inst, 0, TGSI_CHAN_X);
4353 emit_data->arg_count = 3;
4354 return;
4355 }
4356
4357 /* Fetch and project texture coordinates */
4358 coords[3] = lp_build_emit_fetch(bld_base, emit_data->inst, 0, TGSI_CHAN_W);
4359 for (chan = 0; chan < 3; chan++ ) {
4360 coords[chan] = lp_build_emit_fetch(bld_base,
4361 emit_data->inst, 0,
4362 chan);
4363 if (opcode == TGSI_OPCODE_TXP)
4364 coords[chan] = lp_build_emit_llvm_binary(bld_base,
4365 TGSI_OPCODE_DIV,
4366 coords[chan],
4367 coords[3]);
4368 }
4369
4370 if (opcode == TGSI_OPCODE_TXP)
4371 coords[3] = bld_base->base.one;
4372
4373 /* Pack offsets. */
4374 if (has_offset && opcode != TGSI_OPCODE_TXF) {
4375 /* The offsets are six-bit signed integers packed like this:
4376 * X=[5:0], Y=[13:8], and Z=[21:16].
4377 */
4378 LLVMValueRef offset[3], pack;
4379
4380 assert(inst->Texture.NumOffsets == 1);
4381
4382 for (chan = 0; chan < 3; chan++) {
4383 offset[chan] = lp_build_emit_fetch_texoffset(bld_base,
4384 emit_data->inst, 0, chan);
4385 offset[chan] = LLVMBuildAnd(gallivm->builder, offset[chan],
4386 lp_build_const_int32(gallivm, 0x3f), "");
4387 if (chan)
4388 offset[chan] = LLVMBuildShl(gallivm->builder, offset[chan],
4389 lp_build_const_int32(gallivm, chan*8), "");
4390 }
4391
4392 pack = LLVMBuildOr(gallivm->builder, offset[0], offset[1], "");
4393 pack = LLVMBuildOr(gallivm->builder, pack, offset[2], "");
4394 address[count++] = pack;
4395 }
4396
4397 /* Pack LOD bias value */
4398 if (opcode == TGSI_OPCODE_TXB)
4399 address[count++] = coords[3];
4400 if (opcode == TGSI_OPCODE_TXB2)
4401 address[count++] = lp_build_emit_fetch(bld_base, inst, 1, TGSI_CHAN_X);
4402
4403 /* Pack depth comparison value */
4404 if (tgsi_is_shadow_target(target) && opcode != TGSI_OPCODE_LODQ) {
4405 LLVMValueRef z;
4406
4407 if (target == TGSI_TEXTURE_SHADOWCUBE_ARRAY) {
4408 z = lp_build_emit_fetch(bld_base, inst, 1, TGSI_CHAN_X);
4409 } else {
4410 assert(ref_pos >= 0);
4411 z = coords[ref_pos];
4412 }
4413
4414 /* TC-compatible HTILE promotes Z16 and Z24 to Z32_FLOAT,
4415 * so the depth comparison value isn't clamped for Z16 and
4416 * Z24 anymore. Do it manually here.
4417 *
4418 * It's unnecessary if the original texture format was
4419 * Z32_FLOAT, but we don't know that here.
4420 */
4421 if (ctx->screen->b.chip_class == VI)
4422 z = si_llvm_saturate(bld_base, z);
4423
4424 address[count++] = z;
4425 }
4426
4427 /* Pack user derivatives */
4428 if (opcode == TGSI_OPCODE_TXD) {
4429 int param, num_src_deriv_channels;
4430
4431 switch (target) {
4432 case TGSI_TEXTURE_3D:
4433 num_src_deriv_channels = 3;
4434 num_deriv_channels = 3;
4435 break;
4436 case TGSI_TEXTURE_2D:
4437 case TGSI_TEXTURE_SHADOW2D:
4438 case TGSI_TEXTURE_RECT:
4439 case TGSI_TEXTURE_SHADOWRECT:
4440 case TGSI_TEXTURE_2D_ARRAY:
4441 case TGSI_TEXTURE_SHADOW2D_ARRAY:
4442 num_src_deriv_channels = 2;
4443 num_deriv_channels = 2;
4444 break;
4445 case TGSI_TEXTURE_CUBE:
4446 case TGSI_TEXTURE_SHADOWCUBE:
4447 case TGSI_TEXTURE_CUBE_ARRAY:
4448 case TGSI_TEXTURE_SHADOWCUBE_ARRAY:
4449 /* Cube derivatives will be converted to 2D. */
4450 num_src_deriv_channels = 3;
4451 num_deriv_channels = 2;
4452 break;
4453 case TGSI_TEXTURE_1D:
4454 case TGSI_TEXTURE_SHADOW1D:
4455 case TGSI_TEXTURE_1D_ARRAY:
4456 case TGSI_TEXTURE_SHADOW1D_ARRAY:
4457 num_src_deriv_channels = 1;
4458 num_deriv_channels = 1;
4459 break;
4460 default:
4461 unreachable("invalid target");
4462 }
4463
4464 for (param = 0; param < 2; param++)
4465 for (chan = 0; chan < num_src_deriv_channels; chan++)
4466 derivs[param * num_src_deriv_channels + chan] =
4467 lp_build_emit_fetch(bld_base, inst, param+1, chan);
4468 }
4469
4470 if (target == TGSI_TEXTURE_CUBE ||
4471 target == TGSI_TEXTURE_CUBE_ARRAY ||
4472 target == TGSI_TEXTURE_SHADOWCUBE ||
4473 target == TGSI_TEXTURE_SHADOWCUBE_ARRAY)
4474 si_prepare_cube_coords(bld_base, emit_data, coords, derivs);
4475
4476 if (opcode == TGSI_OPCODE_TXD)
4477 for (int i = 0; i < num_deriv_channels * 2; i++)
4478 address[count++] = derivs[i];
4479
4480 /* Pack texture coordinates */
4481 address[count++] = coords[0];
4482 if (num_coords > 1)
4483 address[count++] = coords[1];
4484 if (num_coords > 2)
4485 address[count++] = coords[2];
4486
4487 /* Pack LOD or sample index */
4488 if (opcode == TGSI_OPCODE_TXL || opcode == TGSI_OPCODE_TXF)
4489 address[count++] = coords[3];
4490 else if (opcode == TGSI_OPCODE_TXL2)
4491 address[count++] = lp_build_emit_fetch(bld_base, inst, 1, TGSI_CHAN_X);
4492
4493 if (count > 16) {
4494 assert(!"Cannot handle more than 16 texture address parameters");
4495 count = 16;
4496 }
4497
4498 for (chan = 0; chan < count; chan++ ) {
4499 address[chan] = LLVMBuildBitCast(gallivm->builder,
4500 address[chan], ctx->i32, "");
4501 }
4502
4503 /* Adjust the sample index according to FMASK.
4504 *
4505 * For uncompressed MSAA surfaces, FMASK should return 0x76543210,
4506 * which is the identity mapping. Each nibble says which physical sample
4507 * should be fetched to get that sample.
4508 *
4509 * For example, 0x11111100 means there are only 2 samples stored and
4510 * the second sample covers 3/4 of the pixel. When reading samples 0
4511 * and 1, return physical sample 0 (determined by the first two 0s
4512 * in FMASK), otherwise return physical sample 1.
4513 *
4514 * The sample index should be adjusted as follows:
4515 * sample_index = (fmask >> (sample_index * 4)) & 0xF;
4516 */
4517 if (target == TGSI_TEXTURE_2D_MSAA ||
4518 target == TGSI_TEXTURE_2D_ARRAY_MSAA) {
4519 struct lp_build_context *uint_bld = &bld_base->uint_bld;
4520 struct lp_build_emit_data txf_emit_data = *emit_data;
4521 LLVMValueRef txf_address[4];
4522 unsigned txf_count = count;
4523 struct tgsi_full_instruction inst = {};
4524
4525 memcpy(txf_address, address, sizeof(txf_address));
4526
4527 if (target == TGSI_TEXTURE_2D_MSAA) {
4528 txf_address[2] = bld_base->uint_bld.zero;
4529 }
4530 txf_address[3] = bld_base->uint_bld.zero;
4531
4532 /* Read FMASK using TXF. */
4533 inst.Instruction.Opcode = TGSI_OPCODE_TXF;
4534 inst.Texture.Texture = target;
4535 txf_emit_data.inst = &inst;
4536 txf_emit_data.chan = 0;
4537 set_tex_fetch_args(ctx, &txf_emit_data, TGSI_OPCODE_TXF,
4538 target, fmask_ptr, NULL,
4539 txf_address, txf_count, 0xf);
4540 build_tex_intrinsic(&tex_action, bld_base, &txf_emit_data);
4541
4542 /* Initialize some constants. */
4543 LLVMValueRef four = LLVMConstInt(ctx->i32, 4, 0);
4544 LLVMValueRef F = LLVMConstInt(ctx->i32, 0xF, 0);
4545
4546 /* Apply the formula. */
4547 LLVMValueRef fmask =
4548 LLVMBuildExtractElement(gallivm->builder,
4549 txf_emit_data.output[0],
4550 uint_bld->zero, "");
4551
4552 unsigned sample_chan = target == TGSI_TEXTURE_2D_MSAA ? 2 : 3;
4553
4554 LLVMValueRef sample_index4 =
4555 LLVMBuildMul(gallivm->builder, address[sample_chan], four, "");
4556
4557 LLVMValueRef shifted_fmask =
4558 LLVMBuildLShr(gallivm->builder, fmask, sample_index4, "");
4559
4560 LLVMValueRef final_sample =
4561 LLVMBuildAnd(gallivm->builder, shifted_fmask, F, "");
4562
4563 /* Don't rewrite the sample index if WORD1.DATA_FORMAT of the FMASK
4564 * resource descriptor is 0 (invalid),
4565 */
4566 LLVMValueRef fmask_desc =
4567 LLVMBuildBitCast(gallivm->builder, fmask_ptr,
4568 ctx->v8i32, "");
4569
4570 LLVMValueRef fmask_word1 =
4571 LLVMBuildExtractElement(gallivm->builder, fmask_desc,
4572 uint_bld->one, "");
4573
4574 LLVMValueRef word1_is_nonzero =
4575 LLVMBuildICmp(gallivm->builder, LLVMIntNE,
4576 fmask_word1, uint_bld->zero, "");
4577
4578 /* Replace the MSAA sample index. */
4579 address[sample_chan] =
4580 LLVMBuildSelect(gallivm->builder, word1_is_nonzero,
4581 final_sample, address[sample_chan], "");
4582 }
4583
4584 if (opcode == TGSI_OPCODE_TXF) {
4585 /* add tex offsets */
4586 if (inst->Texture.NumOffsets) {
4587 struct lp_build_context *uint_bld = &bld_base->uint_bld;
4588 struct lp_build_tgsi_soa_context *bld = lp_soa_context(bld_base);
4589 const struct tgsi_texture_offset *off = inst->TexOffsets;
4590
4591 assert(inst->Texture.NumOffsets == 1);
4592
4593 switch (target) {
4594 case TGSI_TEXTURE_3D:
4595 address[2] = lp_build_add(uint_bld, address[2],
4596 bld->immediates[off->Index][off->SwizzleZ]);
4597 /* fall through */
4598 case TGSI_TEXTURE_2D:
4599 case TGSI_TEXTURE_SHADOW2D:
4600 case TGSI_TEXTURE_RECT:
4601 case TGSI_TEXTURE_SHADOWRECT:
4602 case TGSI_TEXTURE_2D_ARRAY:
4603 case TGSI_TEXTURE_SHADOW2D_ARRAY:
4604 address[1] =
4605 lp_build_add(uint_bld, address[1],
4606 bld->immediates[off->Index][off->SwizzleY]);
4607 /* fall through */
4608 case TGSI_TEXTURE_1D:
4609 case TGSI_TEXTURE_SHADOW1D:
4610 case TGSI_TEXTURE_1D_ARRAY:
4611 case TGSI_TEXTURE_SHADOW1D_ARRAY:
4612 address[0] =
4613 lp_build_add(uint_bld, address[0],
4614 bld->immediates[off->Index][off->SwizzleX]);
4615 break;
4616 /* texture offsets do not apply to other texture targets */
4617 }
4618 }
4619 }
4620
4621 if (opcode == TGSI_OPCODE_TG4) {
4622 unsigned gather_comp = 0;
4623
4624 /* DMASK was repurposed for GATHER4. 4 components are always
4625 * returned and DMASK works like a swizzle - it selects
4626 * the component to fetch. The only valid DMASK values are
4627 * 1=red, 2=green, 4=blue, 8=alpha. (e.g. 1 returns
4628 * (red,red,red,red) etc.) The ISA document doesn't mention
4629 * this.
4630 */
4631
4632 /* Get the component index from src1.x for Gather4. */
4633 if (!tgsi_is_shadow_target(target)) {
4634 LLVMValueRef (*imms)[4] = lp_soa_context(bld_base)->immediates;
4635 LLVMValueRef comp_imm;
4636 struct tgsi_src_register src1 = inst->Src[1].Register;
4637
4638 assert(src1.File == TGSI_FILE_IMMEDIATE);
4639
4640 comp_imm = imms[src1.Index][src1.SwizzleX];
4641 gather_comp = LLVMConstIntGetZExtValue(comp_imm);
4642 gather_comp = CLAMP(gather_comp, 0, 3);
4643 }
4644
4645 dmask = 1 << gather_comp;
4646 }
4647
4648 set_tex_fetch_args(ctx, emit_data, opcode, target, res_ptr,
4649 samp_ptr, address, count, dmask);
4650 }
4651
4652 /* Gather4 should follow the same rules as bilinear filtering, but the hardware
4653 * incorrectly forces nearest filtering if the texture format is integer.
4654 * The only effect it has on Gather4, which always returns 4 texels for
4655 * bilinear filtering, is that the final coordinates are off by 0.5 of
4656 * the texel size.
4657 *
4658 * The workaround is to subtract 0.5 from the unnormalized coordinates,
4659 * or (0.5 / size) from the normalized coordinates.
4660 */
4661 static void si_lower_gather4_integer(struct si_shader_context *ctx,
4662 struct lp_build_emit_data *emit_data,
4663 const char *intr_name,
4664 unsigned coord_vgpr_index)
4665 {
4666 LLVMBuilderRef builder = ctx->gallivm.builder;
4667 LLVMValueRef coord = emit_data->args[0];
4668 LLVMValueRef half_texel[2];
4669 int c;
4670
4671 if (emit_data->inst->Texture.Texture == TGSI_TEXTURE_RECT ||
4672 emit_data->inst->Texture.Texture == TGSI_TEXTURE_SHADOWRECT) {
4673 half_texel[0] = half_texel[1] = LLVMConstReal(ctx->f32, -0.5);
4674 } else {
4675 struct tgsi_full_instruction txq_inst = {};
4676 struct lp_build_emit_data txq_emit_data = {};
4677
4678 /* Query the texture size. */
4679 txq_inst.Texture.Texture = emit_data->inst->Texture.Texture;
4680 txq_emit_data.inst = &txq_inst;
4681 txq_emit_data.dst_type = ctx->v4i32;
4682 set_tex_fetch_args(ctx, &txq_emit_data, TGSI_OPCODE_TXQ,
4683 txq_inst.Texture.Texture,
4684 emit_data->args[1], NULL,
4685 &ctx->soa.bld_base.uint_bld.zero,
4686 1, 0xf);
4687 txq_emit(NULL, &ctx->soa.bld_base, &txq_emit_data);
4688
4689 /* Compute -0.5 / size. */
4690 for (c = 0; c < 2; c++) {
4691 half_texel[c] =
4692 LLVMBuildExtractElement(builder, txq_emit_data.output[0],
4693 LLVMConstInt(ctx->i32, c, 0), "");
4694 half_texel[c] = LLVMBuildUIToFP(builder, half_texel[c], ctx->f32, "");
4695 half_texel[c] =
4696 lp_build_emit_llvm_unary(&ctx->soa.bld_base,
4697 TGSI_OPCODE_RCP, half_texel[c]);
4698 half_texel[c] = LLVMBuildFMul(builder, half_texel[c],
4699 LLVMConstReal(ctx->f32, -0.5), "");
4700 }
4701 }
4702
4703 for (c = 0; c < 2; c++) {
4704 LLVMValueRef tmp;
4705 LLVMValueRef index = LLVMConstInt(ctx->i32, coord_vgpr_index + c, 0);
4706
4707 tmp = LLVMBuildExtractElement(builder, coord, index, "");
4708 tmp = LLVMBuildBitCast(builder, tmp, ctx->f32, "");
4709 tmp = LLVMBuildFAdd(builder, tmp, half_texel[c], "");
4710 tmp = LLVMBuildBitCast(builder, tmp, ctx->i32, "");
4711 coord = LLVMBuildInsertElement(builder, coord, tmp, index, "");
4712 }
4713
4714 emit_data->args[0] = coord;
4715 emit_data->output[emit_data->chan] =
4716 lp_build_intrinsic(builder, intr_name, emit_data->dst_type,
4717 emit_data->args, emit_data->arg_count,
4718 LP_FUNC_ATTR_READNONE);
4719 }
4720
4721 static void build_tex_intrinsic(const struct lp_build_tgsi_action *action,
4722 struct lp_build_tgsi_context *bld_base,
4723 struct lp_build_emit_data *emit_data)
4724 {
4725 struct si_shader_context *ctx = si_shader_context(bld_base);
4726 struct lp_build_context *base = &bld_base->base;
4727 const struct tgsi_full_instruction *inst = emit_data->inst;
4728 unsigned opcode = inst->Instruction.Opcode;
4729 unsigned target = inst->Texture.Texture;
4730 char intr_name[127];
4731 bool has_offset = inst->Texture.NumOffsets > 0;
4732 bool is_shadow = tgsi_is_shadow_target(target);
4733 char type[64];
4734 const char *name = "llvm.SI.image.sample";
4735 const char *infix = "";
4736
4737 if (target == TGSI_TEXTURE_BUFFER) {
4738 emit_data->output[emit_data->chan] = lp_build_intrinsic(
4739 base->gallivm->builder,
4740 "llvm.SI.vs.load.input", emit_data->dst_type,
4741 emit_data->args, emit_data->arg_count,
4742 LP_FUNC_ATTR_READNONE);
4743 return;
4744 }
4745
4746 switch (opcode) {
4747 case TGSI_OPCODE_TXF:
4748 name = target == TGSI_TEXTURE_2D_MSAA ||
4749 target == TGSI_TEXTURE_2D_ARRAY_MSAA ?
4750 "llvm.SI.image.load" :
4751 "llvm.SI.image.load.mip";
4752 is_shadow = false;
4753 has_offset = false;
4754 break;
4755 case TGSI_OPCODE_LODQ:
4756 name = "llvm.SI.getlod";
4757 is_shadow = false;
4758 has_offset = false;
4759 break;
4760 case TGSI_OPCODE_TEX:
4761 case TGSI_OPCODE_TEX2:
4762 case TGSI_OPCODE_TXP:
4763 if (ctx->type != PIPE_SHADER_FRAGMENT)
4764 infix = ".lz";
4765 break;
4766 case TGSI_OPCODE_TXB:
4767 case TGSI_OPCODE_TXB2:
4768 assert(ctx->type == PIPE_SHADER_FRAGMENT);
4769 infix = ".b";
4770 break;
4771 case TGSI_OPCODE_TXL:
4772 case TGSI_OPCODE_TXL2:
4773 infix = ".l";
4774 break;
4775 case TGSI_OPCODE_TXD:
4776 infix = ".d";
4777 break;
4778 case TGSI_OPCODE_TG4:
4779 name = "llvm.SI.gather4";
4780 infix = ".lz";
4781 break;
4782 default:
4783 assert(0);
4784 return;
4785 }
4786
4787 /* Add the type and suffixes .c, .o if needed. */
4788 build_type_name_for_intr(LLVMTypeOf(emit_data->args[0]), type, sizeof(type));
4789 sprintf(intr_name, "%s%s%s%s.%s",
4790 name, is_shadow ? ".c" : "", infix,
4791 has_offset ? ".o" : "", type);
4792
4793 /* The hardware needs special lowering for Gather4 with integer formats. */
4794 if (opcode == TGSI_OPCODE_TG4) {
4795 struct tgsi_shader_info *info = &ctx->shader->selector->info;
4796 /* This will also work with non-constant indexing because of how
4797 * glsl_to_tgsi works and we intent to preserve that behavior.
4798 */
4799 const unsigned src_idx = 2;
4800 unsigned sampler = inst->Src[src_idx].Register.Index;
4801
4802 assert(inst->Src[src_idx].Register.File == TGSI_FILE_SAMPLER);
4803
4804 if (info->sampler_type[sampler] == TGSI_RETURN_TYPE_SINT ||
4805 info->sampler_type[sampler] == TGSI_RETURN_TYPE_UINT) {
4806 /* Texture coordinates start after:
4807 * {offset, bias, z-compare, derivatives}
4808 * Only the offset and z-compare can occur here.
4809 */
4810 si_lower_gather4_integer(ctx, emit_data, intr_name,
4811 (int)has_offset + (int)is_shadow);
4812 return;
4813 }
4814 }
4815
4816 emit_data->output[emit_data->chan] = lp_build_intrinsic(
4817 base->gallivm->builder, intr_name, emit_data->dst_type,
4818 emit_data->args, emit_data->arg_count,
4819 LP_FUNC_ATTR_READNONE);
4820 }
4821
4822 static void si_llvm_emit_txqs(
4823 const struct lp_build_tgsi_action *action,
4824 struct lp_build_tgsi_context *bld_base,
4825 struct lp_build_emit_data *emit_data)
4826 {
4827 struct si_shader_context *ctx = si_shader_context(bld_base);
4828 struct gallivm_state *gallivm = bld_base->base.gallivm;
4829 LLVMBuilderRef builder = gallivm->builder;
4830 LLVMValueRef res, samples;
4831 LLVMValueRef res_ptr, samp_ptr, fmask_ptr = NULL;
4832
4833 tex_fetch_ptrs(bld_base, emit_data, &res_ptr, &samp_ptr, &fmask_ptr);
4834
4835
4836 /* Read the samples from the descriptor directly. */
4837 res = LLVMBuildBitCast(builder, res_ptr, ctx->v8i32, "");
4838 samples = LLVMBuildExtractElement(
4839 builder, res,
4840 lp_build_const_int32(gallivm, 3), "");
4841 samples = LLVMBuildLShr(builder, samples,
4842 lp_build_const_int32(gallivm, 16), "");
4843 samples = LLVMBuildAnd(builder, samples,
4844 lp_build_const_int32(gallivm, 0xf), "");
4845 samples = LLVMBuildShl(builder, lp_build_const_int32(gallivm, 1),
4846 samples, "");
4847
4848 emit_data->output[emit_data->chan] = samples;
4849 }
4850
4851 /*
4852 * SI implements derivatives using the local data store (LDS)
4853 * All writes to the LDS happen in all executing threads at
4854 * the same time. TID is the Thread ID for the current
4855 * thread and is a value between 0 and 63, representing
4856 * the thread's position in the wavefront.
4857 *
4858 * For the pixel shader threads are grouped into quads of four pixels.
4859 * The TIDs of the pixels of a quad are:
4860 *
4861 * +------+------+
4862 * |4n + 0|4n + 1|
4863 * +------+------+
4864 * |4n + 2|4n + 3|
4865 * +------+------+
4866 *
4867 * So, masking the TID with 0xfffffffc yields the TID of the top left pixel
4868 * of the quad, masking with 0xfffffffd yields the TID of the top pixel of
4869 * the current pixel's column, and masking with 0xfffffffe yields the TID
4870 * of the left pixel of the current pixel's row.
4871 *
4872 * Adding 1 yields the TID of the pixel to the right of the left pixel, and
4873 * adding 2 yields the TID of the pixel below the top pixel.
4874 */
4875 /* masks for thread ID. */
4876 #define TID_MASK_TOP_LEFT 0xfffffffc
4877 #define TID_MASK_TOP 0xfffffffd
4878 #define TID_MASK_LEFT 0xfffffffe
4879
4880 static void si_llvm_emit_ddxy(
4881 const struct lp_build_tgsi_action *action,
4882 struct lp_build_tgsi_context *bld_base,
4883 struct lp_build_emit_data *emit_data)
4884 {
4885 struct si_shader_context *ctx = si_shader_context(bld_base);
4886 struct gallivm_state *gallivm = bld_base->base.gallivm;
4887 unsigned opcode = emit_data->info->opcode;
4888 LLVMValueRef thread_id, tl, trbl, tl_tid, trbl_tid, val, args[2];
4889 int idx;
4890 unsigned mask;
4891
4892 thread_id = get_thread_id(ctx);
4893
4894 if (opcode == TGSI_OPCODE_DDX_FINE)
4895 mask = TID_MASK_LEFT;
4896 else if (opcode == TGSI_OPCODE_DDY_FINE)
4897 mask = TID_MASK_TOP;
4898 else
4899 mask = TID_MASK_TOP_LEFT;
4900
4901 tl_tid = LLVMBuildAnd(gallivm->builder, thread_id,
4902 lp_build_const_int32(gallivm, mask), "");
4903
4904 /* for DDX we want to next X pixel, DDY next Y pixel. */
4905 idx = (opcode == TGSI_OPCODE_DDX || opcode == TGSI_OPCODE_DDX_FINE) ? 1 : 2;
4906 trbl_tid = LLVMBuildAdd(gallivm->builder, tl_tid,
4907 lp_build_const_int32(gallivm, idx), "");
4908
4909 val = LLVMBuildBitCast(gallivm->builder, emit_data->args[0], ctx->i32, "");
4910
4911 if (ctx->screen->has_ds_bpermute) {
4912 args[0] = LLVMBuildMul(gallivm->builder, tl_tid,
4913 lp_build_const_int32(gallivm, 4), "");
4914 args[1] = val;
4915 tl = lp_build_intrinsic(gallivm->builder,
4916 "llvm.amdgcn.ds.bpermute", ctx->i32,
4917 args, 2, LP_FUNC_ATTR_READNONE);
4918
4919 args[0] = LLVMBuildMul(gallivm->builder, trbl_tid,
4920 lp_build_const_int32(gallivm, 4), "");
4921 trbl = lp_build_intrinsic(gallivm->builder,
4922 "llvm.amdgcn.ds.bpermute", ctx->i32,
4923 args, 2, LP_FUNC_ATTR_READNONE);
4924 } else {
4925 LLVMValueRef store_ptr, load_ptr0, load_ptr1;
4926
4927 store_ptr = build_gep0(ctx, ctx->lds, thread_id);
4928 load_ptr0 = build_gep0(ctx, ctx->lds, tl_tid);
4929 load_ptr1 = build_gep0(ctx, ctx->lds, trbl_tid);
4930
4931 LLVMBuildStore(gallivm->builder, val, store_ptr);
4932 tl = LLVMBuildLoad(gallivm->builder, load_ptr0, "");
4933 trbl = LLVMBuildLoad(gallivm->builder, load_ptr1, "");
4934 }
4935
4936 tl = LLVMBuildBitCast(gallivm->builder, tl, ctx->f32, "");
4937 trbl = LLVMBuildBitCast(gallivm->builder, trbl, ctx->f32, "");
4938
4939 emit_data->output[emit_data->chan] =
4940 LLVMBuildFSub(gallivm->builder, trbl, tl, "");
4941 }
4942
4943 /*
4944 * this takes an I,J coordinate pair,
4945 * and works out the X and Y derivatives.
4946 * it returns DDX(I), DDX(J), DDY(I), DDY(J).
4947 */
4948 static LLVMValueRef si_llvm_emit_ddxy_interp(
4949 struct lp_build_tgsi_context *bld_base,
4950 LLVMValueRef interp_ij)
4951 {
4952 struct si_shader_context *ctx = si_shader_context(bld_base);
4953 struct gallivm_state *gallivm = bld_base->base.gallivm;
4954 LLVMValueRef result[4], a;
4955 unsigned i;
4956
4957 for (i = 0; i < 2; i++) {
4958 a = LLVMBuildExtractElement(gallivm->builder, interp_ij,
4959 LLVMConstInt(ctx->i32, i, 0), "");
4960 result[i] = lp_build_emit_llvm_unary(bld_base, TGSI_OPCODE_DDX, a);
4961 result[2+i] = lp_build_emit_llvm_unary(bld_base, TGSI_OPCODE_DDY, a);
4962 }
4963
4964 return lp_build_gather_values(gallivm, result, 4);
4965 }
4966
4967 static void interp_fetch_args(
4968 struct lp_build_tgsi_context *bld_base,
4969 struct lp_build_emit_data *emit_data)
4970 {
4971 struct si_shader_context *ctx = si_shader_context(bld_base);
4972 struct gallivm_state *gallivm = bld_base->base.gallivm;
4973 const struct tgsi_full_instruction *inst = emit_data->inst;
4974
4975 if (inst->Instruction.Opcode == TGSI_OPCODE_INTERP_OFFSET) {
4976 /* offset is in second src, first two channels */
4977 emit_data->args[0] = lp_build_emit_fetch(bld_base,
4978 emit_data->inst, 1,
4979 TGSI_CHAN_X);
4980 emit_data->args[1] = lp_build_emit_fetch(bld_base,
4981 emit_data->inst, 1,
4982 TGSI_CHAN_Y);
4983 emit_data->arg_count = 2;
4984 } else if (inst->Instruction.Opcode == TGSI_OPCODE_INTERP_SAMPLE) {
4985 LLVMValueRef sample_position;
4986 LLVMValueRef sample_id;
4987 LLVMValueRef halfval = lp_build_const_float(gallivm, 0.5f);
4988
4989 /* fetch sample ID, then fetch its sample position,
4990 * and place into first two channels.
4991 */
4992 sample_id = lp_build_emit_fetch(bld_base,
4993 emit_data->inst, 1, TGSI_CHAN_X);
4994 sample_id = LLVMBuildBitCast(gallivm->builder, sample_id,
4995 ctx->i32, "");
4996 sample_position = load_sample_position(ctx, sample_id);
4997
4998 emit_data->args[0] = LLVMBuildExtractElement(gallivm->builder,
4999 sample_position,
5000 lp_build_const_int32(gallivm, 0), "");
5001
5002 emit_data->args[0] = LLVMBuildFSub(gallivm->builder, emit_data->args[0], halfval, "");
5003 emit_data->args[1] = LLVMBuildExtractElement(gallivm->builder,
5004 sample_position,
5005 lp_build_const_int32(gallivm, 1), "");
5006 emit_data->args[1] = LLVMBuildFSub(gallivm->builder, emit_data->args[1], halfval, "");
5007 emit_data->arg_count = 2;
5008 }
5009 }
5010
5011 static void build_interp_intrinsic(const struct lp_build_tgsi_action *action,
5012 struct lp_build_tgsi_context *bld_base,
5013 struct lp_build_emit_data *emit_data)
5014 {
5015 struct si_shader_context *ctx = si_shader_context(bld_base);
5016 struct si_shader *shader = ctx->shader;
5017 struct gallivm_state *gallivm = bld_base->base.gallivm;
5018 LLVMValueRef interp_param;
5019 const struct tgsi_full_instruction *inst = emit_data->inst;
5020 const char *intr_name;
5021 int input_index = inst->Src[0].Register.Index;
5022 int chan;
5023 int i;
5024 LLVMValueRef attr_number;
5025 LLVMValueRef params = LLVMGetParam(ctx->main_fn, SI_PARAM_PRIM_MASK);
5026 int interp_param_idx;
5027 unsigned interp = shader->selector->info.input_interpolate[input_index];
5028 unsigned location;
5029
5030 assert(inst->Src[0].Register.File == TGSI_FILE_INPUT);
5031
5032 if (inst->Instruction.Opcode == TGSI_OPCODE_INTERP_OFFSET ||
5033 inst->Instruction.Opcode == TGSI_OPCODE_INTERP_SAMPLE)
5034 location = TGSI_INTERPOLATE_LOC_CENTER;
5035 else
5036 location = TGSI_INTERPOLATE_LOC_CENTROID;
5037
5038 interp_param_idx = lookup_interp_param_index(interp, location);
5039 if (interp_param_idx == -1)
5040 return;
5041 else if (interp_param_idx)
5042 interp_param = LLVMGetParam(ctx->main_fn, interp_param_idx);
5043 else
5044 interp_param = NULL;
5045
5046 attr_number = lp_build_const_int32(gallivm, input_index);
5047
5048 if (inst->Instruction.Opcode == TGSI_OPCODE_INTERP_OFFSET ||
5049 inst->Instruction.Opcode == TGSI_OPCODE_INTERP_SAMPLE) {
5050 LLVMValueRef ij_out[2];
5051 LLVMValueRef ddxy_out = si_llvm_emit_ddxy_interp(bld_base, interp_param);
5052
5053 /*
5054 * take the I then J parameters, and the DDX/Y for it, and
5055 * calculate the IJ inputs for the interpolator.
5056 * temp1 = ddx * offset/sample.x + I;
5057 * interp_param.I = ddy * offset/sample.y + temp1;
5058 * temp1 = ddx * offset/sample.x + J;
5059 * interp_param.J = ddy * offset/sample.y + temp1;
5060 */
5061 for (i = 0; i < 2; i++) {
5062 LLVMValueRef ix_ll = lp_build_const_int32(gallivm, i);
5063 LLVMValueRef iy_ll = lp_build_const_int32(gallivm, i + 2);
5064 LLVMValueRef ddx_el = LLVMBuildExtractElement(gallivm->builder,
5065 ddxy_out, ix_ll, "");
5066 LLVMValueRef ddy_el = LLVMBuildExtractElement(gallivm->builder,
5067 ddxy_out, iy_ll, "");
5068 LLVMValueRef interp_el = LLVMBuildExtractElement(gallivm->builder,
5069 interp_param, ix_ll, "");
5070 LLVMValueRef temp1, temp2;
5071
5072 interp_el = LLVMBuildBitCast(gallivm->builder, interp_el,
5073 ctx->f32, "");
5074
5075 temp1 = LLVMBuildFMul(gallivm->builder, ddx_el, emit_data->args[0], "");
5076
5077 temp1 = LLVMBuildFAdd(gallivm->builder, temp1, interp_el, "");
5078
5079 temp2 = LLVMBuildFMul(gallivm->builder, ddy_el, emit_data->args[1], "");
5080
5081 temp2 = LLVMBuildFAdd(gallivm->builder, temp2, temp1, "");
5082
5083 ij_out[i] = LLVMBuildBitCast(gallivm->builder,
5084 temp2, ctx->i32, "");
5085 }
5086 interp_param = lp_build_gather_values(bld_base->base.gallivm, ij_out, 2);
5087 }
5088
5089 intr_name = interp_param ? "llvm.SI.fs.interp" : "llvm.SI.fs.constant";
5090 for (chan = 0; chan < 4; chan++) {
5091 LLVMValueRef args[4];
5092 LLVMValueRef llvm_chan;
5093 unsigned schan;
5094
5095 schan = tgsi_util_get_full_src_register_swizzle(&inst->Src[0], chan);
5096 llvm_chan = lp_build_const_int32(gallivm, schan);
5097
5098 args[0] = llvm_chan;
5099 args[1] = attr_number;
5100 args[2] = params;
5101 args[3] = interp_param;
5102
5103 emit_data->output[chan] =
5104 lp_build_intrinsic(gallivm->builder, intr_name,
5105 ctx->f32, args, args[3] ? 4 : 3,
5106 LP_FUNC_ATTR_READNONE);
5107 }
5108 }
5109
5110 static unsigned si_llvm_get_stream(struct lp_build_tgsi_context *bld_base,
5111 struct lp_build_emit_data *emit_data)
5112 {
5113 LLVMValueRef (*imms)[4] = lp_soa_context(bld_base)->immediates;
5114 struct tgsi_src_register src0 = emit_data->inst->Src[0].Register;
5115 unsigned stream;
5116
5117 assert(src0.File == TGSI_FILE_IMMEDIATE);
5118
5119 stream = LLVMConstIntGetZExtValue(imms[src0.Index][src0.SwizzleX]) & 0x3;
5120 return stream;
5121 }
5122
5123 /* Emit one vertex from the geometry shader */
5124 static void si_llvm_emit_vertex(
5125 const struct lp_build_tgsi_action *action,
5126 struct lp_build_tgsi_context *bld_base,
5127 struct lp_build_emit_data *emit_data)
5128 {
5129 struct si_shader_context *ctx = si_shader_context(bld_base);
5130 struct lp_build_context *uint = &bld_base->uint_bld;
5131 struct si_shader *shader = ctx->shader;
5132 struct tgsi_shader_info *info = &shader->selector->info;
5133 struct gallivm_state *gallivm = bld_base->base.gallivm;
5134 LLVMValueRef soffset = LLVMGetParam(ctx->main_fn,
5135 SI_PARAM_GS2VS_OFFSET);
5136 LLVMValueRef gs_next_vertex;
5137 LLVMValueRef can_emit, kill;
5138 LLVMValueRef args[2];
5139 unsigned chan;
5140 int i;
5141 unsigned stream;
5142
5143 stream = si_llvm_get_stream(bld_base, emit_data);
5144
5145 /* Write vertex attribute values to GSVS ring */
5146 gs_next_vertex = LLVMBuildLoad(gallivm->builder,
5147 ctx->gs_next_vertex[stream],
5148 "");
5149
5150 /* If this thread has already emitted the declared maximum number of
5151 * vertices, kill it: excessive vertex emissions are not supposed to
5152 * have any effect, and GS threads have no externally observable
5153 * effects other than emitting vertices.
5154 */
5155 can_emit = LLVMBuildICmp(gallivm->builder, LLVMIntULE, gs_next_vertex,
5156 lp_build_const_int32(gallivm,
5157 shader->selector->gs_max_out_vertices), "");
5158 kill = lp_build_select(&bld_base->base, can_emit,
5159 lp_build_const_float(gallivm, 1.0f),
5160 lp_build_const_float(gallivm, -1.0f));
5161
5162 lp_build_intrinsic(gallivm->builder, "llvm.AMDGPU.kill",
5163 ctx->voidt, &kill, 1, 0);
5164
5165 for (i = 0; i < info->num_outputs; i++) {
5166 LLVMValueRef *out_ptr =
5167 ctx->soa.outputs[i];
5168
5169 for (chan = 0; chan < 4; chan++) {
5170 LLVMValueRef out_val = LLVMBuildLoad(gallivm->builder, out_ptr[chan], "");
5171 LLVMValueRef voffset =
5172 lp_build_const_int32(gallivm, (i * 4 + chan) *
5173 shader->selector->gs_max_out_vertices);
5174
5175 voffset = lp_build_add(uint, voffset, gs_next_vertex);
5176 voffset = lp_build_mul_imm(uint, voffset, 4);
5177
5178 out_val = LLVMBuildBitCast(gallivm->builder, out_val, ctx->i32, "");
5179
5180 build_tbuffer_store(ctx,
5181 ctx->gsvs_ring[stream],
5182 out_val, 1,
5183 voffset, soffset, 0,
5184 V_008F0C_BUF_DATA_FORMAT_32,
5185 V_008F0C_BUF_NUM_FORMAT_UINT,
5186 1, 0, 1, 1, 0);
5187 }
5188 }
5189 gs_next_vertex = lp_build_add(uint, gs_next_vertex,
5190 lp_build_const_int32(gallivm, 1));
5191
5192 LLVMBuildStore(gallivm->builder, gs_next_vertex, ctx->gs_next_vertex[stream]);
5193
5194 /* Signal vertex emission */
5195 args[0] = lp_build_const_int32(gallivm, SENDMSG_GS_OP_EMIT | SENDMSG_GS | (stream << 8));
5196 args[1] = LLVMGetParam(ctx->main_fn, SI_PARAM_GS_WAVE_ID);
5197 lp_build_intrinsic(gallivm->builder, "llvm.SI.sendmsg",
5198 ctx->voidt, args, 2, 0);
5199 }
5200
5201 /* Cut one primitive from the geometry shader */
5202 static void si_llvm_emit_primitive(
5203 const struct lp_build_tgsi_action *action,
5204 struct lp_build_tgsi_context *bld_base,
5205 struct lp_build_emit_data *emit_data)
5206 {
5207 struct si_shader_context *ctx = si_shader_context(bld_base);
5208 struct gallivm_state *gallivm = bld_base->base.gallivm;
5209 LLVMValueRef args[2];
5210 unsigned stream;
5211
5212 /* Signal primitive cut */
5213 stream = si_llvm_get_stream(bld_base, emit_data);
5214 args[0] = lp_build_const_int32(gallivm, SENDMSG_GS_OP_CUT | SENDMSG_GS | (stream << 8));
5215 args[1] = LLVMGetParam(ctx->main_fn, SI_PARAM_GS_WAVE_ID);
5216 lp_build_intrinsic(gallivm->builder, "llvm.SI.sendmsg",
5217 ctx->voidt, args, 2, 0);
5218 }
5219
5220 static void si_llvm_emit_barrier(const struct lp_build_tgsi_action *action,
5221 struct lp_build_tgsi_context *bld_base,
5222 struct lp_build_emit_data *emit_data)
5223 {
5224 struct si_shader_context *ctx = si_shader_context(bld_base);
5225 struct gallivm_state *gallivm = bld_base->base.gallivm;
5226
5227 /* The real barrier instruction isn’t needed, because an entire patch
5228 * always fits into a single wave.
5229 */
5230 if (ctx->type == PIPE_SHADER_TESS_CTRL) {
5231 emit_optimization_barrier(ctx);
5232 return;
5233 }
5234
5235 lp_build_intrinsic(gallivm->builder,
5236 HAVE_LLVM >= 0x0309 ? "llvm.amdgcn.s.barrier"
5237 : "llvm.AMDGPU.barrier.local",
5238 ctx->voidt, NULL, 0, 0);
5239 }
5240
5241 static const struct lp_build_tgsi_action tex_action = {
5242 .fetch_args = tex_fetch_args,
5243 .emit = build_tex_intrinsic,
5244 };
5245
5246 static const struct lp_build_tgsi_action interp_action = {
5247 .fetch_args = interp_fetch_args,
5248 .emit = build_interp_intrinsic,
5249 };
5250
5251 static void si_create_function(struct si_shader_context *ctx,
5252 const char *name,
5253 LLVMTypeRef *returns, unsigned num_returns,
5254 LLVMTypeRef *params, unsigned num_params,
5255 int last_sgpr)
5256 {
5257 int i;
5258
5259 si_llvm_create_func(ctx, name, returns, num_returns,
5260 params, num_params);
5261 si_llvm_shader_type(ctx->main_fn, ctx->type);
5262 ctx->return_value = LLVMGetUndef(ctx->return_type);
5263
5264 for (i = 0; i <= last_sgpr; ++i) {
5265 LLVMValueRef P = LLVMGetParam(ctx->main_fn, i);
5266
5267 /* The combination of:
5268 * - ByVal
5269 * - dereferenceable
5270 * - invariant.load
5271 * allows the optimization passes to move loads and reduces
5272 * SGPR spilling significantly.
5273 */
5274 if (LLVMGetTypeKind(LLVMTypeOf(P)) == LLVMPointerTypeKind) {
5275 lp_add_function_attr(ctx->main_fn, i + 1, LP_FUNC_ATTR_BYVAL);
5276 lp_add_attr_dereferenceable(P, UINT64_MAX);
5277 } else
5278 lp_add_function_attr(ctx->main_fn, i + 1, LP_FUNC_ATTR_INREG);
5279 }
5280
5281 if (ctx->screen->b.debug_flags & DBG_UNSAFE_MATH) {
5282 /* These were copied from some LLVM test. */
5283 LLVMAddTargetDependentFunctionAttr(ctx->main_fn,
5284 "less-precise-fpmad",
5285 "true");
5286 LLVMAddTargetDependentFunctionAttr(ctx->main_fn,
5287 "no-infs-fp-math",
5288 "true");
5289 LLVMAddTargetDependentFunctionAttr(ctx->main_fn,
5290 "no-nans-fp-math",
5291 "true");
5292 LLVMAddTargetDependentFunctionAttr(ctx->main_fn,
5293 "unsafe-fp-math",
5294 "true");
5295 }
5296 }
5297
5298 static void create_meta_data(struct si_shader_context *ctx)
5299 {
5300 struct gallivm_state *gallivm = ctx->soa.bld_base.base.gallivm;
5301
5302 ctx->invariant_load_md_kind = LLVMGetMDKindIDInContext(gallivm->context,
5303 "invariant.load", 14);
5304 ctx->range_md_kind = LLVMGetMDKindIDInContext(gallivm->context,
5305 "range", 5);
5306 ctx->uniform_md_kind = LLVMGetMDKindIDInContext(gallivm->context,
5307 "amdgpu.uniform", 14);
5308
5309 ctx->empty_md = LLVMMDNodeInContext(gallivm->context, NULL, 0);
5310 }
5311
5312 static void declare_streamout_params(struct si_shader_context *ctx,
5313 struct pipe_stream_output_info *so,
5314 LLVMTypeRef *params, LLVMTypeRef i32,
5315 unsigned *num_params)
5316 {
5317 int i;
5318
5319 /* Streamout SGPRs. */
5320 if (so->num_outputs) {
5321 if (ctx->type != PIPE_SHADER_TESS_EVAL)
5322 params[ctx->param_streamout_config = (*num_params)++] = i32;
5323 else
5324 ctx->param_streamout_config = ctx->param_tess_offchip;
5325
5326 params[ctx->param_streamout_write_index = (*num_params)++] = i32;
5327 }
5328 /* A streamout buffer offset is loaded if the stride is non-zero. */
5329 for (i = 0; i < 4; i++) {
5330 if (!so->stride[i])
5331 continue;
5332
5333 params[ctx->param_streamout_offset[i] = (*num_params)++] = i32;
5334 }
5335 }
5336
5337 static unsigned llvm_get_type_size(LLVMTypeRef type)
5338 {
5339 LLVMTypeKind kind = LLVMGetTypeKind(type);
5340
5341 switch (kind) {
5342 case LLVMIntegerTypeKind:
5343 return LLVMGetIntTypeWidth(type) / 8;
5344 case LLVMFloatTypeKind:
5345 return 4;
5346 case LLVMPointerTypeKind:
5347 return 8;
5348 case LLVMVectorTypeKind:
5349 return LLVMGetVectorSize(type) *
5350 llvm_get_type_size(LLVMGetElementType(type));
5351 case LLVMArrayTypeKind:
5352 return LLVMGetArrayLength(type) *
5353 llvm_get_type_size(LLVMGetElementType(type));
5354 default:
5355 assert(0);
5356 return 0;
5357 }
5358 }
5359
5360 static void declare_tess_lds(struct si_shader_context *ctx)
5361 {
5362 struct gallivm_state *gallivm = &ctx->gallivm;
5363 struct lp_build_tgsi_context *bld_base = &ctx->soa.bld_base;
5364 struct lp_build_context *uint = &bld_base->uint_bld;
5365
5366 unsigned lds_size = ctx->screen->b.chip_class >= CIK ? 65536 : 32768;
5367 ctx->lds = LLVMBuildIntToPtr(gallivm->builder, uint->zero,
5368 LLVMPointerType(LLVMArrayType(ctx->i32, lds_size / 4), LOCAL_ADDR_SPACE),
5369 "tess_lds");
5370 }
5371
5372 static void create_function(struct si_shader_context *ctx)
5373 {
5374 struct lp_build_tgsi_context *bld_base = &ctx->soa.bld_base;
5375 struct gallivm_state *gallivm = bld_base->base.gallivm;
5376 struct si_shader *shader = ctx->shader;
5377 LLVMTypeRef params[SI_NUM_PARAMS + SI_NUM_VERTEX_BUFFERS], v3i32;
5378 LLVMTypeRef returns[16+32*4];
5379 unsigned i, last_sgpr, num_params, num_return_sgprs;
5380 unsigned num_returns = 0;
5381 unsigned num_prolog_vgprs = 0;
5382
5383 v3i32 = LLVMVectorType(ctx->i32, 3);
5384
5385 params[SI_PARAM_RW_BUFFERS] = const_array(ctx->v16i8, SI_NUM_RW_BUFFERS);
5386 params[SI_PARAM_CONST_BUFFERS] = const_array(ctx->v16i8, SI_NUM_CONST_BUFFERS);
5387 params[SI_PARAM_SAMPLERS] = const_array(ctx->v8i32, SI_NUM_SAMPLERS);
5388 params[SI_PARAM_IMAGES] = const_array(ctx->v8i32, SI_NUM_IMAGES);
5389 params[SI_PARAM_SHADER_BUFFERS] = const_array(ctx->v4i32, SI_NUM_SHADER_BUFFERS);
5390
5391 switch (ctx->type) {
5392 case PIPE_SHADER_VERTEX:
5393 params[SI_PARAM_VERTEX_BUFFERS] = const_array(ctx->v16i8, SI_NUM_VERTEX_BUFFERS);
5394 params[SI_PARAM_BASE_VERTEX] = ctx->i32;
5395 params[SI_PARAM_START_INSTANCE] = ctx->i32;
5396 params[SI_PARAM_DRAWID] = ctx->i32;
5397 num_params = SI_PARAM_DRAWID+1;
5398
5399 if (shader->key.as_es) {
5400 params[ctx->param_es2gs_offset = num_params++] = ctx->i32;
5401 } else if (shader->key.as_ls) {
5402 params[SI_PARAM_LS_OUT_LAYOUT] = ctx->i32;
5403 num_params = SI_PARAM_LS_OUT_LAYOUT+1;
5404 } else {
5405 if (shader->is_gs_copy_shader) {
5406 num_params = SI_PARAM_RW_BUFFERS+1;
5407 } else {
5408 params[SI_PARAM_VS_STATE_BITS] = ctx->i32;
5409 num_params = SI_PARAM_VS_STATE_BITS+1;
5410 }
5411
5412 /* The locations of the other parameters are assigned dynamically. */
5413 declare_streamout_params(ctx, &shader->selector->so,
5414 params, ctx->i32, &num_params);
5415 }
5416
5417 last_sgpr = num_params-1;
5418
5419 /* VGPRs */
5420 params[ctx->param_vertex_id = num_params++] = ctx->i32;
5421 params[ctx->param_rel_auto_id = num_params++] = ctx->i32;
5422 params[ctx->param_vs_prim_id = num_params++] = ctx->i32;
5423 params[ctx->param_instance_id = num_params++] = ctx->i32;
5424
5425 if (!shader->is_gs_copy_shader) {
5426 /* Vertex load indices. */
5427 ctx->param_vertex_index0 = num_params;
5428
5429 for (i = 0; i < shader->selector->info.num_inputs; i++)
5430 params[num_params++] = ctx->i32;
5431
5432 num_prolog_vgprs += shader->selector->info.num_inputs;
5433
5434 /* PrimitiveID output. */
5435 if (!shader->key.as_es && !shader->key.as_ls)
5436 for (i = 0; i <= VS_EPILOG_PRIMID_LOC; i++)
5437 returns[num_returns++] = ctx->f32;
5438 }
5439 break;
5440
5441 case PIPE_SHADER_TESS_CTRL:
5442 params[SI_PARAM_TCS_OFFCHIP_LAYOUT] = ctx->i32;
5443 params[SI_PARAM_TCS_OUT_OFFSETS] = ctx->i32;
5444 params[SI_PARAM_TCS_OUT_LAYOUT] = ctx->i32;
5445 params[SI_PARAM_TCS_IN_LAYOUT] = ctx->i32;
5446 params[ctx->param_oc_lds = SI_PARAM_TCS_OC_LDS] = ctx->i32;
5447 params[SI_PARAM_TESS_FACTOR_OFFSET] = ctx->i32;
5448 last_sgpr = SI_PARAM_TESS_FACTOR_OFFSET;
5449
5450 /* VGPRs */
5451 params[SI_PARAM_PATCH_ID] = ctx->i32;
5452 params[SI_PARAM_REL_IDS] = ctx->i32;
5453 num_params = SI_PARAM_REL_IDS+1;
5454
5455 /* SI_PARAM_TCS_OC_LDS and PARAM_TESS_FACTOR_OFFSET are
5456 * placed after the user SGPRs.
5457 */
5458 for (i = 0; i < SI_TCS_NUM_USER_SGPR + 2; i++)
5459 returns[num_returns++] = ctx->i32; /* SGPRs */
5460
5461 for (i = 0; i < 3; i++)
5462 returns[num_returns++] = ctx->f32; /* VGPRs */
5463 break;
5464
5465 case PIPE_SHADER_TESS_EVAL:
5466 params[SI_PARAM_TCS_OFFCHIP_LAYOUT] = ctx->i32;
5467 num_params = SI_PARAM_TCS_OFFCHIP_LAYOUT+1;
5468
5469 if (shader->key.as_es) {
5470 params[ctx->param_oc_lds = num_params++] = ctx->i32;
5471 params[ctx->param_tess_offchip = num_params++] = ctx->i32;
5472 params[ctx->param_es2gs_offset = num_params++] = ctx->i32;
5473 } else {
5474 params[ctx->param_tess_offchip = num_params++] = ctx->i32;
5475 declare_streamout_params(ctx, &shader->selector->so,
5476 params, ctx->i32, &num_params);
5477 params[ctx->param_oc_lds = num_params++] = ctx->i32;
5478 }
5479 last_sgpr = num_params - 1;
5480
5481 /* VGPRs */
5482 params[ctx->param_tes_u = num_params++] = ctx->f32;
5483 params[ctx->param_tes_v = num_params++] = ctx->f32;
5484 params[ctx->param_tes_rel_patch_id = num_params++] = ctx->i32;
5485 params[ctx->param_tes_patch_id = num_params++] = ctx->i32;
5486
5487 /* PrimitiveID output. */
5488 if (!shader->key.as_es)
5489 for (i = 0; i <= VS_EPILOG_PRIMID_LOC; i++)
5490 returns[num_returns++] = ctx->f32;
5491 break;
5492
5493 case PIPE_SHADER_GEOMETRY:
5494 params[SI_PARAM_GS2VS_OFFSET] = ctx->i32;
5495 params[SI_PARAM_GS_WAVE_ID] = ctx->i32;
5496 last_sgpr = SI_PARAM_GS_WAVE_ID;
5497
5498 /* VGPRs */
5499 params[SI_PARAM_VTX0_OFFSET] = ctx->i32;
5500 params[SI_PARAM_VTX1_OFFSET] = ctx->i32;
5501 params[SI_PARAM_PRIMITIVE_ID] = ctx->i32;
5502 params[SI_PARAM_VTX2_OFFSET] = ctx->i32;
5503 params[SI_PARAM_VTX3_OFFSET] = ctx->i32;
5504 params[SI_PARAM_VTX4_OFFSET] = ctx->i32;
5505 params[SI_PARAM_VTX5_OFFSET] = ctx->i32;
5506 params[SI_PARAM_GS_INSTANCE_ID] = ctx->i32;
5507 num_params = SI_PARAM_GS_INSTANCE_ID+1;
5508 break;
5509
5510 case PIPE_SHADER_FRAGMENT:
5511 params[SI_PARAM_ALPHA_REF] = ctx->f32;
5512 params[SI_PARAM_PRIM_MASK] = ctx->i32;
5513 last_sgpr = SI_PARAM_PRIM_MASK;
5514 params[SI_PARAM_PERSP_SAMPLE] = ctx->v2i32;
5515 params[SI_PARAM_PERSP_CENTER] = ctx->v2i32;
5516 params[SI_PARAM_PERSP_CENTROID] = ctx->v2i32;
5517 params[SI_PARAM_PERSP_PULL_MODEL] = v3i32;
5518 params[SI_PARAM_LINEAR_SAMPLE] = ctx->v2i32;
5519 params[SI_PARAM_LINEAR_CENTER] = ctx->v2i32;
5520 params[SI_PARAM_LINEAR_CENTROID] = ctx->v2i32;
5521 params[SI_PARAM_LINE_STIPPLE_TEX] = ctx->f32;
5522 params[SI_PARAM_POS_X_FLOAT] = ctx->f32;
5523 params[SI_PARAM_POS_Y_FLOAT] = ctx->f32;
5524 params[SI_PARAM_POS_Z_FLOAT] = ctx->f32;
5525 params[SI_PARAM_POS_W_FLOAT] = ctx->f32;
5526 params[SI_PARAM_FRONT_FACE] = ctx->i32;
5527 shader->info.face_vgpr_index = 20;
5528 params[SI_PARAM_ANCILLARY] = ctx->i32;
5529 params[SI_PARAM_SAMPLE_COVERAGE] = ctx->f32;
5530 params[SI_PARAM_POS_FIXED_PT] = ctx->i32;
5531 num_params = SI_PARAM_POS_FIXED_PT+1;
5532
5533 /* Color inputs from the prolog. */
5534 if (shader->selector->info.colors_read) {
5535 unsigned num_color_elements =
5536 util_bitcount(shader->selector->info.colors_read);
5537
5538 assert(num_params + num_color_elements <= ARRAY_SIZE(params));
5539 for (i = 0; i < num_color_elements; i++)
5540 params[num_params++] = ctx->f32;
5541
5542 num_prolog_vgprs += num_color_elements;
5543 }
5544
5545 /* Outputs for the epilog. */
5546 num_return_sgprs = SI_SGPR_ALPHA_REF + 1;
5547 num_returns =
5548 num_return_sgprs +
5549 util_bitcount(shader->selector->info.colors_written) * 4 +
5550 shader->selector->info.writes_z +
5551 shader->selector->info.writes_stencil +
5552 shader->selector->info.writes_samplemask +
5553 1 /* SampleMaskIn */;
5554
5555 num_returns = MAX2(num_returns,
5556 num_return_sgprs +
5557 PS_EPILOG_SAMPLEMASK_MIN_LOC + 1);
5558
5559 for (i = 0; i < num_return_sgprs; i++)
5560 returns[i] = ctx->i32;
5561 for (; i < num_returns; i++)
5562 returns[i] = ctx->f32;
5563 break;
5564
5565 case PIPE_SHADER_COMPUTE:
5566 params[SI_PARAM_GRID_SIZE] = v3i32;
5567 params[SI_PARAM_BLOCK_SIZE] = v3i32;
5568 params[SI_PARAM_BLOCK_ID] = v3i32;
5569 last_sgpr = SI_PARAM_BLOCK_ID;
5570
5571 params[SI_PARAM_THREAD_ID] = v3i32;
5572 num_params = SI_PARAM_THREAD_ID + 1;
5573 break;
5574 default:
5575 assert(0 && "unimplemented shader");
5576 return;
5577 }
5578
5579 assert(num_params <= ARRAY_SIZE(params));
5580
5581 si_create_function(ctx, "main", returns, num_returns, params,
5582 num_params, last_sgpr);
5583
5584 /* Reserve register locations for VGPR inputs the PS prolog may need. */
5585 if (ctx->type == PIPE_SHADER_FRAGMENT &&
5586 ctx->separate_prolog) {
5587 si_llvm_add_attribute(ctx->main_fn,
5588 "InitialPSInputAddr",
5589 S_0286D0_PERSP_SAMPLE_ENA(1) |
5590 S_0286D0_PERSP_CENTER_ENA(1) |
5591 S_0286D0_PERSP_CENTROID_ENA(1) |
5592 S_0286D0_LINEAR_SAMPLE_ENA(1) |
5593 S_0286D0_LINEAR_CENTER_ENA(1) |
5594 S_0286D0_LINEAR_CENTROID_ENA(1) |
5595 S_0286D0_FRONT_FACE_ENA(1) |
5596 S_0286D0_POS_FIXED_PT_ENA(1));
5597 } else if (ctx->type == PIPE_SHADER_COMPUTE) {
5598 const unsigned *properties = shader->selector->info.properties;
5599 unsigned max_work_group_size =
5600 properties[TGSI_PROPERTY_CS_FIXED_BLOCK_WIDTH] *
5601 properties[TGSI_PROPERTY_CS_FIXED_BLOCK_HEIGHT] *
5602 properties[TGSI_PROPERTY_CS_FIXED_BLOCK_DEPTH];
5603
5604 if (!max_work_group_size) {
5605 /* This is a variable group size compute shader,
5606 * compile it for the maximum possible group size.
5607 */
5608 max_work_group_size = SI_MAX_VARIABLE_THREADS_PER_BLOCK;
5609 }
5610
5611 si_llvm_add_attribute(ctx->main_fn,
5612 "amdgpu-max-work-group-size",
5613 max_work_group_size);
5614 }
5615
5616 shader->info.num_input_sgprs = 0;
5617 shader->info.num_input_vgprs = 0;
5618
5619 for (i = 0; i <= last_sgpr; ++i)
5620 shader->info.num_input_sgprs += llvm_get_type_size(params[i]) / 4;
5621
5622 for (; i < num_params; ++i)
5623 shader->info.num_input_vgprs += llvm_get_type_size(params[i]) / 4;
5624
5625 assert(shader->info.num_input_vgprs >= num_prolog_vgprs);
5626 shader->info.num_input_vgprs -= num_prolog_vgprs;
5627
5628 if (!ctx->screen->has_ds_bpermute &&
5629 bld_base->info &&
5630 (bld_base->info->opcode_count[TGSI_OPCODE_DDX] > 0 ||
5631 bld_base->info->opcode_count[TGSI_OPCODE_DDY] > 0 ||
5632 bld_base->info->opcode_count[TGSI_OPCODE_DDX_FINE] > 0 ||
5633 bld_base->info->opcode_count[TGSI_OPCODE_DDY_FINE] > 0 ||
5634 bld_base->info->opcode_count[TGSI_OPCODE_INTERP_OFFSET] > 0 ||
5635 bld_base->info->opcode_count[TGSI_OPCODE_INTERP_SAMPLE] > 0))
5636 ctx->lds =
5637 LLVMAddGlobalInAddressSpace(gallivm->module,
5638 LLVMArrayType(ctx->i32, 64),
5639 "ddxy_lds",
5640 LOCAL_ADDR_SPACE);
5641
5642 if ((ctx->type == PIPE_SHADER_VERTEX && shader->key.as_ls) ||
5643 ctx->type == PIPE_SHADER_TESS_CTRL ||
5644 ctx->type == PIPE_SHADER_TESS_EVAL)
5645 declare_tess_lds(ctx);
5646 }
5647
5648 /**
5649 * Load ESGS and GSVS ring buffer resource descriptors and save the variables
5650 * for later use.
5651 */
5652 static void preload_ring_buffers(struct si_shader_context *ctx)
5653 {
5654 struct gallivm_state *gallivm =
5655 ctx->soa.bld_base.base.gallivm;
5656
5657 LLVMValueRef buf_ptr = LLVMGetParam(ctx->main_fn,
5658 SI_PARAM_RW_BUFFERS);
5659
5660 if ((ctx->type == PIPE_SHADER_VERTEX &&
5661 ctx->shader->key.as_es) ||
5662 (ctx->type == PIPE_SHADER_TESS_EVAL &&
5663 ctx->shader->key.as_es) ||
5664 ctx->type == PIPE_SHADER_GEOMETRY) {
5665 unsigned ring =
5666 ctx->type == PIPE_SHADER_GEOMETRY ? SI_GS_RING_ESGS
5667 : SI_ES_RING_ESGS;
5668 LLVMValueRef offset = lp_build_const_int32(gallivm, ring);
5669
5670 ctx->esgs_ring =
5671 build_indexed_load_const(ctx, buf_ptr, offset);
5672 }
5673
5674 if (ctx->shader->is_gs_copy_shader) {
5675 LLVMValueRef offset = lp_build_const_int32(gallivm, SI_VS_RING_GSVS);
5676
5677 ctx->gsvs_ring[0] =
5678 build_indexed_load_const(ctx, buf_ptr, offset);
5679 }
5680 if (ctx->type == PIPE_SHADER_GEOMETRY) {
5681 int i;
5682 for (i = 0; i < 4; i++) {
5683 LLVMValueRef offset = lp_build_const_int32(gallivm, SI_GS_RING_GSVS0 + i);
5684
5685 ctx->gsvs_ring[i] =
5686 build_indexed_load_const(ctx, buf_ptr, offset);
5687 }
5688 }
5689 }
5690
5691 static void si_llvm_emit_polygon_stipple(struct si_shader_context *ctx,
5692 LLVMValueRef param_rw_buffers,
5693 unsigned param_pos_fixed_pt)
5694 {
5695 struct lp_build_tgsi_context *bld_base =
5696 &ctx->soa.bld_base;
5697 struct gallivm_state *gallivm = bld_base->base.gallivm;
5698 LLVMBuilderRef builder = gallivm->builder;
5699 LLVMValueRef slot, desc, offset, row, bit, address[2];
5700
5701 /* Use the fixed-point gl_FragCoord input.
5702 * Since the stipple pattern is 32x32 and it repeats, just get 5 bits
5703 * per coordinate to get the repeating effect.
5704 */
5705 address[0] = unpack_param(ctx, param_pos_fixed_pt, 0, 5);
5706 address[1] = unpack_param(ctx, param_pos_fixed_pt, 16, 5);
5707
5708 /* Load the buffer descriptor. */
5709 slot = lp_build_const_int32(gallivm, SI_PS_CONST_POLY_STIPPLE);
5710 desc = build_indexed_load_const(ctx, param_rw_buffers, slot);
5711
5712 /* The stipple pattern is 32x32, each row has 32 bits. */
5713 offset = LLVMBuildMul(builder, address[1],
5714 LLVMConstInt(ctx->i32, 4, 0), "");
5715 row = buffer_load_const(ctx, desc, offset);
5716 row = LLVMBuildBitCast(builder, row, ctx->i32, "");
5717 bit = LLVMBuildLShr(builder, row, address[0], "");
5718 bit = LLVMBuildTrunc(builder, bit, ctx->i1, "");
5719
5720 /* The intrinsic kills the thread if arg < 0. */
5721 bit = LLVMBuildSelect(builder, bit, LLVMConstReal(ctx->f32, 0),
5722 LLVMConstReal(ctx->f32, -1), "");
5723 lp_build_intrinsic(builder, "llvm.AMDGPU.kill", ctx->voidt, &bit, 1, 0);
5724 }
5725
5726 void si_shader_binary_read_config(struct radeon_shader_binary *binary,
5727 struct si_shader_config *conf,
5728 unsigned symbol_offset)
5729 {
5730 unsigned i;
5731 const unsigned char *config =
5732 radeon_shader_binary_config_start(binary, symbol_offset);
5733 bool really_needs_scratch = false;
5734
5735 /* LLVM adds SGPR spills to the scratch size.
5736 * Find out if we really need the scratch buffer.
5737 */
5738 for (i = 0; i < binary->reloc_count; i++) {
5739 const struct radeon_shader_reloc *reloc = &binary->relocs[i];
5740
5741 if (!strcmp(scratch_rsrc_dword0_symbol, reloc->name) ||
5742 !strcmp(scratch_rsrc_dword1_symbol, reloc->name)) {
5743 really_needs_scratch = true;
5744 break;
5745 }
5746 }
5747
5748 /* XXX: We may be able to emit some of these values directly rather than
5749 * extracting fields to be emitted later.
5750 */
5751
5752 for (i = 0; i < binary->config_size_per_symbol; i+= 8) {
5753 unsigned reg = util_le32_to_cpu(*(uint32_t*)(config + i));
5754 unsigned value = util_le32_to_cpu(*(uint32_t*)(config + i + 4));
5755 switch (reg) {
5756 case R_00B028_SPI_SHADER_PGM_RSRC1_PS:
5757 case R_00B128_SPI_SHADER_PGM_RSRC1_VS:
5758 case R_00B228_SPI_SHADER_PGM_RSRC1_GS:
5759 case R_00B848_COMPUTE_PGM_RSRC1:
5760 conf->num_sgprs = MAX2(conf->num_sgprs, (G_00B028_SGPRS(value) + 1) * 8);
5761 conf->num_vgprs = MAX2(conf->num_vgprs, (G_00B028_VGPRS(value) + 1) * 4);
5762 conf->float_mode = G_00B028_FLOAT_MODE(value);
5763 conf->rsrc1 = value;
5764 break;
5765 case R_00B02C_SPI_SHADER_PGM_RSRC2_PS:
5766 conf->lds_size = MAX2(conf->lds_size, G_00B02C_EXTRA_LDS_SIZE(value));
5767 break;
5768 case R_00B84C_COMPUTE_PGM_RSRC2:
5769 conf->lds_size = MAX2(conf->lds_size, G_00B84C_LDS_SIZE(value));
5770 conf->rsrc2 = value;
5771 break;
5772 case R_0286CC_SPI_PS_INPUT_ENA:
5773 conf->spi_ps_input_ena = value;
5774 break;
5775 case R_0286D0_SPI_PS_INPUT_ADDR:
5776 conf->spi_ps_input_addr = value;
5777 break;
5778 case R_0286E8_SPI_TMPRING_SIZE:
5779 case R_00B860_COMPUTE_TMPRING_SIZE:
5780 /* WAVESIZE is in units of 256 dwords. */
5781 if (really_needs_scratch)
5782 conf->scratch_bytes_per_wave =
5783 G_00B860_WAVESIZE(value) * 256 * 4;
5784 break;
5785 case 0x4: /* SPILLED_SGPRS */
5786 conf->spilled_sgprs = value;
5787 break;
5788 case 0x8: /* SPILLED_VGPRS */
5789 conf->spilled_vgprs = value;
5790 break;
5791 default:
5792 {
5793 static bool printed;
5794
5795 if (!printed) {
5796 fprintf(stderr, "Warning: LLVM emitted unknown "
5797 "config register: 0x%x\n", reg);
5798 printed = true;
5799 }
5800 }
5801 break;
5802 }
5803 }
5804
5805 if (!conf->spi_ps_input_addr)
5806 conf->spi_ps_input_addr = conf->spi_ps_input_ena;
5807 }
5808
5809 void si_shader_apply_scratch_relocs(struct si_context *sctx,
5810 struct si_shader *shader,
5811 struct si_shader_config *config,
5812 uint64_t scratch_va)
5813 {
5814 unsigned i;
5815 uint32_t scratch_rsrc_dword0 = scratch_va;
5816 uint32_t scratch_rsrc_dword1 =
5817 S_008F04_BASE_ADDRESS_HI(scratch_va >> 32);
5818
5819 /* Enable scratch coalescing if LLVM sets ELEMENT_SIZE & INDEX_STRIDE
5820 * correctly.
5821 */
5822 if (HAVE_LLVM >= 0x0309)
5823 scratch_rsrc_dword1 |= S_008F04_SWIZZLE_ENABLE(1);
5824 else
5825 scratch_rsrc_dword1 |=
5826 S_008F04_STRIDE(config->scratch_bytes_per_wave / 64);
5827
5828 for (i = 0 ; i < shader->binary.reloc_count; i++) {
5829 const struct radeon_shader_reloc *reloc =
5830 &shader->binary.relocs[i];
5831 if (!strcmp(scratch_rsrc_dword0_symbol, reloc->name)) {
5832 util_memcpy_cpu_to_le32(shader->binary.code + reloc->offset,
5833 &scratch_rsrc_dword0, 4);
5834 } else if (!strcmp(scratch_rsrc_dword1_symbol, reloc->name)) {
5835 util_memcpy_cpu_to_le32(shader->binary.code + reloc->offset,
5836 &scratch_rsrc_dword1, 4);
5837 }
5838 }
5839 }
5840
5841 static unsigned si_get_shader_binary_size(struct si_shader *shader)
5842 {
5843 unsigned size = shader->binary.code_size;
5844
5845 if (shader->prolog)
5846 size += shader->prolog->binary.code_size;
5847 if (shader->epilog)
5848 size += shader->epilog->binary.code_size;
5849 return size;
5850 }
5851
5852 int si_shader_binary_upload(struct si_screen *sscreen, struct si_shader *shader)
5853 {
5854 const struct radeon_shader_binary *prolog =
5855 shader->prolog ? &shader->prolog->binary : NULL;
5856 const struct radeon_shader_binary *epilog =
5857 shader->epilog ? &shader->epilog->binary : NULL;
5858 const struct radeon_shader_binary *mainb = &shader->binary;
5859 unsigned bo_size = si_get_shader_binary_size(shader) +
5860 (!epilog ? mainb->rodata_size : 0);
5861 unsigned char *ptr;
5862
5863 assert(!prolog || !prolog->rodata_size);
5864 assert((!prolog && !epilog) || !mainb->rodata_size);
5865 assert(!epilog || !epilog->rodata_size);
5866
5867 r600_resource_reference(&shader->bo, NULL);
5868 shader->bo = (struct r600_resource*)
5869 pipe_buffer_create(&sscreen->b.b, 0,
5870 PIPE_USAGE_IMMUTABLE, bo_size);
5871 if (!shader->bo)
5872 return -ENOMEM;
5873
5874 /* Upload. */
5875 ptr = sscreen->b.ws->buffer_map(shader->bo->buf, NULL,
5876 PIPE_TRANSFER_READ_WRITE);
5877
5878 if (prolog) {
5879 util_memcpy_cpu_to_le32(ptr, prolog->code, prolog->code_size);
5880 ptr += prolog->code_size;
5881 }
5882
5883 util_memcpy_cpu_to_le32(ptr, mainb->code, mainb->code_size);
5884 ptr += mainb->code_size;
5885
5886 if (epilog)
5887 util_memcpy_cpu_to_le32(ptr, epilog->code, epilog->code_size);
5888 else if (mainb->rodata_size > 0)
5889 util_memcpy_cpu_to_le32(ptr, mainb->rodata, mainb->rodata_size);
5890
5891 sscreen->b.ws->buffer_unmap(shader->bo->buf);
5892 return 0;
5893 }
5894
5895 static void si_shader_dump_disassembly(const struct radeon_shader_binary *binary,
5896 struct pipe_debug_callback *debug,
5897 const char *name, FILE *file)
5898 {
5899 char *line, *p;
5900 unsigned i, count;
5901
5902 if (binary->disasm_string) {
5903 fprintf(file, "Shader %s disassembly:\n", name);
5904 fprintf(file, "%s", binary->disasm_string);
5905
5906 if (debug && debug->debug_message) {
5907 /* Very long debug messages are cut off, so send the
5908 * disassembly one line at a time. This causes more
5909 * overhead, but on the plus side it simplifies
5910 * parsing of resulting logs.
5911 */
5912 pipe_debug_message(debug, SHADER_INFO,
5913 "Shader Disassembly Begin");
5914
5915 line = binary->disasm_string;
5916 while (*line) {
5917 p = util_strchrnul(line, '\n');
5918 count = p - line;
5919
5920 if (count) {
5921 pipe_debug_message(debug, SHADER_INFO,
5922 "%.*s", count, line);
5923 }
5924
5925 if (!*p)
5926 break;
5927 line = p + 1;
5928 }
5929
5930 pipe_debug_message(debug, SHADER_INFO,
5931 "Shader Disassembly End");
5932 }
5933 } else {
5934 fprintf(file, "Shader %s binary:\n", name);
5935 for (i = 0; i < binary->code_size; i += 4) {
5936 fprintf(file, "@0x%x: %02x%02x%02x%02x\n", i,
5937 binary->code[i + 3], binary->code[i + 2],
5938 binary->code[i + 1], binary->code[i]);
5939 }
5940 }
5941 }
5942
5943 static void si_shader_dump_stats(struct si_screen *sscreen,
5944 struct si_shader_config *conf,
5945 unsigned num_inputs,
5946 unsigned code_size,
5947 struct pipe_debug_callback *debug,
5948 unsigned processor,
5949 FILE *file)
5950 {
5951 unsigned lds_increment = sscreen->b.chip_class >= CIK ? 512 : 256;
5952 unsigned lds_per_wave = 0;
5953 unsigned max_simd_waves = 10;
5954
5955 /* Compute LDS usage for PS. */
5956 if (processor == PIPE_SHADER_FRAGMENT) {
5957 /* The minimum usage per wave is (num_inputs * 48). The maximum
5958 * usage is (num_inputs * 48 * 16).
5959 * We can get anything in between and it varies between waves.
5960 *
5961 * The 48 bytes per input for a single primitive is equal to
5962 * 4 bytes/component * 4 components/input * 3 points.
5963 *
5964 * Other stages don't know the size at compile time or don't
5965 * allocate LDS per wave, but instead they do it per thread group.
5966 */
5967 lds_per_wave = conf->lds_size * lds_increment +
5968 align(num_inputs * 48, lds_increment);
5969 }
5970
5971 /* Compute the per-SIMD wave counts. */
5972 if (conf->num_sgprs) {
5973 if (sscreen->b.chip_class >= VI)
5974 max_simd_waves = MIN2(max_simd_waves, 800 / conf->num_sgprs);
5975 else
5976 max_simd_waves = MIN2(max_simd_waves, 512 / conf->num_sgprs);
5977 }
5978
5979 if (conf->num_vgprs)
5980 max_simd_waves = MIN2(max_simd_waves, 256 / conf->num_vgprs);
5981
5982 /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD
5983 * that PS can use.
5984 */
5985 if (lds_per_wave)
5986 max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave);
5987
5988 if (file != stderr ||
5989 r600_can_dump_shader(&sscreen->b, processor)) {
5990 if (processor == PIPE_SHADER_FRAGMENT) {
5991 fprintf(file, "*** SHADER CONFIG ***\n"
5992 "SPI_PS_INPUT_ADDR = 0x%04x\n"
5993 "SPI_PS_INPUT_ENA = 0x%04x\n",
5994 conf->spi_ps_input_addr, conf->spi_ps_input_ena);
5995 }
5996
5997 fprintf(file, "*** SHADER STATS ***\n"
5998 "SGPRS: %d\n"
5999 "VGPRS: %d\n"
6000 "Spilled SGPRs: %d\n"
6001 "Spilled VGPRs: %d\n"
6002 "Private memory VGPRs: %d\n"
6003 "Code Size: %d bytes\n"
6004 "LDS: %d blocks\n"
6005 "Scratch: %d bytes per wave\n"
6006 "Max Waves: %d\n"
6007 "********************\n\n\n",
6008 conf->num_sgprs, conf->num_vgprs,
6009 conf->spilled_sgprs, conf->spilled_vgprs,
6010 conf->private_mem_vgprs, code_size,
6011 conf->lds_size, conf->scratch_bytes_per_wave,
6012 max_simd_waves);
6013 }
6014
6015 pipe_debug_message(debug, SHADER_INFO,
6016 "Shader Stats: SGPRS: %d VGPRS: %d Code Size: %d "
6017 "LDS: %d Scratch: %d Max Waves: %d Spilled SGPRs: %d "
6018 "Spilled VGPRs: %d PrivMem VGPRs: %d",
6019 conf->num_sgprs, conf->num_vgprs, code_size,
6020 conf->lds_size, conf->scratch_bytes_per_wave,
6021 max_simd_waves, conf->spilled_sgprs,
6022 conf->spilled_vgprs, conf->private_mem_vgprs);
6023 }
6024
6025 static const char *si_get_shader_name(struct si_shader *shader,
6026 unsigned processor)
6027 {
6028 switch (processor) {
6029 case PIPE_SHADER_VERTEX:
6030 if (shader->key.as_es)
6031 return "Vertex Shader as ES";
6032 else if (shader->key.as_ls)
6033 return "Vertex Shader as LS";
6034 else
6035 return "Vertex Shader as VS";
6036 case PIPE_SHADER_TESS_CTRL:
6037 return "Tessellation Control Shader";
6038 case PIPE_SHADER_TESS_EVAL:
6039 if (shader->key.as_es)
6040 return "Tessellation Evaluation Shader as ES";
6041 else
6042 return "Tessellation Evaluation Shader as VS";
6043 case PIPE_SHADER_GEOMETRY:
6044 if (shader->is_gs_copy_shader)
6045 return "GS Copy Shader as VS";
6046 else
6047 return "Geometry Shader";
6048 case PIPE_SHADER_FRAGMENT:
6049 return "Pixel Shader";
6050 case PIPE_SHADER_COMPUTE:
6051 return "Compute Shader";
6052 default:
6053 return "Unknown Shader";
6054 }
6055 }
6056
6057 void si_shader_dump(struct si_screen *sscreen, struct si_shader *shader,
6058 struct pipe_debug_callback *debug, unsigned processor,
6059 FILE *file)
6060 {
6061 if (file != stderr ||
6062 r600_can_dump_shader(&sscreen->b, processor))
6063 si_dump_shader_key(processor, &shader->key, file);
6064
6065 if (file != stderr && shader->binary.llvm_ir_string) {
6066 fprintf(file, "\n%s - main shader part - LLVM IR:\n\n",
6067 si_get_shader_name(shader, processor));
6068 fprintf(file, "%s\n", shader->binary.llvm_ir_string);
6069 }
6070
6071 if (file != stderr ||
6072 (r600_can_dump_shader(&sscreen->b, processor) &&
6073 !(sscreen->b.debug_flags & DBG_NO_ASM))) {
6074 fprintf(file, "\n%s:\n", si_get_shader_name(shader, processor));
6075
6076 if (shader->prolog)
6077 si_shader_dump_disassembly(&shader->prolog->binary,
6078 debug, "prolog", file);
6079
6080 si_shader_dump_disassembly(&shader->binary, debug, "main", file);
6081
6082 if (shader->epilog)
6083 si_shader_dump_disassembly(&shader->epilog->binary,
6084 debug, "epilog", file);
6085 fprintf(file, "\n");
6086 }
6087
6088 si_shader_dump_stats(sscreen, &shader->config,
6089 shader->selector ? shader->selector->info.num_inputs : 0,
6090 si_get_shader_binary_size(shader), debug, processor,
6091 file);
6092 }
6093
6094 int si_compile_llvm(struct si_screen *sscreen,
6095 struct radeon_shader_binary *binary,
6096 struct si_shader_config *conf,
6097 LLVMTargetMachineRef tm,
6098 LLVMModuleRef mod,
6099 struct pipe_debug_callback *debug,
6100 unsigned processor,
6101 const char *name)
6102 {
6103 int r = 0;
6104 unsigned count = p_atomic_inc_return(&sscreen->b.num_compilations);
6105
6106 if (r600_can_dump_shader(&sscreen->b, processor)) {
6107 fprintf(stderr, "radeonsi: Compiling shader %d\n", count);
6108
6109 if (!(sscreen->b.debug_flags & (DBG_NO_IR | DBG_PREOPT_IR))) {
6110 fprintf(stderr, "%s LLVM IR:\n\n", name);
6111 LLVMDumpModule(mod);
6112 fprintf(stderr, "\n");
6113 }
6114 }
6115
6116 if (sscreen->record_llvm_ir) {
6117 char *ir = LLVMPrintModuleToString(mod);
6118 binary->llvm_ir_string = strdup(ir);
6119 LLVMDisposeMessage(ir);
6120 }
6121
6122 if (!si_replace_shader(count, binary)) {
6123 r = si_llvm_compile(mod, binary, tm, debug);
6124 if (r)
6125 return r;
6126 }
6127
6128 si_shader_binary_read_config(binary, conf, 0);
6129
6130 /* Enable 64-bit and 16-bit denormals, because there is no performance
6131 * cost.
6132 *
6133 * If denormals are enabled, all floating-point output modifiers are
6134 * ignored.
6135 *
6136 * Don't enable denormals for 32-bit floats, because:
6137 * - Floating-point output modifiers would be ignored by the hw.
6138 * - Some opcodes don't support denormals, such as v_mad_f32. We would
6139 * have to stop using those.
6140 * - SI & CI would be very slow.
6141 */
6142 conf->float_mode |= V_00B028_FP_64_DENORMS;
6143
6144 FREE(binary->config);
6145 FREE(binary->global_symbol_offsets);
6146 binary->config = NULL;
6147 binary->global_symbol_offsets = NULL;
6148
6149 /* Some shaders can't have rodata because their binaries can be
6150 * concatenated.
6151 */
6152 if (binary->rodata_size &&
6153 (processor == PIPE_SHADER_VERTEX ||
6154 processor == PIPE_SHADER_TESS_CTRL ||
6155 processor == PIPE_SHADER_TESS_EVAL ||
6156 processor == PIPE_SHADER_FRAGMENT)) {
6157 fprintf(stderr, "radeonsi: The shader can't have rodata.");
6158 return -EINVAL;
6159 }
6160
6161 return r;
6162 }
6163
6164 static void si_llvm_build_ret(struct si_shader_context *ctx, LLVMValueRef ret)
6165 {
6166 if (LLVMGetTypeKind(LLVMTypeOf(ret)) == LLVMVoidTypeKind)
6167 LLVMBuildRetVoid(ctx->gallivm.builder);
6168 else
6169 LLVMBuildRet(ctx->gallivm.builder, ret);
6170 }
6171
6172 /* Generate code for the hardware VS shader stage to go with a geometry shader */
6173 struct si_shader *
6174 si_generate_gs_copy_shader(struct si_screen *sscreen,
6175 LLVMTargetMachineRef tm,
6176 struct si_shader_selector *gs_selector,
6177 struct pipe_debug_callback *debug)
6178 {
6179 struct si_shader_context ctx;
6180 struct si_shader *shader;
6181 struct gallivm_state *gallivm = &ctx.gallivm;
6182 struct lp_build_tgsi_context *bld_base = &ctx.soa.bld_base;
6183 struct lp_build_context *uint = &bld_base->uint_bld;
6184 struct si_shader_output_values *outputs;
6185 struct tgsi_shader_info *gsinfo = &gs_selector->info;
6186 LLVMValueRef args[9];
6187 int i, r;
6188
6189 outputs = MALLOC(gsinfo->num_outputs * sizeof(outputs[0]));
6190
6191 if (!outputs)
6192 return NULL;
6193
6194 shader = CALLOC_STRUCT(si_shader);
6195 if (!shader) {
6196 FREE(outputs);
6197 return NULL;
6198 }
6199
6200
6201 shader->selector = gs_selector;
6202 shader->is_gs_copy_shader = true;
6203
6204 si_init_shader_ctx(&ctx, sscreen, shader, tm);
6205 ctx.type = PIPE_SHADER_VERTEX;
6206
6207 create_meta_data(&ctx);
6208 create_function(&ctx);
6209 preload_ring_buffers(&ctx);
6210
6211 args[0] = ctx.gsvs_ring[0];
6212 args[1] = lp_build_mul_imm(uint,
6213 LLVMGetParam(ctx.main_fn,
6214 ctx.param_vertex_id),
6215 4);
6216 args[3] = uint->zero;
6217 args[4] = uint->one; /* OFFEN */
6218 args[5] = uint->zero; /* IDXEN */
6219 args[6] = uint->one; /* GLC */
6220 args[7] = uint->one; /* SLC */
6221 args[8] = uint->zero; /* TFE */
6222
6223 /* Fetch vertex data from GSVS ring */
6224 for (i = 0; i < gsinfo->num_outputs; ++i) {
6225 unsigned chan;
6226
6227 outputs[i].name = gsinfo->output_semantic_name[i];
6228 outputs[i].sid = gsinfo->output_semantic_index[i];
6229
6230 for (chan = 0; chan < 4; chan++) {
6231 args[2] = lp_build_const_int32(gallivm,
6232 (i * 4 + chan) *
6233 gs_selector->gs_max_out_vertices * 16 * 4);
6234
6235 outputs[i].values[chan] =
6236 LLVMBuildBitCast(gallivm->builder,
6237 lp_build_intrinsic(gallivm->builder,
6238 "llvm.SI.buffer.load.dword.i32.i32",
6239 ctx.i32, args, 9,
6240 LP_FUNC_ATTR_READONLY),
6241 ctx.f32, "");
6242 }
6243 }
6244
6245 si_llvm_export_vs(bld_base, outputs, gsinfo->num_outputs);
6246
6247 LLVMBuildRetVoid(gallivm->builder);
6248
6249 /* Dump LLVM IR before any optimization passes */
6250 if (sscreen->b.debug_flags & DBG_PREOPT_IR &&
6251 r600_can_dump_shader(&sscreen->b, PIPE_SHADER_GEOMETRY))
6252 LLVMDumpModule(bld_base->base.gallivm->module);
6253
6254 si_llvm_finalize_module(&ctx,
6255 r600_extra_shader_checks(&sscreen->b, PIPE_SHADER_GEOMETRY));
6256
6257 r = si_compile_llvm(sscreen, &ctx.shader->binary,
6258 &ctx.shader->config, ctx.tm,
6259 bld_base->base.gallivm->module,
6260 debug, PIPE_SHADER_GEOMETRY,
6261 "GS Copy Shader");
6262 if (!r) {
6263 if (r600_can_dump_shader(&sscreen->b, PIPE_SHADER_GEOMETRY))
6264 fprintf(stderr, "GS Copy Shader:\n");
6265 si_shader_dump(sscreen, ctx.shader, debug,
6266 PIPE_SHADER_GEOMETRY, stderr);
6267 r = si_shader_binary_upload(sscreen, ctx.shader);
6268 }
6269
6270 si_llvm_dispose(&ctx);
6271
6272 FREE(outputs);
6273
6274 if (r != 0) {
6275 FREE(shader);
6276 shader = NULL;
6277 }
6278 return shader;
6279 }
6280
6281 static void si_dump_shader_key(unsigned shader, struct si_shader_key *key,
6282 FILE *f)
6283 {
6284 int i;
6285
6286 fprintf(f, "SHADER KEY\n");
6287
6288 switch (shader) {
6289 case PIPE_SHADER_VERTEX:
6290 fprintf(f, " part.vs.prolog.instance_divisors = {");
6291 for (i = 0; i < ARRAY_SIZE(key->part.vs.prolog.instance_divisors); i++)
6292 fprintf(f, !i ? "%u" : ", %u",
6293 key->part.vs.prolog.instance_divisors[i]);
6294 fprintf(f, "}\n");
6295 fprintf(f, " part.vs.epilog.export_prim_id = %u\n", key->part.vs.epilog.export_prim_id);
6296 fprintf(f, " as_es = %u\n", key->as_es);
6297 fprintf(f, " as_ls = %u\n", key->as_ls);
6298 fprintf(f, " mono.vs.fix_fetch = 0x%x\n", key->mono.vs.fix_fetch);
6299 break;
6300
6301 case PIPE_SHADER_TESS_CTRL:
6302 fprintf(f, " part.tcs.epilog.prim_mode = %u\n", key->part.tcs.epilog.prim_mode);
6303 fprintf(f, " mono.tcs.inputs_to_copy = 0x%"PRIx64"\n", key->mono.tcs.inputs_to_copy);
6304 break;
6305
6306 case PIPE_SHADER_TESS_EVAL:
6307 fprintf(f, " part.tes.epilog.export_prim_id = %u\n", key->part.tes.epilog.export_prim_id);
6308 fprintf(f, " as_es = %u\n", key->as_es);
6309 break;
6310
6311 case PIPE_SHADER_GEOMETRY:
6312 fprintf(f, " part.gs.prolog.tri_strip_adj_fix = %u\n", key->part.gs.prolog.tri_strip_adj_fix);
6313 break;
6314
6315 case PIPE_SHADER_COMPUTE:
6316 break;
6317
6318 case PIPE_SHADER_FRAGMENT:
6319 fprintf(f, " part.ps.prolog.color_two_side = %u\n", key->part.ps.prolog.color_two_side);
6320 fprintf(f, " part.ps.prolog.flatshade_colors = %u\n", key->part.ps.prolog.flatshade_colors);
6321 fprintf(f, " part.ps.prolog.poly_stipple = %u\n", key->part.ps.prolog.poly_stipple);
6322 fprintf(f, " part.ps.prolog.force_persp_sample_interp = %u\n", key->part.ps.prolog.force_persp_sample_interp);
6323 fprintf(f, " part.ps.prolog.force_linear_sample_interp = %u\n", key->part.ps.prolog.force_linear_sample_interp);
6324 fprintf(f, " part.ps.prolog.force_persp_center_interp = %u\n", key->part.ps.prolog.force_persp_center_interp);
6325 fprintf(f, " part.ps.prolog.force_linear_center_interp = %u\n", key->part.ps.prolog.force_linear_center_interp);
6326 fprintf(f, " part.ps.prolog.bc_optimize_for_persp = %u\n", key->part.ps.prolog.bc_optimize_for_persp);
6327 fprintf(f, " part.ps.prolog.bc_optimize_for_linear = %u\n", key->part.ps.prolog.bc_optimize_for_linear);
6328 fprintf(f, " part.ps.epilog.spi_shader_col_format = 0x%x\n", key->part.ps.epilog.spi_shader_col_format);
6329 fprintf(f, " part.ps.epilog.color_is_int8 = 0x%X\n", key->part.ps.epilog.color_is_int8);
6330 fprintf(f, " part.ps.epilog.last_cbuf = %u\n", key->part.ps.epilog.last_cbuf);
6331 fprintf(f, " part.ps.epilog.alpha_func = %u\n", key->part.ps.epilog.alpha_func);
6332 fprintf(f, " part.ps.epilog.alpha_to_one = %u\n", key->part.ps.epilog.alpha_to_one);
6333 fprintf(f, " part.ps.epilog.poly_line_smoothing = %u\n", key->part.ps.epilog.poly_line_smoothing);
6334 fprintf(f, " part.ps.epilog.clamp_color = %u\n", key->part.ps.epilog.clamp_color);
6335 break;
6336
6337 default:
6338 assert(0);
6339 }
6340
6341 if ((shader == PIPE_SHADER_GEOMETRY ||
6342 shader == PIPE_SHADER_TESS_EVAL ||
6343 shader == PIPE_SHADER_VERTEX) &&
6344 !key->as_es && !key->as_ls) {
6345 fprintf(f, " opt.hw_vs.kill_outputs = 0x%"PRIx64"\n", key->opt.hw_vs.kill_outputs);
6346 fprintf(f, " opt.hw_vs.kill_outputs2 = 0x%x\n", key->opt.hw_vs.kill_outputs2);
6347 fprintf(f, " opt.hw_vs.clip_disable = %u\n", key->opt.hw_vs.clip_disable);
6348 }
6349 }
6350
6351 static void si_init_shader_ctx(struct si_shader_context *ctx,
6352 struct si_screen *sscreen,
6353 struct si_shader *shader,
6354 LLVMTargetMachineRef tm)
6355 {
6356 struct lp_build_tgsi_context *bld_base;
6357 struct lp_build_tgsi_action tmpl = {};
6358
6359 si_llvm_context_init(ctx, sscreen, shader, tm,
6360 (shader && shader->selector) ? &shader->selector->info : NULL,
6361 (shader && shader->selector) ? shader->selector->tokens : NULL);
6362
6363 bld_base = &ctx->soa.bld_base;
6364 bld_base->emit_fetch_funcs[TGSI_FILE_CONSTANT] = fetch_constant;
6365
6366 bld_base->op_actions[TGSI_OPCODE_INTERP_CENTROID] = interp_action;
6367 bld_base->op_actions[TGSI_OPCODE_INTERP_SAMPLE] = interp_action;
6368 bld_base->op_actions[TGSI_OPCODE_INTERP_OFFSET] = interp_action;
6369
6370 bld_base->op_actions[TGSI_OPCODE_TEX] = tex_action;
6371 bld_base->op_actions[TGSI_OPCODE_TEX2] = tex_action;
6372 bld_base->op_actions[TGSI_OPCODE_TXB] = tex_action;
6373 bld_base->op_actions[TGSI_OPCODE_TXB2] = tex_action;
6374 bld_base->op_actions[TGSI_OPCODE_TXD] = tex_action;
6375 bld_base->op_actions[TGSI_OPCODE_TXF] = tex_action;
6376 bld_base->op_actions[TGSI_OPCODE_TXL] = tex_action;
6377 bld_base->op_actions[TGSI_OPCODE_TXL2] = tex_action;
6378 bld_base->op_actions[TGSI_OPCODE_TXP] = tex_action;
6379 bld_base->op_actions[TGSI_OPCODE_TXQ].fetch_args = txq_fetch_args;
6380 bld_base->op_actions[TGSI_OPCODE_TXQ].emit = txq_emit;
6381 bld_base->op_actions[TGSI_OPCODE_TG4] = tex_action;
6382 bld_base->op_actions[TGSI_OPCODE_LODQ] = tex_action;
6383 bld_base->op_actions[TGSI_OPCODE_TXQS].emit = si_llvm_emit_txqs;
6384
6385 bld_base->op_actions[TGSI_OPCODE_LOAD].fetch_args = load_fetch_args;
6386 bld_base->op_actions[TGSI_OPCODE_LOAD].emit = load_emit;
6387 bld_base->op_actions[TGSI_OPCODE_STORE].fetch_args = store_fetch_args;
6388 bld_base->op_actions[TGSI_OPCODE_STORE].emit = store_emit;
6389 bld_base->op_actions[TGSI_OPCODE_RESQ].fetch_args = resq_fetch_args;
6390 bld_base->op_actions[TGSI_OPCODE_RESQ].emit = resq_emit;
6391
6392 tmpl.fetch_args = atomic_fetch_args;
6393 tmpl.emit = atomic_emit;
6394 bld_base->op_actions[TGSI_OPCODE_ATOMUADD] = tmpl;
6395 bld_base->op_actions[TGSI_OPCODE_ATOMUADD].intr_name = "add";
6396 bld_base->op_actions[TGSI_OPCODE_ATOMXCHG] = tmpl;
6397 bld_base->op_actions[TGSI_OPCODE_ATOMXCHG].intr_name = "swap";
6398 bld_base->op_actions[TGSI_OPCODE_ATOMCAS] = tmpl;
6399 bld_base->op_actions[TGSI_OPCODE_ATOMCAS].intr_name = "cmpswap";
6400 bld_base->op_actions[TGSI_OPCODE_ATOMAND] = tmpl;
6401 bld_base->op_actions[TGSI_OPCODE_ATOMAND].intr_name = "and";
6402 bld_base->op_actions[TGSI_OPCODE_ATOMOR] = tmpl;
6403 bld_base->op_actions[TGSI_OPCODE_ATOMOR].intr_name = "or";
6404 bld_base->op_actions[TGSI_OPCODE_ATOMXOR] = tmpl;
6405 bld_base->op_actions[TGSI_OPCODE_ATOMXOR].intr_name = "xor";
6406 bld_base->op_actions[TGSI_OPCODE_ATOMUMIN] = tmpl;
6407 bld_base->op_actions[TGSI_OPCODE_ATOMUMIN].intr_name = "umin";
6408 bld_base->op_actions[TGSI_OPCODE_ATOMUMAX] = tmpl;
6409 bld_base->op_actions[TGSI_OPCODE_ATOMUMAX].intr_name = "umax";
6410 bld_base->op_actions[TGSI_OPCODE_ATOMIMIN] = tmpl;
6411 bld_base->op_actions[TGSI_OPCODE_ATOMIMIN].intr_name = "smin";
6412 bld_base->op_actions[TGSI_OPCODE_ATOMIMAX] = tmpl;
6413 bld_base->op_actions[TGSI_OPCODE_ATOMIMAX].intr_name = "smax";
6414
6415 bld_base->op_actions[TGSI_OPCODE_MEMBAR].emit = membar_emit;
6416
6417 bld_base->op_actions[TGSI_OPCODE_DDX].emit = si_llvm_emit_ddxy;
6418 bld_base->op_actions[TGSI_OPCODE_DDY].emit = si_llvm_emit_ddxy;
6419 bld_base->op_actions[TGSI_OPCODE_DDX_FINE].emit = si_llvm_emit_ddxy;
6420 bld_base->op_actions[TGSI_OPCODE_DDY_FINE].emit = si_llvm_emit_ddxy;
6421
6422 bld_base->op_actions[TGSI_OPCODE_EMIT].emit = si_llvm_emit_vertex;
6423 bld_base->op_actions[TGSI_OPCODE_ENDPRIM].emit = si_llvm_emit_primitive;
6424 bld_base->op_actions[TGSI_OPCODE_BARRIER].emit = si_llvm_emit_barrier;
6425 }
6426
6427 /* Return true if the PARAM export has been eliminated. */
6428 static bool si_eliminate_const_output(struct si_shader_context *ctx,
6429 LLVMValueRef inst, unsigned offset)
6430 {
6431 struct si_shader *shader = ctx->shader;
6432 unsigned num_outputs = shader->selector->info.num_outputs;
6433 unsigned i, default_val; /* SPI_PS_INPUT_CNTL_i.DEFAULT_VAL */
6434 bool is_zero[4] = {}, is_one[4] = {};
6435
6436 for (i = 0; i < 4; i++) {
6437 LLVMBool loses_info;
6438 LLVMValueRef p = LLVMGetOperand(inst, 5 + i);
6439
6440 /* It's a constant expression. Undef outputs are eliminated too. */
6441 if (LLVMIsUndef(p)) {
6442 is_zero[i] = true;
6443 is_one[i] = true;
6444 } else if (LLVMIsAConstantFP(p)) {
6445 double a = LLVMConstRealGetDouble(p, &loses_info);
6446
6447 if (a == 0)
6448 is_zero[i] = true;
6449 else if (a == 1)
6450 is_one[i] = true;
6451 else
6452 return false; /* other constant */
6453 } else
6454 return false;
6455 }
6456
6457 /* Only certain combinations of 0 and 1 can be eliminated. */
6458 if (is_zero[0] && is_zero[1] && is_zero[2])
6459 default_val = is_zero[3] ? 0 : 1;
6460 else if (is_one[0] && is_one[1] && is_one[2])
6461 default_val = is_zero[3] ? 2 : 3;
6462 else
6463 return false;
6464
6465 /* The PARAM export can be represented as DEFAULT_VAL. Kill it. */
6466 LLVMInstructionEraseFromParent(inst);
6467
6468 /* Change OFFSET to DEFAULT_VAL. */
6469 for (i = 0; i < num_outputs; i++) {
6470 if (shader->info.vs_output_param_offset[i] == offset) {
6471 shader->info.vs_output_param_offset[i] =
6472 EXP_PARAM_DEFAULT_VAL_0000 + default_val;
6473 break;
6474 }
6475 }
6476 return true;
6477 }
6478
6479 struct si_vs_exports {
6480 unsigned num;
6481 unsigned offset[SI_MAX_VS_OUTPUTS];
6482 LLVMValueRef inst[SI_MAX_VS_OUTPUTS];
6483 };
6484
6485 static void si_eliminate_const_vs_outputs(struct si_shader_context *ctx)
6486 {
6487 struct si_shader *shader = ctx->shader;
6488 struct tgsi_shader_info *info = &shader->selector->info;
6489 LLVMBasicBlockRef bb;
6490 struct si_vs_exports exports;
6491 bool removed_any = false;
6492
6493 exports.num = 0;
6494
6495 if (ctx->type == PIPE_SHADER_FRAGMENT ||
6496 ctx->type == PIPE_SHADER_COMPUTE ||
6497 shader->key.as_es ||
6498 shader->key.as_ls)
6499 return;
6500
6501 /* Process all LLVM instructions. */
6502 bb = LLVMGetFirstBasicBlock(ctx->main_fn);
6503 while (bb) {
6504 LLVMValueRef inst = LLVMGetFirstInstruction(bb);
6505
6506 while (inst) {
6507 LLVMValueRef cur = inst;
6508 inst = LLVMGetNextInstruction(inst);
6509
6510 if (LLVMGetInstructionOpcode(cur) != LLVMCall)
6511 continue;
6512
6513 LLVMValueRef callee = lp_get_called_value(cur);
6514
6515 if (!lp_is_function(callee))
6516 continue;
6517
6518 const char *name = LLVMGetValueName(callee);
6519 unsigned num_args = LLVMCountParams(callee);
6520
6521 /* Check if this is an export instruction. */
6522 if (num_args != 9 || strcmp(name, "llvm.SI.export"))
6523 continue;
6524
6525 LLVMValueRef arg = LLVMGetOperand(cur, 3);
6526 unsigned target = LLVMConstIntGetZExtValue(arg);
6527
6528 if (target < V_008DFC_SQ_EXP_PARAM)
6529 continue;
6530
6531 target -= V_008DFC_SQ_EXP_PARAM;
6532
6533 /* Eliminate constant value PARAM exports. */
6534 if (si_eliminate_const_output(ctx, cur, target)) {
6535 removed_any = true;
6536 } else {
6537 exports.offset[exports.num] = target;
6538 exports.inst[exports.num] = cur;
6539 exports.num++;
6540 }
6541 }
6542 bb = LLVMGetNextBasicBlock(bb);
6543 }
6544
6545 /* Remove holes in export memory due to removed PARAM exports.
6546 * This is done by renumbering all PARAM exports.
6547 */
6548 if (removed_any) {
6549 ubyte current_offset[SI_MAX_VS_OUTPUTS];
6550 unsigned new_count = 0;
6551 unsigned out, i;
6552
6553 /* Make a copy of the offsets. We need the old version while
6554 * we are modifying some of them. */
6555 assert(sizeof(current_offset) ==
6556 sizeof(shader->info.vs_output_param_offset));
6557 memcpy(current_offset, shader->info.vs_output_param_offset,
6558 sizeof(current_offset));
6559
6560 for (i = 0; i < exports.num; i++) {
6561 unsigned offset = exports.offset[i];
6562
6563 for (out = 0; out < info->num_outputs; out++) {
6564 if (current_offset[out] != offset)
6565 continue;
6566
6567 LLVMSetOperand(exports.inst[i], 3,
6568 LLVMConstInt(ctx->i32,
6569 V_008DFC_SQ_EXP_PARAM + new_count, 0));
6570 shader->info.vs_output_param_offset[out] = new_count;
6571 new_count++;
6572 break;
6573 }
6574 }
6575 shader->info.nr_param_exports = new_count;
6576 }
6577 }
6578
6579 static void si_count_scratch_private_memory(struct si_shader_context *ctx)
6580 {
6581 ctx->shader->config.private_mem_vgprs = 0;
6582
6583 /* Process all LLVM instructions. */
6584 LLVMBasicBlockRef bb = LLVMGetFirstBasicBlock(ctx->main_fn);
6585 while (bb) {
6586 LLVMValueRef next = LLVMGetFirstInstruction(bb);
6587
6588 while (next) {
6589 LLVMValueRef inst = next;
6590 next = LLVMGetNextInstruction(next);
6591
6592 if (LLVMGetInstructionOpcode(inst) != LLVMAlloca)
6593 continue;
6594
6595 LLVMTypeRef type = LLVMGetElementType(LLVMTypeOf(inst));
6596 /* No idea why LLVM aligns allocas to 4 elements. */
6597 unsigned alignment = LLVMGetAlignment(inst);
6598 unsigned dw_size = align(llvm_get_type_size(type) / 4, alignment);
6599 ctx->shader->config.private_mem_vgprs += dw_size;
6600 }
6601 bb = LLVMGetNextBasicBlock(bb);
6602 }
6603 }
6604
6605 static bool si_compile_tgsi_main(struct si_shader_context *ctx,
6606 struct si_shader *shader)
6607 {
6608 struct si_shader_selector *sel = shader->selector;
6609 struct lp_build_tgsi_context *bld_base = &ctx->soa.bld_base;
6610
6611 switch (ctx->type) {
6612 case PIPE_SHADER_VERTEX:
6613 ctx->load_input = declare_input_vs;
6614 if (shader->key.as_ls)
6615 bld_base->emit_epilogue = si_llvm_emit_ls_epilogue;
6616 else if (shader->key.as_es)
6617 bld_base->emit_epilogue = si_llvm_emit_es_epilogue;
6618 else
6619 bld_base->emit_epilogue = si_llvm_emit_vs_epilogue;
6620 break;
6621 case PIPE_SHADER_TESS_CTRL:
6622 bld_base->emit_fetch_funcs[TGSI_FILE_INPUT] = fetch_input_tcs;
6623 bld_base->emit_fetch_funcs[TGSI_FILE_OUTPUT] = fetch_output_tcs;
6624 bld_base->emit_store = store_output_tcs;
6625 bld_base->emit_epilogue = si_llvm_emit_tcs_epilogue;
6626 break;
6627 case PIPE_SHADER_TESS_EVAL:
6628 bld_base->emit_fetch_funcs[TGSI_FILE_INPUT] = fetch_input_tes;
6629 if (shader->key.as_es)
6630 bld_base->emit_epilogue = si_llvm_emit_es_epilogue;
6631 else
6632 bld_base->emit_epilogue = si_llvm_emit_vs_epilogue;
6633 break;
6634 case PIPE_SHADER_GEOMETRY:
6635 bld_base->emit_fetch_funcs[TGSI_FILE_INPUT] = fetch_input_gs;
6636 bld_base->emit_epilogue = si_llvm_emit_gs_epilogue;
6637 break;
6638 case PIPE_SHADER_FRAGMENT:
6639 ctx->load_input = declare_input_fs;
6640 bld_base->emit_epilogue = si_llvm_return_fs_outputs;
6641 break;
6642 case PIPE_SHADER_COMPUTE:
6643 ctx->declare_memory_region = declare_compute_memory;
6644 break;
6645 default:
6646 assert(!"Unsupported shader type");
6647 return false;
6648 }
6649
6650 create_meta_data(ctx);
6651 create_function(ctx);
6652 preload_ring_buffers(ctx);
6653
6654 if (ctx->type == PIPE_SHADER_GEOMETRY) {
6655 int i;
6656 for (i = 0; i < 4; i++) {
6657 ctx->gs_next_vertex[i] =
6658 lp_build_alloca(bld_base->base.gallivm,
6659 ctx->i32, "");
6660 }
6661 }
6662
6663 if (!lp_build_tgsi_llvm(bld_base, sel->tokens)) {
6664 fprintf(stderr, "Failed to translate shader from TGSI to LLVM\n");
6665 return false;
6666 }
6667
6668 si_llvm_build_ret(ctx, ctx->return_value);
6669 return true;
6670 }
6671
6672 /**
6673 * Compute the VS prolog key, which contains all the information needed to
6674 * build the VS prolog function, and set shader->info bits where needed.
6675 */
6676 static void si_get_vs_prolog_key(struct si_shader *shader,
6677 union si_shader_part_key *key)
6678 {
6679 struct tgsi_shader_info *info = &shader->selector->info;
6680
6681 memset(key, 0, sizeof(*key));
6682 key->vs_prolog.states = shader->key.part.vs.prolog;
6683 key->vs_prolog.num_input_sgprs = shader->info.num_input_sgprs;
6684 key->vs_prolog.last_input = MAX2(1, info->num_inputs) - 1;
6685
6686 /* Set the instanceID flag. */
6687 for (unsigned i = 0; i < info->num_inputs; i++)
6688 if (key->vs_prolog.states.instance_divisors[i])
6689 shader->info.uses_instanceid = true;
6690 }
6691
6692 /**
6693 * Compute the VS epilog key, which contains all the information needed to
6694 * build the VS epilog function, and set the PrimitiveID output offset.
6695 */
6696 static void si_get_vs_epilog_key(struct si_shader *shader,
6697 struct si_vs_epilog_bits *states,
6698 union si_shader_part_key *key)
6699 {
6700 memset(key, 0, sizeof(*key));
6701 key->vs_epilog.states = *states;
6702
6703 /* Set up the PrimitiveID output. */
6704 if (shader->key.part.vs.epilog.export_prim_id) {
6705 unsigned index = shader->selector->info.num_outputs;
6706 unsigned offset = shader->info.nr_param_exports++;
6707
6708 key->vs_epilog.prim_id_param_offset = offset;
6709 assert(index < ARRAY_SIZE(shader->info.vs_output_param_offset));
6710 shader->info.vs_output_param_offset[index] = offset;
6711 }
6712 }
6713
6714 /**
6715 * Compute the PS prolog key, which contains all the information needed to
6716 * build the PS prolog function, and set related bits in shader->config.
6717 */
6718 static void si_get_ps_prolog_key(struct si_shader *shader,
6719 union si_shader_part_key *key,
6720 bool separate_prolog)
6721 {
6722 struct tgsi_shader_info *info = &shader->selector->info;
6723
6724 memset(key, 0, sizeof(*key));
6725 key->ps_prolog.states = shader->key.part.ps.prolog;
6726 key->ps_prolog.colors_read = info->colors_read;
6727 key->ps_prolog.num_input_sgprs = shader->info.num_input_sgprs;
6728 key->ps_prolog.num_input_vgprs = shader->info.num_input_vgprs;
6729 key->ps_prolog.wqm = info->uses_derivatives &&
6730 (key->ps_prolog.colors_read ||
6731 key->ps_prolog.states.force_persp_sample_interp ||
6732 key->ps_prolog.states.force_linear_sample_interp ||
6733 key->ps_prolog.states.force_persp_center_interp ||
6734 key->ps_prolog.states.force_linear_center_interp ||
6735 key->ps_prolog.states.bc_optimize_for_persp ||
6736 key->ps_prolog.states.bc_optimize_for_linear);
6737
6738 if (info->colors_read) {
6739 unsigned *color = shader->selector->color_attr_index;
6740
6741 if (shader->key.part.ps.prolog.color_two_side) {
6742 /* BCOLORs are stored after the last input. */
6743 key->ps_prolog.num_interp_inputs = info->num_inputs;
6744 key->ps_prolog.face_vgpr_index = shader->info.face_vgpr_index;
6745 shader->config.spi_ps_input_ena |= S_0286CC_FRONT_FACE_ENA(1);
6746 }
6747
6748 for (unsigned i = 0; i < 2; i++) {
6749 unsigned interp = info->input_interpolate[color[i]];
6750 unsigned location = info->input_interpolate_loc[color[i]];
6751
6752 if (!(info->colors_read & (0xf << i*4)))
6753 continue;
6754
6755 key->ps_prolog.color_attr_index[i] = color[i];
6756
6757 if (shader->key.part.ps.prolog.flatshade_colors &&
6758 interp == TGSI_INTERPOLATE_COLOR)
6759 interp = TGSI_INTERPOLATE_CONSTANT;
6760
6761 switch (interp) {
6762 case TGSI_INTERPOLATE_CONSTANT:
6763 key->ps_prolog.color_interp_vgpr_index[i] = -1;
6764 break;
6765 case TGSI_INTERPOLATE_PERSPECTIVE:
6766 case TGSI_INTERPOLATE_COLOR:
6767 /* Force the interpolation location for colors here. */
6768 if (shader->key.part.ps.prolog.force_persp_sample_interp)
6769 location = TGSI_INTERPOLATE_LOC_SAMPLE;
6770 if (shader->key.part.ps.prolog.force_persp_center_interp)
6771 location = TGSI_INTERPOLATE_LOC_CENTER;
6772
6773 switch (location) {
6774 case TGSI_INTERPOLATE_LOC_SAMPLE:
6775 key->ps_prolog.color_interp_vgpr_index[i] = 0;
6776 shader->config.spi_ps_input_ena |=
6777 S_0286CC_PERSP_SAMPLE_ENA(1);
6778 break;
6779 case TGSI_INTERPOLATE_LOC_CENTER:
6780 key->ps_prolog.color_interp_vgpr_index[i] = 2;
6781 shader->config.spi_ps_input_ena |=
6782 S_0286CC_PERSP_CENTER_ENA(1);
6783 break;
6784 case TGSI_INTERPOLATE_LOC_CENTROID:
6785 key->ps_prolog.color_interp_vgpr_index[i] = 4;
6786 shader->config.spi_ps_input_ena |=
6787 S_0286CC_PERSP_CENTROID_ENA(1);
6788 break;
6789 default:
6790 assert(0);
6791 }
6792 break;
6793 case TGSI_INTERPOLATE_LINEAR:
6794 /* Force the interpolation location for colors here. */
6795 if (shader->key.part.ps.prolog.force_linear_sample_interp)
6796 location = TGSI_INTERPOLATE_LOC_SAMPLE;
6797 if (shader->key.part.ps.prolog.force_linear_center_interp)
6798 location = TGSI_INTERPOLATE_LOC_CENTER;
6799
6800 /* The VGPR assignment for non-monolithic shaders
6801 * works because InitialPSInputAddr is set on the
6802 * main shader and PERSP_PULL_MODEL is never used.
6803 */
6804 switch (location) {
6805 case TGSI_INTERPOLATE_LOC_SAMPLE:
6806 key->ps_prolog.color_interp_vgpr_index[i] =
6807 separate_prolog ? 6 : 9;
6808 shader->config.spi_ps_input_ena |=
6809 S_0286CC_LINEAR_SAMPLE_ENA(1);
6810 break;
6811 case TGSI_INTERPOLATE_LOC_CENTER:
6812 key->ps_prolog.color_interp_vgpr_index[i] =
6813 separate_prolog ? 8 : 11;
6814 shader->config.spi_ps_input_ena |=
6815 S_0286CC_LINEAR_CENTER_ENA(1);
6816 break;
6817 case TGSI_INTERPOLATE_LOC_CENTROID:
6818 key->ps_prolog.color_interp_vgpr_index[i] =
6819 separate_prolog ? 10 : 13;
6820 shader->config.spi_ps_input_ena |=
6821 S_0286CC_LINEAR_CENTROID_ENA(1);
6822 break;
6823 default:
6824 assert(0);
6825 }
6826 break;
6827 default:
6828 assert(0);
6829 }
6830 }
6831 }
6832 }
6833
6834 /**
6835 * Check whether a PS prolog is required based on the key.
6836 */
6837 static bool si_need_ps_prolog(const union si_shader_part_key *key)
6838 {
6839 return key->ps_prolog.colors_read ||
6840 key->ps_prolog.states.force_persp_sample_interp ||
6841 key->ps_prolog.states.force_linear_sample_interp ||
6842 key->ps_prolog.states.force_persp_center_interp ||
6843 key->ps_prolog.states.force_linear_center_interp ||
6844 key->ps_prolog.states.bc_optimize_for_persp ||
6845 key->ps_prolog.states.bc_optimize_for_linear ||
6846 key->ps_prolog.states.poly_stipple;
6847 }
6848
6849 /**
6850 * Compute the PS epilog key, which contains all the information needed to
6851 * build the PS epilog function.
6852 */
6853 static void si_get_ps_epilog_key(struct si_shader *shader,
6854 union si_shader_part_key *key)
6855 {
6856 struct tgsi_shader_info *info = &shader->selector->info;
6857 memset(key, 0, sizeof(*key));
6858 key->ps_epilog.colors_written = info->colors_written;
6859 key->ps_epilog.writes_z = info->writes_z;
6860 key->ps_epilog.writes_stencil = info->writes_stencil;
6861 key->ps_epilog.writes_samplemask = info->writes_samplemask;
6862 key->ps_epilog.states = shader->key.part.ps.epilog;
6863 }
6864
6865 /**
6866 * Build the GS prolog function. Rotate the input vertices for triangle strips
6867 * with adjacency.
6868 */
6869 static void si_build_gs_prolog_function(struct si_shader_context *ctx,
6870 union si_shader_part_key *key)
6871 {
6872 const unsigned num_sgprs = SI_GS_NUM_USER_SGPR + 2;
6873 const unsigned num_vgprs = 8;
6874 struct gallivm_state *gallivm = &ctx->gallivm;
6875 LLVMBuilderRef builder = gallivm->builder;
6876 LLVMTypeRef params[32];
6877 LLVMTypeRef returns[32];
6878 LLVMValueRef func, ret;
6879
6880 for (unsigned i = 0; i < num_sgprs; ++i) {
6881 params[i] = ctx->i32;
6882 returns[i] = ctx->i32;
6883 }
6884
6885 for (unsigned i = 0; i < num_vgprs; ++i) {
6886 params[num_sgprs + i] = ctx->i32;
6887 returns[num_sgprs + i] = ctx->f32;
6888 }
6889
6890 /* Create the function. */
6891 si_create_function(ctx, "gs_prolog", returns, num_sgprs + num_vgprs,
6892 params, num_sgprs + num_vgprs, num_sgprs - 1);
6893 func = ctx->main_fn;
6894
6895 /* Copy inputs to outputs. This should be no-op, as the registers match,
6896 * but it will prevent the compiler from overwriting them unintentionally.
6897 */
6898 ret = ctx->return_value;
6899 for (unsigned i = 0; i < num_sgprs; i++) {
6900 LLVMValueRef p = LLVMGetParam(func, i);
6901 ret = LLVMBuildInsertValue(builder, ret, p, i, "");
6902 }
6903 for (unsigned i = 0; i < num_vgprs; i++) {
6904 LLVMValueRef p = LLVMGetParam(func, num_sgprs + i);
6905 p = LLVMBuildBitCast(builder, p, ctx->f32, "");
6906 ret = LLVMBuildInsertValue(builder, ret, p, num_sgprs + i, "");
6907 }
6908
6909 if (key->gs_prolog.states.tri_strip_adj_fix) {
6910 /* Remap the input vertices for every other primitive. */
6911 const unsigned vtx_params[6] = {
6912 num_sgprs,
6913 num_sgprs + 1,
6914 num_sgprs + 3,
6915 num_sgprs + 4,
6916 num_sgprs + 5,
6917 num_sgprs + 6
6918 };
6919 LLVMValueRef prim_id, rotate;
6920
6921 prim_id = LLVMGetParam(func, num_sgprs + 2);
6922 rotate = LLVMBuildTrunc(builder, prim_id, ctx->i1, "");
6923
6924 for (unsigned i = 0; i < 6; ++i) {
6925 LLVMValueRef base, rotated, actual;
6926 base = LLVMGetParam(func, vtx_params[i]);
6927 rotated = LLVMGetParam(func, vtx_params[(i + 4) % 6]);
6928 actual = LLVMBuildSelect(builder, rotate, rotated, base, "");
6929 actual = LLVMBuildBitCast(builder, actual, ctx->f32, "");
6930 ret = LLVMBuildInsertValue(builder, ret, actual, vtx_params[i], "");
6931 }
6932 }
6933
6934 LLVMBuildRet(builder, ret);
6935 }
6936
6937 /**
6938 * Given a list of shader part functions, build a wrapper function that
6939 * runs them in sequence to form a monolithic shader.
6940 */
6941 static void si_build_wrapper_function(struct si_shader_context *ctx,
6942 LLVMValueRef *parts,
6943 unsigned num_parts,
6944 unsigned main_part)
6945 {
6946 struct gallivm_state *gallivm = &ctx->gallivm;
6947 LLVMBuilderRef builder = ctx->gallivm.builder;
6948 /* PS epilog has one arg per color component */
6949 LLVMTypeRef param_types[48];
6950 LLVMValueRef out[48];
6951 LLVMTypeRef function_type;
6952 unsigned num_params;
6953 unsigned num_out;
6954 MAYBE_UNUSED unsigned num_out_sgpr; /* used in debug checks */
6955 unsigned num_sgprs, num_vgprs;
6956 unsigned last_sgpr_param;
6957 unsigned gprs;
6958
6959 for (unsigned i = 0; i < num_parts; ++i) {
6960 lp_add_function_attr(parts[i], -1, LP_FUNC_ATTR_ALWAYSINLINE);
6961 LLVMSetLinkage(parts[i], LLVMPrivateLinkage);
6962 }
6963
6964 /* The parameters of the wrapper function correspond to those of the
6965 * first part in terms of SGPRs and VGPRs, but we use the types of the
6966 * main part to get the right types. This is relevant for the
6967 * dereferenceable attribute on descriptor table pointers.
6968 */
6969 num_sgprs = 0;
6970 num_vgprs = 0;
6971
6972 function_type = LLVMGetElementType(LLVMTypeOf(parts[0]));
6973 num_params = LLVMCountParamTypes(function_type);
6974
6975 for (unsigned i = 0; i < num_params; ++i) {
6976 LLVMValueRef param = LLVMGetParam(parts[0], i);
6977
6978 if (ac_is_sgpr_param(param)) {
6979 assert(num_vgprs == 0);
6980 num_sgprs += llvm_get_type_size(LLVMTypeOf(param)) / 4;
6981 } else {
6982 num_vgprs += llvm_get_type_size(LLVMTypeOf(param)) / 4;
6983 }
6984 }
6985 assert(num_vgprs + num_sgprs <= ARRAY_SIZE(param_types));
6986
6987 num_params = 0;
6988 last_sgpr_param = 0;
6989 gprs = 0;
6990 while (gprs < num_sgprs + num_vgprs) {
6991 LLVMValueRef param = LLVMGetParam(parts[main_part], num_params);
6992 unsigned size;
6993
6994 param_types[num_params] = LLVMTypeOf(param);
6995 if (gprs < num_sgprs)
6996 last_sgpr_param = num_params;
6997 size = llvm_get_type_size(param_types[num_params]) / 4;
6998 num_params++;
6999
7000 assert(ac_is_sgpr_param(param) == (gprs < num_sgprs));
7001 assert(gprs + size <= num_sgprs + num_vgprs &&
7002 (gprs >= num_sgprs || gprs + size <= num_sgprs));
7003
7004 gprs += size;
7005 }
7006
7007 si_create_function(ctx, "wrapper", NULL, 0, param_types, num_params, last_sgpr_param);
7008
7009 /* Record the arguments of the function as if they were an output of
7010 * a previous part.
7011 */
7012 num_out = 0;
7013 num_out_sgpr = 0;
7014
7015 for (unsigned i = 0; i < num_params; ++i) {
7016 LLVMValueRef param = LLVMGetParam(ctx->main_fn, i);
7017 LLVMTypeRef param_type = LLVMTypeOf(param);
7018 LLVMTypeRef out_type = i <= last_sgpr_param ? ctx->i32 : ctx->f32;
7019 unsigned size = llvm_get_type_size(param_type) / 4;
7020
7021 if (size == 1) {
7022 if (param_type != out_type)
7023 param = LLVMBuildBitCast(builder, param, out_type, "");
7024 out[num_out++] = param;
7025 } else {
7026 LLVMTypeRef vector_type = LLVMVectorType(out_type, size);
7027
7028 if (LLVMGetTypeKind(param_type) == LLVMPointerTypeKind) {
7029 param = LLVMBuildPtrToInt(builder, param, ctx->i64, "");
7030 param_type = ctx->i64;
7031 }
7032
7033 if (param_type != vector_type)
7034 param = LLVMBuildBitCast(builder, param, vector_type, "");
7035
7036 for (unsigned j = 0; j < size; ++j)
7037 out[num_out++] = LLVMBuildExtractElement(
7038 builder, param, LLVMConstInt(ctx->i32, j, 0), "");
7039 }
7040
7041 if (i <= last_sgpr_param)
7042 num_out_sgpr = num_out;
7043 }
7044
7045 /* Now chain the parts. */
7046 for (unsigned part = 0; part < num_parts; ++part) {
7047 LLVMValueRef in[48];
7048 LLVMValueRef ret;
7049 LLVMTypeRef ret_type;
7050 unsigned out_idx = 0;
7051
7052 num_params = LLVMCountParams(parts[part]);
7053 assert(num_params <= ARRAY_SIZE(param_types));
7054
7055 /* Derive arguments for the next part from outputs of the
7056 * previous one.
7057 */
7058 for (unsigned param_idx = 0; param_idx < num_params; ++param_idx) {
7059 LLVMValueRef param;
7060 LLVMTypeRef param_type;
7061 bool is_sgpr;
7062 unsigned param_size;
7063 LLVMValueRef arg = NULL;
7064
7065 param = LLVMGetParam(parts[part], param_idx);
7066 param_type = LLVMTypeOf(param);
7067 param_size = llvm_get_type_size(param_type) / 4;
7068 is_sgpr = ac_is_sgpr_param(param);
7069
7070 if (is_sgpr) {
7071 #if HAVE_LLVM < 0x0400
7072 LLVMRemoveAttribute(param, LLVMByValAttribute);
7073 #else
7074 unsigned kind_id = LLVMGetEnumAttributeKindForName("byval", 5);
7075 LLVMRemoveEnumAttributeAtIndex(parts[part], param_idx + 1, kind_id);
7076 #endif
7077 lp_add_function_attr(parts[part], param_idx + 1, LP_FUNC_ATTR_INREG);
7078 }
7079
7080 assert(out_idx + param_size <= (is_sgpr ? num_out_sgpr : num_out));
7081 assert(is_sgpr || out_idx >= num_out_sgpr);
7082
7083 if (param_size == 1)
7084 arg = out[out_idx];
7085 else
7086 arg = lp_build_gather_values(gallivm, &out[out_idx], param_size);
7087
7088 if (LLVMTypeOf(arg) != param_type) {
7089 if (LLVMGetTypeKind(param_type) == LLVMPointerTypeKind) {
7090 arg = LLVMBuildBitCast(builder, arg, ctx->i64, "");
7091 arg = LLVMBuildIntToPtr(builder, arg, param_type, "");
7092 } else {
7093 arg = LLVMBuildBitCast(builder, arg, param_type, "");
7094 }
7095 }
7096
7097 in[param_idx] = arg;
7098 out_idx += param_size;
7099 }
7100
7101 ret = LLVMBuildCall(builder, parts[part], in, num_params, "");
7102 ret_type = LLVMTypeOf(ret);
7103
7104 /* Extract the returned GPRs. */
7105 num_out = 0;
7106 num_out_sgpr = 0;
7107
7108 if (LLVMGetTypeKind(ret_type) != LLVMVoidTypeKind) {
7109 assert(LLVMGetTypeKind(ret_type) == LLVMStructTypeKind);
7110
7111 unsigned ret_size = LLVMCountStructElementTypes(ret_type);
7112
7113 for (unsigned i = 0; i < ret_size; ++i) {
7114 LLVMValueRef val =
7115 LLVMBuildExtractValue(builder, ret, i, "");
7116
7117 out[num_out++] = val;
7118
7119 if (LLVMTypeOf(val) == ctx->i32) {
7120 assert(num_out_sgpr + 1 == num_out);
7121 num_out_sgpr = num_out;
7122 }
7123 }
7124 }
7125 }
7126
7127 LLVMBuildRetVoid(builder);
7128 }
7129
7130 int si_compile_tgsi_shader(struct si_screen *sscreen,
7131 LLVMTargetMachineRef tm,
7132 struct si_shader *shader,
7133 bool is_monolithic,
7134 struct pipe_debug_callback *debug)
7135 {
7136 struct si_shader_selector *sel = shader->selector;
7137 struct si_shader_context ctx;
7138 struct lp_build_tgsi_context *bld_base;
7139 LLVMModuleRef mod;
7140 int r = -1;
7141
7142 /* Dump TGSI code before doing TGSI->LLVM conversion in case the
7143 * conversion fails. */
7144 if (r600_can_dump_shader(&sscreen->b, sel->info.processor) &&
7145 !(sscreen->b.debug_flags & DBG_NO_TGSI)) {
7146 tgsi_dump(sel->tokens, 0);
7147 si_dump_streamout(&sel->so);
7148 }
7149
7150 si_init_shader_ctx(&ctx, sscreen, shader, tm);
7151 ctx.separate_prolog = !is_monolithic;
7152
7153 memset(shader->info.vs_output_param_offset, EXP_PARAM_UNDEFINED,
7154 sizeof(shader->info.vs_output_param_offset));
7155
7156 shader->info.uses_instanceid = sel->info.uses_instanceid;
7157
7158 bld_base = &ctx.soa.bld_base;
7159 ctx.load_system_value = declare_system_value;
7160
7161 if (!si_compile_tgsi_main(&ctx, shader)) {
7162 si_llvm_dispose(&ctx);
7163 return -1;
7164 }
7165
7166 if (is_monolithic && ctx.type == PIPE_SHADER_VERTEX) {
7167 LLVMValueRef parts[3];
7168 bool need_prolog;
7169 bool need_epilog;
7170
7171 need_prolog = sel->info.num_inputs;
7172 need_epilog = !shader->key.as_es && !shader->key.as_ls;
7173
7174 parts[need_prolog ? 1 : 0] = ctx.main_fn;
7175
7176 if (need_prolog) {
7177 union si_shader_part_key prolog_key;
7178 si_get_vs_prolog_key(shader, &prolog_key);
7179 si_build_vs_prolog_function(&ctx, &prolog_key);
7180 parts[0] = ctx.main_fn;
7181 }
7182
7183 if (need_epilog) {
7184 union si_shader_part_key epilog_key;
7185 si_get_vs_epilog_key(shader, &shader->key.part.vs.epilog, &epilog_key);
7186 si_build_vs_epilog_function(&ctx, &epilog_key);
7187 parts[need_prolog ? 2 : 1] = ctx.main_fn;
7188 }
7189
7190 si_build_wrapper_function(&ctx, parts, 1 + need_prolog + need_epilog,
7191 need_prolog ? 1 : 0);
7192 } else if (is_monolithic && ctx.type == PIPE_SHADER_TESS_CTRL) {
7193 LLVMValueRef parts[2];
7194 union si_shader_part_key epilog_key;
7195
7196 parts[0] = ctx.main_fn;
7197
7198 memset(&epilog_key, 0, sizeof(epilog_key));
7199 epilog_key.tcs_epilog.states = shader->key.part.tcs.epilog;
7200 si_build_tcs_epilog_function(&ctx, &epilog_key);
7201 parts[1] = ctx.main_fn;
7202
7203 si_build_wrapper_function(&ctx, parts, 2, 0);
7204 } else if (is_monolithic && ctx.type == PIPE_SHADER_TESS_EVAL &&
7205 !shader->key.as_es) {
7206 LLVMValueRef parts[2];
7207 union si_shader_part_key epilog_key;
7208
7209 parts[0] = ctx.main_fn;
7210
7211 si_get_vs_epilog_key(shader, &shader->key.part.tes.epilog, &epilog_key);
7212 si_build_vs_epilog_function(&ctx, &epilog_key);
7213 parts[1] = ctx.main_fn;
7214
7215 si_build_wrapper_function(&ctx, parts, 2, 0);
7216 } else if (is_monolithic && ctx.type == PIPE_SHADER_GEOMETRY) {
7217 LLVMValueRef parts[2];
7218 union si_shader_part_key prolog_key;
7219
7220 parts[1] = ctx.main_fn;
7221
7222 memset(&prolog_key, 0, sizeof(prolog_key));
7223 prolog_key.gs_prolog.states = shader->key.part.gs.prolog;
7224 si_build_gs_prolog_function(&ctx, &prolog_key);
7225 parts[0] = ctx.main_fn;
7226
7227 si_build_wrapper_function(&ctx, parts, 2, 1);
7228 } else if (is_monolithic && ctx.type == PIPE_SHADER_FRAGMENT) {
7229 LLVMValueRef parts[3];
7230 union si_shader_part_key prolog_key;
7231 union si_shader_part_key epilog_key;
7232 bool need_prolog;
7233
7234 si_get_ps_prolog_key(shader, &prolog_key, false);
7235 need_prolog = si_need_ps_prolog(&prolog_key);
7236
7237 parts[need_prolog ? 1 : 0] = ctx.main_fn;
7238
7239 if (need_prolog) {
7240 si_build_ps_prolog_function(&ctx, &prolog_key);
7241 parts[0] = ctx.main_fn;
7242 }
7243
7244 si_get_ps_epilog_key(shader, &epilog_key);
7245 si_build_ps_epilog_function(&ctx, &epilog_key);
7246 parts[need_prolog ? 2 : 1] = ctx.main_fn;
7247
7248 si_build_wrapper_function(&ctx, parts, need_prolog ? 3 : 2, need_prolog ? 1 : 0);
7249 }
7250
7251 mod = bld_base->base.gallivm->module;
7252
7253 /* Dump LLVM IR before any optimization passes */
7254 if (sscreen->b.debug_flags & DBG_PREOPT_IR &&
7255 r600_can_dump_shader(&sscreen->b, ctx.type))
7256 LLVMDumpModule(mod);
7257
7258 si_llvm_finalize_module(&ctx,
7259 r600_extra_shader_checks(&sscreen->b, ctx.type));
7260
7261 /* Post-optimization transformations and analysis. */
7262 si_eliminate_const_vs_outputs(&ctx);
7263
7264 if ((debug && debug->debug_message) ||
7265 r600_can_dump_shader(&sscreen->b, ctx.type))
7266 si_count_scratch_private_memory(&ctx);
7267
7268 /* Compile to bytecode. */
7269 r = si_compile_llvm(sscreen, &shader->binary, &shader->config, tm,
7270 mod, debug, ctx.type, "TGSI shader");
7271 si_llvm_dispose(&ctx);
7272 if (r) {
7273 fprintf(stderr, "LLVM failed to compile shader\n");
7274 return r;
7275 }
7276
7277 /* Validate SGPR and VGPR usage for compute to detect compiler bugs.
7278 * LLVM 3.9svn has this bug.
7279 */
7280 if (sel->type == PIPE_SHADER_COMPUTE) {
7281 unsigned *props = sel->info.properties;
7282 unsigned wave_size = 64;
7283 unsigned max_vgprs = 256;
7284 unsigned max_sgprs = sscreen->b.chip_class >= VI ? 800 : 512;
7285 unsigned max_sgprs_per_wave = 128;
7286 unsigned max_block_threads;
7287
7288 if (props[TGSI_PROPERTY_CS_FIXED_BLOCK_WIDTH])
7289 max_block_threads = props[TGSI_PROPERTY_CS_FIXED_BLOCK_WIDTH] *
7290 props[TGSI_PROPERTY_CS_FIXED_BLOCK_HEIGHT] *
7291 props[TGSI_PROPERTY_CS_FIXED_BLOCK_DEPTH];
7292 else
7293 max_block_threads = SI_MAX_VARIABLE_THREADS_PER_BLOCK;
7294
7295 unsigned min_waves_per_cu = DIV_ROUND_UP(max_block_threads, wave_size);
7296 unsigned min_waves_per_simd = DIV_ROUND_UP(min_waves_per_cu, 4);
7297
7298 max_vgprs = max_vgprs / min_waves_per_simd;
7299 max_sgprs = MIN2(max_sgprs / min_waves_per_simd, max_sgprs_per_wave);
7300
7301 if (shader->config.num_sgprs > max_sgprs ||
7302 shader->config.num_vgprs > max_vgprs) {
7303 fprintf(stderr, "LLVM failed to compile a shader correctly: "
7304 "SGPR:VGPR usage is %u:%u, but the hw limit is %u:%u\n",
7305 shader->config.num_sgprs, shader->config.num_vgprs,
7306 max_sgprs, max_vgprs);
7307
7308 /* Just terminate the process, because dependent
7309 * shaders can hang due to bad input data, but use
7310 * the env var to allow shader-db to work.
7311 */
7312 if (!debug_get_bool_option("SI_PASS_BAD_SHADERS", false))
7313 abort();
7314 }
7315 }
7316
7317 /* Add the scratch offset to input SGPRs. */
7318 if (shader->config.scratch_bytes_per_wave)
7319 shader->info.num_input_sgprs += 1; /* scratch byte offset */
7320
7321 /* Calculate the number of fragment input VGPRs. */
7322 if (ctx.type == PIPE_SHADER_FRAGMENT) {
7323 shader->info.num_input_vgprs = 0;
7324 shader->info.face_vgpr_index = -1;
7325
7326 if (G_0286CC_PERSP_SAMPLE_ENA(shader->config.spi_ps_input_addr))
7327 shader->info.num_input_vgprs += 2;
7328 if (G_0286CC_PERSP_CENTER_ENA(shader->config.spi_ps_input_addr))
7329 shader->info.num_input_vgprs += 2;
7330 if (G_0286CC_PERSP_CENTROID_ENA(shader->config.spi_ps_input_addr))
7331 shader->info.num_input_vgprs += 2;
7332 if (G_0286CC_PERSP_PULL_MODEL_ENA(shader->config.spi_ps_input_addr))
7333 shader->info.num_input_vgprs += 3;
7334 if (G_0286CC_LINEAR_SAMPLE_ENA(shader->config.spi_ps_input_addr))
7335 shader->info.num_input_vgprs += 2;
7336 if (G_0286CC_LINEAR_CENTER_ENA(shader->config.spi_ps_input_addr))
7337 shader->info.num_input_vgprs += 2;
7338 if (G_0286CC_LINEAR_CENTROID_ENA(shader->config.spi_ps_input_addr))
7339 shader->info.num_input_vgprs += 2;
7340 if (G_0286CC_LINE_STIPPLE_TEX_ENA(shader->config.spi_ps_input_addr))
7341 shader->info.num_input_vgprs += 1;
7342 if (G_0286CC_POS_X_FLOAT_ENA(shader->config.spi_ps_input_addr))
7343 shader->info.num_input_vgprs += 1;
7344 if (G_0286CC_POS_Y_FLOAT_ENA(shader->config.spi_ps_input_addr))
7345 shader->info.num_input_vgprs += 1;
7346 if (G_0286CC_POS_Z_FLOAT_ENA(shader->config.spi_ps_input_addr))
7347 shader->info.num_input_vgprs += 1;
7348 if (G_0286CC_POS_W_FLOAT_ENA(shader->config.spi_ps_input_addr))
7349 shader->info.num_input_vgprs += 1;
7350 if (G_0286CC_FRONT_FACE_ENA(shader->config.spi_ps_input_addr)) {
7351 shader->info.face_vgpr_index = shader->info.num_input_vgprs;
7352 shader->info.num_input_vgprs += 1;
7353 }
7354 if (G_0286CC_ANCILLARY_ENA(shader->config.spi_ps_input_addr))
7355 shader->info.num_input_vgprs += 1;
7356 if (G_0286CC_SAMPLE_COVERAGE_ENA(shader->config.spi_ps_input_addr))
7357 shader->info.num_input_vgprs += 1;
7358 if (G_0286CC_POS_FIXED_PT_ENA(shader->config.spi_ps_input_addr))
7359 shader->info.num_input_vgprs += 1;
7360 }
7361
7362 return 0;
7363 }
7364
7365 /**
7366 * Create, compile and return a shader part (prolog or epilog).
7367 *
7368 * \param sscreen screen
7369 * \param list list of shader parts of the same category
7370 * \param type shader type
7371 * \param key shader part key
7372 * \param prolog whether the part being requested is a prolog
7373 * \param tm LLVM target machine
7374 * \param debug debug callback
7375 * \param build the callback responsible for building the main function
7376 * \return non-NULL on success
7377 */
7378 static struct si_shader_part *
7379 si_get_shader_part(struct si_screen *sscreen,
7380 struct si_shader_part **list,
7381 enum pipe_shader_type type,
7382 bool prolog,
7383 union si_shader_part_key *key,
7384 LLVMTargetMachineRef tm,
7385 struct pipe_debug_callback *debug,
7386 void (*build)(struct si_shader_context *,
7387 union si_shader_part_key *),
7388 const char *name)
7389 {
7390 struct si_shader_part *result;
7391
7392 pipe_mutex_lock(sscreen->shader_parts_mutex);
7393
7394 /* Find existing. */
7395 for (result = *list; result; result = result->next) {
7396 if (memcmp(&result->key, key, sizeof(*key)) == 0) {
7397 pipe_mutex_unlock(sscreen->shader_parts_mutex);
7398 return result;
7399 }
7400 }
7401
7402 /* Compile a new one. */
7403 result = CALLOC_STRUCT(si_shader_part);
7404 result->key = *key;
7405
7406 struct si_shader shader = {};
7407 struct si_shader_context ctx;
7408 struct gallivm_state *gallivm = &ctx.gallivm;
7409
7410 si_init_shader_ctx(&ctx, sscreen, &shader, tm);
7411 ctx.type = type;
7412
7413 switch (type) {
7414 case PIPE_SHADER_VERTEX:
7415 break;
7416 case PIPE_SHADER_TESS_CTRL:
7417 assert(!prolog);
7418 shader.key.part.tcs.epilog = key->tcs_epilog.states;
7419 break;
7420 case PIPE_SHADER_GEOMETRY:
7421 assert(prolog);
7422 break;
7423 case PIPE_SHADER_FRAGMENT:
7424 if (prolog)
7425 shader.key.part.ps.prolog = key->ps_prolog.states;
7426 else
7427 shader.key.part.ps.epilog = key->ps_epilog.states;
7428 break;
7429 default:
7430 unreachable("bad shader part");
7431 }
7432
7433 build(&ctx, key);
7434
7435 /* Compile. */
7436 si_llvm_finalize_module(&ctx,
7437 r600_extra_shader_checks(&sscreen->b, PIPE_SHADER_FRAGMENT));
7438
7439 if (si_compile_llvm(sscreen, &result->binary, &result->config, tm,
7440 gallivm->module, debug, ctx.type, name)) {
7441 FREE(result);
7442 result = NULL;
7443 goto out;
7444 }
7445
7446 result->next = *list;
7447 *list = result;
7448
7449 out:
7450 si_llvm_dispose(&ctx);
7451 pipe_mutex_unlock(sscreen->shader_parts_mutex);
7452 return result;
7453 }
7454
7455 /**
7456 * Build the vertex shader prolog function.
7457 *
7458 * The inputs are the same as VS (a lot of SGPRs and 4 VGPR system values).
7459 * All inputs are returned unmodified. The vertex load indices are
7460 * stored after them, which will be used by the API VS for fetching inputs.
7461 *
7462 * For example, the expected outputs for instance_divisors[] = {0, 1, 2} are:
7463 * input_v0,
7464 * input_v1,
7465 * input_v2,
7466 * input_v3,
7467 * (VertexID + BaseVertex),
7468 * (InstanceID + StartInstance),
7469 * (InstanceID / 2 + StartInstance)
7470 */
7471 static void si_build_vs_prolog_function(struct si_shader_context *ctx,
7472 union si_shader_part_key *key)
7473 {
7474 struct gallivm_state *gallivm = &ctx->gallivm;
7475 LLVMTypeRef *params, *returns;
7476 LLVMValueRef ret, func;
7477 int last_sgpr, num_params, num_returns, i;
7478
7479 ctx->param_vertex_id = key->vs_prolog.num_input_sgprs;
7480 ctx->param_instance_id = key->vs_prolog.num_input_sgprs + 3;
7481
7482 /* 4 preloaded VGPRs + vertex load indices as prolog outputs */
7483 params = alloca((key->vs_prolog.num_input_sgprs + 4) *
7484 sizeof(LLVMTypeRef));
7485 returns = alloca((key->vs_prolog.num_input_sgprs + 4 +
7486 key->vs_prolog.last_input + 1) *
7487 sizeof(LLVMTypeRef));
7488 num_params = 0;
7489 num_returns = 0;
7490
7491 /* Declare input and output SGPRs. */
7492 num_params = 0;
7493 for (i = 0; i < key->vs_prolog.num_input_sgprs; i++) {
7494 params[num_params++] = ctx->i32;
7495 returns[num_returns++] = ctx->i32;
7496 }
7497 last_sgpr = num_params - 1;
7498
7499 /* 4 preloaded VGPRs (outputs must be floats) */
7500 for (i = 0; i < 4; i++) {
7501 params[num_params++] = ctx->i32;
7502 returns[num_returns++] = ctx->f32;
7503 }
7504
7505 /* Vertex load indices. */
7506 for (i = 0; i <= key->vs_prolog.last_input; i++)
7507 returns[num_returns++] = ctx->f32;
7508
7509 /* Create the function. */
7510 si_create_function(ctx, "vs_prolog", returns, num_returns, params,
7511 num_params, last_sgpr);
7512 func = ctx->main_fn;
7513
7514 /* Copy inputs to outputs. This should be no-op, as the registers match,
7515 * but it will prevent the compiler from overwriting them unintentionally.
7516 */
7517 ret = ctx->return_value;
7518 for (i = 0; i < key->vs_prolog.num_input_sgprs; i++) {
7519 LLVMValueRef p = LLVMGetParam(func, i);
7520 ret = LLVMBuildInsertValue(gallivm->builder, ret, p, i, "");
7521 }
7522 for (i = num_params - 4; i < num_params; i++) {
7523 LLVMValueRef p = LLVMGetParam(func, i);
7524 p = LLVMBuildBitCast(gallivm->builder, p, ctx->f32, "");
7525 ret = LLVMBuildInsertValue(gallivm->builder, ret, p, i, "");
7526 }
7527
7528 /* Compute vertex load indices from instance divisors. */
7529 for (i = 0; i <= key->vs_prolog.last_input; i++) {
7530 unsigned divisor = key->vs_prolog.states.instance_divisors[i];
7531 LLVMValueRef index;
7532
7533 if (divisor) {
7534 /* InstanceID / Divisor + StartInstance */
7535 index = get_instance_index_for_fetch(ctx,
7536 SI_SGPR_START_INSTANCE,
7537 divisor);
7538 } else {
7539 /* VertexID + BaseVertex */
7540 index = LLVMBuildAdd(gallivm->builder,
7541 LLVMGetParam(func, ctx->param_vertex_id),
7542 LLVMGetParam(func, SI_SGPR_BASE_VERTEX), "");
7543 }
7544
7545 index = LLVMBuildBitCast(gallivm->builder, index, ctx->f32, "");
7546 ret = LLVMBuildInsertValue(gallivm->builder, ret, index,
7547 num_params++, "");
7548 }
7549
7550 si_llvm_build_ret(ctx, ret);
7551 }
7552
7553 /**
7554 * Build the vertex shader epilog function. This is also used by the tessellation
7555 * evaluation shader compiled as VS.
7556 *
7557 * The input is PrimitiveID.
7558 *
7559 * If PrimitiveID is required by the pixel shader, export it.
7560 * Otherwise, do nothing.
7561 */
7562 static void si_build_vs_epilog_function(struct si_shader_context *ctx,
7563 union si_shader_part_key *key)
7564 {
7565 struct gallivm_state *gallivm = &ctx->gallivm;
7566 struct lp_build_tgsi_context *bld_base = &ctx->soa.bld_base;
7567 LLVMTypeRef params[5];
7568 int num_params, i;
7569
7570 /* Declare input VGPRs. */
7571 num_params = key->vs_epilog.states.export_prim_id ?
7572 (VS_EPILOG_PRIMID_LOC + 1) : 0;
7573 assert(num_params <= ARRAY_SIZE(params));
7574
7575 for (i = 0; i < num_params; i++)
7576 params[i] = ctx->f32;
7577
7578 /* Create the function. */
7579 si_create_function(ctx, "vs_epilog", NULL, 0, params, num_params, -1);
7580
7581 /* Emit exports. */
7582 if (key->vs_epilog.states.export_prim_id) {
7583 struct lp_build_context *base = &bld_base->base;
7584 struct lp_build_context *uint = &bld_base->uint_bld;
7585 LLVMValueRef args[9];
7586
7587 args[0] = lp_build_const_int32(base->gallivm, 0x0); /* enabled channels */
7588 args[1] = uint->zero; /* whether the EXEC mask is valid */
7589 args[2] = uint->zero; /* DONE bit */
7590 args[3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_PARAM +
7591 key->vs_epilog.prim_id_param_offset);
7592 args[4] = uint->zero; /* COMPR flag (0 = 32-bit export) */
7593 args[5] = LLVMGetParam(ctx->main_fn,
7594 VS_EPILOG_PRIMID_LOC); /* X */
7595 args[6] = base->undef; /* Y */
7596 args[7] = base->undef; /* Z */
7597 args[8] = base->undef; /* W */
7598
7599 lp_build_intrinsic(base->gallivm->builder, "llvm.SI.export",
7600 LLVMVoidTypeInContext(base->gallivm->context),
7601 args, 9, 0);
7602 }
7603
7604 LLVMBuildRetVoid(gallivm->builder);
7605 }
7606
7607 /**
7608 * Create & compile a vertex shader epilog. This a helper used by VS and TES.
7609 */
7610 static bool si_get_vs_epilog(struct si_screen *sscreen,
7611 LLVMTargetMachineRef tm,
7612 struct si_shader *shader,
7613 struct pipe_debug_callback *debug,
7614 struct si_vs_epilog_bits *states)
7615 {
7616 union si_shader_part_key epilog_key;
7617
7618 si_get_vs_epilog_key(shader, states, &epilog_key);
7619
7620 shader->epilog = si_get_shader_part(sscreen, &sscreen->vs_epilogs,
7621 PIPE_SHADER_VERTEX, true,
7622 &epilog_key, tm, debug,
7623 si_build_vs_epilog_function,
7624 "Vertex Shader Epilog");
7625 return shader->epilog != NULL;
7626 }
7627
7628 /**
7629 * Select and compile (or reuse) vertex shader parts (prolog & epilog).
7630 */
7631 static bool si_shader_select_vs_parts(struct si_screen *sscreen,
7632 LLVMTargetMachineRef tm,
7633 struct si_shader *shader,
7634 struct pipe_debug_callback *debug)
7635 {
7636 struct tgsi_shader_info *info = &shader->selector->info;
7637 union si_shader_part_key prolog_key;
7638
7639 /* Get the prolog. */
7640 si_get_vs_prolog_key(shader, &prolog_key);
7641
7642 /* The prolog is a no-op if there are no inputs. */
7643 if (info->num_inputs) {
7644 shader->prolog =
7645 si_get_shader_part(sscreen, &sscreen->vs_prologs,
7646 PIPE_SHADER_VERTEX, true,
7647 &prolog_key, tm, debug,
7648 si_build_vs_prolog_function,
7649 "Vertex Shader Prolog");
7650 if (!shader->prolog)
7651 return false;
7652 }
7653
7654 /* Get the epilog. */
7655 if (!shader->key.as_es && !shader->key.as_ls &&
7656 !si_get_vs_epilog(sscreen, tm, shader, debug,
7657 &shader->key.part.vs.epilog))
7658 return false;
7659
7660 return true;
7661 }
7662
7663 /**
7664 * Select and compile (or reuse) TES parts (epilog).
7665 */
7666 static bool si_shader_select_tes_parts(struct si_screen *sscreen,
7667 LLVMTargetMachineRef tm,
7668 struct si_shader *shader,
7669 struct pipe_debug_callback *debug)
7670 {
7671 if (shader->key.as_es)
7672 return true;
7673
7674 /* TES compiled as VS. */
7675 return si_get_vs_epilog(sscreen, tm, shader, debug,
7676 &shader->key.part.tes.epilog);
7677 }
7678
7679 /**
7680 * Compile the TCS epilog function. This writes tesselation factors to memory
7681 * based on the output primitive type of the tesselator (determined by TES).
7682 */
7683 static void si_build_tcs_epilog_function(struct si_shader_context *ctx,
7684 union si_shader_part_key *key)
7685 {
7686 struct gallivm_state *gallivm = &ctx->gallivm;
7687 struct lp_build_tgsi_context *bld_base = &ctx->soa.bld_base;
7688 LLVMTypeRef params[16];
7689 LLVMValueRef func;
7690 int last_sgpr, num_params;
7691
7692 /* Declare inputs. Only RW_BUFFERS and TESS_FACTOR_OFFSET are used. */
7693 params[SI_PARAM_RW_BUFFERS] = const_array(ctx->v16i8, SI_NUM_RW_BUFFERS);
7694 params[SI_PARAM_CONST_BUFFERS] = ctx->i64;
7695 params[SI_PARAM_SAMPLERS] = ctx->i64;
7696 params[SI_PARAM_IMAGES] = ctx->i64;
7697 params[SI_PARAM_SHADER_BUFFERS] = ctx->i64;
7698 params[SI_PARAM_TCS_OFFCHIP_LAYOUT] = ctx->i32;
7699 params[SI_PARAM_TCS_OUT_OFFSETS] = ctx->i32;
7700 params[SI_PARAM_TCS_OUT_LAYOUT] = ctx->i32;
7701 params[SI_PARAM_TCS_IN_LAYOUT] = ctx->i32;
7702 params[ctx->param_oc_lds = SI_PARAM_TCS_OC_LDS] = ctx->i32;
7703 params[SI_PARAM_TESS_FACTOR_OFFSET] = ctx->i32;
7704 last_sgpr = SI_PARAM_TESS_FACTOR_OFFSET;
7705 num_params = last_sgpr + 1;
7706
7707 params[num_params++] = ctx->i32; /* patch index within the wave (REL_PATCH_ID) */
7708 params[num_params++] = ctx->i32; /* invocation ID within the patch */
7709 params[num_params++] = ctx->i32; /* LDS offset where tess factors should be loaded from */
7710
7711 /* Create the function. */
7712 si_create_function(ctx, "tcs_epilog", NULL, 0, params, num_params, last_sgpr);
7713 declare_tess_lds(ctx);
7714 func = ctx->main_fn;
7715
7716 si_write_tess_factors(bld_base,
7717 LLVMGetParam(func, last_sgpr + 1),
7718 LLVMGetParam(func, last_sgpr + 2),
7719 LLVMGetParam(func, last_sgpr + 3));
7720
7721 LLVMBuildRetVoid(gallivm->builder);
7722 }
7723
7724 /**
7725 * Select and compile (or reuse) TCS parts (epilog).
7726 */
7727 static bool si_shader_select_tcs_parts(struct si_screen *sscreen,
7728 LLVMTargetMachineRef tm,
7729 struct si_shader *shader,
7730 struct pipe_debug_callback *debug)
7731 {
7732 union si_shader_part_key epilog_key;
7733
7734 /* Get the epilog. */
7735 memset(&epilog_key, 0, sizeof(epilog_key));
7736 epilog_key.tcs_epilog.states = shader->key.part.tcs.epilog;
7737
7738 shader->epilog = si_get_shader_part(sscreen, &sscreen->tcs_epilogs,
7739 PIPE_SHADER_TESS_CTRL, false,
7740 &epilog_key, tm, debug,
7741 si_build_tcs_epilog_function,
7742 "Tessellation Control Shader Epilog");
7743 return shader->epilog != NULL;
7744 }
7745
7746 /**
7747 * Select and compile (or reuse) GS parts (prolog).
7748 */
7749 static bool si_shader_select_gs_parts(struct si_screen *sscreen,
7750 LLVMTargetMachineRef tm,
7751 struct si_shader *shader,
7752 struct pipe_debug_callback *debug)
7753 {
7754 union si_shader_part_key prolog_key;
7755
7756 if (!shader->key.part.gs.prolog.tri_strip_adj_fix)
7757 return true;
7758
7759 memset(&prolog_key, 0, sizeof(prolog_key));
7760 prolog_key.gs_prolog.states = shader->key.part.gs.prolog;
7761
7762 shader->prolog = si_get_shader_part(sscreen, &sscreen->gs_prologs,
7763 PIPE_SHADER_GEOMETRY, true,
7764 &prolog_key, tm, debug,
7765 si_build_gs_prolog_function,
7766 "Geometry Shader Prolog");
7767 return shader->prolog != NULL;
7768 }
7769
7770 /**
7771 * Build the pixel shader prolog function. This handles:
7772 * - two-side color selection and interpolation
7773 * - overriding interpolation parameters for the API PS
7774 * - polygon stippling
7775 *
7776 * All preloaded SGPRs and VGPRs are passed through unmodified unless they are
7777 * overriden by other states. (e.g. per-sample interpolation)
7778 * Interpolated colors are stored after the preloaded VGPRs.
7779 */
7780 static void si_build_ps_prolog_function(struct si_shader_context *ctx,
7781 union si_shader_part_key *key)
7782 {
7783 struct gallivm_state *gallivm = &ctx->gallivm;
7784 LLVMTypeRef *params;
7785 LLVMValueRef ret, func;
7786 int last_sgpr, num_params, num_returns, i, num_color_channels;
7787
7788 assert(si_need_ps_prolog(key));
7789
7790 /* Number of inputs + 8 color elements. */
7791 params = alloca((key->ps_prolog.num_input_sgprs +
7792 key->ps_prolog.num_input_vgprs + 8) *
7793 sizeof(LLVMTypeRef));
7794
7795 /* Declare inputs. */
7796 num_params = 0;
7797 for (i = 0; i < key->ps_prolog.num_input_sgprs; i++)
7798 params[num_params++] = ctx->i32;
7799 last_sgpr = num_params - 1;
7800
7801 for (i = 0; i < key->ps_prolog.num_input_vgprs; i++)
7802 params[num_params++] = ctx->f32;
7803
7804 /* Declare outputs (same as inputs + add colors if needed) */
7805 num_returns = num_params;
7806 num_color_channels = util_bitcount(key->ps_prolog.colors_read);
7807 for (i = 0; i < num_color_channels; i++)
7808 params[num_returns++] = ctx->f32;
7809
7810 /* Create the function. */
7811 si_create_function(ctx, "ps_prolog", params, num_returns, params,
7812 num_params, last_sgpr);
7813 func = ctx->main_fn;
7814
7815 /* Copy inputs to outputs. This should be no-op, as the registers match,
7816 * but it will prevent the compiler from overwriting them unintentionally.
7817 */
7818 ret = ctx->return_value;
7819 for (i = 0; i < num_params; i++) {
7820 LLVMValueRef p = LLVMGetParam(func, i);
7821 ret = LLVMBuildInsertValue(gallivm->builder, ret, p, i, "");
7822 }
7823
7824 /* Polygon stippling. */
7825 if (key->ps_prolog.states.poly_stipple) {
7826 /* POS_FIXED_PT is always last. */
7827 unsigned pos = key->ps_prolog.num_input_sgprs +
7828 key->ps_prolog.num_input_vgprs - 1;
7829 LLVMValueRef ptr[2], list;
7830
7831 /* Get the pointer to rw buffers. */
7832 ptr[0] = LLVMGetParam(func, SI_SGPR_RW_BUFFERS);
7833 ptr[1] = LLVMGetParam(func, SI_SGPR_RW_BUFFERS_HI);
7834 list = lp_build_gather_values(gallivm, ptr, 2);
7835 list = LLVMBuildBitCast(gallivm->builder, list, ctx->i64, "");
7836 list = LLVMBuildIntToPtr(gallivm->builder, list,
7837 const_array(ctx->v16i8, SI_NUM_RW_BUFFERS), "");
7838
7839 si_llvm_emit_polygon_stipple(ctx, list, pos);
7840 }
7841
7842 if (key->ps_prolog.states.bc_optimize_for_persp ||
7843 key->ps_prolog.states.bc_optimize_for_linear) {
7844 unsigned i, base = key->ps_prolog.num_input_sgprs;
7845 LLVMValueRef center[2], centroid[2], tmp, bc_optimize;
7846
7847 /* The shader should do: if (PRIM_MASK[31]) CENTROID = CENTER;
7848 * The hw doesn't compute CENTROID if the whole wave only
7849 * contains fully-covered quads.
7850 *
7851 * PRIM_MASK is after user SGPRs.
7852 */
7853 bc_optimize = LLVMGetParam(func, SI_PS_NUM_USER_SGPR);
7854 bc_optimize = LLVMBuildLShr(gallivm->builder, bc_optimize,
7855 LLVMConstInt(ctx->i32, 31, 0), "");
7856 bc_optimize = LLVMBuildTrunc(gallivm->builder, bc_optimize,
7857 ctx->i1, "");
7858
7859 if (key->ps_prolog.states.bc_optimize_for_persp) {
7860 /* Read PERSP_CENTER. */
7861 for (i = 0; i < 2; i++)
7862 center[i] = LLVMGetParam(func, base + 2 + i);
7863 /* Read PERSP_CENTROID. */
7864 for (i = 0; i < 2; i++)
7865 centroid[i] = LLVMGetParam(func, base + 4 + i);
7866 /* Select PERSP_CENTROID. */
7867 for (i = 0; i < 2; i++) {
7868 tmp = LLVMBuildSelect(gallivm->builder, bc_optimize,
7869 center[i], centroid[i], "");
7870 ret = LLVMBuildInsertValue(gallivm->builder, ret,
7871 tmp, base + 4 + i, "");
7872 }
7873 }
7874 if (key->ps_prolog.states.bc_optimize_for_linear) {
7875 /* Read LINEAR_CENTER. */
7876 for (i = 0; i < 2; i++)
7877 center[i] = LLVMGetParam(func, base + 8 + i);
7878 /* Read LINEAR_CENTROID. */
7879 for (i = 0; i < 2; i++)
7880 centroid[i] = LLVMGetParam(func, base + 10 + i);
7881 /* Select LINEAR_CENTROID. */
7882 for (i = 0; i < 2; i++) {
7883 tmp = LLVMBuildSelect(gallivm->builder, bc_optimize,
7884 center[i], centroid[i], "");
7885 ret = LLVMBuildInsertValue(gallivm->builder, ret,
7886 tmp, base + 10 + i, "");
7887 }
7888 }
7889 }
7890
7891 /* Force per-sample interpolation. */
7892 if (key->ps_prolog.states.force_persp_sample_interp) {
7893 unsigned i, base = key->ps_prolog.num_input_sgprs;
7894 LLVMValueRef persp_sample[2];
7895
7896 /* Read PERSP_SAMPLE. */
7897 for (i = 0; i < 2; i++)
7898 persp_sample[i] = LLVMGetParam(func, base + i);
7899 /* Overwrite PERSP_CENTER. */
7900 for (i = 0; i < 2; i++)
7901 ret = LLVMBuildInsertValue(gallivm->builder, ret,
7902 persp_sample[i], base + 2 + i, "");
7903 /* Overwrite PERSP_CENTROID. */
7904 for (i = 0; i < 2; i++)
7905 ret = LLVMBuildInsertValue(gallivm->builder, ret,
7906 persp_sample[i], base + 4 + i, "");
7907 }
7908 if (key->ps_prolog.states.force_linear_sample_interp) {
7909 unsigned i, base = key->ps_prolog.num_input_sgprs;
7910 LLVMValueRef linear_sample[2];
7911
7912 /* Read LINEAR_SAMPLE. */
7913 for (i = 0; i < 2; i++)
7914 linear_sample[i] = LLVMGetParam(func, base + 6 + i);
7915 /* Overwrite LINEAR_CENTER. */
7916 for (i = 0; i < 2; i++)
7917 ret = LLVMBuildInsertValue(gallivm->builder, ret,
7918 linear_sample[i], base + 8 + i, "");
7919 /* Overwrite LINEAR_CENTROID. */
7920 for (i = 0; i < 2; i++)
7921 ret = LLVMBuildInsertValue(gallivm->builder, ret,
7922 linear_sample[i], base + 10 + i, "");
7923 }
7924
7925 /* Force center interpolation. */
7926 if (key->ps_prolog.states.force_persp_center_interp) {
7927 unsigned i, base = key->ps_prolog.num_input_sgprs;
7928 LLVMValueRef persp_center[2];
7929
7930 /* Read PERSP_CENTER. */
7931 for (i = 0; i < 2; i++)
7932 persp_center[i] = LLVMGetParam(func, base + 2 + i);
7933 /* Overwrite PERSP_SAMPLE. */
7934 for (i = 0; i < 2; i++)
7935 ret = LLVMBuildInsertValue(gallivm->builder, ret,
7936 persp_center[i], base + i, "");
7937 /* Overwrite PERSP_CENTROID. */
7938 for (i = 0; i < 2; i++)
7939 ret = LLVMBuildInsertValue(gallivm->builder, ret,
7940 persp_center[i], base + 4 + i, "");
7941 }
7942 if (key->ps_prolog.states.force_linear_center_interp) {
7943 unsigned i, base = key->ps_prolog.num_input_sgprs;
7944 LLVMValueRef linear_center[2];
7945
7946 /* Read LINEAR_CENTER. */
7947 for (i = 0; i < 2; i++)
7948 linear_center[i] = LLVMGetParam(func, base + 8 + i);
7949 /* Overwrite LINEAR_SAMPLE. */
7950 for (i = 0; i < 2; i++)
7951 ret = LLVMBuildInsertValue(gallivm->builder, ret,
7952 linear_center[i], base + 6 + i, "");
7953 /* Overwrite LINEAR_CENTROID. */
7954 for (i = 0; i < 2; i++)
7955 ret = LLVMBuildInsertValue(gallivm->builder, ret,
7956 linear_center[i], base + 10 + i, "");
7957 }
7958
7959 /* Interpolate colors. */
7960 for (i = 0; i < 2; i++) {
7961 unsigned writemask = (key->ps_prolog.colors_read >> (i * 4)) & 0xf;
7962 unsigned face_vgpr = key->ps_prolog.num_input_sgprs +
7963 key->ps_prolog.face_vgpr_index;
7964 LLVMValueRef interp[2], color[4];
7965 LLVMValueRef interp_ij = NULL, prim_mask = NULL, face = NULL;
7966
7967 if (!writemask)
7968 continue;
7969
7970 /* If the interpolation qualifier is not CONSTANT (-1). */
7971 if (key->ps_prolog.color_interp_vgpr_index[i] != -1) {
7972 unsigned interp_vgpr = key->ps_prolog.num_input_sgprs +
7973 key->ps_prolog.color_interp_vgpr_index[i];
7974
7975 /* Get the (i,j) updated by bc_optimize handling. */
7976 interp[0] = LLVMBuildExtractValue(gallivm->builder, ret,
7977 interp_vgpr, "");
7978 interp[1] = LLVMBuildExtractValue(gallivm->builder, ret,
7979 interp_vgpr + 1, "");
7980 interp_ij = lp_build_gather_values(gallivm, interp, 2);
7981 interp_ij = LLVMBuildBitCast(gallivm->builder, interp_ij,
7982 ctx->v2i32, "");
7983 }
7984
7985 /* Use the absolute location of the input. */
7986 prim_mask = LLVMGetParam(func, SI_PS_NUM_USER_SGPR);
7987
7988 if (key->ps_prolog.states.color_two_side) {
7989 face = LLVMGetParam(func, face_vgpr);
7990 face = LLVMBuildBitCast(gallivm->builder, face, ctx->i32, "");
7991 }
7992
7993 interp_fs_input(ctx,
7994 key->ps_prolog.color_attr_index[i],
7995 TGSI_SEMANTIC_COLOR, i,
7996 key->ps_prolog.num_interp_inputs,
7997 key->ps_prolog.colors_read, interp_ij,
7998 prim_mask, face, color);
7999
8000 while (writemask) {
8001 unsigned chan = u_bit_scan(&writemask);
8002 ret = LLVMBuildInsertValue(gallivm->builder, ret, color[chan],
8003 num_params++, "");
8004 }
8005 }
8006
8007 /* Tell LLVM to insert WQM instruction sequence when needed. */
8008 if (key->ps_prolog.wqm) {
8009 LLVMAddTargetDependentFunctionAttr(func,
8010 "amdgpu-ps-wqm-outputs", "");
8011 }
8012
8013 si_llvm_build_ret(ctx, ret);
8014 }
8015
8016 /**
8017 * Build the pixel shader epilog function. This handles everything that must be
8018 * emulated for pixel shader exports. (alpha-test, format conversions, etc)
8019 */
8020 static void si_build_ps_epilog_function(struct si_shader_context *ctx,
8021 union si_shader_part_key *key)
8022 {
8023 struct gallivm_state *gallivm = &ctx->gallivm;
8024 struct lp_build_tgsi_context *bld_base = &ctx->soa.bld_base;
8025 LLVMTypeRef params[16+8*4+3];
8026 LLVMValueRef depth = NULL, stencil = NULL, samplemask = NULL;
8027 int last_sgpr, num_params, i;
8028 struct si_ps_exports exp = {};
8029
8030 /* Declare input SGPRs. */
8031 params[SI_PARAM_RW_BUFFERS] = ctx->i64;
8032 params[SI_PARAM_CONST_BUFFERS] = ctx->i64;
8033 params[SI_PARAM_SAMPLERS] = ctx->i64;
8034 params[SI_PARAM_IMAGES] = ctx->i64;
8035 params[SI_PARAM_SHADER_BUFFERS] = ctx->i64;
8036 params[SI_PARAM_ALPHA_REF] = ctx->f32;
8037 last_sgpr = SI_PARAM_ALPHA_REF;
8038
8039 /* Declare input VGPRs. */
8040 num_params = (last_sgpr + 1) +
8041 util_bitcount(key->ps_epilog.colors_written) * 4 +
8042 key->ps_epilog.writes_z +
8043 key->ps_epilog.writes_stencil +
8044 key->ps_epilog.writes_samplemask;
8045
8046 num_params = MAX2(num_params,
8047 last_sgpr + 1 + PS_EPILOG_SAMPLEMASK_MIN_LOC + 1);
8048
8049 assert(num_params <= ARRAY_SIZE(params));
8050
8051 for (i = last_sgpr + 1; i < num_params; i++)
8052 params[i] = ctx->f32;
8053
8054 /* Create the function. */
8055 si_create_function(ctx, "ps_epilog", NULL, 0, params, num_params, last_sgpr);
8056 /* Disable elimination of unused inputs. */
8057 si_llvm_add_attribute(ctx->main_fn,
8058 "InitialPSInputAddr", 0xffffff);
8059
8060 /* Process colors. */
8061 unsigned vgpr = last_sgpr + 1;
8062 unsigned colors_written = key->ps_epilog.colors_written;
8063 int last_color_export = -1;
8064
8065 /* Find the last color export. */
8066 if (!key->ps_epilog.writes_z &&
8067 !key->ps_epilog.writes_stencil &&
8068 !key->ps_epilog.writes_samplemask) {
8069 unsigned spi_format = key->ps_epilog.states.spi_shader_col_format;
8070
8071 /* If last_cbuf > 0, FS_COLOR0_WRITES_ALL_CBUFS is true. */
8072 if (colors_written == 0x1 && key->ps_epilog.states.last_cbuf > 0) {
8073 /* Just set this if any of the colorbuffers are enabled. */
8074 if (spi_format &
8075 ((1llu << (4 * (key->ps_epilog.states.last_cbuf + 1))) - 1))
8076 last_color_export = 0;
8077 } else {
8078 for (i = 0; i < 8; i++)
8079 if (colors_written & (1 << i) &&
8080 (spi_format >> (i * 4)) & 0xf)
8081 last_color_export = i;
8082 }
8083 }
8084
8085 while (colors_written) {
8086 LLVMValueRef color[4];
8087 int mrt = u_bit_scan(&colors_written);
8088
8089 for (i = 0; i < 4; i++)
8090 color[i] = LLVMGetParam(ctx->main_fn, vgpr++);
8091
8092 si_export_mrt_color(bld_base, color, mrt,
8093 num_params - 1,
8094 mrt == last_color_export, &exp);
8095 }
8096
8097 /* Process depth, stencil, samplemask. */
8098 if (key->ps_epilog.writes_z)
8099 depth = LLVMGetParam(ctx->main_fn, vgpr++);
8100 if (key->ps_epilog.writes_stencil)
8101 stencil = LLVMGetParam(ctx->main_fn, vgpr++);
8102 if (key->ps_epilog.writes_samplemask)
8103 samplemask = LLVMGetParam(ctx->main_fn, vgpr++);
8104
8105 if (depth || stencil || samplemask)
8106 si_export_mrt_z(bld_base, depth, stencil, samplemask, &exp);
8107 else if (last_color_export == -1)
8108 si_export_null(bld_base);
8109
8110 if (exp.num)
8111 si_emit_ps_exports(ctx, &exp);
8112
8113 /* Compile. */
8114 LLVMBuildRetVoid(gallivm->builder);
8115 }
8116
8117 /**
8118 * Select and compile (or reuse) pixel shader parts (prolog & epilog).
8119 */
8120 static bool si_shader_select_ps_parts(struct si_screen *sscreen,
8121 LLVMTargetMachineRef tm,
8122 struct si_shader *shader,
8123 struct pipe_debug_callback *debug)
8124 {
8125 union si_shader_part_key prolog_key;
8126 union si_shader_part_key epilog_key;
8127
8128 /* Get the prolog. */
8129 si_get_ps_prolog_key(shader, &prolog_key, true);
8130
8131 /* The prolog is a no-op if these aren't set. */
8132 if (si_need_ps_prolog(&prolog_key)) {
8133 shader->prolog =
8134 si_get_shader_part(sscreen, &sscreen->ps_prologs,
8135 PIPE_SHADER_FRAGMENT, true,
8136 &prolog_key, tm, debug,
8137 si_build_ps_prolog_function,
8138 "Fragment Shader Prolog");
8139 if (!shader->prolog)
8140 return false;
8141 }
8142
8143 /* Get the epilog. */
8144 si_get_ps_epilog_key(shader, &epilog_key);
8145
8146 shader->epilog =
8147 si_get_shader_part(sscreen, &sscreen->ps_epilogs,
8148 PIPE_SHADER_FRAGMENT, false,
8149 &epilog_key, tm, debug,
8150 si_build_ps_epilog_function,
8151 "Fragment Shader Epilog");
8152 if (!shader->epilog)
8153 return false;
8154
8155 /* Enable POS_FIXED_PT if polygon stippling is enabled. */
8156 if (shader->key.part.ps.prolog.poly_stipple) {
8157 shader->config.spi_ps_input_ena |= S_0286CC_POS_FIXED_PT_ENA(1);
8158 assert(G_0286CC_POS_FIXED_PT_ENA(shader->config.spi_ps_input_addr));
8159 }
8160
8161 /* Set up the enable bits for per-sample shading if needed. */
8162 if (shader->key.part.ps.prolog.force_persp_sample_interp &&
8163 (G_0286CC_PERSP_CENTER_ENA(shader->config.spi_ps_input_ena) ||
8164 G_0286CC_PERSP_CENTROID_ENA(shader->config.spi_ps_input_ena))) {
8165 shader->config.spi_ps_input_ena &= C_0286CC_PERSP_CENTER_ENA;
8166 shader->config.spi_ps_input_ena &= C_0286CC_PERSP_CENTROID_ENA;
8167 shader->config.spi_ps_input_ena |= S_0286CC_PERSP_SAMPLE_ENA(1);
8168 }
8169 if (shader->key.part.ps.prolog.force_linear_sample_interp &&
8170 (G_0286CC_LINEAR_CENTER_ENA(shader->config.spi_ps_input_ena) ||
8171 G_0286CC_LINEAR_CENTROID_ENA(shader->config.spi_ps_input_ena))) {
8172 shader->config.spi_ps_input_ena &= C_0286CC_LINEAR_CENTER_ENA;
8173 shader->config.spi_ps_input_ena &= C_0286CC_LINEAR_CENTROID_ENA;
8174 shader->config.spi_ps_input_ena |= S_0286CC_LINEAR_SAMPLE_ENA(1);
8175 }
8176 if (shader->key.part.ps.prolog.force_persp_center_interp &&
8177 (G_0286CC_PERSP_SAMPLE_ENA(shader->config.spi_ps_input_ena) ||
8178 G_0286CC_PERSP_CENTROID_ENA(shader->config.spi_ps_input_ena))) {
8179 shader->config.spi_ps_input_ena &= C_0286CC_PERSP_SAMPLE_ENA;
8180 shader->config.spi_ps_input_ena &= C_0286CC_PERSP_CENTROID_ENA;
8181 shader->config.spi_ps_input_ena |= S_0286CC_PERSP_CENTER_ENA(1);
8182 }
8183 if (shader->key.part.ps.prolog.force_linear_center_interp &&
8184 (G_0286CC_LINEAR_SAMPLE_ENA(shader->config.spi_ps_input_ena) ||
8185 G_0286CC_LINEAR_CENTROID_ENA(shader->config.spi_ps_input_ena))) {
8186 shader->config.spi_ps_input_ena &= C_0286CC_LINEAR_SAMPLE_ENA;
8187 shader->config.spi_ps_input_ena &= C_0286CC_LINEAR_CENTROID_ENA;
8188 shader->config.spi_ps_input_ena |= S_0286CC_LINEAR_CENTER_ENA(1);
8189 }
8190
8191 /* POW_W_FLOAT requires that one of the perspective weights is enabled. */
8192 if (G_0286CC_POS_W_FLOAT_ENA(shader->config.spi_ps_input_ena) &&
8193 !(shader->config.spi_ps_input_ena & 0xf)) {
8194 shader->config.spi_ps_input_ena |= S_0286CC_PERSP_CENTER_ENA(1);
8195 assert(G_0286CC_PERSP_CENTER_ENA(shader->config.spi_ps_input_addr));
8196 }
8197
8198 /* At least one pair of interpolation weights must be enabled. */
8199 if (!(shader->config.spi_ps_input_ena & 0x7f)) {
8200 shader->config.spi_ps_input_ena |= S_0286CC_LINEAR_CENTER_ENA(1);
8201 assert(G_0286CC_LINEAR_CENTER_ENA(shader->config.spi_ps_input_addr));
8202 }
8203
8204 /* The sample mask input is always enabled, because the API shader always
8205 * passes it through to the epilog. Disable it here if it's unused.
8206 */
8207 if (!shader->key.part.ps.epilog.poly_line_smoothing &&
8208 !shader->selector->info.reads_samplemask)
8209 shader->config.spi_ps_input_ena &= C_0286CC_SAMPLE_COVERAGE_ENA;
8210
8211 return true;
8212 }
8213
8214 static void si_fix_num_sgprs(struct si_shader *shader)
8215 {
8216 unsigned min_sgprs = shader->info.num_input_sgprs + 2; /* VCC */
8217
8218 shader->config.num_sgprs = MAX2(shader->config.num_sgprs, min_sgprs);
8219 }
8220
8221 int si_shader_create(struct si_screen *sscreen, LLVMTargetMachineRef tm,
8222 struct si_shader *shader,
8223 struct pipe_debug_callback *debug)
8224 {
8225 struct si_shader_selector *sel = shader->selector;
8226 struct si_shader *mainp = sel->main_shader_part;
8227 int r;
8228
8229 /* LS, ES, VS are compiled on demand if the main part hasn't been
8230 * compiled for that stage.
8231 *
8232 * Vertex shaders are compiled on demand when a vertex fetch
8233 * workaround must be applied.
8234 */
8235 if (shader->is_monolithic) {
8236 /* Monolithic shader (compiled as a whole, has many variants,
8237 * may take a long time to compile).
8238 */
8239 r = si_compile_tgsi_shader(sscreen, tm, shader, true, debug);
8240 if (r)
8241 return r;
8242 } else {
8243 /* The shader consists of 2-3 parts:
8244 *
8245 * - the middle part is the user shader, it has 1 variant only
8246 * and it was compiled during the creation of the shader
8247 * selector
8248 * - the prolog part is inserted at the beginning
8249 * - the epilog part is inserted at the end
8250 *
8251 * The prolog and epilog have many (but simple) variants.
8252 */
8253
8254 /* Copy the compiled TGSI shader data over. */
8255 shader->is_binary_shared = true;
8256 shader->binary = mainp->binary;
8257 shader->config = mainp->config;
8258 shader->info.num_input_sgprs = mainp->info.num_input_sgprs;
8259 shader->info.num_input_vgprs = mainp->info.num_input_vgprs;
8260 shader->info.face_vgpr_index = mainp->info.face_vgpr_index;
8261 memcpy(shader->info.vs_output_param_offset,
8262 mainp->info.vs_output_param_offset,
8263 sizeof(mainp->info.vs_output_param_offset));
8264 shader->info.uses_instanceid = mainp->info.uses_instanceid;
8265 shader->info.nr_pos_exports = mainp->info.nr_pos_exports;
8266 shader->info.nr_param_exports = mainp->info.nr_param_exports;
8267
8268 /* Select prologs and/or epilogs. */
8269 switch (sel->type) {
8270 case PIPE_SHADER_VERTEX:
8271 if (!si_shader_select_vs_parts(sscreen, tm, shader, debug))
8272 return -1;
8273 break;
8274 case PIPE_SHADER_TESS_CTRL:
8275 if (!si_shader_select_tcs_parts(sscreen, tm, shader, debug))
8276 return -1;
8277 break;
8278 case PIPE_SHADER_TESS_EVAL:
8279 if (!si_shader_select_tes_parts(sscreen, tm, shader, debug))
8280 return -1;
8281 break;
8282 case PIPE_SHADER_GEOMETRY:
8283 if (!si_shader_select_gs_parts(sscreen, tm, shader, debug))
8284 return -1;
8285 break;
8286 case PIPE_SHADER_FRAGMENT:
8287 if (!si_shader_select_ps_parts(sscreen, tm, shader, debug))
8288 return -1;
8289
8290 /* Make sure we have at least as many VGPRs as there
8291 * are allocated inputs.
8292 */
8293 shader->config.num_vgprs = MAX2(shader->config.num_vgprs,
8294 shader->info.num_input_vgprs);
8295 break;
8296 }
8297
8298 /* Update SGPR and VGPR counts. */
8299 if (shader->prolog) {
8300 shader->config.num_sgprs = MAX2(shader->config.num_sgprs,
8301 shader->prolog->config.num_sgprs);
8302 shader->config.num_vgprs = MAX2(shader->config.num_vgprs,
8303 shader->prolog->config.num_vgprs);
8304 }
8305 if (shader->epilog) {
8306 shader->config.num_sgprs = MAX2(shader->config.num_sgprs,
8307 shader->epilog->config.num_sgprs);
8308 shader->config.num_vgprs = MAX2(shader->config.num_vgprs,
8309 shader->epilog->config.num_vgprs);
8310 }
8311 }
8312
8313 si_fix_num_sgprs(shader);
8314 si_shader_dump(sscreen, shader, debug, sel->info.processor,
8315 stderr);
8316
8317 /* Upload. */
8318 r = si_shader_binary_upload(sscreen, shader);
8319 if (r) {
8320 fprintf(stderr, "LLVM failed to upload shader\n");
8321 return r;
8322 }
8323
8324 return 0;
8325 }
8326
8327 void si_shader_destroy(struct si_shader *shader)
8328 {
8329 if (shader->scratch_bo)
8330 r600_resource_reference(&shader->scratch_bo, NULL);
8331
8332 r600_resource_reference(&shader->bo, NULL);
8333
8334 if (!shader->is_binary_shared)
8335 radeon_shader_binary_clean(&shader->binary);
8336
8337 free(shader->shader_log);
8338 }