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