radv: disable DCC for shareable images on GFX9+
[mesa.git] / src / amd / common / ac_llvm_build.c
1 /*
2 * Copyright 2014 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
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
17 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18 * USE OR OTHER DEALINGS IN THE SOFTWARE.
19 *
20 * The above copyright notice and this permission notice (including the
21 * next paragraph) shall be included in all copies or substantial portions
22 * of the Software.
23 *
24 */
25 /* based on pieces from si_pipe.c and radeon_llvm_emit.c */
26 #include "ac_llvm_build.h"
27
28 #include <llvm-c/Core.h>
29
30 #include "c11/threads.h"
31
32 #include <assert.h>
33 #include <stdio.h>
34
35 #include "ac_llvm_util.h"
36 #include "ac_exp_param.h"
37 #include "util/bitscan.h"
38 #include "util/macros.h"
39 #include "util/u_atomic.h"
40 #include "util/u_math.h"
41 #include "sid.h"
42
43 #include "shader_enums.h"
44
45 #define AC_LLVM_INITIAL_CF_DEPTH 4
46
47 /* Data for if/else/endif and bgnloop/endloop control flow structures.
48 */
49 struct ac_llvm_flow {
50 /* Loop exit or next part of if/else/endif. */
51 LLVMBasicBlockRef next_block;
52 LLVMBasicBlockRef loop_entry_block;
53 };
54
55 /* Initialize module-independent parts of the context.
56 *
57 * The caller is responsible for initializing ctx::module and ctx::builder.
58 */
59 void
60 ac_llvm_context_init(struct ac_llvm_context *ctx, LLVMContextRef context,
61 enum chip_class chip_class, enum radeon_family family)
62 {
63 LLVMValueRef args[1];
64
65 ctx->chip_class = chip_class;
66 ctx->family = family;
67
68 ctx->context = context;
69 ctx->module = NULL;
70 ctx->builder = NULL;
71
72 ctx->voidt = LLVMVoidTypeInContext(ctx->context);
73 ctx->i1 = LLVMInt1TypeInContext(ctx->context);
74 ctx->i8 = LLVMInt8TypeInContext(ctx->context);
75 ctx->i16 = LLVMIntTypeInContext(ctx->context, 16);
76 ctx->i32 = LLVMIntTypeInContext(ctx->context, 32);
77 ctx->i64 = LLVMIntTypeInContext(ctx->context, 64);
78 ctx->intptr = HAVE_32BIT_POINTERS ? ctx->i32 : ctx->i64;
79 ctx->f16 = LLVMHalfTypeInContext(ctx->context);
80 ctx->f32 = LLVMFloatTypeInContext(ctx->context);
81 ctx->f64 = LLVMDoubleTypeInContext(ctx->context);
82 ctx->v2i16 = LLVMVectorType(ctx->i16, 2);
83 ctx->v2i32 = LLVMVectorType(ctx->i32, 2);
84 ctx->v3i32 = LLVMVectorType(ctx->i32, 3);
85 ctx->v4i32 = LLVMVectorType(ctx->i32, 4);
86 ctx->v2f32 = LLVMVectorType(ctx->f32, 2);
87 ctx->v4f32 = LLVMVectorType(ctx->f32, 4);
88 ctx->v8i32 = LLVMVectorType(ctx->i32, 8);
89
90 ctx->i32_0 = LLVMConstInt(ctx->i32, 0, false);
91 ctx->i32_1 = LLVMConstInt(ctx->i32, 1, false);
92 ctx->i64_0 = LLVMConstInt(ctx->i64, 0, false);
93 ctx->i64_1 = LLVMConstInt(ctx->i64, 1, false);
94 ctx->f32_0 = LLVMConstReal(ctx->f32, 0.0);
95 ctx->f32_1 = LLVMConstReal(ctx->f32, 1.0);
96 ctx->f64_0 = LLVMConstReal(ctx->f64, 0.0);
97 ctx->f64_1 = LLVMConstReal(ctx->f64, 1.0);
98
99 ctx->i1false = LLVMConstInt(ctx->i1, 0, false);
100 ctx->i1true = LLVMConstInt(ctx->i1, 1, false);
101
102 ctx->range_md_kind = LLVMGetMDKindIDInContext(ctx->context,
103 "range", 5);
104
105 ctx->invariant_load_md_kind = LLVMGetMDKindIDInContext(ctx->context,
106 "invariant.load", 14);
107
108 ctx->fpmath_md_kind = LLVMGetMDKindIDInContext(ctx->context, "fpmath", 6);
109
110 args[0] = LLVMConstReal(ctx->f32, 2.5);
111 ctx->fpmath_md_2p5_ulp = LLVMMDNodeInContext(ctx->context, args, 1);
112
113 ctx->uniform_md_kind = LLVMGetMDKindIDInContext(ctx->context,
114 "amdgpu.uniform", 14);
115
116 ctx->empty_md = LLVMMDNodeInContext(ctx->context, NULL, 0);
117 }
118
119 void
120 ac_llvm_context_dispose(struct ac_llvm_context *ctx)
121 {
122 free(ctx->flow);
123 ctx->flow = NULL;
124 ctx->flow_depth_max = 0;
125 }
126
127 int
128 ac_get_llvm_num_components(LLVMValueRef value)
129 {
130 LLVMTypeRef type = LLVMTypeOf(value);
131 unsigned num_components = LLVMGetTypeKind(type) == LLVMVectorTypeKind
132 ? LLVMGetVectorSize(type)
133 : 1;
134 return num_components;
135 }
136
137 LLVMValueRef
138 ac_llvm_extract_elem(struct ac_llvm_context *ac,
139 LLVMValueRef value,
140 int index)
141 {
142 if (LLVMGetTypeKind(LLVMTypeOf(value)) != LLVMVectorTypeKind) {
143 assert(index == 0);
144 return value;
145 }
146
147 return LLVMBuildExtractElement(ac->builder, value,
148 LLVMConstInt(ac->i32, index, false), "");
149 }
150
151 int
152 ac_get_elem_bits(struct ac_llvm_context *ctx, LLVMTypeRef type)
153 {
154 if (LLVMGetTypeKind(type) == LLVMVectorTypeKind)
155 type = LLVMGetElementType(type);
156
157 if (LLVMGetTypeKind(type) == LLVMIntegerTypeKind)
158 return LLVMGetIntTypeWidth(type);
159
160 if (type == ctx->f16)
161 return 16;
162 if (type == ctx->f32)
163 return 32;
164 if (type == ctx->f64)
165 return 64;
166
167 unreachable("Unhandled type kind in get_elem_bits");
168 }
169
170 unsigned
171 ac_get_type_size(LLVMTypeRef type)
172 {
173 LLVMTypeKind kind = LLVMGetTypeKind(type);
174
175 switch (kind) {
176 case LLVMIntegerTypeKind:
177 return LLVMGetIntTypeWidth(type) / 8;
178 case LLVMFloatTypeKind:
179 return 4;
180 case LLVMDoubleTypeKind:
181 return 8;
182 case LLVMPointerTypeKind:
183 if (LLVMGetPointerAddressSpace(type) == AC_CONST_32BIT_ADDR_SPACE)
184 return 4;
185 return 8;
186 case LLVMVectorTypeKind:
187 return LLVMGetVectorSize(type) *
188 ac_get_type_size(LLVMGetElementType(type));
189 case LLVMArrayTypeKind:
190 return LLVMGetArrayLength(type) *
191 ac_get_type_size(LLVMGetElementType(type));
192 default:
193 assert(0);
194 return 0;
195 }
196 }
197
198 static LLVMTypeRef to_integer_type_scalar(struct ac_llvm_context *ctx, LLVMTypeRef t)
199 {
200 if (t == ctx->f16 || t == ctx->i16)
201 return ctx->i16;
202 else if (t == ctx->f32 || t == ctx->i32)
203 return ctx->i32;
204 else if (t == ctx->f64 || t == ctx->i64)
205 return ctx->i64;
206 else
207 unreachable("Unhandled integer size");
208 }
209
210 LLVMTypeRef
211 ac_to_integer_type(struct ac_llvm_context *ctx, LLVMTypeRef t)
212 {
213 if (LLVMGetTypeKind(t) == LLVMVectorTypeKind) {
214 LLVMTypeRef elem_type = LLVMGetElementType(t);
215 return LLVMVectorType(to_integer_type_scalar(ctx, elem_type),
216 LLVMGetVectorSize(t));
217 }
218 return to_integer_type_scalar(ctx, t);
219 }
220
221 LLVMValueRef
222 ac_to_integer(struct ac_llvm_context *ctx, LLVMValueRef v)
223 {
224 LLVMTypeRef type = LLVMTypeOf(v);
225 return LLVMBuildBitCast(ctx->builder, v, ac_to_integer_type(ctx, type), "");
226 }
227
228 static LLVMTypeRef to_float_type_scalar(struct ac_llvm_context *ctx, LLVMTypeRef t)
229 {
230 if (t == ctx->i16 || t == ctx->f16)
231 return ctx->f16;
232 else if (t == ctx->i32 || t == ctx->f32)
233 return ctx->f32;
234 else if (t == ctx->i64 || t == ctx->f64)
235 return ctx->f64;
236 else
237 unreachable("Unhandled float size");
238 }
239
240 LLVMTypeRef
241 ac_to_float_type(struct ac_llvm_context *ctx, LLVMTypeRef t)
242 {
243 if (LLVMGetTypeKind(t) == LLVMVectorTypeKind) {
244 LLVMTypeRef elem_type = LLVMGetElementType(t);
245 return LLVMVectorType(to_float_type_scalar(ctx, elem_type),
246 LLVMGetVectorSize(t));
247 }
248 return to_float_type_scalar(ctx, t);
249 }
250
251 LLVMValueRef
252 ac_to_float(struct ac_llvm_context *ctx, LLVMValueRef v)
253 {
254 LLVMTypeRef type = LLVMTypeOf(v);
255 return LLVMBuildBitCast(ctx->builder, v, ac_to_float_type(ctx, type), "");
256 }
257
258
259 LLVMValueRef
260 ac_build_intrinsic(struct ac_llvm_context *ctx, const char *name,
261 LLVMTypeRef return_type, LLVMValueRef *params,
262 unsigned param_count, unsigned attrib_mask)
263 {
264 LLVMValueRef function, call;
265 bool set_callsite_attrs = !(attrib_mask & AC_FUNC_ATTR_LEGACY);
266
267 function = LLVMGetNamedFunction(ctx->module, name);
268 if (!function) {
269 LLVMTypeRef param_types[32], function_type;
270 unsigned i;
271
272 assert(param_count <= 32);
273
274 for (i = 0; i < param_count; ++i) {
275 assert(params[i]);
276 param_types[i] = LLVMTypeOf(params[i]);
277 }
278 function_type =
279 LLVMFunctionType(return_type, param_types, param_count, 0);
280 function = LLVMAddFunction(ctx->module, name, function_type);
281
282 LLVMSetFunctionCallConv(function, LLVMCCallConv);
283 LLVMSetLinkage(function, LLVMExternalLinkage);
284
285 if (!set_callsite_attrs)
286 ac_add_func_attributes(ctx->context, function, attrib_mask);
287 }
288
289 call = LLVMBuildCall(ctx->builder, function, params, param_count, "");
290 if (set_callsite_attrs)
291 ac_add_func_attributes(ctx->context, call, attrib_mask);
292 return call;
293 }
294
295 /**
296 * Given the i32 or vNi32 \p type, generate the textual name (e.g. for use with
297 * intrinsic names).
298 */
299 void ac_build_type_name_for_intr(LLVMTypeRef type, char *buf, unsigned bufsize)
300 {
301 LLVMTypeRef elem_type = type;
302
303 assert(bufsize >= 8);
304
305 if (LLVMGetTypeKind(type) == LLVMVectorTypeKind) {
306 int ret = snprintf(buf, bufsize, "v%u",
307 LLVMGetVectorSize(type));
308 if (ret < 0) {
309 char *type_name = LLVMPrintTypeToString(type);
310 fprintf(stderr, "Error building type name for: %s\n",
311 type_name);
312 return;
313 }
314 elem_type = LLVMGetElementType(type);
315 buf += ret;
316 bufsize -= ret;
317 }
318 switch (LLVMGetTypeKind(elem_type)) {
319 default: break;
320 case LLVMIntegerTypeKind:
321 snprintf(buf, bufsize, "i%d", LLVMGetIntTypeWidth(elem_type));
322 break;
323 case LLVMFloatTypeKind:
324 snprintf(buf, bufsize, "f32");
325 break;
326 case LLVMDoubleTypeKind:
327 snprintf(buf, bufsize, "f64");
328 break;
329 }
330 }
331
332 /**
333 * Helper function that builds an LLVM IR PHI node and immediately adds
334 * incoming edges.
335 */
336 LLVMValueRef
337 ac_build_phi(struct ac_llvm_context *ctx, LLVMTypeRef type,
338 unsigned count_incoming, LLVMValueRef *values,
339 LLVMBasicBlockRef *blocks)
340 {
341 LLVMValueRef phi = LLVMBuildPhi(ctx->builder, type, "");
342 LLVMAddIncoming(phi, values, blocks, count_incoming);
343 return phi;
344 }
345
346 /* Prevent optimizations (at least of memory accesses) across the current
347 * point in the program by emitting empty inline assembly that is marked as
348 * having side effects.
349 *
350 * Optionally, a value can be passed through the inline assembly to prevent
351 * LLVM from hoisting calls to ReadNone functions.
352 */
353 void
354 ac_build_optimization_barrier(struct ac_llvm_context *ctx,
355 LLVMValueRef *pvgpr)
356 {
357 static int counter = 0;
358
359 LLVMBuilderRef builder = ctx->builder;
360 char code[16];
361
362 snprintf(code, sizeof(code), "; %d", p_atomic_inc_return(&counter));
363
364 if (!pvgpr) {
365 LLVMTypeRef ftype = LLVMFunctionType(ctx->voidt, NULL, 0, false);
366 LLVMValueRef inlineasm = LLVMConstInlineAsm(ftype, code, "", true, false);
367 LLVMBuildCall(builder, inlineasm, NULL, 0, "");
368 } else {
369 LLVMTypeRef ftype = LLVMFunctionType(ctx->i32, &ctx->i32, 1, false);
370 LLVMValueRef inlineasm = LLVMConstInlineAsm(ftype, code, "=v,0", true, false);
371 LLVMValueRef vgpr = *pvgpr;
372 LLVMTypeRef vgpr_type = LLVMTypeOf(vgpr);
373 unsigned vgpr_size = ac_get_type_size(vgpr_type);
374 LLVMValueRef vgpr0;
375
376 assert(vgpr_size % 4 == 0);
377
378 vgpr = LLVMBuildBitCast(builder, vgpr, LLVMVectorType(ctx->i32, vgpr_size / 4), "");
379 vgpr0 = LLVMBuildExtractElement(builder, vgpr, ctx->i32_0, "");
380 vgpr0 = LLVMBuildCall(builder, inlineasm, &vgpr0, 1, "");
381 vgpr = LLVMBuildInsertElement(builder, vgpr, vgpr0, ctx->i32_0, "");
382 vgpr = LLVMBuildBitCast(builder, vgpr, vgpr_type, "");
383
384 *pvgpr = vgpr;
385 }
386 }
387
388 LLVMValueRef
389 ac_build_shader_clock(struct ac_llvm_context *ctx)
390 {
391 LLVMValueRef tmp = ac_build_intrinsic(ctx, "llvm.readcyclecounter",
392 ctx->i64, NULL, 0, 0);
393 return LLVMBuildBitCast(ctx->builder, tmp, ctx->v2i32, "");
394 }
395
396 LLVMValueRef
397 ac_build_ballot(struct ac_llvm_context *ctx,
398 LLVMValueRef value)
399 {
400 LLVMValueRef args[3] = {
401 value,
402 ctx->i32_0,
403 LLVMConstInt(ctx->i32, LLVMIntNE, 0)
404 };
405
406 /* We currently have no other way to prevent LLVM from lifting the icmp
407 * calls to a dominating basic block.
408 */
409 ac_build_optimization_barrier(ctx, &args[0]);
410
411 args[0] = ac_to_integer(ctx, args[0]);
412
413 return ac_build_intrinsic(ctx,
414 "llvm.amdgcn.icmp.i32",
415 ctx->i64, args, 3,
416 AC_FUNC_ATTR_NOUNWIND |
417 AC_FUNC_ATTR_READNONE |
418 AC_FUNC_ATTR_CONVERGENT);
419 }
420
421 LLVMValueRef
422 ac_build_vote_all(struct ac_llvm_context *ctx, LLVMValueRef value)
423 {
424 LLVMValueRef active_set = ac_build_ballot(ctx, ctx->i32_1);
425 LLVMValueRef vote_set = ac_build_ballot(ctx, value);
426 return LLVMBuildICmp(ctx->builder, LLVMIntEQ, vote_set, active_set, "");
427 }
428
429 LLVMValueRef
430 ac_build_vote_any(struct ac_llvm_context *ctx, LLVMValueRef value)
431 {
432 LLVMValueRef vote_set = ac_build_ballot(ctx, value);
433 return LLVMBuildICmp(ctx->builder, LLVMIntNE, vote_set,
434 LLVMConstInt(ctx->i64, 0, 0), "");
435 }
436
437 LLVMValueRef
438 ac_build_vote_eq(struct ac_llvm_context *ctx, LLVMValueRef value)
439 {
440 LLVMValueRef active_set = ac_build_ballot(ctx, ctx->i32_1);
441 LLVMValueRef vote_set = ac_build_ballot(ctx, value);
442
443 LLVMValueRef all = LLVMBuildICmp(ctx->builder, LLVMIntEQ,
444 vote_set, active_set, "");
445 LLVMValueRef none = LLVMBuildICmp(ctx->builder, LLVMIntEQ,
446 vote_set,
447 LLVMConstInt(ctx->i64, 0, 0), "");
448 return LLVMBuildOr(ctx->builder, all, none, "");
449 }
450
451 LLVMValueRef
452 ac_build_varying_gather_values(struct ac_llvm_context *ctx, LLVMValueRef *values,
453 unsigned value_count, unsigned component)
454 {
455 LLVMValueRef vec = NULL;
456
457 if (value_count == 1) {
458 return values[component];
459 } else if (!value_count)
460 unreachable("value_count is 0");
461
462 for (unsigned i = component; i < value_count + component; i++) {
463 LLVMValueRef value = values[i];
464
465 if (i == component)
466 vec = LLVMGetUndef( LLVMVectorType(LLVMTypeOf(value), value_count));
467 LLVMValueRef index = LLVMConstInt(ctx->i32, i - component, false);
468 vec = LLVMBuildInsertElement(ctx->builder, vec, value, index, "");
469 }
470 return vec;
471 }
472
473 LLVMValueRef
474 ac_build_gather_values_extended(struct ac_llvm_context *ctx,
475 LLVMValueRef *values,
476 unsigned value_count,
477 unsigned value_stride,
478 bool load,
479 bool always_vector)
480 {
481 LLVMBuilderRef builder = ctx->builder;
482 LLVMValueRef vec = NULL;
483 unsigned i;
484
485 if (value_count == 1 && !always_vector) {
486 if (load)
487 return LLVMBuildLoad(builder, values[0], "");
488 return values[0];
489 } else if (!value_count)
490 unreachable("value_count is 0");
491
492 for (i = 0; i < value_count; i++) {
493 LLVMValueRef value = values[i * value_stride];
494 if (load)
495 value = LLVMBuildLoad(builder, value, "");
496
497 if (!i)
498 vec = LLVMGetUndef( LLVMVectorType(LLVMTypeOf(value), value_count));
499 LLVMValueRef index = LLVMConstInt(ctx->i32, i, false);
500 vec = LLVMBuildInsertElement(builder, vec, value, index, "");
501 }
502 return vec;
503 }
504
505 LLVMValueRef
506 ac_build_gather_values(struct ac_llvm_context *ctx,
507 LLVMValueRef *values,
508 unsigned value_count)
509 {
510 return ac_build_gather_values_extended(ctx, values, value_count, 1, false, false);
511 }
512
513 /* Expand a scalar or vector to <4 x type> by filling the remaining channels
514 * with undef. Extract at most num_channels components from the input.
515 */
516 LLVMValueRef ac_build_expand_to_vec4(struct ac_llvm_context *ctx,
517 LLVMValueRef value,
518 unsigned num_channels)
519 {
520 LLVMTypeRef elemtype;
521 LLVMValueRef chan[4];
522
523 if (LLVMGetTypeKind(LLVMTypeOf(value)) == LLVMVectorTypeKind) {
524 unsigned vec_size = LLVMGetVectorSize(LLVMTypeOf(value));
525 num_channels = MIN2(num_channels, vec_size);
526
527 if (num_channels >= 4)
528 return value;
529
530 for (unsigned i = 0; i < num_channels; i++)
531 chan[i] = ac_llvm_extract_elem(ctx, value, i);
532
533 elemtype = LLVMGetElementType(LLVMTypeOf(value));
534 } else {
535 if (num_channels) {
536 assert(num_channels == 1);
537 chan[0] = value;
538 }
539 elemtype = LLVMTypeOf(value);
540 }
541
542 while (num_channels < 4)
543 chan[num_channels++] = LLVMGetUndef(elemtype);
544
545 return ac_build_gather_values(ctx, chan, 4);
546 }
547
548 LLVMValueRef
549 ac_build_fdiv(struct ac_llvm_context *ctx,
550 LLVMValueRef num,
551 LLVMValueRef den)
552 {
553 LLVMValueRef ret = LLVMBuildFDiv(ctx->builder, num, den, "");
554
555 /* Use v_rcp_f32 instead of precise division. */
556 if (!LLVMIsConstant(ret))
557 LLVMSetMetadata(ret, ctx->fpmath_md_kind, ctx->fpmath_md_2p5_ulp);
558 return ret;
559 }
560
561 /* Coordinates for cube map selection. sc, tc, and ma are as in Table 8.27
562 * of the OpenGL 4.5 (Compatibility Profile) specification, except ma is
563 * already multiplied by two. id is the cube face number.
564 */
565 struct cube_selection_coords {
566 LLVMValueRef stc[2];
567 LLVMValueRef ma;
568 LLVMValueRef id;
569 };
570
571 static void
572 build_cube_intrinsic(struct ac_llvm_context *ctx,
573 LLVMValueRef in[3],
574 struct cube_selection_coords *out)
575 {
576 LLVMTypeRef f32 = ctx->f32;
577
578 out->stc[1] = ac_build_intrinsic(ctx, "llvm.amdgcn.cubetc",
579 f32, in, 3, AC_FUNC_ATTR_READNONE);
580 out->stc[0] = ac_build_intrinsic(ctx, "llvm.amdgcn.cubesc",
581 f32, in, 3, AC_FUNC_ATTR_READNONE);
582 out->ma = ac_build_intrinsic(ctx, "llvm.amdgcn.cubema",
583 f32, in, 3, AC_FUNC_ATTR_READNONE);
584 out->id = ac_build_intrinsic(ctx, "llvm.amdgcn.cubeid",
585 f32, in, 3, AC_FUNC_ATTR_READNONE);
586 }
587
588 /**
589 * Build a manual selection sequence for cube face sc/tc coordinates and
590 * major axis vector (multiplied by 2 for consistency) for the given
591 * vec3 \p coords, for the face implied by \p selcoords.
592 *
593 * For the major axis, we always adjust the sign to be in the direction of
594 * selcoords.ma; i.e., a positive out_ma means that coords is pointed towards
595 * the selcoords major axis.
596 */
597 static void build_cube_select(struct ac_llvm_context *ctx,
598 const struct cube_selection_coords *selcoords,
599 const LLVMValueRef *coords,
600 LLVMValueRef *out_st,
601 LLVMValueRef *out_ma)
602 {
603 LLVMBuilderRef builder = ctx->builder;
604 LLVMTypeRef f32 = LLVMTypeOf(coords[0]);
605 LLVMValueRef is_ma_positive;
606 LLVMValueRef sgn_ma;
607 LLVMValueRef is_ma_z, is_not_ma_z;
608 LLVMValueRef is_ma_y;
609 LLVMValueRef is_ma_x;
610 LLVMValueRef sgn;
611 LLVMValueRef tmp;
612
613 is_ma_positive = LLVMBuildFCmp(builder, LLVMRealUGE,
614 selcoords->ma, LLVMConstReal(f32, 0.0), "");
615 sgn_ma = LLVMBuildSelect(builder, is_ma_positive,
616 LLVMConstReal(f32, 1.0), LLVMConstReal(f32, -1.0), "");
617
618 is_ma_z = LLVMBuildFCmp(builder, LLVMRealUGE, selcoords->id, LLVMConstReal(f32, 4.0), "");
619 is_not_ma_z = LLVMBuildNot(builder, is_ma_z, "");
620 is_ma_y = LLVMBuildAnd(builder, is_not_ma_z,
621 LLVMBuildFCmp(builder, LLVMRealUGE, selcoords->id, LLVMConstReal(f32, 2.0), ""), "");
622 is_ma_x = LLVMBuildAnd(builder, is_not_ma_z, LLVMBuildNot(builder, is_ma_y, ""), "");
623
624 /* Select sc */
625 tmp = LLVMBuildSelect(builder, is_ma_x, coords[2], coords[0], "");
626 sgn = LLVMBuildSelect(builder, is_ma_y, LLVMConstReal(f32, 1.0),
627 LLVMBuildSelect(builder, is_ma_z, sgn_ma,
628 LLVMBuildFNeg(builder, sgn_ma, ""), ""), "");
629 out_st[0] = LLVMBuildFMul(builder, tmp, sgn, "");
630
631 /* Select tc */
632 tmp = LLVMBuildSelect(builder, is_ma_y, coords[2], coords[1], "");
633 sgn = LLVMBuildSelect(builder, is_ma_y, sgn_ma,
634 LLVMConstReal(f32, -1.0), "");
635 out_st[1] = LLVMBuildFMul(builder, tmp, sgn, "");
636
637 /* Select ma */
638 tmp = LLVMBuildSelect(builder, is_ma_z, coords[2],
639 LLVMBuildSelect(builder, is_ma_y, coords[1], coords[0], ""), "");
640 tmp = ac_build_intrinsic(ctx, "llvm.fabs.f32",
641 ctx->f32, &tmp, 1, AC_FUNC_ATTR_READNONE);
642 *out_ma = LLVMBuildFMul(builder, tmp, LLVMConstReal(f32, 2.0), "");
643 }
644
645 void
646 ac_prepare_cube_coords(struct ac_llvm_context *ctx,
647 bool is_deriv, bool is_array, bool is_lod,
648 LLVMValueRef *coords_arg,
649 LLVMValueRef *derivs_arg)
650 {
651
652 LLVMBuilderRef builder = ctx->builder;
653 struct cube_selection_coords selcoords;
654 LLVMValueRef coords[3];
655 LLVMValueRef invma;
656
657 if (is_array && !is_lod) {
658 LLVMValueRef tmp = coords_arg[3];
659 tmp = ac_build_intrinsic(ctx, "llvm.rint.f32", ctx->f32, &tmp, 1, 0);
660
661 /* Section 8.9 (Texture Functions) of the GLSL 4.50 spec says:
662 *
663 * "For Array forms, the array layer used will be
664 *
665 * max(0, min(d−1, floor(layer+0.5)))
666 *
667 * where d is the depth of the texture array and layer
668 * comes from the component indicated in the tables below.
669 * Workaroudn for an issue where the layer is taken from a
670 * helper invocation which happens to fall on a different
671 * layer due to extrapolation."
672 *
673 * VI and earlier attempt to implement this in hardware by
674 * clamping the value of coords[2] = (8 * layer) + face.
675 * Unfortunately, this means that the we end up with the wrong
676 * face when clamping occurs.
677 *
678 * Clamp the layer earlier to work around the issue.
679 */
680 if (ctx->chip_class <= VI) {
681 LLVMValueRef ge0;
682 ge0 = LLVMBuildFCmp(builder, LLVMRealOGE, tmp, ctx->f32_0, "");
683 tmp = LLVMBuildSelect(builder, ge0, tmp, ctx->f32_0, "");
684 }
685
686 coords_arg[3] = tmp;
687 }
688
689 build_cube_intrinsic(ctx, coords_arg, &selcoords);
690
691 invma = ac_build_intrinsic(ctx, "llvm.fabs.f32",
692 ctx->f32, &selcoords.ma, 1, AC_FUNC_ATTR_READNONE);
693 invma = ac_build_fdiv(ctx, LLVMConstReal(ctx->f32, 1.0), invma);
694
695 for (int i = 0; i < 2; ++i)
696 coords[i] = LLVMBuildFMul(builder, selcoords.stc[i], invma, "");
697
698 coords[2] = selcoords.id;
699
700 if (is_deriv && derivs_arg) {
701 LLVMValueRef derivs[4];
702 int axis;
703
704 /* Convert cube derivatives to 2D derivatives. */
705 for (axis = 0; axis < 2; axis++) {
706 LLVMValueRef deriv_st[2];
707 LLVMValueRef deriv_ma;
708
709 /* Transform the derivative alongside the texture
710 * coordinate. Mathematically, the correct formula is
711 * as follows. Assume we're projecting onto the +Z face
712 * and denote by dx/dh the derivative of the (original)
713 * X texture coordinate with respect to horizontal
714 * window coordinates. The projection onto the +Z face
715 * plane is:
716 *
717 * f(x,z) = x/z
718 *
719 * Then df/dh = df/dx * dx/dh + df/dz * dz/dh
720 * = 1/z * dx/dh - x/z * 1/z * dz/dh.
721 *
722 * This motivatives the implementation below.
723 *
724 * Whether this actually gives the expected results for
725 * apps that might feed in derivatives obtained via
726 * finite differences is anyone's guess. The OpenGL spec
727 * seems awfully quiet about how textureGrad for cube
728 * maps should be handled.
729 */
730 build_cube_select(ctx, &selcoords, &derivs_arg[axis * 3],
731 deriv_st, &deriv_ma);
732
733 deriv_ma = LLVMBuildFMul(builder, deriv_ma, invma, "");
734
735 for (int i = 0; i < 2; ++i)
736 derivs[axis * 2 + i] =
737 LLVMBuildFSub(builder,
738 LLVMBuildFMul(builder, deriv_st[i], invma, ""),
739 LLVMBuildFMul(builder, deriv_ma, coords[i], ""), "");
740 }
741
742 memcpy(derivs_arg, derivs, sizeof(derivs));
743 }
744
745 /* Shift the texture coordinate. This must be applied after the
746 * derivative calculation.
747 */
748 for (int i = 0; i < 2; ++i)
749 coords[i] = LLVMBuildFAdd(builder, coords[i], LLVMConstReal(ctx->f32, 1.5), "");
750
751 if (is_array) {
752 /* for cube arrays coord.z = coord.w(array_index) * 8 + face */
753 /* coords_arg.w component - array_index for cube arrays */
754 LLVMValueRef tmp = LLVMBuildFMul(ctx->builder, coords_arg[3], LLVMConstReal(ctx->f32, 8.0), "");
755 coords[2] = LLVMBuildFAdd(ctx->builder, tmp, coords[2], "");
756 }
757
758 memcpy(coords_arg, coords, sizeof(coords));
759 }
760
761
762 LLVMValueRef
763 ac_build_fs_interp(struct ac_llvm_context *ctx,
764 LLVMValueRef llvm_chan,
765 LLVMValueRef attr_number,
766 LLVMValueRef params,
767 LLVMValueRef i,
768 LLVMValueRef j)
769 {
770 LLVMValueRef args[5];
771 LLVMValueRef p1;
772
773 args[0] = i;
774 args[1] = llvm_chan;
775 args[2] = attr_number;
776 args[3] = params;
777
778 p1 = ac_build_intrinsic(ctx, "llvm.amdgcn.interp.p1",
779 ctx->f32, args, 4, AC_FUNC_ATTR_READNONE);
780
781 args[0] = p1;
782 args[1] = j;
783 args[2] = llvm_chan;
784 args[3] = attr_number;
785 args[4] = params;
786
787 return ac_build_intrinsic(ctx, "llvm.amdgcn.interp.p2",
788 ctx->f32, args, 5, AC_FUNC_ATTR_READNONE);
789 }
790
791 LLVMValueRef
792 ac_build_fs_interp_mov(struct ac_llvm_context *ctx,
793 LLVMValueRef parameter,
794 LLVMValueRef llvm_chan,
795 LLVMValueRef attr_number,
796 LLVMValueRef params)
797 {
798 LLVMValueRef args[4];
799
800 args[0] = parameter;
801 args[1] = llvm_chan;
802 args[2] = attr_number;
803 args[3] = params;
804
805 return ac_build_intrinsic(ctx, "llvm.amdgcn.interp.mov",
806 ctx->f32, args, 4, AC_FUNC_ATTR_READNONE);
807 }
808
809 LLVMValueRef
810 ac_build_gep0(struct ac_llvm_context *ctx,
811 LLVMValueRef base_ptr,
812 LLVMValueRef index)
813 {
814 LLVMValueRef indices[2] = {
815 LLVMConstInt(ctx->i32, 0, 0),
816 index,
817 };
818 return LLVMBuildGEP(ctx->builder, base_ptr,
819 indices, 2, "");
820 }
821
822 void
823 ac_build_indexed_store(struct ac_llvm_context *ctx,
824 LLVMValueRef base_ptr, LLVMValueRef index,
825 LLVMValueRef value)
826 {
827 LLVMBuildStore(ctx->builder, value,
828 ac_build_gep0(ctx, base_ptr, index));
829 }
830
831 /**
832 * Build an LLVM bytecode indexed load using LLVMBuildGEP + LLVMBuildLoad.
833 * It's equivalent to doing a load from &base_ptr[index].
834 *
835 * \param base_ptr Where the array starts.
836 * \param index The element index into the array.
837 * \param uniform Whether the base_ptr and index can be assumed to be
838 * dynamically uniform (i.e. load to an SGPR)
839 * \param invariant Whether the load is invariant (no other opcodes affect it)
840 */
841 static LLVMValueRef
842 ac_build_load_custom(struct ac_llvm_context *ctx, LLVMValueRef base_ptr,
843 LLVMValueRef index, bool uniform, bool invariant)
844 {
845 LLVMValueRef pointer, result;
846
847 pointer = ac_build_gep0(ctx, base_ptr, index);
848 if (uniform)
849 LLVMSetMetadata(pointer, ctx->uniform_md_kind, ctx->empty_md);
850 result = LLVMBuildLoad(ctx->builder, pointer, "");
851 if (invariant)
852 LLVMSetMetadata(result, ctx->invariant_load_md_kind, ctx->empty_md);
853 return result;
854 }
855
856 LLVMValueRef ac_build_load(struct ac_llvm_context *ctx, LLVMValueRef base_ptr,
857 LLVMValueRef index)
858 {
859 return ac_build_load_custom(ctx, base_ptr, index, false, false);
860 }
861
862 LLVMValueRef ac_build_load_invariant(struct ac_llvm_context *ctx,
863 LLVMValueRef base_ptr, LLVMValueRef index)
864 {
865 return ac_build_load_custom(ctx, base_ptr, index, false, true);
866 }
867
868 LLVMValueRef ac_build_load_to_sgpr(struct ac_llvm_context *ctx,
869 LLVMValueRef base_ptr, LLVMValueRef index)
870 {
871 return ac_build_load_custom(ctx, base_ptr, index, true, true);
872 }
873
874 /* TBUFFER_STORE_FORMAT_{X,XY,XYZ,XYZW} <- the suffix is selected by num_channels=1..4.
875 * The type of vdata must be one of i32 (num_channels=1), v2i32 (num_channels=2),
876 * or v4i32 (num_channels=3,4).
877 */
878 void
879 ac_build_buffer_store_dword(struct ac_llvm_context *ctx,
880 LLVMValueRef rsrc,
881 LLVMValueRef vdata,
882 unsigned num_channels,
883 LLVMValueRef voffset,
884 LLVMValueRef soffset,
885 unsigned inst_offset,
886 bool glc,
887 bool slc,
888 bool writeonly_memory,
889 bool swizzle_enable_hint)
890 {
891 /* SWIZZLE_ENABLE requires that soffset isn't folded into voffset
892 * (voffset is swizzled, but soffset isn't swizzled).
893 * llvm.amdgcn.buffer.store doesn't have a separate soffset parameter.
894 */
895 if (!swizzle_enable_hint) {
896 /* Split 3 channel stores, becase LLVM doesn't support 3-channel
897 * intrinsics. */
898 if (num_channels == 3) {
899 LLVMValueRef v[3], v01;
900
901 for (int i = 0; i < 3; i++) {
902 v[i] = LLVMBuildExtractElement(ctx->builder, vdata,
903 LLVMConstInt(ctx->i32, i, 0), "");
904 }
905 v01 = ac_build_gather_values(ctx, v, 2);
906
907 ac_build_buffer_store_dword(ctx, rsrc, v01, 2, voffset,
908 soffset, inst_offset, glc, slc,
909 writeonly_memory, swizzle_enable_hint);
910 ac_build_buffer_store_dword(ctx, rsrc, v[2], 1, voffset,
911 soffset, inst_offset + 8,
912 glc, slc,
913 writeonly_memory, swizzle_enable_hint);
914 return;
915 }
916
917 unsigned func = CLAMP(num_channels, 1, 3) - 1;
918 static const char *types[] = {"f32", "v2f32", "v4f32"};
919 char name[256];
920 LLVMValueRef offset = soffset;
921
922 if (inst_offset)
923 offset = LLVMBuildAdd(ctx->builder, offset,
924 LLVMConstInt(ctx->i32, inst_offset, 0), "");
925 if (voffset)
926 offset = LLVMBuildAdd(ctx->builder, offset, voffset, "");
927
928 LLVMValueRef args[] = {
929 ac_to_float(ctx, vdata),
930 LLVMBuildBitCast(ctx->builder, rsrc, ctx->v4i32, ""),
931 LLVMConstInt(ctx->i32, 0, 0),
932 offset,
933 LLVMConstInt(ctx->i1, glc, 0),
934 LLVMConstInt(ctx->i1, slc, 0),
935 };
936
937 snprintf(name, sizeof(name), "llvm.amdgcn.buffer.store.%s",
938 types[func]);
939
940 ac_build_intrinsic(ctx, name, ctx->voidt,
941 args, ARRAY_SIZE(args),
942 writeonly_memory ?
943 AC_FUNC_ATTR_INACCESSIBLE_MEM_ONLY :
944 AC_FUNC_ATTR_WRITEONLY);
945 return;
946 }
947
948 static unsigned dfmt[] = {
949 V_008F0C_BUF_DATA_FORMAT_32,
950 V_008F0C_BUF_DATA_FORMAT_32_32,
951 V_008F0C_BUF_DATA_FORMAT_32_32_32,
952 V_008F0C_BUF_DATA_FORMAT_32_32_32_32
953 };
954 assert(num_channels >= 1 && num_channels <= 4);
955
956 LLVMValueRef args[] = {
957 rsrc,
958 vdata,
959 LLVMConstInt(ctx->i32, num_channels, 0),
960 voffset ? voffset : LLVMGetUndef(ctx->i32),
961 soffset,
962 LLVMConstInt(ctx->i32, inst_offset, 0),
963 LLVMConstInt(ctx->i32, dfmt[num_channels - 1], 0),
964 LLVMConstInt(ctx->i32, V_008F0C_BUF_NUM_FORMAT_UINT, 0),
965 LLVMConstInt(ctx->i32, voffset != NULL, 0),
966 LLVMConstInt(ctx->i32, 0, 0), /* idxen */
967 LLVMConstInt(ctx->i32, glc, 0),
968 LLVMConstInt(ctx->i32, slc, 0),
969 LLVMConstInt(ctx->i32, 0, 0), /* tfe*/
970 };
971
972 /* The instruction offset field has 12 bits */
973 assert(voffset || inst_offset < (1 << 12));
974
975 /* The intrinsic is overloaded, we need to add a type suffix for overloading to work. */
976 unsigned func = CLAMP(num_channels, 1, 3) - 1;
977 const char *types[] = {"i32", "v2i32", "v4i32"};
978 char name[256];
979 snprintf(name, sizeof(name), "llvm.SI.tbuffer.store.%s", types[func]);
980
981 ac_build_intrinsic(ctx, name, ctx->voidt,
982 args, ARRAY_SIZE(args),
983 AC_FUNC_ATTR_LEGACY);
984 }
985
986 static LLVMValueRef
987 ac_build_buffer_load_common(struct ac_llvm_context *ctx,
988 LLVMValueRef rsrc,
989 LLVMValueRef vindex,
990 LLVMValueRef voffset,
991 unsigned num_channels,
992 bool glc,
993 bool slc,
994 bool can_speculate,
995 bool use_format)
996 {
997 LLVMValueRef args[] = {
998 LLVMBuildBitCast(ctx->builder, rsrc, ctx->v4i32, ""),
999 vindex ? vindex : LLVMConstInt(ctx->i32, 0, 0),
1000 voffset,
1001 LLVMConstInt(ctx->i1, glc, 0),
1002 LLVMConstInt(ctx->i1, slc, 0)
1003 };
1004 unsigned func = CLAMP(num_channels, 1, 3) - 1;
1005
1006 LLVMTypeRef types[] = {ctx->f32, ctx->v2f32, ctx->v4f32};
1007 const char *type_names[] = {"f32", "v2f32", "v4f32"};
1008 char name[256];
1009
1010 if (use_format) {
1011 snprintf(name, sizeof(name), "llvm.amdgcn.buffer.load.format.%s",
1012 type_names[func]);
1013 } else {
1014 snprintf(name, sizeof(name), "llvm.amdgcn.buffer.load.%s",
1015 type_names[func]);
1016 }
1017
1018 return ac_build_intrinsic(ctx, name, types[func], args,
1019 ARRAY_SIZE(args),
1020 ac_get_load_intr_attribs(can_speculate));
1021 }
1022
1023 LLVMValueRef
1024 ac_build_buffer_load(struct ac_llvm_context *ctx,
1025 LLVMValueRef rsrc,
1026 int num_channels,
1027 LLVMValueRef vindex,
1028 LLVMValueRef voffset,
1029 LLVMValueRef soffset,
1030 unsigned inst_offset,
1031 unsigned glc,
1032 unsigned slc,
1033 bool can_speculate,
1034 bool allow_smem)
1035 {
1036 LLVMValueRef offset = LLVMConstInt(ctx->i32, inst_offset, 0);
1037 if (voffset)
1038 offset = LLVMBuildAdd(ctx->builder, offset, voffset, "");
1039 if (soffset)
1040 offset = LLVMBuildAdd(ctx->builder, offset, soffset, "");
1041
1042 /* TODO: VI and later generations can use SMEM with GLC=1.*/
1043 if (allow_smem && !glc && !slc) {
1044 assert(vindex == NULL);
1045
1046 LLVMValueRef result[8];
1047
1048 for (int i = 0; i < num_channels; i++) {
1049 if (i) {
1050 offset = LLVMBuildAdd(ctx->builder, offset,
1051 LLVMConstInt(ctx->i32, 4, 0), "");
1052 }
1053 LLVMValueRef args[2] = {rsrc, offset};
1054 result[i] = ac_build_intrinsic(ctx, "llvm.SI.load.const.v4i32",
1055 ctx->f32, args, 2,
1056 AC_FUNC_ATTR_READNONE |
1057 AC_FUNC_ATTR_LEGACY);
1058 }
1059 if (num_channels == 1)
1060 return result[0];
1061
1062 if (num_channels == 3)
1063 result[num_channels++] = LLVMGetUndef(ctx->f32);
1064 return ac_build_gather_values(ctx, result, num_channels);
1065 }
1066
1067 return ac_build_buffer_load_common(ctx, rsrc, vindex, offset,
1068 num_channels, glc, slc,
1069 can_speculate, false);
1070 }
1071
1072 LLVMValueRef ac_build_buffer_load_format(struct ac_llvm_context *ctx,
1073 LLVMValueRef rsrc,
1074 LLVMValueRef vindex,
1075 LLVMValueRef voffset,
1076 unsigned num_channels,
1077 bool glc,
1078 bool can_speculate)
1079 {
1080 return ac_build_buffer_load_common(ctx, rsrc, vindex, voffset,
1081 num_channels, glc, false,
1082 can_speculate, true);
1083 }
1084
1085 LLVMValueRef ac_build_buffer_load_format_gfx9_safe(struct ac_llvm_context *ctx,
1086 LLVMValueRef rsrc,
1087 LLVMValueRef vindex,
1088 LLVMValueRef voffset,
1089 unsigned num_channels,
1090 bool glc,
1091 bool can_speculate)
1092 {
1093 LLVMValueRef elem_count = LLVMBuildExtractElement(ctx->builder, rsrc, LLVMConstInt(ctx->i32, 2, 0), "");
1094 LLVMValueRef stride = LLVMBuildExtractElement(ctx->builder, rsrc, LLVMConstInt(ctx->i32, 1, 0), "");
1095 stride = LLVMBuildLShr(ctx->builder, stride, LLVMConstInt(ctx->i32, 16, 0), "");
1096
1097 LLVMValueRef new_elem_count = LLVMBuildSelect(ctx->builder,
1098 LLVMBuildICmp(ctx->builder, LLVMIntUGT, elem_count, stride, ""),
1099 elem_count, stride, "");
1100
1101 LLVMValueRef new_rsrc = LLVMBuildInsertElement(ctx->builder, rsrc, new_elem_count,
1102 LLVMConstInt(ctx->i32, 2, 0), "");
1103
1104 return ac_build_buffer_load_common(ctx, new_rsrc, vindex, voffset,
1105 num_channels, glc, false,
1106 can_speculate, true);
1107 }
1108
1109 /**
1110 * Set range metadata on an instruction. This can only be used on load and
1111 * call instructions. If you know an instruction can only produce the values
1112 * 0, 1, 2, you would do set_range_metadata(value, 0, 3);
1113 * \p lo is the minimum value inclusive.
1114 * \p hi is the maximum value exclusive.
1115 */
1116 static void set_range_metadata(struct ac_llvm_context *ctx,
1117 LLVMValueRef value, unsigned lo, unsigned hi)
1118 {
1119 LLVMValueRef range_md, md_args[2];
1120 LLVMTypeRef type = LLVMTypeOf(value);
1121 LLVMContextRef context = LLVMGetTypeContext(type);
1122
1123 md_args[0] = LLVMConstInt(type, lo, false);
1124 md_args[1] = LLVMConstInt(type, hi, false);
1125 range_md = LLVMMDNodeInContext(context, md_args, 2);
1126 LLVMSetMetadata(value, ctx->range_md_kind, range_md);
1127 }
1128
1129 LLVMValueRef
1130 ac_get_thread_id(struct ac_llvm_context *ctx)
1131 {
1132 LLVMValueRef tid;
1133
1134 LLVMValueRef tid_args[2];
1135 tid_args[0] = LLVMConstInt(ctx->i32, 0xffffffff, false);
1136 tid_args[1] = LLVMConstInt(ctx->i32, 0, false);
1137 tid_args[1] = ac_build_intrinsic(ctx,
1138 "llvm.amdgcn.mbcnt.lo", ctx->i32,
1139 tid_args, 2, AC_FUNC_ATTR_READNONE);
1140
1141 tid = ac_build_intrinsic(ctx, "llvm.amdgcn.mbcnt.hi",
1142 ctx->i32, tid_args,
1143 2, AC_FUNC_ATTR_READNONE);
1144 set_range_metadata(ctx, tid, 0, 64);
1145 return tid;
1146 }
1147
1148 /*
1149 * SI implements derivatives using the local data store (LDS)
1150 * All writes to the LDS happen in all executing threads at
1151 * the same time. TID is the Thread ID for the current
1152 * thread and is a value between 0 and 63, representing
1153 * the thread's position in the wavefront.
1154 *
1155 * For the pixel shader threads are grouped into quads of four pixels.
1156 * The TIDs of the pixels of a quad are:
1157 *
1158 * +------+------+
1159 * |4n + 0|4n + 1|
1160 * +------+------+
1161 * |4n + 2|4n + 3|
1162 * +------+------+
1163 *
1164 * So, masking the TID with 0xfffffffc yields the TID of the top left pixel
1165 * of the quad, masking with 0xfffffffd yields the TID of the top pixel of
1166 * the current pixel's column, and masking with 0xfffffffe yields the TID
1167 * of the left pixel of the current pixel's row.
1168 *
1169 * Adding 1 yields the TID of the pixel to the right of the left pixel, and
1170 * adding 2 yields the TID of the pixel below the top pixel.
1171 */
1172 LLVMValueRef
1173 ac_build_ddxy(struct ac_llvm_context *ctx,
1174 uint32_t mask,
1175 int idx,
1176 LLVMValueRef val)
1177 {
1178 LLVMValueRef tl, trbl, args[2];
1179 LLVMValueRef result;
1180
1181 if (ctx->chip_class >= VI) {
1182 LLVMValueRef thread_id, tl_tid, trbl_tid;
1183 thread_id = ac_get_thread_id(ctx);
1184
1185 tl_tid = LLVMBuildAnd(ctx->builder, thread_id,
1186 LLVMConstInt(ctx->i32, mask, false), "");
1187
1188 trbl_tid = LLVMBuildAdd(ctx->builder, tl_tid,
1189 LLVMConstInt(ctx->i32, idx, false), "");
1190
1191 args[0] = LLVMBuildMul(ctx->builder, tl_tid,
1192 LLVMConstInt(ctx->i32, 4, false), "");
1193 args[1] = val;
1194 tl = ac_build_intrinsic(ctx,
1195 "llvm.amdgcn.ds.bpermute", ctx->i32,
1196 args, 2,
1197 AC_FUNC_ATTR_READNONE |
1198 AC_FUNC_ATTR_CONVERGENT);
1199
1200 args[0] = LLVMBuildMul(ctx->builder, trbl_tid,
1201 LLVMConstInt(ctx->i32, 4, false), "");
1202 trbl = ac_build_intrinsic(ctx,
1203 "llvm.amdgcn.ds.bpermute", ctx->i32,
1204 args, 2,
1205 AC_FUNC_ATTR_READNONE |
1206 AC_FUNC_ATTR_CONVERGENT);
1207 } else {
1208 uint32_t masks[2] = {};
1209
1210 switch (mask) {
1211 case AC_TID_MASK_TOP_LEFT:
1212 masks[0] = 0x8000;
1213 if (idx == 1)
1214 masks[1] = 0x8055;
1215 else
1216 masks[1] = 0x80aa;
1217
1218 break;
1219 case AC_TID_MASK_TOP:
1220 masks[0] = 0x8044;
1221 masks[1] = 0x80ee;
1222 break;
1223 case AC_TID_MASK_LEFT:
1224 masks[0] = 0x80a0;
1225 masks[1] = 0x80f5;
1226 break;
1227 default:
1228 assert(0);
1229 }
1230
1231 args[0] = val;
1232 args[1] = LLVMConstInt(ctx->i32, masks[0], false);
1233
1234 tl = ac_build_intrinsic(ctx,
1235 "llvm.amdgcn.ds.swizzle", ctx->i32,
1236 args, 2,
1237 AC_FUNC_ATTR_READNONE |
1238 AC_FUNC_ATTR_CONVERGENT);
1239
1240 args[1] = LLVMConstInt(ctx->i32, masks[1], false);
1241 trbl = ac_build_intrinsic(ctx,
1242 "llvm.amdgcn.ds.swizzle", ctx->i32,
1243 args, 2,
1244 AC_FUNC_ATTR_READNONE |
1245 AC_FUNC_ATTR_CONVERGENT);
1246 }
1247
1248 tl = LLVMBuildBitCast(ctx->builder, tl, ctx->f32, "");
1249 trbl = LLVMBuildBitCast(ctx->builder, trbl, ctx->f32, "");
1250 result = LLVMBuildFSub(ctx->builder, trbl, tl, "");
1251
1252 if (HAVE_LLVM >= 0x0700) {
1253 result = ac_build_intrinsic(ctx,
1254 "llvm.amdgcn.wqm.f32", ctx->f32,
1255 &result, 1, 0);
1256 }
1257
1258 return result;
1259 }
1260
1261 void
1262 ac_build_sendmsg(struct ac_llvm_context *ctx,
1263 uint32_t msg,
1264 LLVMValueRef wave_id)
1265 {
1266 LLVMValueRef args[2];
1267 args[0] = LLVMConstInt(ctx->i32, msg, false);
1268 args[1] = wave_id;
1269 ac_build_intrinsic(ctx, "llvm.amdgcn.s.sendmsg", ctx->voidt, args, 2, 0);
1270 }
1271
1272 LLVMValueRef
1273 ac_build_imsb(struct ac_llvm_context *ctx,
1274 LLVMValueRef arg,
1275 LLVMTypeRef dst_type)
1276 {
1277 LLVMValueRef msb = ac_build_intrinsic(ctx, "llvm.amdgcn.sffbh.i32",
1278 dst_type, &arg, 1,
1279 AC_FUNC_ATTR_READNONE);
1280
1281 /* The HW returns the last bit index from MSB, but NIR/TGSI wants
1282 * the index from LSB. Invert it by doing "31 - msb". */
1283 msb = LLVMBuildSub(ctx->builder, LLVMConstInt(ctx->i32, 31, false),
1284 msb, "");
1285
1286 LLVMValueRef all_ones = LLVMConstInt(ctx->i32, -1, true);
1287 LLVMValueRef cond = LLVMBuildOr(ctx->builder,
1288 LLVMBuildICmp(ctx->builder, LLVMIntEQ,
1289 arg, LLVMConstInt(ctx->i32, 0, 0), ""),
1290 LLVMBuildICmp(ctx->builder, LLVMIntEQ,
1291 arg, all_ones, ""), "");
1292
1293 return LLVMBuildSelect(ctx->builder, cond, all_ones, msb, "");
1294 }
1295
1296 LLVMValueRef
1297 ac_build_umsb(struct ac_llvm_context *ctx,
1298 LLVMValueRef arg,
1299 LLVMTypeRef dst_type)
1300 {
1301 const char *intrin_name;
1302 LLVMTypeRef type;
1303 LLVMValueRef highest_bit;
1304 LLVMValueRef zero;
1305
1306 if (ac_get_elem_bits(ctx, LLVMTypeOf(arg)) == 64) {
1307 intrin_name = "llvm.ctlz.i64";
1308 type = ctx->i64;
1309 highest_bit = LLVMConstInt(ctx->i64, 63, false);
1310 zero = ctx->i64_0;
1311 } else {
1312 intrin_name = "llvm.ctlz.i32";
1313 type = ctx->i32;
1314 highest_bit = LLVMConstInt(ctx->i32, 31, false);
1315 zero = ctx->i32_0;
1316 }
1317
1318 LLVMValueRef params[2] = {
1319 arg,
1320 ctx->i1true,
1321 };
1322
1323 LLVMValueRef msb = ac_build_intrinsic(ctx, intrin_name, type,
1324 params, 2,
1325 AC_FUNC_ATTR_READNONE);
1326
1327 /* The HW returns the last bit index from MSB, but TGSI/NIR wants
1328 * the index from LSB. Invert it by doing "31 - msb". */
1329 msb = LLVMBuildSub(ctx->builder, highest_bit, msb, "");
1330 msb = LLVMBuildTruncOrBitCast(ctx->builder, msb, ctx->i32, "");
1331
1332 /* check for zero */
1333 return LLVMBuildSelect(ctx->builder,
1334 LLVMBuildICmp(ctx->builder, LLVMIntEQ, arg, zero, ""),
1335 LLVMConstInt(ctx->i32, -1, true), msb, "");
1336 }
1337
1338 LLVMValueRef ac_build_fmin(struct ac_llvm_context *ctx, LLVMValueRef a,
1339 LLVMValueRef b)
1340 {
1341 LLVMValueRef args[2] = {a, b};
1342 return ac_build_intrinsic(ctx, "llvm.minnum.f32", ctx->f32, args, 2,
1343 AC_FUNC_ATTR_READNONE);
1344 }
1345
1346 LLVMValueRef ac_build_fmax(struct ac_llvm_context *ctx, LLVMValueRef a,
1347 LLVMValueRef b)
1348 {
1349 LLVMValueRef args[2] = {a, b};
1350 return ac_build_intrinsic(ctx, "llvm.maxnum.f32", ctx->f32, args, 2,
1351 AC_FUNC_ATTR_READNONE);
1352 }
1353
1354 LLVMValueRef ac_build_imin(struct ac_llvm_context *ctx, LLVMValueRef a,
1355 LLVMValueRef b)
1356 {
1357 LLVMValueRef cmp = LLVMBuildICmp(ctx->builder, LLVMIntSLE, a, b, "");
1358 return LLVMBuildSelect(ctx->builder, cmp, a, b, "");
1359 }
1360
1361 LLVMValueRef ac_build_imax(struct ac_llvm_context *ctx, LLVMValueRef a,
1362 LLVMValueRef b)
1363 {
1364 LLVMValueRef cmp = LLVMBuildICmp(ctx->builder, LLVMIntSGT, a, b, "");
1365 return LLVMBuildSelect(ctx->builder, cmp, a, b, "");
1366 }
1367
1368 LLVMValueRef ac_build_umin(struct ac_llvm_context *ctx, LLVMValueRef a,
1369 LLVMValueRef b)
1370 {
1371 LLVMValueRef cmp = LLVMBuildICmp(ctx->builder, LLVMIntULE, a, b, "");
1372 return LLVMBuildSelect(ctx->builder, cmp, a, b, "");
1373 }
1374
1375 LLVMValueRef ac_build_clamp(struct ac_llvm_context *ctx, LLVMValueRef value)
1376 {
1377 if (HAVE_LLVM >= 0x0500) {
1378 return ac_build_fmin(ctx, ac_build_fmax(ctx, value, ctx->f32_0),
1379 ctx->f32_1);
1380 }
1381
1382 LLVMValueRef args[3] = {
1383 value,
1384 LLVMConstReal(ctx->f32, 0),
1385 LLVMConstReal(ctx->f32, 1),
1386 };
1387
1388 return ac_build_intrinsic(ctx, "llvm.AMDGPU.clamp.", ctx->f32, args, 3,
1389 AC_FUNC_ATTR_READNONE |
1390 AC_FUNC_ATTR_LEGACY);
1391 }
1392
1393 void ac_build_export(struct ac_llvm_context *ctx, struct ac_export_args *a)
1394 {
1395 LLVMValueRef args[9];
1396
1397 if (HAVE_LLVM >= 0x0500) {
1398 args[0] = LLVMConstInt(ctx->i32, a->target, 0);
1399 args[1] = LLVMConstInt(ctx->i32, a->enabled_channels, 0);
1400
1401 if (a->compr) {
1402 LLVMTypeRef i16 = LLVMInt16TypeInContext(ctx->context);
1403 LLVMTypeRef v2i16 = LLVMVectorType(i16, 2);
1404
1405 args[2] = LLVMBuildBitCast(ctx->builder, a->out[0],
1406 v2i16, "");
1407 args[3] = LLVMBuildBitCast(ctx->builder, a->out[1],
1408 v2i16, "");
1409 args[4] = LLVMConstInt(ctx->i1, a->done, 0);
1410 args[5] = LLVMConstInt(ctx->i1, a->valid_mask, 0);
1411
1412 ac_build_intrinsic(ctx, "llvm.amdgcn.exp.compr.v2i16",
1413 ctx->voidt, args, 6, 0);
1414 } else {
1415 args[2] = a->out[0];
1416 args[3] = a->out[1];
1417 args[4] = a->out[2];
1418 args[5] = a->out[3];
1419 args[6] = LLVMConstInt(ctx->i1, a->done, 0);
1420 args[7] = LLVMConstInt(ctx->i1, a->valid_mask, 0);
1421
1422 ac_build_intrinsic(ctx, "llvm.amdgcn.exp.f32",
1423 ctx->voidt, args, 8, 0);
1424 }
1425 return;
1426 }
1427
1428 args[0] = LLVMConstInt(ctx->i32, a->enabled_channels, 0);
1429 args[1] = LLVMConstInt(ctx->i32, a->valid_mask, 0);
1430 args[2] = LLVMConstInt(ctx->i32, a->done, 0);
1431 args[3] = LLVMConstInt(ctx->i32, a->target, 0);
1432 args[4] = LLVMConstInt(ctx->i32, a->compr, 0);
1433 memcpy(args + 5, a->out, sizeof(a->out[0]) * 4);
1434
1435 ac_build_intrinsic(ctx, "llvm.SI.export", ctx->voidt, args, 9,
1436 AC_FUNC_ATTR_LEGACY);
1437 }
1438
1439 void ac_build_export_null(struct ac_llvm_context *ctx)
1440 {
1441 struct ac_export_args args;
1442
1443 args.enabled_channels = 0x0; /* enabled channels */
1444 args.valid_mask = 1; /* whether the EXEC mask is valid */
1445 args.done = 1; /* DONE bit */
1446 args.target = V_008DFC_SQ_EXP_NULL;
1447 args.compr = 0; /* COMPR flag (0 = 32-bit export) */
1448 args.out[0] = LLVMGetUndef(ctx->f32); /* R */
1449 args.out[1] = LLVMGetUndef(ctx->f32); /* G */
1450 args.out[2] = LLVMGetUndef(ctx->f32); /* B */
1451 args.out[3] = LLVMGetUndef(ctx->f32); /* A */
1452
1453 ac_build_export(ctx, &args);
1454 }
1455
1456 static unsigned ac_num_coords(enum ac_image_dim dim)
1457 {
1458 switch (dim) {
1459 case ac_image_1d:
1460 return 1;
1461 case ac_image_2d:
1462 case ac_image_1darray:
1463 return 2;
1464 case ac_image_3d:
1465 case ac_image_cube:
1466 case ac_image_2darray:
1467 case ac_image_2dmsaa:
1468 return 3;
1469 case ac_image_2darraymsaa:
1470 return 4;
1471 default:
1472 unreachable("ac_num_coords: bad dim");
1473 }
1474 }
1475
1476 static unsigned ac_num_derivs(enum ac_image_dim dim)
1477 {
1478 switch (dim) {
1479 case ac_image_1d:
1480 case ac_image_1darray:
1481 return 2;
1482 case ac_image_2d:
1483 case ac_image_2darray:
1484 case ac_image_cube:
1485 return 4;
1486 case ac_image_3d:
1487 return 6;
1488 case ac_image_2dmsaa:
1489 case ac_image_2darraymsaa:
1490 default:
1491 unreachable("derivatives not supported");
1492 }
1493 }
1494
1495 LLVMValueRef ac_build_image_opcode(struct ac_llvm_context *ctx,
1496 struct ac_image_args *a)
1497 {
1498 LLVMValueRef args[16];
1499 LLVMTypeRef retty = ctx->v4f32;
1500 const char *name = NULL;
1501 const char *atomic_subop = "";
1502 char intr_name[128], coords_type[64];
1503
1504 assert(!a->lod || a->lod == ctx->i32_0 || a->lod == ctx->f32_0 ||
1505 !a->level_zero);
1506 assert((a->opcode != ac_image_get_resinfo && a->opcode != ac_image_load_mip &&
1507 a->opcode != ac_image_store_mip) ||
1508 a->lod);
1509 assert((a->bias ? 1 : 0) +
1510 (a->lod ? 1 : 0) +
1511 (a->level_zero ? 1 : 0) +
1512 (a->derivs[0] ? 1 : 0) <= 1);
1513
1514 bool sample = a->opcode == ac_image_sample ||
1515 a->opcode == ac_image_gather4 ||
1516 a->opcode == ac_image_get_lod;
1517 bool atomic = a->opcode == ac_image_atomic ||
1518 a->opcode == ac_image_atomic_cmpswap;
1519 bool da = a->dim == ac_image_cube ||
1520 a->dim == ac_image_1darray ||
1521 a->dim == ac_image_2darray ||
1522 a->dim == ac_image_2darraymsaa;
1523 if (a->opcode == ac_image_get_lod)
1524 da = false;
1525
1526 unsigned num_coords =
1527 a->opcode != ac_image_get_resinfo ? ac_num_coords(a->dim) : 0;
1528 LLVMValueRef addr;
1529 unsigned num_addr = 0;
1530
1531 if (a->opcode == ac_image_get_lod) {
1532 switch (a->dim) {
1533 case ac_image_1darray:
1534 num_coords = 1;
1535 break;
1536 case ac_image_2darray:
1537 case ac_image_cube:
1538 num_coords = 2;
1539 break;
1540 default:
1541 break;
1542 }
1543 }
1544
1545 if (a->offset)
1546 args[num_addr++] = ac_to_integer(ctx, a->offset);
1547 if (a->bias)
1548 args[num_addr++] = ac_to_integer(ctx, a->bias);
1549 if (a->compare)
1550 args[num_addr++] = ac_to_integer(ctx, a->compare);
1551 if (a->derivs[0]) {
1552 unsigned num_derivs = ac_num_derivs(a->dim);
1553 for (unsigned i = 0; i < num_derivs; ++i)
1554 args[num_addr++] = ac_to_integer(ctx, a->derivs[i]);
1555 }
1556 for (unsigned i = 0; i < num_coords; ++i)
1557 args[num_addr++] = ac_to_integer(ctx, a->coords[i]);
1558 if (a->lod)
1559 args[num_addr++] = ac_to_integer(ctx, a->lod);
1560
1561 unsigned pad_goal = util_next_power_of_two(num_addr);
1562 while (num_addr < pad_goal)
1563 args[num_addr++] = LLVMGetUndef(ctx->i32);
1564
1565 addr = ac_build_gather_values(ctx, args, num_addr);
1566
1567 unsigned num_args = 0;
1568 if (atomic || a->opcode == ac_image_store || a->opcode == ac_image_store_mip) {
1569 args[num_args++] = a->data[0];
1570 if (a->opcode == ac_image_atomic_cmpswap)
1571 args[num_args++] = a->data[1];
1572 }
1573
1574 unsigned coords_arg = num_args;
1575 if (sample)
1576 args[num_args++] = ac_to_float(ctx, addr);
1577 else
1578 args[num_args++] = ac_to_integer(ctx, addr);
1579
1580 args[num_args++] = a->resource;
1581 if (sample)
1582 args[num_args++] = a->sampler;
1583 if (!atomic) {
1584 args[num_args++] = LLVMConstInt(ctx->i32, a->dmask, 0);
1585 if (sample)
1586 args[num_args++] = LLVMConstInt(ctx->i1, a->unorm, 0);
1587 args[num_args++] = a->cache_policy & ac_glc ? ctx->i1true : ctx->i1false;
1588 args[num_args++] = a->cache_policy & ac_slc ? ctx->i1true : ctx->i1false;
1589 args[num_args++] = ctx->i1false; /* lwe */
1590 args[num_args++] = LLVMConstInt(ctx->i1, da, 0);
1591 } else {
1592 args[num_args++] = ctx->i1false; /* r128 */
1593 args[num_args++] = LLVMConstInt(ctx->i1, da, 0);
1594 args[num_args++] = a->cache_policy & ac_slc ? ctx->i1true : ctx->i1false;
1595 }
1596
1597 switch (a->opcode) {
1598 case ac_image_sample:
1599 name = "llvm.amdgcn.image.sample";
1600 break;
1601 case ac_image_gather4:
1602 name = "llvm.amdgcn.image.gather4";
1603 break;
1604 case ac_image_load:
1605 name = "llvm.amdgcn.image.load";
1606 break;
1607 case ac_image_load_mip:
1608 name = "llvm.amdgcn.image.load.mip";
1609 break;
1610 case ac_image_store:
1611 name = "llvm.amdgcn.image.store";
1612 retty = ctx->voidt;
1613 break;
1614 case ac_image_store_mip:
1615 name = "llvm.amdgcn.image.store.mip";
1616 retty = ctx->voidt;
1617 break;
1618 case ac_image_atomic:
1619 case ac_image_atomic_cmpswap:
1620 name = "llvm.amdgcn.image.atomic.";
1621 retty = ctx->i32;
1622 if (a->opcode == ac_image_atomic_cmpswap) {
1623 atomic_subop = "cmpswap";
1624 } else {
1625 switch (a->atomic) {
1626 case ac_atomic_swap: atomic_subop = "swap"; break;
1627 case ac_atomic_add: atomic_subop = "add"; break;
1628 case ac_atomic_sub: atomic_subop = "sub"; break;
1629 case ac_atomic_smin: atomic_subop = "smin"; break;
1630 case ac_atomic_umin: atomic_subop = "umin"; break;
1631 case ac_atomic_smax: atomic_subop = "smax"; break;
1632 case ac_atomic_umax: atomic_subop = "umax"; break;
1633 case ac_atomic_and: atomic_subop = "and"; break;
1634 case ac_atomic_or: atomic_subop = "or"; break;
1635 case ac_atomic_xor: atomic_subop = "xor"; break;
1636 }
1637 }
1638 break;
1639 case ac_image_get_lod:
1640 name = "llvm.amdgcn.image.getlod";
1641 break;
1642 case ac_image_get_resinfo:
1643 name = "llvm.amdgcn.image.getresinfo";
1644 break;
1645 default:
1646 unreachable("invalid image opcode");
1647 }
1648
1649 ac_build_type_name_for_intr(LLVMTypeOf(args[coords_arg]), coords_type,
1650 sizeof(coords_type));
1651
1652 if (atomic) {
1653 snprintf(intr_name, sizeof(intr_name), "llvm.amdgcn.image.atomic.%s.%s",
1654 atomic_subop, coords_type);
1655 } else {
1656 bool lod_suffix =
1657 a->lod && (a->opcode == ac_image_sample || a->opcode == ac_image_gather4);
1658
1659 snprintf(intr_name, sizeof(intr_name), "%s%s%s%s.v4f32.%s.v8i32",
1660 name,
1661 a->compare ? ".c" : "",
1662 a->bias ? ".b" :
1663 lod_suffix ? ".l" :
1664 a->derivs[0] ? ".d" :
1665 a->level_zero ? ".lz" : "",
1666 a->offset ? ".o" : "",
1667 coords_type);
1668 }
1669
1670 LLVMValueRef result =
1671 ac_build_intrinsic(ctx, intr_name, retty, args, num_args,
1672 a->attributes);
1673 if (!sample && retty == ctx->v4f32) {
1674 result = LLVMBuildBitCast(ctx->builder, result,
1675 ctx->v4i32, "");
1676 }
1677 return result;
1678 }
1679
1680 LLVMValueRef ac_build_cvt_pkrtz_f16(struct ac_llvm_context *ctx,
1681 LLVMValueRef args[2])
1682 {
1683 if (HAVE_LLVM >= 0x0500) {
1684 LLVMTypeRef v2f16 =
1685 LLVMVectorType(LLVMHalfTypeInContext(ctx->context), 2);
1686 LLVMValueRef res =
1687 ac_build_intrinsic(ctx, "llvm.amdgcn.cvt.pkrtz",
1688 v2f16, args, 2,
1689 AC_FUNC_ATTR_READNONE);
1690 return LLVMBuildBitCast(ctx->builder, res, ctx->i32, "");
1691 }
1692
1693 return ac_build_intrinsic(ctx, "llvm.SI.packf16", ctx->i32, args, 2,
1694 AC_FUNC_ATTR_READNONE |
1695 AC_FUNC_ATTR_LEGACY);
1696 }
1697
1698 /* Upper 16 bits must be zero. */
1699 static LLVMValueRef ac_llvm_pack_two_int16(struct ac_llvm_context *ctx,
1700 LLVMValueRef val[2])
1701 {
1702 return LLVMBuildOr(ctx->builder, val[0],
1703 LLVMBuildShl(ctx->builder, val[1],
1704 LLVMConstInt(ctx->i32, 16, 0),
1705 ""), "");
1706 }
1707
1708 /* Upper 16 bits are ignored and will be dropped. */
1709 static LLVMValueRef ac_llvm_pack_two_int32_as_int16(struct ac_llvm_context *ctx,
1710 LLVMValueRef val[2])
1711 {
1712 LLVMValueRef v[2] = {
1713 LLVMBuildAnd(ctx->builder, val[0],
1714 LLVMConstInt(ctx->i32, 0xffff, 0), ""),
1715 val[1],
1716 };
1717 return ac_llvm_pack_two_int16(ctx, v);
1718 }
1719
1720 LLVMValueRef ac_build_cvt_pknorm_i16(struct ac_llvm_context *ctx,
1721 LLVMValueRef args[2])
1722 {
1723 if (HAVE_LLVM >= 0x0600) {
1724 LLVMValueRef res =
1725 ac_build_intrinsic(ctx, "llvm.amdgcn.cvt.pknorm.i16",
1726 ctx->v2i16, args, 2,
1727 AC_FUNC_ATTR_READNONE);
1728 return LLVMBuildBitCast(ctx->builder, res, ctx->i32, "");
1729 }
1730
1731 LLVMValueRef val[2];
1732
1733 for (int chan = 0; chan < 2; chan++) {
1734 /* Clamp between [-1, 1]. */
1735 val[chan] = ac_build_fmin(ctx, args[chan], ctx->f32_1);
1736 val[chan] = ac_build_fmax(ctx, val[chan], LLVMConstReal(ctx->f32, -1));
1737 /* Convert to a signed integer in [-32767, 32767]. */
1738 val[chan] = LLVMBuildFMul(ctx->builder, val[chan],
1739 LLVMConstReal(ctx->f32, 32767), "");
1740 /* If positive, add 0.5, else add -0.5. */
1741 val[chan] = LLVMBuildFAdd(ctx->builder, val[chan],
1742 LLVMBuildSelect(ctx->builder,
1743 LLVMBuildFCmp(ctx->builder, LLVMRealOGE,
1744 val[chan], ctx->f32_0, ""),
1745 LLVMConstReal(ctx->f32, 0.5),
1746 LLVMConstReal(ctx->f32, -0.5), ""), "");
1747 val[chan] = LLVMBuildFPToSI(ctx->builder, val[chan], ctx->i32, "");
1748 }
1749 return ac_llvm_pack_two_int32_as_int16(ctx, val);
1750 }
1751
1752 LLVMValueRef ac_build_cvt_pknorm_u16(struct ac_llvm_context *ctx,
1753 LLVMValueRef args[2])
1754 {
1755 if (HAVE_LLVM >= 0x0600) {
1756 LLVMValueRef res =
1757 ac_build_intrinsic(ctx, "llvm.amdgcn.cvt.pknorm.u16",
1758 ctx->v2i16, args, 2,
1759 AC_FUNC_ATTR_READNONE);
1760 return LLVMBuildBitCast(ctx->builder, res, ctx->i32, "");
1761 }
1762
1763 LLVMValueRef val[2];
1764
1765 for (int chan = 0; chan < 2; chan++) {
1766 val[chan] = ac_build_clamp(ctx, args[chan]);
1767 val[chan] = LLVMBuildFMul(ctx->builder, val[chan],
1768 LLVMConstReal(ctx->f32, 65535), "");
1769 val[chan] = LLVMBuildFAdd(ctx->builder, val[chan],
1770 LLVMConstReal(ctx->f32, 0.5), "");
1771 val[chan] = LLVMBuildFPToUI(ctx->builder, val[chan],
1772 ctx->i32, "");
1773 }
1774 return ac_llvm_pack_two_int32_as_int16(ctx, val);
1775 }
1776
1777 /* The 8-bit and 10-bit clamping is for HW workarounds. */
1778 LLVMValueRef ac_build_cvt_pk_i16(struct ac_llvm_context *ctx,
1779 LLVMValueRef args[2], unsigned bits, bool hi)
1780 {
1781 assert(bits == 8 || bits == 10 || bits == 16);
1782
1783 LLVMValueRef max_rgb = LLVMConstInt(ctx->i32,
1784 bits == 8 ? 127 : bits == 10 ? 511 : 32767, 0);
1785 LLVMValueRef min_rgb = LLVMConstInt(ctx->i32,
1786 bits == 8 ? -128 : bits == 10 ? -512 : -32768, 0);
1787 LLVMValueRef max_alpha =
1788 bits != 10 ? max_rgb : ctx->i32_1;
1789 LLVMValueRef min_alpha =
1790 bits != 10 ? min_rgb : LLVMConstInt(ctx->i32, -2, 0);
1791 bool has_intrinsic = HAVE_LLVM >= 0x0600;
1792
1793 /* Clamp. */
1794 if (!has_intrinsic || bits != 16) {
1795 for (int i = 0; i < 2; i++) {
1796 bool alpha = hi && i == 1;
1797 args[i] = ac_build_imin(ctx, args[i],
1798 alpha ? max_alpha : max_rgb);
1799 args[i] = ac_build_imax(ctx, args[i],
1800 alpha ? min_alpha : min_rgb);
1801 }
1802 }
1803
1804 if (has_intrinsic) {
1805 LLVMValueRef res =
1806 ac_build_intrinsic(ctx, "llvm.amdgcn.cvt.pk.i16",
1807 ctx->v2i16, args, 2,
1808 AC_FUNC_ATTR_READNONE);
1809 return LLVMBuildBitCast(ctx->builder, res, ctx->i32, "");
1810 }
1811
1812 return ac_llvm_pack_two_int32_as_int16(ctx, args);
1813 }
1814
1815 /* The 8-bit and 10-bit clamping is for HW workarounds. */
1816 LLVMValueRef ac_build_cvt_pk_u16(struct ac_llvm_context *ctx,
1817 LLVMValueRef args[2], unsigned bits, bool hi)
1818 {
1819 assert(bits == 8 || bits == 10 || bits == 16);
1820
1821 LLVMValueRef max_rgb = LLVMConstInt(ctx->i32,
1822 bits == 8 ? 255 : bits == 10 ? 1023 : 65535, 0);
1823 LLVMValueRef max_alpha =
1824 bits != 10 ? max_rgb : LLVMConstInt(ctx->i32, 3, 0);
1825 bool has_intrinsic = HAVE_LLVM >= 0x0600;
1826
1827 /* Clamp. */
1828 if (!has_intrinsic || bits != 16) {
1829 for (int i = 0; i < 2; i++) {
1830 bool alpha = hi && i == 1;
1831 args[i] = ac_build_umin(ctx, args[i],
1832 alpha ? max_alpha : max_rgb);
1833 }
1834 }
1835
1836 if (has_intrinsic) {
1837 LLVMValueRef res =
1838 ac_build_intrinsic(ctx, "llvm.amdgcn.cvt.pk.u16",
1839 ctx->v2i16, args, 2,
1840 AC_FUNC_ATTR_READNONE);
1841 return LLVMBuildBitCast(ctx->builder, res, ctx->i32, "");
1842 }
1843
1844 return ac_llvm_pack_two_int16(ctx, args);
1845 }
1846
1847 LLVMValueRef ac_build_wqm_vote(struct ac_llvm_context *ctx, LLVMValueRef i1)
1848 {
1849 assert(HAVE_LLVM >= 0x0600);
1850 return ac_build_intrinsic(ctx, "llvm.amdgcn.wqm.vote", ctx->i1,
1851 &i1, 1, AC_FUNC_ATTR_READNONE);
1852 }
1853
1854 void ac_build_kill_if_false(struct ac_llvm_context *ctx, LLVMValueRef i1)
1855 {
1856 if (HAVE_LLVM >= 0x0600) {
1857 ac_build_intrinsic(ctx, "llvm.amdgcn.kill", ctx->voidt,
1858 &i1, 1, 0);
1859 return;
1860 }
1861
1862 LLVMValueRef value = LLVMBuildSelect(ctx->builder, i1,
1863 LLVMConstReal(ctx->f32, 1),
1864 LLVMConstReal(ctx->f32, -1), "");
1865 ac_build_intrinsic(ctx, "llvm.AMDGPU.kill", ctx->voidt,
1866 &value, 1, AC_FUNC_ATTR_LEGACY);
1867 }
1868
1869 LLVMValueRef ac_build_bfe(struct ac_llvm_context *ctx, LLVMValueRef input,
1870 LLVMValueRef offset, LLVMValueRef width,
1871 bool is_signed)
1872 {
1873 LLVMValueRef args[] = {
1874 input,
1875 offset,
1876 width,
1877 };
1878
1879 if (HAVE_LLVM >= 0x0500) {
1880 return ac_build_intrinsic(ctx,
1881 is_signed ? "llvm.amdgcn.sbfe.i32" :
1882 "llvm.amdgcn.ubfe.i32",
1883 ctx->i32, args, 3,
1884 AC_FUNC_ATTR_READNONE);
1885 }
1886
1887 return ac_build_intrinsic(ctx,
1888 is_signed ? "llvm.AMDGPU.bfe.i32" :
1889 "llvm.AMDGPU.bfe.u32",
1890 ctx->i32, args, 3,
1891 AC_FUNC_ATTR_READNONE |
1892 AC_FUNC_ATTR_LEGACY);
1893 }
1894
1895 void ac_build_waitcnt(struct ac_llvm_context *ctx, unsigned simm16)
1896 {
1897 LLVMValueRef args[1] = {
1898 LLVMConstInt(ctx->i32, simm16, false),
1899 };
1900 ac_build_intrinsic(ctx, "llvm.amdgcn.s.waitcnt",
1901 ctx->voidt, args, 1, 0);
1902 }
1903
1904 LLVMValueRef ac_build_fract(struct ac_llvm_context *ctx, LLVMValueRef src0,
1905 unsigned bitsize)
1906 {
1907 LLVMTypeRef type;
1908 char *intr;
1909
1910 if (bitsize == 32) {
1911 intr = "llvm.floor.f32";
1912 type = ctx->f32;
1913 } else {
1914 intr = "llvm.floor.f64";
1915 type = ctx->f64;
1916 }
1917
1918 LLVMValueRef params[] = {
1919 src0,
1920 };
1921 LLVMValueRef floor = ac_build_intrinsic(ctx, intr, type, params, 1,
1922 AC_FUNC_ATTR_READNONE);
1923 return LLVMBuildFSub(ctx->builder, src0, floor, "");
1924 }
1925
1926 LLVMValueRef ac_build_isign(struct ac_llvm_context *ctx, LLVMValueRef src0,
1927 unsigned bitsize)
1928 {
1929 LLVMValueRef cmp, val, zero, one;
1930 LLVMTypeRef type;
1931
1932 if (bitsize == 32) {
1933 type = ctx->i32;
1934 zero = ctx->i32_0;
1935 one = ctx->i32_1;
1936 } else {
1937 type = ctx->i64;
1938 zero = ctx->i64_0;
1939 one = ctx->i64_1;
1940 }
1941
1942 cmp = LLVMBuildICmp(ctx->builder, LLVMIntSGT, src0, zero, "");
1943 val = LLVMBuildSelect(ctx->builder, cmp, one, src0, "");
1944 cmp = LLVMBuildICmp(ctx->builder, LLVMIntSGE, val, zero, "");
1945 val = LLVMBuildSelect(ctx->builder, cmp, val, LLVMConstInt(type, -1, true), "");
1946 return val;
1947 }
1948
1949 LLVMValueRef ac_build_fsign(struct ac_llvm_context *ctx, LLVMValueRef src0,
1950 unsigned bitsize)
1951 {
1952 LLVMValueRef cmp, val, zero, one;
1953 LLVMTypeRef type;
1954
1955 if (bitsize == 32) {
1956 type = ctx->f32;
1957 zero = ctx->f32_0;
1958 one = ctx->f32_1;
1959 } else {
1960 type = ctx->f64;
1961 zero = ctx->f64_0;
1962 one = ctx->f64_1;
1963 }
1964
1965 cmp = LLVMBuildFCmp(ctx->builder, LLVMRealOGT, src0, zero, "");
1966 val = LLVMBuildSelect(ctx->builder, cmp, one, src0, "");
1967 cmp = LLVMBuildFCmp(ctx->builder, LLVMRealOGE, val, zero, "");
1968 val = LLVMBuildSelect(ctx->builder, cmp, val, LLVMConstReal(type, -1.0), "");
1969 return val;
1970 }
1971
1972 #define AC_EXP_TARGET (HAVE_LLVM >= 0x0500 ? 0 : 3)
1973 #define AC_EXP_ENABLED_CHANNELS (HAVE_LLVM >= 0x0500 ? 1 : 0)
1974 #define AC_EXP_OUT0 (HAVE_LLVM >= 0x0500 ? 2 : 5)
1975
1976 enum ac_ir_type {
1977 AC_IR_UNDEF,
1978 AC_IR_CONST,
1979 AC_IR_VALUE,
1980 };
1981
1982 struct ac_vs_exp_chan
1983 {
1984 LLVMValueRef value;
1985 float const_float;
1986 enum ac_ir_type type;
1987 };
1988
1989 struct ac_vs_exp_inst {
1990 unsigned offset;
1991 LLVMValueRef inst;
1992 struct ac_vs_exp_chan chan[4];
1993 };
1994
1995 struct ac_vs_exports {
1996 unsigned num;
1997 struct ac_vs_exp_inst exp[VARYING_SLOT_MAX];
1998 };
1999
2000 /* Return true if the PARAM export has been eliminated. */
2001 static bool ac_eliminate_const_output(uint8_t *vs_output_param_offset,
2002 uint32_t num_outputs,
2003 struct ac_vs_exp_inst *exp)
2004 {
2005 unsigned i, default_val; /* SPI_PS_INPUT_CNTL_i.DEFAULT_VAL */
2006 bool is_zero[4] = {}, is_one[4] = {};
2007
2008 for (i = 0; i < 4; i++) {
2009 /* It's a constant expression. Undef outputs are eliminated too. */
2010 if (exp->chan[i].type == AC_IR_UNDEF) {
2011 is_zero[i] = true;
2012 is_one[i] = true;
2013 } else if (exp->chan[i].type == AC_IR_CONST) {
2014 if (exp->chan[i].const_float == 0)
2015 is_zero[i] = true;
2016 else if (exp->chan[i].const_float == 1)
2017 is_one[i] = true;
2018 else
2019 return false; /* other constant */
2020 } else
2021 return false;
2022 }
2023
2024 /* Only certain combinations of 0 and 1 can be eliminated. */
2025 if (is_zero[0] && is_zero[1] && is_zero[2])
2026 default_val = is_zero[3] ? 0 : 1;
2027 else if (is_one[0] && is_one[1] && is_one[2])
2028 default_val = is_zero[3] ? 2 : 3;
2029 else
2030 return false;
2031
2032 /* The PARAM export can be represented as DEFAULT_VAL. Kill it. */
2033 LLVMInstructionEraseFromParent(exp->inst);
2034
2035 /* Change OFFSET to DEFAULT_VAL. */
2036 for (i = 0; i < num_outputs; i++) {
2037 if (vs_output_param_offset[i] == exp->offset) {
2038 vs_output_param_offset[i] =
2039 AC_EXP_PARAM_DEFAULT_VAL_0000 + default_val;
2040 break;
2041 }
2042 }
2043 return true;
2044 }
2045
2046 static bool ac_eliminate_duplicated_output(struct ac_llvm_context *ctx,
2047 uint8_t *vs_output_param_offset,
2048 uint32_t num_outputs,
2049 struct ac_vs_exports *processed,
2050 struct ac_vs_exp_inst *exp)
2051 {
2052 unsigned p, copy_back_channels = 0;
2053
2054 /* See if the output is already in the list of processed outputs.
2055 * The LLVMValueRef comparison relies on SSA.
2056 */
2057 for (p = 0; p < processed->num; p++) {
2058 bool different = false;
2059
2060 for (unsigned j = 0; j < 4; j++) {
2061 struct ac_vs_exp_chan *c1 = &processed->exp[p].chan[j];
2062 struct ac_vs_exp_chan *c2 = &exp->chan[j];
2063
2064 /* Treat undef as a match. */
2065 if (c2->type == AC_IR_UNDEF)
2066 continue;
2067
2068 /* If c1 is undef but c2 isn't, we can copy c2 to c1
2069 * and consider the instruction duplicated.
2070 */
2071 if (c1->type == AC_IR_UNDEF) {
2072 copy_back_channels |= 1 << j;
2073 continue;
2074 }
2075
2076 /* Test whether the channels are not equal. */
2077 if (c1->type != c2->type ||
2078 (c1->type == AC_IR_CONST &&
2079 c1->const_float != c2->const_float) ||
2080 (c1->type == AC_IR_VALUE &&
2081 c1->value != c2->value)) {
2082 different = true;
2083 break;
2084 }
2085 }
2086 if (!different)
2087 break;
2088
2089 copy_back_channels = 0;
2090 }
2091 if (p == processed->num)
2092 return false;
2093
2094 /* If a match was found, but the matching export has undef where the new
2095 * one has a normal value, copy the normal value to the undef channel.
2096 */
2097 struct ac_vs_exp_inst *match = &processed->exp[p];
2098
2099 /* Get current enabled channels mask. */
2100 LLVMValueRef arg = LLVMGetOperand(match->inst, AC_EXP_ENABLED_CHANNELS);
2101 unsigned enabled_channels = LLVMConstIntGetZExtValue(arg);
2102
2103 while (copy_back_channels) {
2104 unsigned chan = u_bit_scan(&copy_back_channels);
2105
2106 assert(match->chan[chan].type == AC_IR_UNDEF);
2107 LLVMSetOperand(match->inst, AC_EXP_OUT0 + chan,
2108 exp->chan[chan].value);
2109 match->chan[chan] = exp->chan[chan];
2110
2111 /* Update number of enabled channels because the original mask
2112 * is not always 0xf.
2113 */
2114 enabled_channels |= (1 << chan);
2115 LLVMSetOperand(match->inst, AC_EXP_ENABLED_CHANNELS,
2116 LLVMConstInt(ctx->i32, enabled_channels, 0));
2117 }
2118
2119 /* The PARAM export is duplicated. Kill it. */
2120 LLVMInstructionEraseFromParent(exp->inst);
2121
2122 /* Change OFFSET to the matching export. */
2123 for (unsigned i = 0; i < num_outputs; i++) {
2124 if (vs_output_param_offset[i] == exp->offset) {
2125 vs_output_param_offset[i] = match->offset;
2126 break;
2127 }
2128 }
2129 return true;
2130 }
2131
2132 void ac_optimize_vs_outputs(struct ac_llvm_context *ctx,
2133 LLVMValueRef main_fn,
2134 uint8_t *vs_output_param_offset,
2135 uint32_t num_outputs,
2136 uint8_t *num_param_exports)
2137 {
2138 LLVMBasicBlockRef bb;
2139 bool removed_any = false;
2140 struct ac_vs_exports exports;
2141
2142 exports.num = 0;
2143
2144 /* Process all LLVM instructions. */
2145 bb = LLVMGetFirstBasicBlock(main_fn);
2146 while (bb) {
2147 LLVMValueRef inst = LLVMGetFirstInstruction(bb);
2148
2149 while (inst) {
2150 LLVMValueRef cur = inst;
2151 inst = LLVMGetNextInstruction(inst);
2152 struct ac_vs_exp_inst exp;
2153
2154 if (LLVMGetInstructionOpcode(cur) != LLVMCall)
2155 continue;
2156
2157 LLVMValueRef callee = ac_llvm_get_called_value(cur);
2158
2159 if (!ac_llvm_is_function(callee))
2160 continue;
2161
2162 const char *name = LLVMGetValueName(callee);
2163 unsigned num_args = LLVMCountParams(callee);
2164
2165 /* Check if this is an export instruction. */
2166 if ((num_args != 9 && num_args != 8) ||
2167 (strcmp(name, "llvm.SI.export") &&
2168 strcmp(name, "llvm.amdgcn.exp.f32")))
2169 continue;
2170
2171 LLVMValueRef arg = LLVMGetOperand(cur, AC_EXP_TARGET);
2172 unsigned target = LLVMConstIntGetZExtValue(arg);
2173
2174 if (target < V_008DFC_SQ_EXP_PARAM)
2175 continue;
2176
2177 target -= V_008DFC_SQ_EXP_PARAM;
2178
2179 /* Parse the instruction. */
2180 memset(&exp, 0, sizeof(exp));
2181 exp.offset = target;
2182 exp.inst = cur;
2183
2184 for (unsigned i = 0; i < 4; i++) {
2185 LLVMValueRef v = LLVMGetOperand(cur, AC_EXP_OUT0 + i);
2186
2187 exp.chan[i].value = v;
2188
2189 if (LLVMIsUndef(v)) {
2190 exp.chan[i].type = AC_IR_UNDEF;
2191 } else if (LLVMIsAConstantFP(v)) {
2192 LLVMBool loses_info;
2193 exp.chan[i].type = AC_IR_CONST;
2194 exp.chan[i].const_float =
2195 LLVMConstRealGetDouble(v, &loses_info);
2196 } else {
2197 exp.chan[i].type = AC_IR_VALUE;
2198 }
2199 }
2200
2201 /* Eliminate constant and duplicated PARAM exports. */
2202 if (ac_eliminate_const_output(vs_output_param_offset,
2203 num_outputs, &exp) ||
2204 ac_eliminate_duplicated_output(ctx,
2205 vs_output_param_offset,
2206 num_outputs, &exports,
2207 &exp)) {
2208 removed_any = true;
2209 } else {
2210 exports.exp[exports.num++] = exp;
2211 }
2212 }
2213 bb = LLVMGetNextBasicBlock(bb);
2214 }
2215
2216 /* Remove holes in export memory due to removed PARAM exports.
2217 * This is done by renumbering all PARAM exports.
2218 */
2219 if (removed_any) {
2220 uint8_t old_offset[VARYING_SLOT_MAX];
2221 unsigned out, i;
2222
2223 /* Make a copy of the offsets. We need the old version while
2224 * we are modifying some of them. */
2225 memcpy(old_offset, vs_output_param_offset,
2226 sizeof(old_offset));
2227
2228 for (i = 0; i < exports.num; i++) {
2229 unsigned offset = exports.exp[i].offset;
2230
2231 /* Update vs_output_param_offset. Multiple outputs can
2232 * have the same offset.
2233 */
2234 for (out = 0; out < num_outputs; out++) {
2235 if (old_offset[out] == offset)
2236 vs_output_param_offset[out] = i;
2237 }
2238
2239 /* Change the PARAM offset in the instruction. */
2240 LLVMSetOperand(exports.exp[i].inst, AC_EXP_TARGET,
2241 LLVMConstInt(ctx->i32,
2242 V_008DFC_SQ_EXP_PARAM + i, 0));
2243 }
2244 *num_param_exports = exports.num;
2245 }
2246 }
2247
2248 void ac_init_exec_full_mask(struct ac_llvm_context *ctx)
2249 {
2250 LLVMValueRef full_mask = LLVMConstInt(ctx->i64, ~0ull, 0);
2251 ac_build_intrinsic(ctx,
2252 "llvm.amdgcn.init.exec", ctx->voidt,
2253 &full_mask, 1, AC_FUNC_ATTR_CONVERGENT);
2254 }
2255
2256 void ac_declare_lds_as_pointer(struct ac_llvm_context *ctx)
2257 {
2258 unsigned lds_size = ctx->chip_class >= CIK ? 65536 : 32768;
2259 ctx->lds = LLVMBuildIntToPtr(ctx->builder, ctx->i32_0,
2260 LLVMPointerType(LLVMArrayType(ctx->i32, lds_size / 4), AC_LOCAL_ADDR_SPACE),
2261 "lds");
2262 }
2263
2264 LLVMValueRef ac_lds_load(struct ac_llvm_context *ctx,
2265 LLVMValueRef dw_addr)
2266 {
2267 return ac_build_load(ctx, ctx->lds, dw_addr);
2268 }
2269
2270 void ac_lds_store(struct ac_llvm_context *ctx,
2271 LLVMValueRef dw_addr,
2272 LLVMValueRef value)
2273 {
2274 value = ac_to_integer(ctx, value);
2275 ac_build_indexed_store(ctx, ctx->lds,
2276 dw_addr, value);
2277 }
2278
2279 LLVMValueRef ac_find_lsb(struct ac_llvm_context *ctx,
2280 LLVMTypeRef dst_type,
2281 LLVMValueRef src0)
2282 {
2283 unsigned src0_bitsize = ac_get_elem_bits(ctx, LLVMTypeOf(src0));
2284 const char *intrin_name;
2285 LLVMTypeRef type;
2286 LLVMValueRef zero;
2287 if (src0_bitsize == 64) {
2288 intrin_name = "llvm.cttz.i64";
2289 type = ctx->i64;
2290 zero = ctx->i64_0;
2291 } else {
2292 intrin_name = "llvm.cttz.i32";
2293 type = ctx->i32;
2294 zero = ctx->i32_0;
2295 }
2296
2297 LLVMValueRef params[2] = {
2298 src0,
2299
2300 /* The value of 1 means that ffs(x=0) = undef, so LLVM won't
2301 * add special code to check for x=0. The reason is that
2302 * the LLVM behavior for x=0 is different from what we
2303 * need here. However, LLVM also assumes that ffs(x) is
2304 * in [0, 31], but GLSL expects that ffs(0) = -1, so
2305 * a conditional assignment to handle 0 is still required.
2306 *
2307 * The hardware already implements the correct behavior.
2308 */
2309 LLVMConstInt(ctx->i1, 1, false),
2310 };
2311
2312 LLVMValueRef lsb = ac_build_intrinsic(ctx, intrin_name, type,
2313 params, 2,
2314 AC_FUNC_ATTR_READNONE);
2315
2316 if (src0_bitsize == 64) {
2317 lsb = LLVMBuildTrunc(ctx->builder, lsb, ctx->i32, "");
2318 }
2319
2320 /* TODO: We need an intrinsic to skip this conditional. */
2321 /* Check for zero: */
2322 return LLVMBuildSelect(ctx->builder, LLVMBuildICmp(ctx->builder,
2323 LLVMIntEQ, src0,
2324 zero, ""),
2325 LLVMConstInt(ctx->i32, -1, 0), lsb, "");
2326 }
2327
2328 LLVMTypeRef ac_array_in_const_addr_space(LLVMTypeRef elem_type)
2329 {
2330 return LLVMPointerType(LLVMArrayType(elem_type, 0),
2331 AC_CONST_ADDR_SPACE);
2332 }
2333
2334 LLVMTypeRef ac_array_in_const32_addr_space(LLVMTypeRef elem_type)
2335 {
2336 if (!HAVE_32BIT_POINTERS)
2337 return ac_array_in_const_addr_space(elem_type);
2338
2339 return LLVMPointerType(LLVMArrayType(elem_type, 0),
2340 AC_CONST_32BIT_ADDR_SPACE);
2341 }
2342
2343 static struct ac_llvm_flow *
2344 get_current_flow(struct ac_llvm_context *ctx)
2345 {
2346 if (ctx->flow_depth > 0)
2347 return &ctx->flow[ctx->flow_depth - 1];
2348 return NULL;
2349 }
2350
2351 static struct ac_llvm_flow *
2352 get_innermost_loop(struct ac_llvm_context *ctx)
2353 {
2354 for (unsigned i = ctx->flow_depth; i > 0; --i) {
2355 if (ctx->flow[i - 1].loop_entry_block)
2356 return &ctx->flow[i - 1];
2357 }
2358 return NULL;
2359 }
2360
2361 static struct ac_llvm_flow *
2362 push_flow(struct ac_llvm_context *ctx)
2363 {
2364 struct ac_llvm_flow *flow;
2365
2366 if (ctx->flow_depth >= ctx->flow_depth_max) {
2367 unsigned new_max = MAX2(ctx->flow_depth << 1,
2368 AC_LLVM_INITIAL_CF_DEPTH);
2369
2370 ctx->flow = realloc(ctx->flow, new_max * sizeof(*ctx->flow));
2371 ctx->flow_depth_max = new_max;
2372 }
2373
2374 flow = &ctx->flow[ctx->flow_depth];
2375 ctx->flow_depth++;
2376
2377 flow->next_block = NULL;
2378 flow->loop_entry_block = NULL;
2379 return flow;
2380 }
2381
2382 static void set_basicblock_name(LLVMBasicBlockRef bb, const char *base,
2383 int label_id)
2384 {
2385 char buf[32];
2386 snprintf(buf, sizeof(buf), "%s%d", base, label_id);
2387 LLVMSetValueName(LLVMBasicBlockAsValue(bb), buf);
2388 }
2389
2390 /* Append a basic block at the level of the parent flow.
2391 */
2392 static LLVMBasicBlockRef append_basic_block(struct ac_llvm_context *ctx,
2393 const char *name)
2394 {
2395 assert(ctx->flow_depth >= 1);
2396
2397 if (ctx->flow_depth >= 2) {
2398 struct ac_llvm_flow *flow = &ctx->flow[ctx->flow_depth - 2];
2399
2400 return LLVMInsertBasicBlockInContext(ctx->context,
2401 flow->next_block, name);
2402 }
2403
2404 LLVMValueRef main_fn =
2405 LLVMGetBasicBlockParent(LLVMGetInsertBlock(ctx->builder));
2406 return LLVMAppendBasicBlockInContext(ctx->context, main_fn, name);
2407 }
2408
2409 /* Emit a branch to the given default target for the current block if
2410 * applicable -- that is, if the current block does not already contain a
2411 * branch from a break or continue.
2412 */
2413 static void emit_default_branch(LLVMBuilderRef builder,
2414 LLVMBasicBlockRef target)
2415 {
2416 if (!LLVMGetBasicBlockTerminator(LLVMGetInsertBlock(builder)))
2417 LLVMBuildBr(builder, target);
2418 }
2419
2420 void ac_build_bgnloop(struct ac_llvm_context *ctx, int label_id)
2421 {
2422 struct ac_llvm_flow *flow = push_flow(ctx);
2423 flow->loop_entry_block = append_basic_block(ctx, "LOOP");
2424 flow->next_block = append_basic_block(ctx, "ENDLOOP");
2425 set_basicblock_name(flow->loop_entry_block, "loop", label_id);
2426 LLVMBuildBr(ctx->builder, flow->loop_entry_block);
2427 LLVMPositionBuilderAtEnd(ctx->builder, flow->loop_entry_block);
2428 }
2429
2430 void ac_build_break(struct ac_llvm_context *ctx)
2431 {
2432 struct ac_llvm_flow *flow = get_innermost_loop(ctx);
2433 LLVMBuildBr(ctx->builder, flow->next_block);
2434 }
2435
2436 void ac_build_continue(struct ac_llvm_context *ctx)
2437 {
2438 struct ac_llvm_flow *flow = get_innermost_loop(ctx);
2439 LLVMBuildBr(ctx->builder, flow->loop_entry_block);
2440 }
2441
2442 void ac_build_else(struct ac_llvm_context *ctx, int label_id)
2443 {
2444 struct ac_llvm_flow *current_branch = get_current_flow(ctx);
2445 LLVMBasicBlockRef endif_block;
2446
2447 assert(!current_branch->loop_entry_block);
2448
2449 endif_block = append_basic_block(ctx, "ENDIF");
2450 emit_default_branch(ctx->builder, endif_block);
2451
2452 LLVMPositionBuilderAtEnd(ctx->builder, current_branch->next_block);
2453 set_basicblock_name(current_branch->next_block, "else", label_id);
2454
2455 current_branch->next_block = endif_block;
2456 }
2457
2458 void ac_build_endif(struct ac_llvm_context *ctx, int label_id)
2459 {
2460 struct ac_llvm_flow *current_branch = get_current_flow(ctx);
2461
2462 assert(!current_branch->loop_entry_block);
2463
2464 emit_default_branch(ctx->builder, current_branch->next_block);
2465 LLVMPositionBuilderAtEnd(ctx->builder, current_branch->next_block);
2466 set_basicblock_name(current_branch->next_block, "endif", label_id);
2467
2468 ctx->flow_depth--;
2469 }
2470
2471 void ac_build_endloop(struct ac_llvm_context *ctx, int label_id)
2472 {
2473 struct ac_llvm_flow *current_loop = get_current_flow(ctx);
2474
2475 assert(current_loop->loop_entry_block);
2476
2477 emit_default_branch(ctx->builder, current_loop->loop_entry_block);
2478
2479 LLVMPositionBuilderAtEnd(ctx->builder, current_loop->next_block);
2480 set_basicblock_name(current_loop->next_block, "endloop", label_id);
2481 ctx->flow_depth--;
2482 }
2483
2484 static void if_cond_emit(struct ac_llvm_context *ctx, LLVMValueRef cond,
2485 int label_id)
2486 {
2487 struct ac_llvm_flow *flow = push_flow(ctx);
2488 LLVMBasicBlockRef if_block;
2489
2490 if_block = append_basic_block(ctx, "IF");
2491 flow->next_block = append_basic_block(ctx, "ELSE");
2492 set_basicblock_name(if_block, "if", label_id);
2493 LLVMBuildCondBr(ctx->builder, cond, if_block, flow->next_block);
2494 LLVMPositionBuilderAtEnd(ctx->builder, if_block);
2495 }
2496
2497 void ac_build_if(struct ac_llvm_context *ctx, LLVMValueRef value,
2498 int label_id)
2499 {
2500 LLVMValueRef cond = LLVMBuildFCmp(ctx->builder, LLVMRealUNE,
2501 value, ctx->f32_0, "");
2502 if_cond_emit(ctx, cond, label_id);
2503 }
2504
2505 void ac_build_uif(struct ac_llvm_context *ctx, LLVMValueRef value,
2506 int label_id)
2507 {
2508 LLVMValueRef cond = LLVMBuildICmp(ctx->builder, LLVMIntNE,
2509 ac_to_integer(ctx, value),
2510 ctx->i32_0, "");
2511 if_cond_emit(ctx, cond, label_id);
2512 }
2513
2514 LLVMValueRef ac_build_alloca(struct ac_llvm_context *ac, LLVMTypeRef type,
2515 const char *name)
2516 {
2517 LLVMBuilderRef builder = ac->builder;
2518 LLVMBasicBlockRef current_block = LLVMGetInsertBlock(builder);
2519 LLVMValueRef function = LLVMGetBasicBlockParent(current_block);
2520 LLVMBasicBlockRef first_block = LLVMGetEntryBasicBlock(function);
2521 LLVMValueRef first_instr = LLVMGetFirstInstruction(first_block);
2522 LLVMBuilderRef first_builder = LLVMCreateBuilderInContext(ac->context);
2523 LLVMValueRef res;
2524
2525 if (first_instr) {
2526 LLVMPositionBuilderBefore(first_builder, first_instr);
2527 } else {
2528 LLVMPositionBuilderAtEnd(first_builder, first_block);
2529 }
2530
2531 res = LLVMBuildAlloca(first_builder, type, name);
2532 LLVMBuildStore(builder, LLVMConstNull(type), res);
2533
2534 LLVMDisposeBuilder(first_builder);
2535
2536 return res;
2537 }
2538
2539 LLVMValueRef ac_build_alloca_undef(struct ac_llvm_context *ac,
2540 LLVMTypeRef type, const char *name)
2541 {
2542 LLVMValueRef ptr = ac_build_alloca(ac, type, name);
2543 LLVMBuildStore(ac->builder, LLVMGetUndef(type), ptr);
2544 return ptr;
2545 }
2546
2547 LLVMValueRef ac_cast_ptr(struct ac_llvm_context *ctx, LLVMValueRef ptr,
2548 LLVMTypeRef type)
2549 {
2550 int addr_space = LLVMGetPointerAddressSpace(LLVMTypeOf(ptr));
2551 return LLVMBuildBitCast(ctx->builder, ptr,
2552 LLVMPointerType(type, addr_space), "");
2553 }
2554
2555 LLVMValueRef ac_trim_vector(struct ac_llvm_context *ctx, LLVMValueRef value,
2556 unsigned count)
2557 {
2558 unsigned num_components = ac_get_llvm_num_components(value);
2559 if (count == num_components)
2560 return value;
2561
2562 LLVMValueRef masks[] = {
2563 LLVMConstInt(ctx->i32, 0, false), LLVMConstInt(ctx->i32, 1, false),
2564 LLVMConstInt(ctx->i32, 2, false), LLVMConstInt(ctx->i32, 3, false)};
2565
2566 if (count == 1)
2567 return LLVMBuildExtractElement(ctx->builder, value, masks[0],
2568 "");
2569
2570 LLVMValueRef swizzle = LLVMConstVector(masks, count);
2571 return LLVMBuildShuffleVector(ctx->builder, value, value, swizzle, "");
2572 }
2573
2574 LLVMValueRef ac_unpack_param(struct ac_llvm_context *ctx, LLVMValueRef param,
2575 unsigned rshift, unsigned bitwidth)
2576 {
2577 LLVMValueRef value = param;
2578 if (rshift)
2579 value = LLVMBuildLShr(ctx->builder, value,
2580 LLVMConstInt(ctx->i32, rshift, false), "");
2581
2582 if (rshift + bitwidth < 32) {
2583 unsigned mask = (1 << bitwidth) - 1;
2584 value = LLVMBuildAnd(ctx->builder, value,
2585 LLVMConstInt(ctx->i32, mask, false), "");
2586 }
2587 return value;
2588 }
2589
2590 /* Adjust the sample index according to FMASK.
2591 *
2592 * For uncompressed MSAA surfaces, FMASK should return 0x76543210,
2593 * which is the identity mapping. Each nibble says which physical sample
2594 * should be fetched to get that sample.
2595 *
2596 * For example, 0x11111100 means there are only 2 samples stored and
2597 * the second sample covers 3/4 of the pixel. When reading samples 0
2598 * and 1, return physical sample 0 (determined by the first two 0s
2599 * in FMASK), otherwise return physical sample 1.
2600 *
2601 * The sample index should be adjusted as follows:
2602 * addr[sample_index] = (fmask >> (addr[sample_index] * 4)) & 0xF;
2603 */
2604 void ac_apply_fmask_to_sample(struct ac_llvm_context *ac, LLVMValueRef fmask,
2605 LLVMValueRef *addr, bool is_array_tex)
2606 {
2607 struct ac_image_args fmask_load = {};
2608 fmask_load.opcode = ac_image_load;
2609 fmask_load.resource = fmask;
2610 fmask_load.dmask = 0xf;
2611 fmask_load.dim = is_array_tex ? ac_image_2darray : ac_image_2d;
2612
2613 fmask_load.coords[0] = addr[0];
2614 fmask_load.coords[1] = addr[1];
2615 if (is_array_tex)
2616 fmask_load.coords[2] = addr[2];
2617
2618 LLVMValueRef fmask_value = ac_build_image_opcode(ac, &fmask_load);
2619 fmask_value = LLVMBuildExtractElement(ac->builder, fmask_value,
2620 ac->i32_0, "");
2621
2622 /* Apply the formula. */
2623 unsigned sample_chan = is_array_tex ? 3 : 2;
2624 LLVMValueRef final_sample;
2625 final_sample = LLVMBuildMul(ac->builder, addr[sample_chan],
2626 LLVMConstInt(ac->i32, 4, 0), "");
2627 final_sample = LLVMBuildLShr(ac->builder, fmask_value, final_sample, "");
2628 final_sample = LLVMBuildAnd(ac->builder, final_sample,
2629 LLVMConstInt(ac->i32, 0xF, 0), "");
2630
2631 /* Don't rewrite the sample index if WORD1.DATA_FORMAT of the FMASK
2632 * resource descriptor is 0 (invalid),
2633 */
2634 LLVMValueRef tmp;
2635 tmp = LLVMBuildBitCast(ac->builder, fmask, ac->v8i32, "");
2636 tmp = LLVMBuildExtractElement(ac->builder, tmp, ac->i32_1, "");
2637 tmp = LLVMBuildICmp(ac->builder, LLVMIntNE, tmp, ac->i32_0, "");
2638
2639 /* Replace the MSAA sample index. */
2640 addr[sample_chan] = LLVMBuildSelect(ac->builder, tmp, final_sample,
2641 addr[sample_chan], "");
2642 }
2643
2644 static LLVMValueRef
2645 _ac_build_readlane(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef lane)
2646 {
2647 ac_build_optimization_barrier(ctx, &src);
2648 return ac_build_intrinsic(ctx,
2649 lane == NULL ? "llvm.amdgcn.readfirstlane" : "llvm.amdgcn.readlane",
2650 LLVMTypeOf(src), (LLVMValueRef []) {
2651 src, lane },
2652 lane == NULL ? 1 : 2,
2653 AC_FUNC_ATTR_READNONE |
2654 AC_FUNC_ATTR_CONVERGENT);
2655 }
2656
2657 /**
2658 * Builds the "llvm.amdgcn.readlane" or "llvm.amdgcn.readfirstlane" intrinsic.
2659 * @param ctx
2660 * @param src
2661 * @param lane - id of the lane or NULL for the first active lane
2662 * @return value of the lane
2663 */
2664 LLVMValueRef
2665 ac_build_readlane(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef lane)
2666 {
2667 LLVMTypeRef src_type = LLVMTypeOf(src);
2668 src = ac_to_integer(ctx, src);
2669 unsigned bits = LLVMGetIntTypeWidth(LLVMTypeOf(src));
2670 LLVMValueRef ret;
2671
2672 if (bits == 32) {
2673 ret = _ac_build_readlane(ctx, src, lane);
2674 } else {
2675 assert(bits % 32 == 0);
2676 LLVMTypeRef vec_type = LLVMVectorType(ctx->i32, bits / 32);
2677 LLVMValueRef src_vector =
2678 LLVMBuildBitCast(ctx->builder, src, vec_type, "");
2679 ret = LLVMGetUndef(vec_type);
2680 for (unsigned i = 0; i < bits / 32; i++) {
2681 src = LLVMBuildExtractElement(ctx->builder, src_vector,
2682 LLVMConstInt(ctx->i32, i, 0), "");
2683 LLVMValueRef ret_comp = _ac_build_readlane(ctx, src, lane);
2684 ret = LLVMBuildInsertElement(ctx->builder, ret, ret_comp,
2685 LLVMConstInt(ctx->i32, i, 0), "");
2686 }
2687 }
2688 return LLVMBuildBitCast(ctx->builder, ret, src_type, "");
2689 }
2690
2691 LLVMValueRef
2692 ac_build_writelane(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef value, LLVMValueRef lane)
2693 {
2694 /* TODO: Use the actual instruction when LLVM adds an intrinsic for it.
2695 */
2696 LLVMValueRef pred = LLVMBuildICmp(ctx->builder, LLVMIntEQ, lane,
2697 ac_get_thread_id(ctx), "");
2698 return LLVMBuildSelect(ctx->builder, pred, value, src, "");
2699 }
2700
2701 LLVMValueRef
2702 ac_build_mbcnt(struct ac_llvm_context *ctx, LLVMValueRef mask)
2703 {
2704 LLVMValueRef mask_vec = LLVMBuildBitCast(ctx->builder, mask,
2705 LLVMVectorType(ctx->i32, 2),
2706 "");
2707 LLVMValueRef mask_lo = LLVMBuildExtractElement(ctx->builder, mask_vec,
2708 ctx->i32_0, "");
2709 LLVMValueRef mask_hi = LLVMBuildExtractElement(ctx->builder, mask_vec,
2710 ctx->i32_1, "");
2711 LLVMValueRef val =
2712 ac_build_intrinsic(ctx, "llvm.amdgcn.mbcnt.lo", ctx->i32,
2713 (LLVMValueRef []) { mask_lo, ctx->i32_0 },
2714 2, AC_FUNC_ATTR_READNONE);
2715 val = ac_build_intrinsic(ctx, "llvm.amdgcn.mbcnt.hi", ctx->i32,
2716 (LLVMValueRef []) { mask_hi, val },
2717 2, AC_FUNC_ATTR_READNONE);
2718 return val;
2719 }
2720
2721 enum dpp_ctrl {
2722 _dpp_quad_perm = 0x000,
2723 _dpp_row_sl = 0x100,
2724 _dpp_row_sr = 0x110,
2725 _dpp_row_rr = 0x120,
2726 dpp_wf_sl1 = 0x130,
2727 dpp_wf_rl1 = 0x134,
2728 dpp_wf_sr1 = 0x138,
2729 dpp_wf_rr1 = 0x13C,
2730 dpp_row_mirror = 0x140,
2731 dpp_row_half_mirror = 0x141,
2732 dpp_row_bcast15 = 0x142,
2733 dpp_row_bcast31 = 0x143
2734 };
2735
2736 static inline enum dpp_ctrl
2737 dpp_quad_perm(unsigned lane0, unsigned lane1, unsigned lane2, unsigned lane3)
2738 {
2739 assert(lane0 < 4 && lane1 < 4 && lane2 < 4 && lane3 < 4);
2740 return _dpp_quad_perm | lane0 | (lane1 << 2) | (lane2 << 4) | (lane3 << 6);
2741 }
2742
2743 static inline enum dpp_ctrl
2744 dpp_row_sl(unsigned amount)
2745 {
2746 assert(amount > 0 && amount < 16);
2747 return _dpp_row_sl | amount;
2748 }
2749
2750 static inline enum dpp_ctrl
2751 dpp_row_sr(unsigned amount)
2752 {
2753 assert(amount > 0 && amount < 16);
2754 return _dpp_row_sr | amount;
2755 }
2756
2757 static LLVMValueRef
2758 _ac_build_dpp(struct ac_llvm_context *ctx, LLVMValueRef old, LLVMValueRef src,
2759 enum dpp_ctrl dpp_ctrl, unsigned row_mask, unsigned bank_mask,
2760 bool bound_ctrl)
2761 {
2762 return ac_build_intrinsic(ctx, "llvm.amdgcn.update.dpp.i32",
2763 LLVMTypeOf(old),
2764 (LLVMValueRef[]) {
2765 old, src,
2766 LLVMConstInt(ctx->i32, dpp_ctrl, 0),
2767 LLVMConstInt(ctx->i32, row_mask, 0),
2768 LLVMConstInt(ctx->i32, bank_mask, 0),
2769 LLVMConstInt(ctx->i1, bound_ctrl, 0) },
2770 6, AC_FUNC_ATTR_READNONE | AC_FUNC_ATTR_CONVERGENT);
2771 }
2772
2773 static LLVMValueRef
2774 ac_build_dpp(struct ac_llvm_context *ctx, LLVMValueRef old, LLVMValueRef src,
2775 enum dpp_ctrl dpp_ctrl, unsigned row_mask, unsigned bank_mask,
2776 bool bound_ctrl)
2777 {
2778 LLVMTypeRef src_type = LLVMTypeOf(src);
2779 src = ac_to_integer(ctx, src);
2780 old = ac_to_integer(ctx, old);
2781 unsigned bits = LLVMGetIntTypeWidth(LLVMTypeOf(src));
2782 LLVMValueRef ret;
2783 if (bits == 32) {
2784 ret = _ac_build_dpp(ctx, old, src, dpp_ctrl, row_mask,
2785 bank_mask, bound_ctrl);
2786 } else {
2787 assert(bits % 32 == 0);
2788 LLVMTypeRef vec_type = LLVMVectorType(ctx->i32, bits / 32);
2789 LLVMValueRef src_vector =
2790 LLVMBuildBitCast(ctx->builder, src, vec_type, "");
2791 LLVMValueRef old_vector =
2792 LLVMBuildBitCast(ctx->builder, old, vec_type, "");
2793 ret = LLVMGetUndef(vec_type);
2794 for (unsigned i = 0; i < bits / 32; i++) {
2795 src = LLVMBuildExtractElement(ctx->builder, src_vector,
2796 LLVMConstInt(ctx->i32, i,
2797 0), "");
2798 old = LLVMBuildExtractElement(ctx->builder, old_vector,
2799 LLVMConstInt(ctx->i32, i,
2800 0), "");
2801 LLVMValueRef ret_comp = _ac_build_dpp(ctx, old, src,
2802 dpp_ctrl,
2803 row_mask,
2804 bank_mask,
2805 bound_ctrl);
2806 ret = LLVMBuildInsertElement(ctx->builder, ret,
2807 ret_comp,
2808 LLVMConstInt(ctx->i32, i,
2809 0), "");
2810 }
2811 }
2812 return LLVMBuildBitCast(ctx->builder, ret, src_type, "");
2813 }
2814
2815 static inline unsigned
2816 ds_pattern_bitmode(unsigned and_mask, unsigned or_mask, unsigned xor_mask)
2817 {
2818 assert(and_mask < 32 && or_mask < 32 && xor_mask < 32);
2819 return and_mask | (or_mask << 5) | (xor_mask << 10);
2820 }
2821
2822 static LLVMValueRef
2823 _ac_build_ds_swizzle(struct ac_llvm_context *ctx, LLVMValueRef src, unsigned mask)
2824 {
2825 return ac_build_intrinsic(ctx, "llvm.amdgcn.ds.swizzle",
2826 LLVMTypeOf(src), (LLVMValueRef []) {
2827 src, LLVMConstInt(ctx->i32, mask, 0) },
2828 2, AC_FUNC_ATTR_READNONE | AC_FUNC_ATTR_CONVERGENT);
2829 }
2830
2831 LLVMValueRef
2832 ac_build_ds_swizzle(struct ac_llvm_context *ctx, LLVMValueRef src, unsigned mask)
2833 {
2834 LLVMTypeRef src_type = LLVMTypeOf(src);
2835 src = ac_to_integer(ctx, src);
2836 unsigned bits = LLVMGetIntTypeWidth(LLVMTypeOf(src));
2837 LLVMValueRef ret;
2838 if (bits == 32) {
2839 ret = _ac_build_ds_swizzle(ctx, src, mask);
2840 } else {
2841 assert(bits % 32 == 0);
2842 LLVMTypeRef vec_type = LLVMVectorType(ctx->i32, bits / 32);
2843 LLVMValueRef src_vector =
2844 LLVMBuildBitCast(ctx->builder, src, vec_type, "");
2845 ret = LLVMGetUndef(vec_type);
2846 for (unsigned i = 0; i < bits / 32; i++) {
2847 src = LLVMBuildExtractElement(ctx->builder, src_vector,
2848 LLVMConstInt(ctx->i32, i,
2849 0), "");
2850 LLVMValueRef ret_comp = _ac_build_ds_swizzle(ctx, src,
2851 mask);
2852 ret = LLVMBuildInsertElement(ctx->builder, ret,
2853 ret_comp,
2854 LLVMConstInt(ctx->i32, i,
2855 0), "");
2856 }
2857 }
2858 return LLVMBuildBitCast(ctx->builder, ret, src_type, "");
2859 }
2860
2861 static LLVMValueRef
2862 ac_build_wwm(struct ac_llvm_context *ctx, LLVMValueRef src)
2863 {
2864 char name[32], type[8];
2865 ac_build_type_name_for_intr(LLVMTypeOf(src), type, sizeof(type));
2866 snprintf(name, sizeof(name), "llvm.amdgcn.wwm.%s", type);
2867 return ac_build_intrinsic(ctx, name, LLVMTypeOf(src),
2868 (LLVMValueRef []) { src }, 1,
2869 AC_FUNC_ATTR_READNONE);
2870 }
2871
2872 static LLVMValueRef
2873 ac_build_set_inactive(struct ac_llvm_context *ctx, LLVMValueRef src,
2874 LLVMValueRef inactive)
2875 {
2876 char name[32], type[8];
2877 LLVMTypeRef src_type = LLVMTypeOf(src);
2878 src = ac_to_integer(ctx, src);
2879 inactive = ac_to_integer(ctx, inactive);
2880 ac_build_type_name_for_intr(LLVMTypeOf(src), type, sizeof(type));
2881 snprintf(name, sizeof(name), "llvm.amdgcn.set.inactive.%s", type);
2882 LLVMValueRef ret =
2883 ac_build_intrinsic(ctx, name,
2884 LLVMTypeOf(src), (LLVMValueRef []) {
2885 src, inactive }, 2,
2886 AC_FUNC_ATTR_READNONE |
2887 AC_FUNC_ATTR_CONVERGENT);
2888 return LLVMBuildBitCast(ctx->builder, ret, src_type, "");
2889 }
2890
2891 static LLVMValueRef
2892 get_reduction_identity(struct ac_llvm_context *ctx, nir_op op, unsigned type_size)
2893 {
2894 if (type_size == 4) {
2895 switch (op) {
2896 case nir_op_iadd: return ctx->i32_0;
2897 case nir_op_fadd: return ctx->f32_0;
2898 case nir_op_imul: return ctx->i32_1;
2899 case nir_op_fmul: return ctx->f32_1;
2900 case nir_op_imin: return LLVMConstInt(ctx->i32, INT32_MAX, 0);
2901 case nir_op_umin: return LLVMConstInt(ctx->i32, UINT32_MAX, 0);
2902 case nir_op_fmin: return LLVMConstReal(ctx->f32, INFINITY);
2903 case nir_op_imax: return LLVMConstInt(ctx->i32, INT32_MIN, 0);
2904 case nir_op_umax: return ctx->i32_0;
2905 case nir_op_fmax: return LLVMConstReal(ctx->f32, -INFINITY);
2906 case nir_op_iand: return LLVMConstInt(ctx->i32, -1, 0);
2907 case nir_op_ior: return ctx->i32_0;
2908 case nir_op_ixor: return ctx->i32_0;
2909 default:
2910 unreachable("bad reduction intrinsic");
2911 }
2912 } else { /* type_size == 64bit */
2913 switch (op) {
2914 case nir_op_iadd: return ctx->i64_0;
2915 case nir_op_fadd: return ctx->f64_0;
2916 case nir_op_imul: return ctx->i64_1;
2917 case nir_op_fmul: return ctx->f64_1;
2918 case nir_op_imin: return LLVMConstInt(ctx->i64, INT64_MAX, 0);
2919 case nir_op_umin: return LLVMConstInt(ctx->i64, UINT64_MAX, 0);
2920 case nir_op_fmin: return LLVMConstReal(ctx->f64, INFINITY);
2921 case nir_op_imax: return LLVMConstInt(ctx->i64, INT64_MIN, 0);
2922 case nir_op_umax: return ctx->i64_0;
2923 case nir_op_fmax: return LLVMConstReal(ctx->f64, -INFINITY);
2924 case nir_op_iand: return LLVMConstInt(ctx->i64, -1, 0);
2925 case nir_op_ior: return ctx->i64_0;
2926 case nir_op_ixor: return ctx->i64_0;
2927 default:
2928 unreachable("bad reduction intrinsic");
2929 }
2930 }
2931 }
2932
2933 static LLVMValueRef
2934 ac_build_alu_op(struct ac_llvm_context *ctx, LLVMValueRef lhs, LLVMValueRef rhs, nir_op op)
2935 {
2936 bool _64bit = ac_get_type_size(LLVMTypeOf(lhs)) == 8;
2937 switch (op) {
2938 case nir_op_iadd: return LLVMBuildAdd(ctx->builder, lhs, rhs, "");
2939 case nir_op_fadd: return LLVMBuildFAdd(ctx->builder, lhs, rhs, "");
2940 case nir_op_imul: return LLVMBuildMul(ctx->builder, lhs, rhs, "");
2941 case nir_op_fmul: return LLVMBuildFMul(ctx->builder, lhs, rhs, "");
2942 case nir_op_imin: return LLVMBuildSelect(ctx->builder,
2943 LLVMBuildICmp(ctx->builder, LLVMIntSLT, lhs, rhs, ""),
2944 lhs, rhs, "");
2945 case nir_op_umin: return LLVMBuildSelect(ctx->builder,
2946 LLVMBuildICmp(ctx->builder, LLVMIntULT, lhs, rhs, ""),
2947 lhs, rhs, "");
2948 case nir_op_fmin: return ac_build_intrinsic(ctx,
2949 _64bit ? "llvm.minnum.f64" : "llvm.minnum.f32",
2950 _64bit ? ctx->f64 : ctx->f32,
2951 (LLVMValueRef[]){lhs, rhs}, 2, AC_FUNC_ATTR_READNONE);
2952 case nir_op_imax: return LLVMBuildSelect(ctx->builder,
2953 LLVMBuildICmp(ctx->builder, LLVMIntSGT, lhs, rhs, ""),
2954 lhs, rhs, "");
2955 case nir_op_umax: return LLVMBuildSelect(ctx->builder,
2956 LLVMBuildICmp(ctx->builder, LLVMIntUGT, lhs, rhs, ""),
2957 lhs, rhs, "");
2958 case nir_op_fmax: return ac_build_intrinsic(ctx,
2959 _64bit ? "llvm.maxnum.f64" : "llvm.maxnum.f32",
2960 _64bit ? ctx->f64 : ctx->f32,
2961 (LLVMValueRef[]){lhs, rhs}, 2, AC_FUNC_ATTR_READNONE);
2962 case nir_op_iand: return LLVMBuildAnd(ctx->builder, lhs, rhs, "");
2963 case nir_op_ior: return LLVMBuildOr(ctx->builder, lhs, rhs, "");
2964 case nir_op_ixor: return LLVMBuildXor(ctx->builder, lhs, rhs, "");
2965 default:
2966 unreachable("bad reduction intrinsic");
2967 }
2968 }
2969
2970 /* TODO: add inclusive and excluse scan functions for SI chip class. */
2971 static LLVMValueRef
2972 ac_build_scan(struct ac_llvm_context *ctx, nir_op op, LLVMValueRef src, LLVMValueRef identity)
2973 {
2974 LLVMValueRef result, tmp;
2975 result = src;
2976 tmp = ac_build_dpp(ctx, identity, src, dpp_row_sr(1), 0xf, 0xf, false);
2977 result = ac_build_alu_op(ctx, result, tmp, op);
2978 tmp = ac_build_dpp(ctx, identity, src, dpp_row_sr(2), 0xf, 0xf, false);
2979 result = ac_build_alu_op(ctx, result, tmp, op);
2980 tmp = ac_build_dpp(ctx, identity, src, dpp_row_sr(3), 0xf, 0xf, false);
2981 result = ac_build_alu_op(ctx, result, tmp, op);
2982 tmp = ac_build_dpp(ctx, identity, result, dpp_row_sr(4), 0xf, 0xe, false);
2983 result = ac_build_alu_op(ctx, result, tmp, op);
2984 tmp = ac_build_dpp(ctx, identity, result, dpp_row_sr(8), 0xf, 0xc, false);
2985 result = ac_build_alu_op(ctx, result, tmp, op);
2986 tmp = ac_build_dpp(ctx, identity, result, dpp_row_bcast15, 0xa, 0xf, false);
2987 result = ac_build_alu_op(ctx, result, tmp, op);
2988 tmp = ac_build_dpp(ctx, identity, result, dpp_row_bcast31, 0xc, 0xf, false);
2989 result = ac_build_alu_op(ctx, result, tmp, op);
2990 return result;
2991 }
2992
2993 LLVMValueRef
2994 ac_build_inclusive_scan(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op)
2995 {
2996 ac_build_optimization_barrier(ctx, &src);
2997 LLVMValueRef result;
2998 LLVMValueRef identity = get_reduction_identity(ctx, op,
2999 ac_get_type_size(LLVMTypeOf(src)));
3000 result = LLVMBuildBitCast(ctx->builder,
3001 ac_build_set_inactive(ctx, src, identity),
3002 LLVMTypeOf(identity), "");
3003 result = ac_build_scan(ctx, op, result, identity);
3004
3005 return ac_build_wwm(ctx, result);
3006 }
3007
3008 LLVMValueRef
3009 ac_build_exclusive_scan(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op)
3010 {
3011 ac_build_optimization_barrier(ctx, &src);
3012 LLVMValueRef result;
3013 LLVMValueRef identity = get_reduction_identity(ctx, op,
3014 ac_get_type_size(LLVMTypeOf(src)));
3015 result = LLVMBuildBitCast(ctx->builder,
3016 ac_build_set_inactive(ctx, src, identity),
3017 LLVMTypeOf(identity), "");
3018 result = ac_build_dpp(ctx, identity, result, dpp_wf_sr1, 0xf, 0xf, false);
3019 result = ac_build_scan(ctx, op, result, identity);
3020
3021 return ac_build_wwm(ctx, result);
3022 }
3023
3024 LLVMValueRef
3025 ac_build_reduce(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op, unsigned cluster_size)
3026 {
3027 if (cluster_size == 1) return src;
3028 ac_build_optimization_barrier(ctx, &src);
3029 LLVMValueRef result, swap;
3030 LLVMValueRef identity = get_reduction_identity(ctx, op,
3031 ac_get_type_size(LLVMTypeOf(src)));
3032 result = LLVMBuildBitCast(ctx->builder,
3033 ac_build_set_inactive(ctx, src, identity),
3034 LLVMTypeOf(identity), "");
3035 swap = ac_build_quad_swizzle(ctx, result, 1, 0, 3, 2);
3036 result = ac_build_alu_op(ctx, result, swap, op);
3037 if (cluster_size == 2) return ac_build_wwm(ctx, result);
3038
3039 swap = ac_build_quad_swizzle(ctx, result, 2, 3, 0, 1);
3040 result = ac_build_alu_op(ctx, result, swap, op);
3041 if (cluster_size == 4) return ac_build_wwm(ctx, result);
3042
3043 if (ctx->chip_class >= VI)
3044 swap = ac_build_dpp(ctx, identity, result, dpp_row_half_mirror, 0xf, 0xf, false);
3045 else
3046 swap = ac_build_ds_swizzle(ctx, result, ds_pattern_bitmode(0x1f, 0, 0x04));
3047 result = ac_build_alu_op(ctx, result, swap, op);
3048 if (cluster_size == 8) return ac_build_wwm(ctx, result);
3049
3050 if (ctx->chip_class >= VI)
3051 swap = ac_build_dpp(ctx, identity, result, dpp_row_mirror, 0xf, 0xf, false);
3052 else
3053 swap = ac_build_ds_swizzle(ctx, result, ds_pattern_bitmode(0x1f, 0, 0x08));
3054 result = ac_build_alu_op(ctx, result, swap, op);
3055 if (cluster_size == 16) return ac_build_wwm(ctx, result);
3056
3057 if (ctx->chip_class >= VI && cluster_size != 32)
3058 swap = ac_build_dpp(ctx, identity, result, dpp_row_bcast15, 0xa, 0xf, false);
3059 else
3060 swap = ac_build_ds_swizzle(ctx, result, ds_pattern_bitmode(0x1f, 0, 0x10));
3061 result = ac_build_alu_op(ctx, result, swap, op);
3062 if (cluster_size == 32) return ac_build_wwm(ctx, result);
3063
3064 if (ctx->chip_class >= VI) {
3065 swap = ac_build_dpp(ctx, identity, result, dpp_row_bcast31, 0xc, 0xf, false);
3066 result = ac_build_alu_op(ctx, result, swap, op);
3067 result = ac_build_readlane(ctx, result, LLVMConstInt(ctx->i32, 63, 0));
3068 return ac_build_wwm(ctx, result);
3069 } else {
3070 swap = ac_build_readlane(ctx, result, ctx->i32_0);
3071 result = ac_build_readlane(ctx, result, LLVMConstInt(ctx->i32, 32, 0));
3072 result = ac_build_alu_op(ctx, result, swap, op);
3073 return ac_build_wwm(ctx, result);
3074 }
3075 }
3076
3077 LLVMValueRef
3078 ac_build_quad_swizzle(struct ac_llvm_context *ctx, LLVMValueRef src,
3079 unsigned lane0, unsigned lane1, unsigned lane2, unsigned lane3)
3080 {
3081 unsigned mask = dpp_quad_perm(lane0, lane1, lane2, lane3);
3082 if (ctx->chip_class >= VI && HAVE_LLVM >= 0x0600) {
3083 return ac_build_dpp(ctx, src, src, mask, 0xf, 0xf, false);
3084 } else {
3085 return ac_build_ds_swizzle(ctx, src, (1 << 15) | mask);
3086 }
3087 }
3088
3089 LLVMValueRef
3090 ac_build_shuffle(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef index)
3091 {
3092 index = LLVMBuildMul(ctx->builder, index, LLVMConstInt(ctx->i32, 4, 0), "");
3093 return ac_build_intrinsic(ctx,
3094 "llvm.amdgcn.ds.bpermute", ctx->i32,
3095 (LLVMValueRef []) {index, src}, 2,
3096 AC_FUNC_ATTR_READNONE |
3097 AC_FUNC_ATTR_CONVERGENT);
3098 }