ac: add prefix bitcount functions
[mesa.git] / src / amd / llvm / 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 #include <llvm/Config/llvm-config.h>
30
31 #include "c11/threads.h"
32
33 #include <assert.h>
34 #include <stdio.h>
35
36 #include "ac_llvm_util.h"
37 #include "ac_shader_util.h"
38 #include "ac_exp_param.h"
39 #include "util/bitscan.h"
40 #include "util/macros.h"
41 #include "util/u_atomic.h"
42 #include "util/u_math.h"
43 #include "sid.h"
44
45 #include "shader_enums.h"
46
47 #define AC_LLVM_INITIAL_CF_DEPTH 4
48
49 /* Data for if/else/endif and bgnloop/endloop control flow structures.
50 */
51 struct ac_llvm_flow {
52 /* Loop exit or next part of if/else/endif. */
53 LLVMBasicBlockRef next_block;
54 LLVMBasicBlockRef loop_entry_block;
55 };
56
57 /* Initialize module-independent parts of the context.
58 *
59 * The caller is responsible for initializing ctx::module and ctx::builder.
60 */
61 void
62 ac_llvm_context_init(struct ac_llvm_context *ctx,
63 struct ac_llvm_compiler *compiler,
64 enum chip_class chip_class, enum radeon_family family,
65 enum ac_float_mode float_mode, unsigned wave_size,
66 unsigned ballot_mask_bits)
67 {
68 LLVMValueRef args[1];
69
70 ctx->context = LLVMContextCreate();
71
72 ctx->chip_class = chip_class;
73 ctx->family = family;
74 ctx->wave_size = wave_size;
75 ctx->ballot_mask_bits = ballot_mask_bits;
76 ctx->float_mode = float_mode;
77 ctx->module = ac_create_module(wave_size == 32 ? compiler->tm_wave32
78 : compiler->tm,
79 ctx->context);
80 ctx->builder = ac_create_builder(ctx->context, float_mode);
81
82 ctx->voidt = LLVMVoidTypeInContext(ctx->context);
83 ctx->i1 = LLVMInt1TypeInContext(ctx->context);
84 ctx->i8 = LLVMInt8TypeInContext(ctx->context);
85 ctx->i16 = LLVMIntTypeInContext(ctx->context, 16);
86 ctx->i32 = LLVMIntTypeInContext(ctx->context, 32);
87 ctx->i64 = LLVMIntTypeInContext(ctx->context, 64);
88 ctx->i128 = LLVMIntTypeInContext(ctx->context, 128);
89 ctx->intptr = ctx->i32;
90 ctx->f16 = LLVMHalfTypeInContext(ctx->context);
91 ctx->f32 = LLVMFloatTypeInContext(ctx->context);
92 ctx->f64 = LLVMDoubleTypeInContext(ctx->context);
93 ctx->v2i16 = LLVMVectorType(ctx->i16, 2);
94 ctx->v2i32 = LLVMVectorType(ctx->i32, 2);
95 ctx->v3i32 = LLVMVectorType(ctx->i32, 3);
96 ctx->v4i32 = LLVMVectorType(ctx->i32, 4);
97 ctx->v2f32 = LLVMVectorType(ctx->f32, 2);
98 ctx->v3f32 = LLVMVectorType(ctx->f32, 3);
99 ctx->v4f32 = LLVMVectorType(ctx->f32, 4);
100 ctx->v8i32 = LLVMVectorType(ctx->i32, 8);
101 ctx->iN_wavemask = LLVMIntTypeInContext(ctx->context, ctx->wave_size);
102 ctx->iN_ballotmask = LLVMIntTypeInContext(ctx->context, ballot_mask_bits);
103
104 ctx->i8_0 = LLVMConstInt(ctx->i8, 0, false);
105 ctx->i8_1 = LLVMConstInt(ctx->i8, 1, false);
106 ctx->i16_0 = LLVMConstInt(ctx->i16, 0, false);
107 ctx->i16_1 = LLVMConstInt(ctx->i16, 1, false);
108 ctx->i32_0 = LLVMConstInt(ctx->i32, 0, false);
109 ctx->i32_1 = LLVMConstInt(ctx->i32, 1, false);
110 ctx->i64_0 = LLVMConstInt(ctx->i64, 0, false);
111 ctx->i64_1 = LLVMConstInt(ctx->i64, 1, false);
112 ctx->i128_0 = LLVMConstInt(ctx->i128, 0, false);
113 ctx->i128_1 = LLVMConstInt(ctx->i128, 1, false);
114 ctx->f16_0 = LLVMConstReal(ctx->f16, 0.0);
115 ctx->f16_1 = LLVMConstReal(ctx->f16, 1.0);
116 ctx->f32_0 = LLVMConstReal(ctx->f32, 0.0);
117 ctx->f32_1 = LLVMConstReal(ctx->f32, 1.0);
118 ctx->f64_0 = LLVMConstReal(ctx->f64, 0.0);
119 ctx->f64_1 = LLVMConstReal(ctx->f64, 1.0);
120
121 ctx->i1false = LLVMConstInt(ctx->i1, 0, false);
122 ctx->i1true = LLVMConstInt(ctx->i1, 1, false);
123
124 ctx->range_md_kind = LLVMGetMDKindIDInContext(ctx->context,
125 "range", 5);
126
127 ctx->invariant_load_md_kind = LLVMGetMDKindIDInContext(ctx->context,
128 "invariant.load", 14);
129
130 ctx->fpmath_md_kind = LLVMGetMDKindIDInContext(ctx->context, "fpmath", 6);
131
132 args[0] = LLVMConstReal(ctx->f32, 2.5);
133 ctx->fpmath_md_2p5_ulp = LLVMMDNodeInContext(ctx->context, args, 1);
134
135 ctx->uniform_md_kind = LLVMGetMDKindIDInContext(ctx->context,
136 "amdgpu.uniform", 14);
137
138 ctx->empty_md = LLVMMDNodeInContext(ctx->context, NULL, 0);
139 ctx->flow = calloc(1, sizeof(*ctx->flow));
140 }
141
142 void
143 ac_llvm_context_dispose(struct ac_llvm_context *ctx)
144 {
145 free(ctx->flow->stack);
146 free(ctx->flow);
147 ctx->flow = NULL;
148 }
149
150 int
151 ac_get_llvm_num_components(LLVMValueRef value)
152 {
153 LLVMTypeRef type = LLVMTypeOf(value);
154 unsigned num_components = LLVMGetTypeKind(type) == LLVMVectorTypeKind
155 ? LLVMGetVectorSize(type)
156 : 1;
157 return num_components;
158 }
159
160 LLVMValueRef
161 ac_llvm_extract_elem(struct ac_llvm_context *ac,
162 LLVMValueRef value,
163 int index)
164 {
165 if (LLVMGetTypeKind(LLVMTypeOf(value)) != LLVMVectorTypeKind) {
166 assert(index == 0);
167 return value;
168 }
169
170 return LLVMBuildExtractElement(ac->builder, value,
171 LLVMConstInt(ac->i32, index, false), "");
172 }
173
174 int
175 ac_get_elem_bits(struct ac_llvm_context *ctx, LLVMTypeRef type)
176 {
177 if (LLVMGetTypeKind(type) == LLVMVectorTypeKind)
178 type = LLVMGetElementType(type);
179
180 if (LLVMGetTypeKind(type) == LLVMIntegerTypeKind)
181 return LLVMGetIntTypeWidth(type);
182
183 if (LLVMGetTypeKind(type) == LLVMPointerTypeKind) {
184 if (LLVMGetPointerAddressSpace(type) == AC_ADDR_SPACE_LDS)
185 return 32;
186 }
187
188 if (type == ctx->f16)
189 return 16;
190 if (type == ctx->f32)
191 return 32;
192 if (type == ctx->f64)
193 return 64;
194
195 unreachable("Unhandled type kind in get_elem_bits");
196 }
197
198 unsigned
199 ac_get_type_size(LLVMTypeRef type)
200 {
201 LLVMTypeKind kind = LLVMGetTypeKind(type);
202
203 switch (kind) {
204 case LLVMIntegerTypeKind:
205 return LLVMGetIntTypeWidth(type) / 8;
206 case LLVMHalfTypeKind:
207 return 2;
208 case LLVMFloatTypeKind:
209 return 4;
210 case LLVMDoubleTypeKind:
211 return 8;
212 case LLVMPointerTypeKind:
213 if (LLVMGetPointerAddressSpace(type) == AC_ADDR_SPACE_CONST_32BIT)
214 return 4;
215 return 8;
216 case LLVMVectorTypeKind:
217 return LLVMGetVectorSize(type) *
218 ac_get_type_size(LLVMGetElementType(type));
219 case LLVMArrayTypeKind:
220 return LLVMGetArrayLength(type) *
221 ac_get_type_size(LLVMGetElementType(type));
222 default:
223 assert(0);
224 return 0;
225 }
226 }
227
228 static LLVMTypeRef to_integer_type_scalar(struct ac_llvm_context *ctx, LLVMTypeRef t)
229 {
230 if (t == ctx->i8)
231 return ctx->i8;
232 else if (t == ctx->f16 || t == ctx->i16)
233 return ctx->i16;
234 else if (t == ctx->f32 || t == ctx->i32)
235 return ctx->i32;
236 else if (t == ctx->f64 || t == ctx->i64)
237 return ctx->i64;
238 else
239 unreachable("Unhandled integer size");
240 }
241
242 LLVMTypeRef
243 ac_to_integer_type(struct ac_llvm_context *ctx, LLVMTypeRef t)
244 {
245 if (LLVMGetTypeKind(t) == LLVMVectorTypeKind) {
246 LLVMTypeRef elem_type = LLVMGetElementType(t);
247 return LLVMVectorType(to_integer_type_scalar(ctx, elem_type),
248 LLVMGetVectorSize(t));
249 }
250 if (LLVMGetTypeKind(t) == LLVMPointerTypeKind) {
251 switch (LLVMGetPointerAddressSpace(t)) {
252 case AC_ADDR_SPACE_GLOBAL:
253 return ctx->i64;
254 case AC_ADDR_SPACE_CONST_32BIT:
255 case AC_ADDR_SPACE_LDS:
256 return ctx->i32;
257 default:
258 unreachable("unhandled address space");
259 }
260 }
261 return to_integer_type_scalar(ctx, t);
262 }
263
264 LLVMValueRef
265 ac_to_integer(struct ac_llvm_context *ctx, LLVMValueRef v)
266 {
267 LLVMTypeRef type = LLVMTypeOf(v);
268 if (LLVMGetTypeKind(type) == LLVMPointerTypeKind) {
269 return LLVMBuildPtrToInt(ctx->builder, v, ac_to_integer_type(ctx, type), "");
270 }
271 return LLVMBuildBitCast(ctx->builder, v, ac_to_integer_type(ctx, type), "");
272 }
273
274 LLVMValueRef
275 ac_to_integer_or_pointer(struct ac_llvm_context *ctx, LLVMValueRef v)
276 {
277 LLVMTypeRef type = LLVMTypeOf(v);
278 if (LLVMGetTypeKind(type) == LLVMPointerTypeKind)
279 return v;
280 return ac_to_integer(ctx, v);
281 }
282
283 static LLVMTypeRef to_float_type_scalar(struct ac_llvm_context *ctx, LLVMTypeRef t)
284 {
285 if (t == ctx->i8)
286 return ctx->i8;
287 else if (t == ctx->i16 || t == ctx->f16)
288 return ctx->f16;
289 else if (t == ctx->i32 || t == ctx->f32)
290 return ctx->f32;
291 else if (t == ctx->i64 || t == ctx->f64)
292 return ctx->f64;
293 else
294 unreachable("Unhandled float size");
295 }
296
297 LLVMTypeRef
298 ac_to_float_type(struct ac_llvm_context *ctx, LLVMTypeRef t)
299 {
300 if (LLVMGetTypeKind(t) == LLVMVectorTypeKind) {
301 LLVMTypeRef elem_type = LLVMGetElementType(t);
302 return LLVMVectorType(to_float_type_scalar(ctx, elem_type),
303 LLVMGetVectorSize(t));
304 }
305 return to_float_type_scalar(ctx, t);
306 }
307
308 LLVMValueRef
309 ac_to_float(struct ac_llvm_context *ctx, LLVMValueRef v)
310 {
311 LLVMTypeRef type = LLVMTypeOf(v);
312 return LLVMBuildBitCast(ctx->builder, v, ac_to_float_type(ctx, type), "");
313 }
314
315
316 LLVMValueRef
317 ac_build_intrinsic(struct ac_llvm_context *ctx, const char *name,
318 LLVMTypeRef return_type, LLVMValueRef *params,
319 unsigned param_count, unsigned attrib_mask)
320 {
321 LLVMValueRef function, call;
322 bool set_callsite_attrs = !(attrib_mask & AC_FUNC_ATTR_LEGACY);
323
324 function = LLVMGetNamedFunction(ctx->module, name);
325 if (!function) {
326 LLVMTypeRef param_types[32], function_type;
327 unsigned i;
328
329 assert(param_count <= 32);
330
331 for (i = 0; i < param_count; ++i) {
332 assert(params[i]);
333 param_types[i] = LLVMTypeOf(params[i]);
334 }
335 function_type =
336 LLVMFunctionType(return_type, param_types, param_count, 0);
337 function = LLVMAddFunction(ctx->module, name, function_type);
338
339 LLVMSetFunctionCallConv(function, LLVMCCallConv);
340 LLVMSetLinkage(function, LLVMExternalLinkage);
341
342 if (!set_callsite_attrs)
343 ac_add_func_attributes(ctx->context, function, attrib_mask);
344 }
345
346 call = LLVMBuildCall(ctx->builder, function, params, param_count, "");
347 if (set_callsite_attrs)
348 ac_add_func_attributes(ctx->context, call, attrib_mask);
349 return call;
350 }
351
352 /**
353 * Given the i32 or vNi32 \p type, generate the textual name (e.g. for use with
354 * intrinsic names).
355 */
356 void ac_build_type_name_for_intr(LLVMTypeRef type, char *buf, unsigned bufsize)
357 {
358 LLVMTypeRef elem_type = type;
359
360 assert(bufsize >= 8);
361
362 if (LLVMGetTypeKind(type) == LLVMVectorTypeKind) {
363 int ret = snprintf(buf, bufsize, "v%u",
364 LLVMGetVectorSize(type));
365 if (ret < 0) {
366 char *type_name = LLVMPrintTypeToString(type);
367 fprintf(stderr, "Error building type name for: %s\n",
368 type_name);
369 LLVMDisposeMessage(type_name);
370 return;
371 }
372 elem_type = LLVMGetElementType(type);
373 buf += ret;
374 bufsize -= ret;
375 }
376 switch (LLVMGetTypeKind(elem_type)) {
377 default: break;
378 case LLVMIntegerTypeKind:
379 snprintf(buf, bufsize, "i%d", LLVMGetIntTypeWidth(elem_type));
380 break;
381 case LLVMHalfTypeKind:
382 snprintf(buf, bufsize, "f16");
383 break;
384 case LLVMFloatTypeKind:
385 snprintf(buf, bufsize, "f32");
386 break;
387 case LLVMDoubleTypeKind:
388 snprintf(buf, bufsize, "f64");
389 break;
390 }
391 }
392
393 /**
394 * Helper function that builds an LLVM IR PHI node and immediately adds
395 * incoming edges.
396 */
397 LLVMValueRef
398 ac_build_phi(struct ac_llvm_context *ctx, LLVMTypeRef type,
399 unsigned count_incoming, LLVMValueRef *values,
400 LLVMBasicBlockRef *blocks)
401 {
402 LLVMValueRef phi = LLVMBuildPhi(ctx->builder, type, "");
403 LLVMAddIncoming(phi, values, blocks, count_incoming);
404 return phi;
405 }
406
407 void ac_build_s_barrier(struct ac_llvm_context *ctx)
408 {
409 ac_build_intrinsic(ctx, "llvm.amdgcn.s.barrier", ctx->voidt, NULL,
410 0, AC_FUNC_ATTR_CONVERGENT);
411 }
412
413 /* Prevent optimizations (at least of memory accesses) across the current
414 * point in the program by emitting empty inline assembly that is marked as
415 * having side effects.
416 *
417 * Optionally, a value can be passed through the inline assembly to prevent
418 * LLVM from hoisting calls to ReadNone functions.
419 */
420 void
421 ac_build_optimization_barrier(struct ac_llvm_context *ctx,
422 LLVMValueRef *pvgpr)
423 {
424 static int counter = 0;
425
426 LLVMBuilderRef builder = ctx->builder;
427 char code[16];
428
429 snprintf(code, sizeof(code), "; %d", p_atomic_inc_return(&counter));
430
431 if (!pvgpr) {
432 LLVMTypeRef ftype = LLVMFunctionType(ctx->voidt, NULL, 0, false);
433 LLVMValueRef inlineasm = LLVMConstInlineAsm(ftype, code, "", true, false);
434 LLVMBuildCall(builder, inlineasm, NULL, 0, "");
435 } else {
436 LLVMTypeRef ftype = LLVMFunctionType(ctx->i32, &ctx->i32, 1, false);
437 LLVMValueRef inlineasm = LLVMConstInlineAsm(ftype, code, "=v,0", true, false);
438 LLVMTypeRef type = LLVMTypeOf(*pvgpr);
439 unsigned bitsize = ac_get_elem_bits(ctx, type);
440 LLVMValueRef vgpr = *pvgpr;
441 LLVMTypeRef vgpr_type;
442 unsigned vgpr_size;
443 LLVMValueRef vgpr0;
444
445 if (bitsize < 32)
446 vgpr = LLVMBuildZExt(ctx->builder, vgpr, ctx->i32, "");
447
448 vgpr_type = LLVMTypeOf(vgpr);
449 vgpr_size = ac_get_type_size(vgpr_type);
450
451 assert(vgpr_size % 4 == 0);
452
453 vgpr = LLVMBuildBitCast(builder, vgpr, LLVMVectorType(ctx->i32, vgpr_size / 4), "");
454 vgpr0 = LLVMBuildExtractElement(builder, vgpr, ctx->i32_0, "");
455 vgpr0 = LLVMBuildCall(builder, inlineasm, &vgpr0, 1, "");
456 vgpr = LLVMBuildInsertElement(builder, vgpr, vgpr0, ctx->i32_0, "");
457 vgpr = LLVMBuildBitCast(builder, vgpr, vgpr_type, "");
458
459 if (bitsize < 32)
460 vgpr = LLVMBuildTrunc(builder, vgpr, type, "");
461
462 *pvgpr = vgpr;
463 }
464 }
465
466 LLVMValueRef
467 ac_build_shader_clock(struct ac_llvm_context *ctx)
468 {
469 const char *intr = LLVM_VERSION_MAJOR >= 9 && ctx->chip_class >= GFX8 ?
470 "llvm.amdgcn.s.memrealtime" : "llvm.readcyclecounter";
471 LLVMValueRef tmp = ac_build_intrinsic(ctx, intr, ctx->i64, NULL, 0, 0);
472 return LLVMBuildBitCast(ctx->builder, tmp, ctx->v2i32, "");
473 }
474
475 LLVMValueRef
476 ac_build_ballot(struct ac_llvm_context *ctx,
477 LLVMValueRef value)
478 {
479 const char *name;
480
481 if (LLVM_VERSION_MAJOR >= 9) {
482 if (ctx->wave_size == 64)
483 name = "llvm.amdgcn.icmp.i64.i32";
484 else
485 name = "llvm.amdgcn.icmp.i32.i32";
486 } else {
487 name = "llvm.amdgcn.icmp.i32";
488 }
489 LLVMValueRef args[3] = {
490 value,
491 ctx->i32_0,
492 LLVMConstInt(ctx->i32, LLVMIntNE, 0)
493 };
494
495 /* We currently have no other way to prevent LLVM from lifting the icmp
496 * calls to a dominating basic block.
497 */
498 ac_build_optimization_barrier(ctx, &args[0]);
499
500 args[0] = ac_to_integer(ctx, args[0]);
501
502 return ac_build_intrinsic(ctx, name, ctx->iN_wavemask, args, 3,
503 AC_FUNC_ATTR_NOUNWIND |
504 AC_FUNC_ATTR_READNONE |
505 AC_FUNC_ATTR_CONVERGENT);
506 }
507
508 LLVMValueRef ac_get_i1_sgpr_mask(struct ac_llvm_context *ctx,
509 LLVMValueRef value)
510 {
511 const char *name;
512
513 if (LLVM_VERSION_MAJOR >= 9) {
514 if (ctx->wave_size == 64)
515 name = "llvm.amdgcn.icmp.i64.i1";
516 else
517 name = "llvm.amdgcn.icmp.i32.i1";
518 } else {
519 name = "llvm.amdgcn.icmp.i1";
520 }
521 LLVMValueRef args[3] = {
522 value,
523 ctx->i1false,
524 LLVMConstInt(ctx->i32, LLVMIntNE, 0),
525 };
526
527 return ac_build_intrinsic(ctx, name, ctx->iN_wavemask, args, 3,
528 AC_FUNC_ATTR_NOUNWIND |
529 AC_FUNC_ATTR_READNONE |
530 AC_FUNC_ATTR_CONVERGENT);
531 }
532
533 LLVMValueRef
534 ac_build_vote_all(struct ac_llvm_context *ctx, LLVMValueRef value)
535 {
536 LLVMValueRef active_set = ac_build_ballot(ctx, ctx->i32_1);
537 LLVMValueRef vote_set = ac_build_ballot(ctx, value);
538 return LLVMBuildICmp(ctx->builder, LLVMIntEQ, vote_set, active_set, "");
539 }
540
541 LLVMValueRef
542 ac_build_vote_any(struct ac_llvm_context *ctx, LLVMValueRef value)
543 {
544 LLVMValueRef vote_set = ac_build_ballot(ctx, value);
545 return LLVMBuildICmp(ctx->builder, LLVMIntNE, vote_set,
546 LLVMConstInt(ctx->iN_wavemask, 0, 0), "");
547 }
548
549 LLVMValueRef
550 ac_build_vote_eq(struct ac_llvm_context *ctx, LLVMValueRef value)
551 {
552 LLVMValueRef active_set = ac_build_ballot(ctx, ctx->i32_1);
553 LLVMValueRef vote_set = ac_build_ballot(ctx, value);
554
555 LLVMValueRef all = LLVMBuildICmp(ctx->builder, LLVMIntEQ,
556 vote_set, active_set, "");
557 LLVMValueRef none = LLVMBuildICmp(ctx->builder, LLVMIntEQ,
558 vote_set,
559 LLVMConstInt(ctx->iN_wavemask, 0, 0), "");
560 return LLVMBuildOr(ctx->builder, all, none, "");
561 }
562
563 LLVMValueRef
564 ac_build_varying_gather_values(struct ac_llvm_context *ctx, LLVMValueRef *values,
565 unsigned value_count, unsigned component)
566 {
567 LLVMValueRef vec = NULL;
568
569 if (value_count == 1) {
570 return values[component];
571 } else if (!value_count)
572 unreachable("value_count is 0");
573
574 for (unsigned i = component; i < value_count + component; i++) {
575 LLVMValueRef value = values[i];
576
577 if (i == component)
578 vec = LLVMGetUndef( LLVMVectorType(LLVMTypeOf(value), value_count));
579 LLVMValueRef index = LLVMConstInt(ctx->i32, i - component, false);
580 vec = LLVMBuildInsertElement(ctx->builder, vec, value, index, "");
581 }
582 return vec;
583 }
584
585 LLVMValueRef
586 ac_build_gather_values_extended(struct ac_llvm_context *ctx,
587 LLVMValueRef *values,
588 unsigned value_count,
589 unsigned value_stride,
590 bool load,
591 bool always_vector)
592 {
593 LLVMBuilderRef builder = ctx->builder;
594 LLVMValueRef vec = NULL;
595 unsigned i;
596
597 if (value_count == 1 && !always_vector) {
598 if (load)
599 return LLVMBuildLoad(builder, values[0], "");
600 return values[0];
601 } else if (!value_count)
602 unreachable("value_count is 0");
603
604 for (i = 0; i < value_count; i++) {
605 LLVMValueRef value = values[i * value_stride];
606 if (load)
607 value = LLVMBuildLoad(builder, value, "");
608
609 if (!i)
610 vec = LLVMGetUndef( LLVMVectorType(LLVMTypeOf(value), value_count));
611 LLVMValueRef index = LLVMConstInt(ctx->i32, i, false);
612 vec = LLVMBuildInsertElement(builder, vec, value, index, "");
613 }
614 return vec;
615 }
616
617 LLVMValueRef
618 ac_build_gather_values(struct ac_llvm_context *ctx,
619 LLVMValueRef *values,
620 unsigned value_count)
621 {
622 return ac_build_gather_values_extended(ctx, values, value_count, 1, false, false);
623 }
624
625 /* Expand a scalar or vector to <dst_channels x type> by filling the remaining
626 * channels with undef. Extract at most src_channels components from the input.
627 */
628 static LLVMValueRef
629 ac_build_expand(struct ac_llvm_context *ctx,
630 LLVMValueRef value,
631 unsigned src_channels,
632 unsigned dst_channels)
633 {
634 LLVMTypeRef elemtype;
635 LLVMValueRef chan[dst_channels];
636
637 if (LLVMGetTypeKind(LLVMTypeOf(value)) == LLVMVectorTypeKind) {
638 unsigned vec_size = LLVMGetVectorSize(LLVMTypeOf(value));
639
640 if (src_channels == dst_channels && vec_size == dst_channels)
641 return value;
642
643 src_channels = MIN2(src_channels, vec_size);
644
645 for (unsigned i = 0; i < src_channels; i++)
646 chan[i] = ac_llvm_extract_elem(ctx, value, i);
647
648 elemtype = LLVMGetElementType(LLVMTypeOf(value));
649 } else {
650 if (src_channels) {
651 assert(src_channels == 1);
652 chan[0] = value;
653 }
654 elemtype = LLVMTypeOf(value);
655 }
656
657 for (unsigned i = src_channels; i < dst_channels; i++)
658 chan[i] = LLVMGetUndef(elemtype);
659
660 return ac_build_gather_values(ctx, chan, dst_channels);
661 }
662
663 /* Extract components [start, start + channels) from a vector.
664 */
665 LLVMValueRef
666 ac_extract_components(struct ac_llvm_context *ctx,
667 LLVMValueRef value,
668 unsigned start,
669 unsigned channels)
670 {
671 LLVMValueRef chan[channels];
672
673 for (unsigned i = 0; i < channels; i++)
674 chan[i] = ac_llvm_extract_elem(ctx, value, i + start);
675
676 return ac_build_gather_values(ctx, chan, channels);
677 }
678
679 /* Expand a scalar or vector to <4 x type> by filling the remaining channels
680 * with undef. Extract at most num_channels components from the input.
681 */
682 LLVMValueRef ac_build_expand_to_vec4(struct ac_llvm_context *ctx,
683 LLVMValueRef value,
684 unsigned num_channels)
685 {
686 return ac_build_expand(ctx, value, num_channels, 4);
687 }
688
689 LLVMValueRef ac_build_round(struct ac_llvm_context *ctx, LLVMValueRef value)
690 {
691 unsigned type_size = ac_get_type_size(LLVMTypeOf(value));
692 const char *name;
693
694 if (type_size == 2)
695 name = "llvm.rint.f16";
696 else if (type_size == 4)
697 name = "llvm.rint.f32";
698 else
699 name = "llvm.rint.f64";
700
701 return ac_build_intrinsic(ctx, name, LLVMTypeOf(value), &value, 1,
702 AC_FUNC_ATTR_READNONE);
703 }
704
705 LLVMValueRef
706 ac_build_fdiv(struct ac_llvm_context *ctx,
707 LLVMValueRef num,
708 LLVMValueRef den)
709 {
710 /* If we do (num / den), LLVM >= 7.0 does:
711 * return num * v_rcp_f32(den * (fabs(den) > 0x1.0p+96f ? 0x1.0p-32f : 1.0f));
712 *
713 * If we do (num * (1 / den)), LLVM does:
714 * return num * v_rcp_f32(den);
715 */
716 LLVMValueRef one = LLVMConstReal(LLVMTypeOf(num), 1.0);
717 LLVMValueRef rcp = LLVMBuildFDiv(ctx->builder, one, den, "");
718 LLVMValueRef ret = LLVMBuildFMul(ctx->builder, num, rcp, "");
719
720 /* Use v_rcp_f32 instead of precise division. */
721 if (!LLVMIsConstant(ret))
722 LLVMSetMetadata(ret, ctx->fpmath_md_kind, ctx->fpmath_md_2p5_ulp);
723 return ret;
724 }
725
726 /* See fast_idiv_by_const.h. */
727 /* Set: increment = util_fast_udiv_info::increment ? multiplier : 0; */
728 LLVMValueRef ac_build_fast_udiv(struct ac_llvm_context *ctx,
729 LLVMValueRef num,
730 LLVMValueRef multiplier,
731 LLVMValueRef pre_shift,
732 LLVMValueRef post_shift,
733 LLVMValueRef increment)
734 {
735 LLVMBuilderRef builder = ctx->builder;
736
737 num = LLVMBuildLShr(builder, num, pre_shift, "");
738 num = LLVMBuildMul(builder,
739 LLVMBuildZExt(builder, num, ctx->i64, ""),
740 LLVMBuildZExt(builder, multiplier, ctx->i64, ""), "");
741 num = LLVMBuildAdd(builder, num,
742 LLVMBuildZExt(builder, increment, ctx->i64, ""), "");
743 num = LLVMBuildLShr(builder, num, LLVMConstInt(ctx->i64, 32, 0), "");
744 num = LLVMBuildTrunc(builder, num, ctx->i32, "");
745 return LLVMBuildLShr(builder, num, post_shift, "");
746 }
747
748 /* See fast_idiv_by_const.h. */
749 /* If num != UINT_MAX, this more efficient version can be used. */
750 /* Set: increment = util_fast_udiv_info::increment; */
751 LLVMValueRef ac_build_fast_udiv_nuw(struct ac_llvm_context *ctx,
752 LLVMValueRef num,
753 LLVMValueRef multiplier,
754 LLVMValueRef pre_shift,
755 LLVMValueRef post_shift,
756 LLVMValueRef increment)
757 {
758 LLVMBuilderRef builder = ctx->builder;
759
760 num = LLVMBuildLShr(builder, num, pre_shift, "");
761 num = LLVMBuildNUWAdd(builder, num, increment, "");
762 num = LLVMBuildMul(builder,
763 LLVMBuildZExt(builder, num, ctx->i64, ""),
764 LLVMBuildZExt(builder, multiplier, ctx->i64, ""), "");
765 num = LLVMBuildLShr(builder, num, LLVMConstInt(ctx->i64, 32, 0), "");
766 num = LLVMBuildTrunc(builder, num, ctx->i32, "");
767 return LLVMBuildLShr(builder, num, post_shift, "");
768 }
769
770 /* See fast_idiv_by_const.h. */
771 /* Both operands must fit in 31 bits and the divisor must not be 1. */
772 LLVMValueRef ac_build_fast_udiv_u31_d_not_one(struct ac_llvm_context *ctx,
773 LLVMValueRef num,
774 LLVMValueRef multiplier,
775 LLVMValueRef post_shift)
776 {
777 LLVMBuilderRef builder = ctx->builder;
778
779 num = LLVMBuildMul(builder,
780 LLVMBuildZExt(builder, num, ctx->i64, ""),
781 LLVMBuildZExt(builder, multiplier, ctx->i64, ""), "");
782 num = LLVMBuildLShr(builder, num, LLVMConstInt(ctx->i64, 32, 0), "");
783 num = LLVMBuildTrunc(builder, num, ctx->i32, "");
784 return LLVMBuildLShr(builder, num, post_shift, "");
785 }
786
787 /* Coordinates for cube map selection. sc, tc, and ma are as in Table 8.27
788 * of the OpenGL 4.5 (Compatibility Profile) specification, except ma is
789 * already multiplied by two. id is the cube face number.
790 */
791 struct cube_selection_coords {
792 LLVMValueRef stc[2];
793 LLVMValueRef ma;
794 LLVMValueRef id;
795 };
796
797 static void
798 build_cube_intrinsic(struct ac_llvm_context *ctx,
799 LLVMValueRef in[3],
800 struct cube_selection_coords *out)
801 {
802 LLVMTypeRef f32 = ctx->f32;
803
804 out->stc[1] = ac_build_intrinsic(ctx, "llvm.amdgcn.cubetc",
805 f32, in, 3, AC_FUNC_ATTR_READNONE);
806 out->stc[0] = ac_build_intrinsic(ctx, "llvm.amdgcn.cubesc",
807 f32, in, 3, AC_FUNC_ATTR_READNONE);
808 out->ma = ac_build_intrinsic(ctx, "llvm.amdgcn.cubema",
809 f32, in, 3, AC_FUNC_ATTR_READNONE);
810 out->id = ac_build_intrinsic(ctx, "llvm.amdgcn.cubeid",
811 f32, in, 3, AC_FUNC_ATTR_READNONE);
812 }
813
814 /**
815 * Build a manual selection sequence for cube face sc/tc coordinates and
816 * major axis vector (multiplied by 2 for consistency) for the given
817 * vec3 \p coords, for the face implied by \p selcoords.
818 *
819 * For the major axis, we always adjust the sign to be in the direction of
820 * selcoords.ma; i.e., a positive out_ma means that coords is pointed towards
821 * the selcoords major axis.
822 */
823 static void build_cube_select(struct ac_llvm_context *ctx,
824 const struct cube_selection_coords *selcoords,
825 const LLVMValueRef *coords,
826 LLVMValueRef *out_st,
827 LLVMValueRef *out_ma)
828 {
829 LLVMBuilderRef builder = ctx->builder;
830 LLVMTypeRef f32 = LLVMTypeOf(coords[0]);
831 LLVMValueRef is_ma_positive;
832 LLVMValueRef sgn_ma;
833 LLVMValueRef is_ma_z, is_not_ma_z;
834 LLVMValueRef is_ma_y;
835 LLVMValueRef is_ma_x;
836 LLVMValueRef sgn;
837 LLVMValueRef tmp;
838
839 is_ma_positive = LLVMBuildFCmp(builder, LLVMRealUGE,
840 selcoords->ma, LLVMConstReal(f32, 0.0), "");
841 sgn_ma = LLVMBuildSelect(builder, is_ma_positive,
842 LLVMConstReal(f32, 1.0), LLVMConstReal(f32, -1.0), "");
843
844 is_ma_z = LLVMBuildFCmp(builder, LLVMRealUGE, selcoords->id, LLVMConstReal(f32, 4.0), "");
845 is_not_ma_z = LLVMBuildNot(builder, is_ma_z, "");
846 is_ma_y = LLVMBuildAnd(builder, is_not_ma_z,
847 LLVMBuildFCmp(builder, LLVMRealUGE, selcoords->id, LLVMConstReal(f32, 2.0), ""), "");
848 is_ma_x = LLVMBuildAnd(builder, is_not_ma_z, LLVMBuildNot(builder, is_ma_y, ""), "");
849
850 /* Select sc */
851 tmp = LLVMBuildSelect(builder, is_ma_x, coords[2], coords[0], "");
852 sgn = LLVMBuildSelect(builder, is_ma_y, LLVMConstReal(f32, 1.0),
853 LLVMBuildSelect(builder, is_ma_z, sgn_ma,
854 LLVMBuildFNeg(builder, sgn_ma, ""), ""), "");
855 out_st[0] = LLVMBuildFMul(builder, tmp, sgn, "");
856
857 /* Select tc */
858 tmp = LLVMBuildSelect(builder, is_ma_y, coords[2], coords[1], "");
859 sgn = LLVMBuildSelect(builder, is_ma_y, sgn_ma,
860 LLVMConstReal(f32, -1.0), "");
861 out_st[1] = LLVMBuildFMul(builder, tmp, sgn, "");
862
863 /* Select ma */
864 tmp = LLVMBuildSelect(builder, is_ma_z, coords[2],
865 LLVMBuildSelect(builder, is_ma_y, coords[1], coords[0], ""), "");
866 tmp = ac_build_intrinsic(ctx, "llvm.fabs.f32",
867 ctx->f32, &tmp, 1, AC_FUNC_ATTR_READNONE);
868 *out_ma = LLVMBuildFMul(builder, tmp, LLVMConstReal(f32, 2.0), "");
869 }
870
871 void
872 ac_prepare_cube_coords(struct ac_llvm_context *ctx,
873 bool is_deriv, bool is_array, bool is_lod,
874 LLVMValueRef *coords_arg,
875 LLVMValueRef *derivs_arg)
876 {
877
878 LLVMBuilderRef builder = ctx->builder;
879 struct cube_selection_coords selcoords;
880 LLVMValueRef coords[3];
881 LLVMValueRef invma;
882
883 if (is_array && !is_lod) {
884 LLVMValueRef tmp = ac_build_round(ctx, coords_arg[3]);
885
886 /* Section 8.9 (Texture Functions) of the GLSL 4.50 spec says:
887 *
888 * "For Array forms, the array layer used will be
889 *
890 * max(0, min(d−1, floor(layer+0.5)))
891 *
892 * where d is the depth of the texture array and layer
893 * comes from the component indicated in the tables below.
894 * Workaroudn for an issue where the layer is taken from a
895 * helper invocation which happens to fall on a different
896 * layer due to extrapolation."
897 *
898 * GFX8 and earlier attempt to implement this in hardware by
899 * clamping the value of coords[2] = (8 * layer) + face.
900 * Unfortunately, this means that the we end up with the wrong
901 * face when clamping occurs.
902 *
903 * Clamp the layer earlier to work around the issue.
904 */
905 if (ctx->chip_class <= GFX8) {
906 LLVMValueRef ge0;
907 ge0 = LLVMBuildFCmp(builder, LLVMRealOGE, tmp, ctx->f32_0, "");
908 tmp = LLVMBuildSelect(builder, ge0, tmp, ctx->f32_0, "");
909 }
910
911 coords_arg[3] = tmp;
912 }
913
914 build_cube_intrinsic(ctx, coords_arg, &selcoords);
915
916 invma = ac_build_intrinsic(ctx, "llvm.fabs.f32",
917 ctx->f32, &selcoords.ma, 1, AC_FUNC_ATTR_READNONE);
918 invma = ac_build_fdiv(ctx, LLVMConstReal(ctx->f32, 1.0), invma);
919
920 for (int i = 0; i < 2; ++i)
921 coords[i] = LLVMBuildFMul(builder, selcoords.stc[i], invma, "");
922
923 coords[2] = selcoords.id;
924
925 if (is_deriv && derivs_arg) {
926 LLVMValueRef derivs[4];
927 int axis;
928
929 /* Convert cube derivatives to 2D derivatives. */
930 for (axis = 0; axis < 2; axis++) {
931 LLVMValueRef deriv_st[2];
932 LLVMValueRef deriv_ma;
933
934 /* Transform the derivative alongside the texture
935 * coordinate. Mathematically, the correct formula is
936 * as follows. Assume we're projecting onto the +Z face
937 * and denote by dx/dh the derivative of the (original)
938 * X texture coordinate with respect to horizontal
939 * window coordinates. The projection onto the +Z face
940 * plane is:
941 *
942 * f(x,z) = x/z
943 *
944 * Then df/dh = df/dx * dx/dh + df/dz * dz/dh
945 * = 1/z * dx/dh - x/z * 1/z * dz/dh.
946 *
947 * This motivatives the implementation below.
948 *
949 * Whether this actually gives the expected results for
950 * apps that might feed in derivatives obtained via
951 * finite differences is anyone's guess. The OpenGL spec
952 * seems awfully quiet about how textureGrad for cube
953 * maps should be handled.
954 */
955 build_cube_select(ctx, &selcoords, &derivs_arg[axis * 3],
956 deriv_st, &deriv_ma);
957
958 deriv_ma = LLVMBuildFMul(builder, deriv_ma, invma, "");
959
960 for (int i = 0; i < 2; ++i)
961 derivs[axis * 2 + i] =
962 LLVMBuildFSub(builder,
963 LLVMBuildFMul(builder, deriv_st[i], invma, ""),
964 LLVMBuildFMul(builder, deriv_ma, coords[i], ""), "");
965 }
966
967 memcpy(derivs_arg, derivs, sizeof(derivs));
968 }
969
970 /* Shift the texture coordinate. This must be applied after the
971 * derivative calculation.
972 */
973 for (int i = 0; i < 2; ++i)
974 coords[i] = LLVMBuildFAdd(builder, coords[i], LLVMConstReal(ctx->f32, 1.5), "");
975
976 if (is_array) {
977 /* for cube arrays coord.z = coord.w(array_index) * 8 + face */
978 /* coords_arg.w component - array_index for cube arrays */
979 coords[2] = ac_build_fmad(ctx, coords_arg[3], LLVMConstReal(ctx->f32, 8.0), coords[2]);
980 }
981
982 memcpy(coords_arg, coords, sizeof(coords));
983 }
984
985
986 LLVMValueRef
987 ac_build_fs_interp(struct ac_llvm_context *ctx,
988 LLVMValueRef llvm_chan,
989 LLVMValueRef attr_number,
990 LLVMValueRef params,
991 LLVMValueRef i,
992 LLVMValueRef j)
993 {
994 LLVMValueRef args[5];
995 LLVMValueRef p1;
996
997 args[0] = i;
998 args[1] = llvm_chan;
999 args[2] = attr_number;
1000 args[3] = params;
1001
1002 p1 = ac_build_intrinsic(ctx, "llvm.amdgcn.interp.p1",
1003 ctx->f32, args, 4, AC_FUNC_ATTR_READNONE);
1004
1005 args[0] = p1;
1006 args[1] = j;
1007 args[2] = llvm_chan;
1008 args[3] = attr_number;
1009 args[4] = params;
1010
1011 return ac_build_intrinsic(ctx, "llvm.amdgcn.interp.p2",
1012 ctx->f32, args, 5, AC_FUNC_ATTR_READNONE);
1013 }
1014
1015 LLVMValueRef
1016 ac_build_fs_interp_f16(struct ac_llvm_context *ctx,
1017 LLVMValueRef llvm_chan,
1018 LLVMValueRef attr_number,
1019 LLVMValueRef params,
1020 LLVMValueRef i,
1021 LLVMValueRef j)
1022 {
1023 LLVMValueRef args[6];
1024 LLVMValueRef p1;
1025
1026 args[0] = i;
1027 args[1] = llvm_chan;
1028 args[2] = attr_number;
1029 args[3] = ctx->i1false;
1030 args[4] = params;
1031
1032 p1 = ac_build_intrinsic(ctx, "llvm.amdgcn.interp.p1.f16",
1033 ctx->f32, args, 5, AC_FUNC_ATTR_READNONE);
1034
1035 args[0] = p1;
1036 args[1] = j;
1037 args[2] = llvm_chan;
1038 args[3] = attr_number;
1039 args[4] = ctx->i1false;
1040 args[5] = params;
1041
1042 return ac_build_intrinsic(ctx, "llvm.amdgcn.interp.p2.f16",
1043 ctx->f16, args, 6, AC_FUNC_ATTR_READNONE);
1044 }
1045
1046 LLVMValueRef
1047 ac_build_fs_interp_mov(struct ac_llvm_context *ctx,
1048 LLVMValueRef parameter,
1049 LLVMValueRef llvm_chan,
1050 LLVMValueRef attr_number,
1051 LLVMValueRef params)
1052 {
1053 LLVMValueRef args[4];
1054
1055 args[0] = parameter;
1056 args[1] = llvm_chan;
1057 args[2] = attr_number;
1058 args[3] = params;
1059
1060 return ac_build_intrinsic(ctx, "llvm.amdgcn.interp.mov",
1061 ctx->f32, args, 4, AC_FUNC_ATTR_READNONE);
1062 }
1063
1064 LLVMValueRef
1065 ac_build_gep_ptr(struct ac_llvm_context *ctx,
1066 LLVMValueRef base_ptr,
1067 LLVMValueRef index)
1068 {
1069 return LLVMBuildGEP(ctx->builder, base_ptr, &index, 1, "");
1070 }
1071
1072 LLVMValueRef
1073 ac_build_gep0(struct ac_llvm_context *ctx,
1074 LLVMValueRef base_ptr,
1075 LLVMValueRef index)
1076 {
1077 LLVMValueRef indices[2] = {
1078 ctx->i32_0,
1079 index,
1080 };
1081 return LLVMBuildGEP(ctx->builder, base_ptr, indices, 2, "");
1082 }
1083
1084 LLVMValueRef ac_build_pointer_add(struct ac_llvm_context *ctx, LLVMValueRef ptr,
1085 LLVMValueRef index)
1086 {
1087 return LLVMBuildPointerCast(ctx->builder,
1088 LLVMBuildGEP(ctx->builder, ptr, &index, 1, ""),
1089 LLVMTypeOf(ptr), "");
1090 }
1091
1092 void
1093 ac_build_indexed_store(struct ac_llvm_context *ctx,
1094 LLVMValueRef base_ptr, LLVMValueRef index,
1095 LLVMValueRef value)
1096 {
1097 LLVMBuildStore(ctx->builder, value,
1098 ac_build_gep0(ctx, base_ptr, index));
1099 }
1100
1101 /**
1102 * Build an LLVM bytecode indexed load using LLVMBuildGEP + LLVMBuildLoad.
1103 * It's equivalent to doing a load from &base_ptr[index].
1104 *
1105 * \param base_ptr Where the array starts.
1106 * \param index The element index into the array.
1107 * \param uniform Whether the base_ptr and index can be assumed to be
1108 * dynamically uniform (i.e. load to an SGPR)
1109 * \param invariant Whether the load is invariant (no other opcodes affect it)
1110 * \param no_unsigned_wraparound
1111 * For all possible re-associations and re-distributions of an expression
1112 * "base_ptr + index * elemsize" into "addr + offset" (excluding GEPs
1113 * without inbounds in base_ptr), this parameter is true if "addr + offset"
1114 * does not result in an unsigned integer wraparound. This is used for
1115 * optimal code generation of 32-bit pointer arithmetic.
1116 *
1117 * For example, a 32-bit immediate offset that causes a 32-bit unsigned
1118 * integer wraparound can't be an imm offset in s_load_dword, because
1119 * the instruction performs "addr + offset" in 64 bits.
1120 *
1121 * Expected usage for bindless textures by chaining GEPs:
1122 * // possible unsigned wraparound, don't use InBounds:
1123 * ptr1 = LLVMBuildGEP(base_ptr, index);
1124 * image = load(ptr1); // becomes "s_load ptr1, 0"
1125 *
1126 * ptr2 = LLVMBuildInBoundsGEP(ptr1, 32 / elemsize);
1127 * sampler = load(ptr2); // becomes "s_load ptr1, 32" thanks to InBounds
1128 */
1129 static LLVMValueRef
1130 ac_build_load_custom(struct ac_llvm_context *ctx, LLVMValueRef base_ptr,
1131 LLVMValueRef index, bool uniform, bool invariant,
1132 bool no_unsigned_wraparound)
1133 {
1134 LLVMValueRef pointer, result;
1135
1136 if (no_unsigned_wraparound &&
1137 LLVMGetPointerAddressSpace(LLVMTypeOf(base_ptr)) == AC_ADDR_SPACE_CONST_32BIT)
1138 pointer = LLVMBuildInBoundsGEP(ctx->builder, base_ptr, &index, 1, "");
1139 else
1140 pointer = LLVMBuildGEP(ctx->builder, base_ptr, &index, 1, "");
1141
1142 if (uniform)
1143 LLVMSetMetadata(pointer, ctx->uniform_md_kind, ctx->empty_md);
1144 result = LLVMBuildLoad(ctx->builder, pointer, "");
1145 if (invariant)
1146 LLVMSetMetadata(result, ctx->invariant_load_md_kind, ctx->empty_md);
1147 return result;
1148 }
1149
1150 LLVMValueRef ac_build_load(struct ac_llvm_context *ctx, LLVMValueRef base_ptr,
1151 LLVMValueRef index)
1152 {
1153 return ac_build_load_custom(ctx, base_ptr, index, false, false, false);
1154 }
1155
1156 LLVMValueRef ac_build_load_invariant(struct ac_llvm_context *ctx,
1157 LLVMValueRef base_ptr, LLVMValueRef index)
1158 {
1159 return ac_build_load_custom(ctx, base_ptr, index, false, true, false);
1160 }
1161
1162 /* This assumes that there is no unsigned integer wraparound during the address
1163 * computation, excluding all GEPs within base_ptr. */
1164 LLVMValueRef ac_build_load_to_sgpr(struct ac_llvm_context *ctx,
1165 LLVMValueRef base_ptr, LLVMValueRef index)
1166 {
1167 return ac_build_load_custom(ctx, base_ptr, index, true, true, true);
1168 }
1169
1170 /* See ac_build_load_custom() documentation. */
1171 LLVMValueRef ac_build_load_to_sgpr_uint_wraparound(struct ac_llvm_context *ctx,
1172 LLVMValueRef base_ptr, LLVMValueRef index)
1173 {
1174 return ac_build_load_custom(ctx, base_ptr, index, true, true, false);
1175 }
1176
1177 static unsigned get_load_cache_policy(struct ac_llvm_context *ctx,
1178 unsigned cache_policy)
1179 {
1180 return cache_policy |
1181 (ctx->chip_class >= GFX10 && cache_policy & ac_glc ? ac_dlc : 0);
1182 }
1183
1184 static void
1185 ac_build_buffer_store_common(struct ac_llvm_context *ctx,
1186 LLVMValueRef rsrc,
1187 LLVMValueRef data,
1188 LLVMValueRef vindex,
1189 LLVMValueRef voffset,
1190 LLVMValueRef soffset,
1191 unsigned num_channels,
1192 LLVMTypeRef return_channel_type,
1193 unsigned cache_policy,
1194 bool use_format,
1195 bool structurized)
1196 {
1197 LLVMValueRef args[6];
1198 int idx = 0;
1199 args[idx++] = data;
1200 args[idx++] = LLVMBuildBitCast(ctx->builder, rsrc, ctx->v4i32, "");
1201 if (structurized)
1202 args[idx++] = vindex ? vindex : ctx->i32_0;
1203 args[idx++] = voffset ? voffset : ctx->i32_0;
1204 args[idx++] = soffset ? soffset : ctx->i32_0;
1205 args[idx++] = LLVMConstInt(ctx->i32, cache_policy, 0);
1206 unsigned func = !ac_has_vec3_support(ctx->chip_class, use_format) && num_channels == 3 ? 4 : num_channels;
1207 const char *indexing_kind = structurized ? "struct" : "raw";
1208 char name[256], type_name[8];
1209
1210 LLVMTypeRef type = func > 1 ? LLVMVectorType(return_channel_type, func) : return_channel_type;
1211 ac_build_type_name_for_intr(type, type_name, sizeof(type_name));
1212
1213 if (use_format) {
1214 snprintf(name, sizeof(name), "llvm.amdgcn.%s.buffer.store.format.%s",
1215 indexing_kind, type_name);
1216 } else {
1217 snprintf(name, sizeof(name), "llvm.amdgcn.%s.buffer.store.%s",
1218 indexing_kind, type_name);
1219 }
1220
1221 ac_build_intrinsic(ctx, name, ctx->voidt, args, idx,
1222 AC_FUNC_ATTR_INACCESSIBLE_MEM_ONLY);
1223 }
1224
1225 void
1226 ac_build_buffer_store_format(struct ac_llvm_context *ctx,
1227 LLVMValueRef rsrc,
1228 LLVMValueRef data,
1229 LLVMValueRef vindex,
1230 LLVMValueRef voffset,
1231 unsigned num_channels,
1232 unsigned cache_policy)
1233 {
1234 ac_build_buffer_store_common(ctx, rsrc, data, vindex,
1235 voffset, NULL, num_channels,
1236 ctx->f32, cache_policy,
1237 true, true);
1238 }
1239
1240 /* TBUFFER_STORE_FORMAT_{X,XY,XYZ,XYZW} <- the suffix is selected by num_channels=1..4.
1241 * The type of vdata must be one of i32 (num_channels=1), v2i32 (num_channels=2),
1242 * or v4i32 (num_channels=3,4).
1243 */
1244 void
1245 ac_build_buffer_store_dword(struct ac_llvm_context *ctx,
1246 LLVMValueRef rsrc,
1247 LLVMValueRef vdata,
1248 unsigned num_channels,
1249 LLVMValueRef voffset,
1250 LLVMValueRef soffset,
1251 unsigned inst_offset,
1252 unsigned cache_policy)
1253 {
1254 /* Split 3 channel stores, because only LLVM 9+ support 3-channel
1255 * intrinsics. */
1256 if (num_channels == 3 && !ac_has_vec3_support(ctx->chip_class, false)) {
1257 LLVMValueRef v[3], v01;
1258
1259 for (int i = 0; i < 3; i++) {
1260 v[i] = LLVMBuildExtractElement(ctx->builder, vdata,
1261 LLVMConstInt(ctx->i32, i, 0), "");
1262 }
1263 v01 = ac_build_gather_values(ctx, v, 2);
1264
1265 ac_build_buffer_store_dword(ctx, rsrc, v01, 2, voffset,
1266 soffset, inst_offset, cache_policy);
1267 ac_build_buffer_store_dword(ctx, rsrc, v[2], 1, voffset,
1268 soffset, inst_offset + 8,
1269 cache_policy);
1270 return;
1271 }
1272
1273 /* SWIZZLE_ENABLE requires that soffset isn't folded into voffset
1274 * (voffset is swizzled, but soffset isn't swizzled).
1275 * llvm.amdgcn.buffer.store doesn't have a separate soffset parameter.
1276 */
1277 if (!(cache_policy & ac_swizzled)) {
1278 LLVMValueRef offset = soffset;
1279
1280 if (inst_offset)
1281 offset = LLVMBuildAdd(ctx->builder, offset,
1282 LLVMConstInt(ctx->i32, inst_offset, 0), "");
1283
1284 ac_build_buffer_store_common(ctx, rsrc, ac_to_float(ctx, vdata),
1285 ctx->i32_0, voffset, offset,
1286 num_channels, ctx->f32,
1287 cache_policy, false, false);
1288 return;
1289 }
1290
1291 static const unsigned dfmts[] = {
1292 V_008F0C_BUF_DATA_FORMAT_32,
1293 V_008F0C_BUF_DATA_FORMAT_32_32,
1294 V_008F0C_BUF_DATA_FORMAT_32_32_32,
1295 V_008F0C_BUF_DATA_FORMAT_32_32_32_32
1296 };
1297 unsigned dfmt = dfmts[num_channels - 1];
1298 unsigned nfmt = V_008F0C_BUF_NUM_FORMAT_UINT;
1299 LLVMValueRef immoffset = LLVMConstInt(ctx->i32, inst_offset, 0);
1300
1301 ac_build_raw_tbuffer_store(ctx, rsrc, vdata, voffset, soffset,
1302 immoffset, num_channels, dfmt, nfmt, cache_policy);
1303 }
1304
1305 static LLVMValueRef
1306 ac_build_buffer_load_common(struct ac_llvm_context *ctx,
1307 LLVMValueRef rsrc,
1308 LLVMValueRef vindex,
1309 LLVMValueRef voffset,
1310 LLVMValueRef soffset,
1311 unsigned num_channels,
1312 LLVMTypeRef channel_type,
1313 unsigned cache_policy,
1314 bool can_speculate,
1315 bool use_format,
1316 bool structurized)
1317 {
1318 LLVMValueRef args[5];
1319 int idx = 0;
1320 args[idx++] = LLVMBuildBitCast(ctx->builder, rsrc, ctx->v4i32, "");
1321 if (structurized)
1322 args[idx++] = vindex ? vindex : ctx->i32_0;
1323 args[idx++] = voffset ? voffset : ctx->i32_0;
1324 args[idx++] = soffset ? soffset : ctx->i32_0;
1325 args[idx++] = LLVMConstInt(ctx->i32, get_load_cache_policy(ctx, cache_policy), 0);
1326 unsigned func = !ac_has_vec3_support(ctx->chip_class, use_format) && num_channels == 3 ? 4 : num_channels;
1327 const char *indexing_kind = structurized ? "struct" : "raw";
1328 char name[256], type_name[8];
1329
1330 LLVMTypeRef type = func > 1 ? LLVMVectorType(channel_type, func) : channel_type;
1331 ac_build_type_name_for_intr(type, type_name, sizeof(type_name));
1332
1333 if (use_format) {
1334 snprintf(name, sizeof(name), "llvm.amdgcn.%s.buffer.load.format.%s",
1335 indexing_kind, type_name);
1336 } else {
1337 snprintf(name, sizeof(name), "llvm.amdgcn.%s.buffer.load.%s",
1338 indexing_kind, type_name);
1339 }
1340
1341 return ac_build_intrinsic(ctx, name, type, args, idx,
1342 ac_get_load_intr_attribs(can_speculate));
1343 }
1344
1345 LLVMValueRef
1346 ac_build_buffer_load(struct ac_llvm_context *ctx,
1347 LLVMValueRef rsrc,
1348 int num_channels,
1349 LLVMValueRef vindex,
1350 LLVMValueRef voffset,
1351 LLVMValueRef soffset,
1352 unsigned inst_offset,
1353 unsigned cache_policy,
1354 bool can_speculate,
1355 bool allow_smem)
1356 {
1357 LLVMValueRef offset = LLVMConstInt(ctx->i32, inst_offset, 0);
1358 if (voffset)
1359 offset = LLVMBuildAdd(ctx->builder, offset, voffset, "");
1360 if (soffset)
1361 offset = LLVMBuildAdd(ctx->builder, offset, soffset, "");
1362
1363 if (allow_smem && !(cache_policy & ac_slc) &&
1364 (!(cache_policy & ac_glc) || ctx->chip_class >= GFX8)) {
1365 assert(vindex == NULL);
1366
1367 LLVMValueRef result[8];
1368
1369 for (int i = 0; i < num_channels; i++) {
1370 if (i) {
1371 offset = LLVMBuildAdd(ctx->builder, offset,
1372 LLVMConstInt(ctx->i32, 4, 0), "");
1373 }
1374 LLVMValueRef args[3] = {
1375 rsrc,
1376 offset,
1377 LLVMConstInt(ctx->i32, get_load_cache_policy(ctx, cache_policy), 0),
1378 };
1379 result[i] = ac_build_intrinsic(ctx,
1380 "llvm.amdgcn.s.buffer.load.f32",
1381 ctx->f32, args, 3,
1382 AC_FUNC_ATTR_READNONE);
1383 }
1384 if (num_channels == 1)
1385 return result[0];
1386
1387 if (num_channels == 3 && !ac_has_vec3_support(ctx->chip_class, false))
1388 result[num_channels++] = LLVMGetUndef(ctx->f32);
1389 return ac_build_gather_values(ctx, result, num_channels);
1390 }
1391
1392 return ac_build_buffer_load_common(ctx, rsrc, vindex,
1393 offset, ctx->i32_0,
1394 num_channels, ctx->f32,
1395 cache_policy,
1396 can_speculate, false, false);
1397 }
1398
1399 LLVMValueRef ac_build_buffer_load_format(struct ac_llvm_context *ctx,
1400 LLVMValueRef rsrc,
1401 LLVMValueRef vindex,
1402 LLVMValueRef voffset,
1403 unsigned num_channels,
1404 unsigned cache_policy,
1405 bool can_speculate)
1406 {
1407 return ac_build_buffer_load_common(ctx, rsrc, vindex, voffset,
1408 ctx->i32_0, num_channels, ctx->f32,
1409 cache_policy, can_speculate,
1410 true, true);
1411 }
1412
1413 static LLVMValueRef
1414 ac_build_tbuffer_load(struct ac_llvm_context *ctx,
1415 LLVMValueRef rsrc,
1416 LLVMValueRef vindex,
1417 LLVMValueRef voffset,
1418 LLVMValueRef soffset,
1419 LLVMValueRef immoffset,
1420 unsigned num_channels,
1421 unsigned dfmt,
1422 unsigned nfmt,
1423 unsigned cache_policy,
1424 bool can_speculate,
1425 bool structurized)
1426 {
1427 voffset = LLVMBuildAdd(ctx->builder, voffset, immoffset, "");
1428
1429 LLVMValueRef args[6];
1430 int idx = 0;
1431 args[idx++] = LLVMBuildBitCast(ctx->builder, rsrc, ctx->v4i32, "");
1432 if (structurized)
1433 args[idx++] = vindex ? vindex : ctx->i32_0;
1434 args[idx++] = voffset ? voffset : ctx->i32_0;
1435 args[idx++] = soffset ? soffset : ctx->i32_0;
1436 args[idx++] = LLVMConstInt(ctx->i32, ac_get_tbuffer_format(ctx->chip_class, dfmt, nfmt), 0);
1437 args[idx++] = LLVMConstInt(ctx->i32, get_load_cache_policy(ctx, cache_policy), 0);
1438 unsigned func = !ac_has_vec3_support(ctx->chip_class, true) && num_channels == 3 ? 4 : num_channels;
1439 const char *indexing_kind = structurized ? "struct" : "raw";
1440 char name[256], type_name[8];
1441
1442 LLVMTypeRef type = func > 1 ? LLVMVectorType(ctx->i32, func) : ctx->i32;
1443 ac_build_type_name_for_intr(type, type_name, sizeof(type_name));
1444
1445 snprintf(name, sizeof(name), "llvm.amdgcn.%s.tbuffer.load.%s",
1446 indexing_kind, type_name);
1447
1448 return ac_build_intrinsic(ctx, name, type, args, idx,
1449 ac_get_load_intr_attribs(can_speculate));
1450 }
1451
1452 LLVMValueRef
1453 ac_build_struct_tbuffer_load(struct ac_llvm_context *ctx,
1454 LLVMValueRef rsrc,
1455 LLVMValueRef vindex,
1456 LLVMValueRef voffset,
1457 LLVMValueRef soffset,
1458 LLVMValueRef immoffset,
1459 unsigned num_channels,
1460 unsigned dfmt,
1461 unsigned nfmt,
1462 unsigned cache_policy,
1463 bool can_speculate)
1464 {
1465 return ac_build_tbuffer_load(ctx, rsrc, vindex, voffset, soffset,
1466 immoffset, num_channels, dfmt, nfmt,
1467 cache_policy, can_speculate, true);
1468 }
1469
1470 LLVMValueRef
1471 ac_build_raw_tbuffer_load(struct ac_llvm_context *ctx,
1472 LLVMValueRef rsrc,
1473 LLVMValueRef voffset,
1474 LLVMValueRef soffset,
1475 LLVMValueRef immoffset,
1476 unsigned num_channels,
1477 unsigned dfmt,
1478 unsigned nfmt,
1479 unsigned cache_policy,
1480 bool can_speculate)
1481 {
1482 return ac_build_tbuffer_load(ctx, rsrc, NULL, voffset, soffset,
1483 immoffset, num_channels, dfmt, nfmt,
1484 cache_policy, can_speculate, false);
1485 }
1486
1487 LLVMValueRef
1488 ac_build_tbuffer_load_short(struct ac_llvm_context *ctx,
1489 LLVMValueRef rsrc,
1490 LLVMValueRef voffset,
1491 LLVMValueRef soffset,
1492 LLVMValueRef immoffset,
1493 unsigned cache_policy)
1494 {
1495 LLVMValueRef res;
1496
1497 if (LLVM_VERSION_MAJOR >= 9) {
1498 voffset = LLVMBuildAdd(ctx->builder, voffset, immoffset, "");
1499
1500 /* LLVM 9+ supports i8/i16 with struct/raw intrinsics. */
1501 res = ac_build_buffer_load_common(ctx, rsrc, NULL,
1502 voffset, soffset,
1503 1, ctx->i16, cache_policy,
1504 false, false, false);
1505 } else {
1506 unsigned dfmt = V_008F0C_BUF_DATA_FORMAT_16;
1507 unsigned nfmt = V_008F0C_BUF_NUM_FORMAT_UINT;
1508
1509 res = ac_build_raw_tbuffer_load(ctx, rsrc, voffset, soffset,
1510 immoffset, 1, dfmt, nfmt, cache_policy,
1511 false);
1512
1513 res = LLVMBuildTrunc(ctx->builder, res, ctx->i16, "");
1514 }
1515
1516 return res;
1517 }
1518
1519 LLVMValueRef
1520 ac_build_tbuffer_load_byte(struct ac_llvm_context *ctx,
1521 LLVMValueRef rsrc,
1522 LLVMValueRef voffset,
1523 LLVMValueRef soffset,
1524 LLVMValueRef immoffset,
1525 unsigned cache_policy)
1526 {
1527 LLVMValueRef res;
1528
1529 if (LLVM_VERSION_MAJOR >= 9) {
1530 voffset = LLVMBuildAdd(ctx->builder, voffset, immoffset, "");
1531
1532 /* LLVM 9+ supports i8/i16 with struct/raw intrinsics. */
1533 res = ac_build_buffer_load_common(ctx, rsrc, NULL,
1534 voffset, soffset,
1535 1, ctx->i8, cache_policy,
1536 false, false, false);
1537 } else {
1538 unsigned dfmt = V_008F0C_BUF_DATA_FORMAT_8;
1539 unsigned nfmt = V_008F0C_BUF_NUM_FORMAT_UINT;
1540
1541 res = ac_build_raw_tbuffer_load(ctx, rsrc, voffset, soffset,
1542 immoffset, 1, dfmt, nfmt, cache_policy,
1543 false);
1544
1545 res = LLVMBuildTrunc(ctx->builder, res, ctx->i8, "");
1546 }
1547
1548 return res;
1549 }
1550
1551 /**
1552 * Convert an 11- or 10-bit unsigned floating point number to an f32.
1553 *
1554 * The input exponent is expected to be biased analogous to IEEE-754, i.e. by
1555 * 2^(exp_bits-1) - 1 (as defined in OpenGL and other graphics APIs).
1556 */
1557 static LLVMValueRef
1558 ac_ufN_to_float(struct ac_llvm_context *ctx, LLVMValueRef src, unsigned exp_bits, unsigned mant_bits)
1559 {
1560 assert(LLVMTypeOf(src) == ctx->i32);
1561
1562 LLVMValueRef tmp;
1563 LLVMValueRef mantissa;
1564 mantissa = LLVMBuildAnd(ctx->builder, src, LLVMConstInt(ctx->i32, (1 << mant_bits) - 1, false), "");
1565
1566 /* Converting normal numbers is just a shift + correcting the exponent bias */
1567 unsigned normal_shift = 23 - mant_bits;
1568 unsigned bias_shift = 127 - ((1 << (exp_bits - 1)) - 1);
1569 LLVMValueRef shifted, normal;
1570
1571 shifted = LLVMBuildShl(ctx->builder, src, LLVMConstInt(ctx->i32, normal_shift, false), "");
1572 normal = LLVMBuildAdd(ctx->builder, shifted, LLVMConstInt(ctx->i32, bias_shift << 23, false), "");
1573
1574 /* Converting nan/inf numbers is the same, but with a different exponent update */
1575 LLVMValueRef naninf;
1576 naninf = LLVMBuildOr(ctx->builder, normal, LLVMConstInt(ctx->i32, 0xff << 23, false), "");
1577
1578 /* Converting denormals is the complex case: determine the leading zeros of the
1579 * mantissa to obtain the correct shift for the mantissa and exponent correction.
1580 */
1581 LLVMValueRef denormal;
1582 LLVMValueRef params[2] = {
1583 mantissa,
1584 ctx->i1true, /* result can be undef when arg is 0 */
1585 };
1586 LLVMValueRef ctlz = ac_build_intrinsic(ctx, "llvm.ctlz.i32", ctx->i32,
1587 params, 2, AC_FUNC_ATTR_READNONE);
1588
1589 /* Shift such that the leading 1 ends up as the LSB of the exponent field. */
1590 tmp = LLVMBuildSub(ctx->builder, ctlz, LLVMConstInt(ctx->i32, 8, false), "");
1591 denormal = LLVMBuildShl(ctx->builder, mantissa, tmp, "");
1592
1593 unsigned denormal_exp = bias_shift + (32 - mant_bits) - 1;
1594 tmp = LLVMBuildSub(ctx->builder, LLVMConstInt(ctx->i32, denormal_exp, false), ctlz, "");
1595 tmp = LLVMBuildShl(ctx->builder, tmp, LLVMConstInt(ctx->i32, 23, false), "");
1596 denormal = LLVMBuildAdd(ctx->builder, denormal, tmp, "");
1597
1598 /* Select the final result. */
1599 LLVMValueRef result;
1600
1601 tmp = LLVMBuildICmp(ctx->builder, LLVMIntUGE, src,
1602 LLVMConstInt(ctx->i32, ((1 << exp_bits) - 1) << mant_bits, false), "");
1603 result = LLVMBuildSelect(ctx->builder, tmp, naninf, normal, "");
1604
1605 tmp = LLVMBuildICmp(ctx->builder, LLVMIntUGE, src,
1606 LLVMConstInt(ctx->i32, 1 << mant_bits, false), "");
1607 result = LLVMBuildSelect(ctx->builder, tmp, result, denormal, "");
1608
1609 tmp = LLVMBuildICmp(ctx->builder, LLVMIntNE, src, ctx->i32_0, "");
1610 result = LLVMBuildSelect(ctx->builder, tmp, result, ctx->i32_0, "");
1611
1612 return ac_to_float(ctx, result);
1613 }
1614
1615 /**
1616 * Generate a fully general open coded buffer format fetch with all required
1617 * fixups suitable for vertex fetch, using non-format buffer loads.
1618 *
1619 * Some combinations of argument values have special interpretations:
1620 * - size = 8 bytes, format = fixed indicates PIPE_FORMAT_R11G11B10_FLOAT
1621 * - size = 8 bytes, format != {float,fixed} indicates a 2_10_10_10 data format
1622 *
1623 * \param log_size log(size of channel in bytes)
1624 * \param num_channels number of channels (1 to 4)
1625 * \param format AC_FETCH_FORMAT_xxx value
1626 * \param reverse whether XYZ channels are reversed
1627 * \param known_aligned whether the source is known to be aligned to hardware's
1628 * effective element size for loading the given format
1629 * (note: this means dword alignment for 8_8_8_8, 16_16, etc.)
1630 * \param rsrc buffer resource descriptor
1631 * \return the resulting vector of floats or integers bitcast to <4 x i32>
1632 */
1633 LLVMValueRef
1634 ac_build_opencoded_load_format(struct ac_llvm_context *ctx,
1635 unsigned log_size,
1636 unsigned num_channels,
1637 unsigned format,
1638 bool reverse,
1639 bool known_aligned,
1640 LLVMValueRef rsrc,
1641 LLVMValueRef vindex,
1642 LLVMValueRef voffset,
1643 LLVMValueRef soffset,
1644 unsigned cache_policy,
1645 bool can_speculate)
1646 {
1647 LLVMValueRef tmp;
1648 unsigned load_log_size = log_size;
1649 unsigned load_num_channels = num_channels;
1650 if (log_size == 3) {
1651 load_log_size = 2;
1652 if (format == AC_FETCH_FORMAT_FLOAT) {
1653 load_num_channels = 2 * num_channels;
1654 } else {
1655 load_num_channels = 1; /* 10_11_11 or 2_10_10_10 */
1656 }
1657 }
1658
1659 int log_recombine = 0;
1660 if (ctx->chip_class == GFX6 && !known_aligned) {
1661 /* Avoid alignment restrictions by loading one byte at a time. */
1662 load_num_channels <<= load_log_size;
1663 log_recombine = load_log_size;
1664 load_log_size = 0;
1665 } else if (load_num_channels == 2 || load_num_channels == 4) {
1666 log_recombine = -util_logbase2(load_num_channels);
1667 load_num_channels = 1;
1668 load_log_size += -log_recombine;
1669 }
1670
1671 assert(load_log_size >= 2 || LLVM_VERSION_MAJOR >= 9);
1672
1673 LLVMValueRef loads[32]; /* up to 32 bytes */
1674 for (unsigned i = 0; i < load_num_channels; ++i) {
1675 tmp = LLVMBuildAdd(ctx->builder, soffset,
1676 LLVMConstInt(ctx->i32, i << load_log_size, false), "");
1677 LLVMTypeRef channel_type = load_log_size == 0 ? ctx->i8 :
1678 load_log_size == 1 ? ctx->i16 : ctx->i32;
1679 unsigned num_channels = 1 << (MAX2(load_log_size, 2) - 2);
1680 loads[i] = ac_build_buffer_load_common(
1681 ctx, rsrc, vindex, voffset, tmp,
1682 num_channels, channel_type, cache_policy,
1683 can_speculate, false, true);
1684 if (load_log_size >= 2)
1685 loads[i] = ac_to_integer(ctx, loads[i]);
1686 }
1687
1688 if (log_recombine > 0) {
1689 /* Recombine bytes if necessary (GFX6 only) */
1690 LLVMTypeRef dst_type = log_recombine == 2 ? ctx->i32 : ctx->i16;
1691
1692 for (unsigned src = 0, dst = 0; src < load_num_channels; ++dst) {
1693 LLVMValueRef accum = NULL;
1694 for (unsigned i = 0; i < (1 << log_recombine); ++i, ++src) {
1695 tmp = LLVMBuildZExt(ctx->builder, loads[src], dst_type, "");
1696 if (i == 0) {
1697 accum = tmp;
1698 } else {
1699 tmp = LLVMBuildShl(ctx->builder, tmp,
1700 LLVMConstInt(dst_type, 8 * i, false), "");
1701 accum = LLVMBuildOr(ctx->builder, accum, tmp, "");
1702 }
1703 }
1704 loads[dst] = accum;
1705 }
1706 } else if (log_recombine < 0) {
1707 /* Split vectors of dwords */
1708 if (load_log_size > 2) {
1709 assert(load_num_channels == 1);
1710 LLVMValueRef loaded = loads[0];
1711 unsigned log_split = load_log_size - 2;
1712 log_recombine += log_split;
1713 load_num_channels = 1 << log_split;
1714 load_log_size = 2;
1715 for (unsigned i = 0; i < load_num_channels; ++i) {
1716 tmp = LLVMConstInt(ctx->i32, i, false);
1717 loads[i] = LLVMBuildExtractElement(ctx->builder, loaded, tmp, "");
1718 }
1719 }
1720
1721 /* Further split dwords and shorts if required */
1722 if (log_recombine < 0) {
1723 for (unsigned src = load_num_channels,
1724 dst = load_num_channels << -log_recombine;
1725 src > 0; --src) {
1726 unsigned dst_bits = 1 << (3 + load_log_size + log_recombine);
1727 LLVMTypeRef dst_type = LLVMIntTypeInContext(ctx->context, dst_bits);
1728 LLVMValueRef loaded = loads[src - 1];
1729 LLVMTypeRef loaded_type = LLVMTypeOf(loaded);
1730 for (unsigned i = 1 << -log_recombine; i > 0; --i, --dst) {
1731 tmp = LLVMConstInt(loaded_type, dst_bits * (i - 1), false);
1732 tmp = LLVMBuildLShr(ctx->builder, loaded, tmp, "");
1733 loads[dst - 1] = LLVMBuildTrunc(ctx->builder, tmp, dst_type, "");
1734 }
1735 }
1736 }
1737 }
1738
1739 if (log_size == 3) {
1740 if (format == AC_FETCH_FORMAT_FLOAT) {
1741 for (unsigned i = 0; i < num_channels; ++i) {
1742 tmp = ac_build_gather_values(ctx, &loads[2 * i], 2);
1743 loads[i] = LLVMBuildBitCast(ctx->builder, tmp, ctx->f64, "");
1744 }
1745 } else if (format == AC_FETCH_FORMAT_FIXED) {
1746 /* 10_11_11_FLOAT */
1747 LLVMValueRef data = loads[0];
1748 LLVMValueRef i32_2047 = LLVMConstInt(ctx->i32, 2047, false);
1749 LLVMValueRef r = LLVMBuildAnd(ctx->builder, data, i32_2047, "");
1750 tmp = LLVMBuildLShr(ctx->builder, data, LLVMConstInt(ctx->i32, 11, false), "");
1751 LLVMValueRef g = LLVMBuildAnd(ctx->builder, tmp, i32_2047, "");
1752 LLVMValueRef b = LLVMBuildLShr(ctx->builder, data, LLVMConstInt(ctx->i32, 22, false), "");
1753
1754 loads[0] = ac_to_integer(ctx, ac_ufN_to_float(ctx, r, 5, 6));
1755 loads[1] = ac_to_integer(ctx, ac_ufN_to_float(ctx, g, 5, 6));
1756 loads[2] = ac_to_integer(ctx, ac_ufN_to_float(ctx, b, 5, 5));
1757
1758 num_channels = 3;
1759 log_size = 2;
1760 format = AC_FETCH_FORMAT_FLOAT;
1761 } else {
1762 /* 2_10_10_10 data formats */
1763 LLVMValueRef data = loads[0];
1764 LLVMTypeRef i10 = LLVMIntTypeInContext(ctx->context, 10);
1765 LLVMTypeRef i2 = LLVMIntTypeInContext(ctx->context, 2);
1766 loads[0] = LLVMBuildTrunc(ctx->builder, data, i10, "");
1767 tmp = LLVMBuildLShr(ctx->builder, data, LLVMConstInt(ctx->i32, 10, false), "");
1768 loads[1] = LLVMBuildTrunc(ctx->builder, tmp, i10, "");
1769 tmp = LLVMBuildLShr(ctx->builder, data, LLVMConstInt(ctx->i32, 20, false), "");
1770 loads[2] = LLVMBuildTrunc(ctx->builder, tmp, i10, "");
1771 tmp = LLVMBuildLShr(ctx->builder, data, LLVMConstInt(ctx->i32, 30, false), "");
1772 loads[3] = LLVMBuildTrunc(ctx->builder, tmp, i2, "");
1773
1774 num_channels = 4;
1775 }
1776 }
1777
1778 if (format == AC_FETCH_FORMAT_FLOAT) {
1779 if (log_size != 2) {
1780 for (unsigned chan = 0; chan < num_channels; ++chan) {
1781 tmp = ac_to_float(ctx, loads[chan]);
1782 if (log_size == 3)
1783 tmp = LLVMBuildFPTrunc(ctx->builder, tmp, ctx->f32, "");
1784 else if (log_size == 1)
1785 tmp = LLVMBuildFPExt(ctx->builder, tmp, ctx->f32, "");
1786 loads[chan] = ac_to_integer(ctx, tmp);
1787 }
1788 }
1789 } else if (format == AC_FETCH_FORMAT_UINT) {
1790 if (log_size != 2) {
1791 for (unsigned chan = 0; chan < num_channels; ++chan)
1792 loads[chan] = LLVMBuildZExt(ctx->builder, loads[chan], ctx->i32, "");
1793 }
1794 } else if (format == AC_FETCH_FORMAT_SINT) {
1795 if (log_size != 2) {
1796 for (unsigned chan = 0; chan < num_channels; ++chan)
1797 loads[chan] = LLVMBuildSExt(ctx->builder, loads[chan], ctx->i32, "");
1798 }
1799 } else {
1800 bool unsign = format == AC_FETCH_FORMAT_UNORM ||
1801 format == AC_FETCH_FORMAT_USCALED ||
1802 format == AC_FETCH_FORMAT_UINT;
1803
1804 for (unsigned chan = 0; chan < num_channels; ++chan) {
1805 if (unsign) {
1806 tmp = LLVMBuildUIToFP(ctx->builder, loads[chan], ctx->f32, "");
1807 } else {
1808 tmp = LLVMBuildSIToFP(ctx->builder, loads[chan], ctx->f32, "");
1809 }
1810
1811 LLVMValueRef scale = NULL;
1812 if (format == AC_FETCH_FORMAT_FIXED) {
1813 assert(log_size == 2);
1814 scale = LLVMConstReal(ctx->f32, 1.0 / 0x10000);
1815 } else if (format == AC_FETCH_FORMAT_UNORM) {
1816 unsigned bits = LLVMGetIntTypeWidth(LLVMTypeOf(loads[chan]));
1817 scale = LLVMConstReal(ctx->f32, 1.0 / (((uint64_t)1 << bits) - 1));
1818 } else if (format == AC_FETCH_FORMAT_SNORM) {
1819 unsigned bits = LLVMGetIntTypeWidth(LLVMTypeOf(loads[chan]));
1820 scale = LLVMConstReal(ctx->f32, 1.0 / (((uint64_t)1 << (bits - 1)) - 1));
1821 }
1822 if (scale)
1823 tmp = LLVMBuildFMul(ctx->builder, tmp, scale, "");
1824
1825 if (format == AC_FETCH_FORMAT_SNORM) {
1826 /* Clamp to [-1, 1] */
1827 LLVMValueRef neg_one = LLVMConstReal(ctx->f32, -1.0);
1828 LLVMValueRef clamp =
1829 LLVMBuildFCmp(ctx->builder, LLVMRealULT, tmp, neg_one, "");
1830 tmp = LLVMBuildSelect(ctx->builder, clamp, neg_one, tmp, "");
1831 }
1832
1833 loads[chan] = ac_to_integer(ctx, tmp);
1834 }
1835 }
1836
1837 while (num_channels < 4) {
1838 if (format == AC_FETCH_FORMAT_UINT || format == AC_FETCH_FORMAT_SINT) {
1839 loads[num_channels] = num_channels == 3 ? ctx->i32_1 : ctx->i32_0;
1840 } else {
1841 loads[num_channels] = ac_to_integer(ctx, num_channels == 3 ? ctx->f32_1 : ctx->f32_0);
1842 }
1843 num_channels++;
1844 }
1845
1846 if (reverse) {
1847 tmp = loads[0];
1848 loads[0] = loads[2];
1849 loads[2] = tmp;
1850 }
1851
1852 return ac_build_gather_values(ctx, loads, 4);
1853 }
1854
1855 static void
1856 ac_build_tbuffer_store(struct ac_llvm_context *ctx,
1857 LLVMValueRef rsrc,
1858 LLVMValueRef vdata,
1859 LLVMValueRef vindex,
1860 LLVMValueRef voffset,
1861 LLVMValueRef soffset,
1862 LLVMValueRef immoffset,
1863 unsigned num_channels,
1864 unsigned dfmt,
1865 unsigned nfmt,
1866 unsigned cache_policy,
1867 bool structurized)
1868 {
1869 voffset = LLVMBuildAdd(ctx->builder, voffset ? voffset : ctx->i32_0,
1870 immoffset, "");
1871
1872 LLVMValueRef args[7];
1873 int idx = 0;
1874 args[idx++] = vdata;
1875 args[idx++] = LLVMBuildBitCast(ctx->builder, rsrc, ctx->v4i32, "");
1876 if (structurized)
1877 args[idx++] = vindex ? vindex : ctx->i32_0;
1878 args[idx++] = voffset ? voffset : ctx->i32_0;
1879 args[idx++] = soffset ? soffset : ctx->i32_0;
1880 args[idx++] = LLVMConstInt(ctx->i32, ac_get_tbuffer_format(ctx->chip_class, dfmt, nfmt), 0);
1881 args[idx++] = LLVMConstInt(ctx->i32, cache_policy, 0);
1882 unsigned func = !ac_has_vec3_support(ctx->chip_class, true) && num_channels == 3 ? 4 : num_channels;
1883 const char *indexing_kind = structurized ? "struct" : "raw";
1884 char name[256], type_name[8];
1885
1886 LLVMTypeRef type = func > 1 ? LLVMVectorType(ctx->i32, func) : ctx->i32;
1887 ac_build_type_name_for_intr(type, type_name, sizeof(type_name));
1888
1889 snprintf(name, sizeof(name), "llvm.amdgcn.%s.tbuffer.store.%s",
1890 indexing_kind, type_name);
1891
1892 ac_build_intrinsic(ctx, name, ctx->voidt, args, idx,
1893 AC_FUNC_ATTR_INACCESSIBLE_MEM_ONLY);
1894 }
1895
1896 void
1897 ac_build_struct_tbuffer_store(struct ac_llvm_context *ctx,
1898 LLVMValueRef rsrc,
1899 LLVMValueRef vdata,
1900 LLVMValueRef vindex,
1901 LLVMValueRef voffset,
1902 LLVMValueRef soffset,
1903 LLVMValueRef immoffset,
1904 unsigned num_channels,
1905 unsigned dfmt,
1906 unsigned nfmt,
1907 unsigned cache_policy)
1908 {
1909 ac_build_tbuffer_store(ctx, rsrc, vdata, vindex, voffset, soffset,
1910 immoffset, num_channels, dfmt, nfmt, cache_policy,
1911 true);
1912 }
1913
1914 void
1915 ac_build_raw_tbuffer_store(struct ac_llvm_context *ctx,
1916 LLVMValueRef rsrc,
1917 LLVMValueRef vdata,
1918 LLVMValueRef voffset,
1919 LLVMValueRef soffset,
1920 LLVMValueRef immoffset,
1921 unsigned num_channels,
1922 unsigned dfmt,
1923 unsigned nfmt,
1924 unsigned cache_policy)
1925 {
1926 ac_build_tbuffer_store(ctx, rsrc, vdata, NULL, voffset, soffset,
1927 immoffset, num_channels, dfmt, nfmt, cache_policy,
1928 false);
1929 }
1930
1931 void
1932 ac_build_tbuffer_store_short(struct ac_llvm_context *ctx,
1933 LLVMValueRef rsrc,
1934 LLVMValueRef vdata,
1935 LLVMValueRef voffset,
1936 LLVMValueRef soffset,
1937 unsigned cache_policy)
1938 {
1939 vdata = LLVMBuildBitCast(ctx->builder, vdata, ctx->i16, "");
1940
1941 if (LLVM_VERSION_MAJOR >= 9) {
1942 /* LLVM 9+ supports i8/i16 with struct/raw intrinsics. */
1943 ac_build_buffer_store_common(ctx, rsrc, vdata, NULL,
1944 voffset, soffset, 1,
1945 ctx->i16, cache_policy,
1946 false, false);
1947 } else {
1948 unsigned dfmt = V_008F0C_BUF_DATA_FORMAT_16;
1949 unsigned nfmt = V_008F0C_BUF_NUM_FORMAT_UINT;
1950
1951 vdata = LLVMBuildZExt(ctx->builder, vdata, ctx->i32, "");
1952
1953 ac_build_raw_tbuffer_store(ctx, rsrc, vdata, voffset, soffset,
1954 ctx->i32_0, 1, dfmt, nfmt, cache_policy);
1955 }
1956 }
1957
1958 void
1959 ac_build_tbuffer_store_byte(struct ac_llvm_context *ctx,
1960 LLVMValueRef rsrc,
1961 LLVMValueRef vdata,
1962 LLVMValueRef voffset,
1963 LLVMValueRef soffset,
1964 unsigned cache_policy)
1965 {
1966 vdata = LLVMBuildBitCast(ctx->builder, vdata, ctx->i8, "");
1967
1968 if (LLVM_VERSION_MAJOR >= 9) {
1969 /* LLVM 9+ supports i8/i16 with struct/raw intrinsics. */
1970 ac_build_buffer_store_common(ctx, rsrc, vdata, NULL,
1971 voffset, soffset, 1,
1972 ctx->i8, cache_policy,
1973 false, false);
1974 } else {
1975 unsigned dfmt = V_008F0C_BUF_DATA_FORMAT_8;
1976 unsigned nfmt = V_008F0C_BUF_NUM_FORMAT_UINT;
1977
1978 vdata = LLVMBuildZExt(ctx->builder, vdata, ctx->i32, "");
1979
1980 ac_build_raw_tbuffer_store(ctx, rsrc, vdata, voffset, soffset,
1981 ctx->i32_0, 1, dfmt, nfmt, cache_policy);
1982 }
1983 }
1984 /**
1985 * Set range metadata on an instruction. This can only be used on load and
1986 * call instructions. If you know an instruction can only produce the values
1987 * 0, 1, 2, you would do set_range_metadata(value, 0, 3);
1988 * \p lo is the minimum value inclusive.
1989 * \p hi is the maximum value exclusive.
1990 */
1991 static void set_range_metadata(struct ac_llvm_context *ctx,
1992 LLVMValueRef value, unsigned lo, unsigned hi)
1993 {
1994 LLVMValueRef range_md, md_args[2];
1995 LLVMTypeRef type = LLVMTypeOf(value);
1996 LLVMContextRef context = LLVMGetTypeContext(type);
1997
1998 md_args[0] = LLVMConstInt(type, lo, false);
1999 md_args[1] = LLVMConstInt(type, hi, false);
2000 range_md = LLVMMDNodeInContext(context, md_args, 2);
2001 LLVMSetMetadata(value, ctx->range_md_kind, range_md);
2002 }
2003
2004 LLVMValueRef
2005 ac_get_thread_id(struct ac_llvm_context *ctx)
2006 {
2007 LLVMValueRef tid;
2008
2009 LLVMValueRef tid_args[2];
2010 tid_args[0] = LLVMConstInt(ctx->i32, 0xffffffff, false);
2011 tid_args[1] = ctx->i32_0;
2012 tid_args[1] = ac_build_intrinsic(ctx,
2013 "llvm.amdgcn.mbcnt.lo", ctx->i32,
2014 tid_args, 2, AC_FUNC_ATTR_READNONE);
2015
2016 if (ctx->wave_size == 32) {
2017 tid = tid_args[1];
2018 } else {
2019 tid = ac_build_intrinsic(ctx, "llvm.amdgcn.mbcnt.hi",
2020 ctx->i32, tid_args,
2021 2, AC_FUNC_ATTR_READNONE);
2022 }
2023 set_range_metadata(ctx, tid, 0, ctx->wave_size);
2024 return tid;
2025 }
2026
2027 /*
2028 * AMD GCN implements derivatives using the local data store (LDS)
2029 * All writes to the LDS happen in all executing threads at
2030 * the same time. TID is the Thread ID for the current
2031 * thread and is a value between 0 and 63, representing
2032 * the thread's position in the wavefront.
2033 *
2034 * For the pixel shader threads are grouped into quads of four pixels.
2035 * The TIDs of the pixels of a quad are:
2036 *
2037 * +------+------+
2038 * |4n + 0|4n + 1|
2039 * +------+------+
2040 * |4n + 2|4n + 3|
2041 * +------+------+
2042 *
2043 * So, masking the TID with 0xfffffffc yields the TID of the top left pixel
2044 * of the quad, masking with 0xfffffffd yields the TID of the top pixel of
2045 * the current pixel's column, and masking with 0xfffffffe yields the TID
2046 * of the left pixel of the current pixel's row.
2047 *
2048 * Adding 1 yields the TID of the pixel to the right of the left pixel, and
2049 * adding 2 yields the TID of the pixel below the top pixel.
2050 */
2051 LLVMValueRef
2052 ac_build_ddxy(struct ac_llvm_context *ctx,
2053 uint32_t mask,
2054 int idx,
2055 LLVMValueRef val)
2056 {
2057 unsigned tl_lanes[4], trbl_lanes[4];
2058 char name[32], type[8];
2059 LLVMValueRef tl, trbl;
2060 LLVMTypeRef result_type;
2061 LLVMValueRef result;
2062
2063 result_type = ac_to_float_type(ctx, LLVMTypeOf(val));
2064
2065 if (result_type == ctx->f16)
2066 val = LLVMBuildZExt(ctx->builder, val, ctx->i32, "");
2067
2068 for (unsigned i = 0; i < 4; ++i) {
2069 tl_lanes[i] = i & mask;
2070 trbl_lanes[i] = (i & mask) + idx;
2071 }
2072
2073 tl = ac_build_quad_swizzle(ctx, val,
2074 tl_lanes[0], tl_lanes[1],
2075 tl_lanes[2], tl_lanes[3]);
2076 trbl = ac_build_quad_swizzle(ctx, val,
2077 trbl_lanes[0], trbl_lanes[1],
2078 trbl_lanes[2], trbl_lanes[3]);
2079
2080 if (result_type == ctx->f16) {
2081 tl = LLVMBuildTrunc(ctx->builder, tl, ctx->i16, "");
2082 trbl = LLVMBuildTrunc(ctx->builder, trbl, ctx->i16, "");
2083 }
2084
2085 tl = LLVMBuildBitCast(ctx->builder, tl, result_type, "");
2086 trbl = LLVMBuildBitCast(ctx->builder, trbl, result_type, "");
2087 result = LLVMBuildFSub(ctx->builder, trbl, tl, "");
2088
2089 ac_build_type_name_for_intr(result_type, type, sizeof(type));
2090 snprintf(name, sizeof(name), "llvm.amdgcn.wqm.%s", type);
2091
2092 return ac_build_intrinsic(ctx, name, result_type, &result, 1, 0);
2093 }
2094
2095 void
2096 ac_build_sendmsg(struct ac_llvm_context *ctx,
2097 uint32_t msg,
2098 LLVMValueRef wave_id)
2099 {
2100 LLVMValueRef args[2];
2101 args[0] = LLVMConstInt(ctx->i32, msg, false);
2102 args[1] = wave_id;
2103 ac_build_intrinsic(ctx, "llvm.amdgcn.s.sendmsg", ctx->voidt, args, 2, 0);
2104 }
2105
2106 LLVMValueRef
2107 ac_build_imsb(struct ac_llvm_context *ctx,
2108 LLVMValueRef arg,
2109 LLVMTypeRef dst_type)
2110 {
2111 LLVMValueRef msb = ac_build_intrinsic(ctx, "llvm.amdgcn.sffbh.i32",
2112 dst_type, &arg, 1,
2113 AC_FUNC_ATTR_READNONE);
2114
2115 /* The HW returns the last bit index from MSB, but NIR/TGSI wants
2116 * the index from LSB. Invert it by doing "31 - msb". */
2117 msb = LLVMBuildSub(ctx->builder, LLVMConstInt(ctx->i32, 31, false),
2118 msb, "");
2119
2120 LLVMValueRef all_ones = LLVMConstInt(ctx->i32, -1, true);
2121 LLVMValueRef cond = LLVMBuildOr(ctx->builder,
2122 LLVMBuildICmp(ctx->builder, LLVMIntEQ,
2123 arg, ctx->i32_0, ""),
2124 LLVMBuildICmp(ctx->builder, LLVMIntEQ,
2125 arg, all_ones, ""), "");
2126
2127 return LLVMBuildSelect(ctx->builder, cond, all_ones, msb, "");
2128 }
2129
2130 LLVMValueRef
2131 ac_build_umsb(struct ac_llvm_context *ctx,
2132 LLVMValueRef arg,
2133 LLVMTypeRef dst_type)
2134 {
2135 const char *intrin_name;
2136 LLVMTypeRef type;
2137 LLVMValueRef highest_bit;
2138 LLVMValueRef zero;
2139 unsigned bitsize;
2140
2141 bitsize = ac_get_elem_bits(ctx, LLVMTypeOf(arg));
2142 switch (bitsize) {
2143 case 64:
2144 intrin_name = "llvm.ctlz.i64";
2145 type = ctx->i64;
2146 highest_bit = LLVMConstInt(ctx->i64, 63, false);
2147 zero = ctx->i64_0;
2148 break;
2149 case 32:
2150 intrin_name = "llvm.ctlz.i32";
2151 type = ctx->i32;
2152 highest_bit = LLVMConstInt(ctx->i32, 31, false);
2153 zero = ctx->i32_0;
2154 break;
2155 case 16:
2156 intrin_name = "llvm.ctlz.i16";
2157 type = ctx->i16;
2158 highest_bit = LLVMConstInt(ctx->i16, 15, false);
2159 zero = ctx->i16_0;
2160 break;
2161 case 8:
2162 intrin_name = "llvm.ctlz.i8";
2163 type = ctx->i8;
2164 highest_bit = LLVMConstInt(ctx->i8, 7, false);
2165 zero = ctx->i8_0;
2166 break;
2167 default:
2168 unreachable(!"invalid bitsize");
2169 break;
2170 }
2171
2172 LLVMValueRef params[2] = {
2173 arg,
2174 ctx->i1true,
2175 };
2176
2177 LLVMValueRef msb = ac_build_intrinsic(ctx, intrin_name, type,
2178 params, 2,
2179 AC_FUNC_ATTR_READNONE);
2180
2181 /* The HW returns the last bit index from MSB, but TGSI/NIR wants
2182 * the index from LSB. Invert it by doing "31 - msb". */
2183 msb = LLVMBuildSub(ctx->builder, highest_bit, msb, "");
2184
2185 if (bitsize == 64) {
2186 msb = LLVMBuildTrunc(ctx->builder, msb, ctx->i32, "");
2187 } else if (bitsize < 32) {
2188 msb = LLVMBuildSExt(ctx->builder, msb, ctx->i32, "");
2189 }
2190
2191 /* check for zero */
2192 return LLVMBuildSelect(ctx->builder,
2193 LLVMBuildICmp(ctx->builder, LLVMIntEQ, arg, zero, ""),
2194 LLVMConstInt(ctx->i32, -1, true), msb, "");
2195 }
2196
2197 LLVMValueRef ac_build_fmin(struct ac_llvm_context *ctx, LLVMValueRef a,
2198 LLVMValueRef b)
2199 {
2200 char name[64];
2201 snprintf(name, sizeof(name), "llvm.minnum.f%d", ac_get_elem_bits(ctx, LLVMTypeOf(a)));
2202 LLVMValueRef args[2] = {a, b};
2203 return ac_build_intrinsic(ctx, name, LLVMTypeOf(a), args, 2,
2204 AC_FUNC_ATTR_READNONE);
2205 }
2206
2207 LLVMValueRef ac_build_fmax(struct ac_llvm_context *ctx, LLVMValueRef a,
2208 LLVMValueRef b)
2209 {
2210 char name[64];
2211 snprintf(name, sizeof(name), "llvm.maxnum.f%d", ac_get_elem_bits(ctx, LLVMTypeOf(a)));
2212 LLVMValueRef args[2] = {a, b};
2213 return ac_build_intrinsic(ctx, name, LLVMTypeOf(a), args, 2,
2214 AC_FUNC_ATTR_READNONE);
2215 }
2216
2217 LLVMValueRef ac_build_imin(struct ac_llvm_context *ctx, LLVMValueRef a,
2218 LLVMValueRef b)
2219 {
2220 LLVMValueRef cmp = LLVMBuildICmp(ctx->builder, LLVMIntSLE, a, b, "");
2221 return LLVMBuildSelect(ctx->builder, cmp, a, b, "");
2222 }
2223
2224 LLVMValueRef ac_build_imax(struct ac_llvm_context *ctx, LLVMValueRef a,
2225 LLVMValueRef b)
2226 {
2227 LLVMValueRef cmp = LLVMBuildICmp(ctx->builder, LLVMIntSGT, a, b, "");
2228 return LLVMBuildSelect(ctx->builder, cmp, a, b, "");
2229 }
2230
2231 LLVMValueRef ac_build_umin(struct ac_llvm_context *ctx, LLVMValueRef a,
2232 LLVMValueRef b)
2233 {
2234 LLVMValueRef cmp = LLVMBuildICmp(ctx->builder, LLVMIntULE, a, b, "");
2235 return LLVMBuildSelect(ctx->builder, cmp, a, b, "");
2236 }
2237
2238 LLVMValueRef ac_build_umax(struct ac_llvm_context *ctx, LLVMValueRef a,
2239 LLVMValueRef b)
2240 {
2241 LLVMValueRef cmp = LLVMBuildICmp(ctx->builder, LLVMIntUGE, a, b, "");
2242 return LLVMBuildSelect(ctx->builder, cmp, a, b, "");
2243 }
2244
2245 LLVMValueRef ac_build_clamp(struct ac_llvm_context *ctx, LLVMValueRef value)
2246 {
2247 LLVMTypeRef t = LLVMTypeOf(value);
2248 return ac_build_fmin(ctx, ac_build_fmax(ctx, value, LLVMConstReal(t, 0.0)),
2249 LLVMConstReal(t, 1.0));
2250 }
2251
2252 void ac_build_export(struct ac_llvm_context *ctx, struct ac_export_args *a)
2253 {
2254 LLVMValueRef args[9];
2255
2256 args[0] = LLVMConstInt(ctx->i32, a->target, 0);
2257 args[1] = LLVMConstInt(ctx->i32, a->enabled_channels, 0);
2258
2259 if (a->compr) {
2260 LLVMTypeRef i16 = LLVMInt16TypeInContext(ctx->context);
2261 LLVMTypeRef v2i16 = LLVMVectorType(i16, 2);
2262
2263 args[2] = LLVMBuildBitCast(ctx->builder, a->out[0],
2264 v2i16, "");
2265 args[3] = LLVMBuildBitCast(ctx->builder, a->out[1],
2266 v2i16, "");
2267 args[4] = LLVMConstInt(ctx->i1, a->done, 0);
2268 args[5] = LLVMConstInt(ctx->i1, a->valid_mask, 0);
2269
2270 ac_build_intrinsic(ctx, "llvm.amdgcn.exp.compr.v2i16",
2271 ctx->voidt, args, 6, 0);
2272 } else {
2273 args[2] = a->out[0];
2274 args[3] = a->out[1];
2275 args[4] = a->out[2];
2276 args[5] = a->out[3];
2277 args[6] = LLVMConstInt(ctx->i1, a->done, 0);
2278 args[7] = LLVMConstInt(ctx->i1, a->valid_mask, 0);
2279
2280 ac_build_intrinsic(ctx, "llvm.amdgcn.exp.f32",
2281 ctx->voidt, args, 8, 0);
2282 }
2283 }
2284
2285 void ac_build_export_null(struct ac_llvm_context *ctx)
2286 {
2287 struct ac_export_args args;
2288
2289 args.enabled_channels = 0x0; /* enabled channels */
2290 args.valid_mask = 1; /* whether the EXEC mask is valid */
2291 args.done = 1; /* DONE bit */
2292 args.target = V_008DFC_SQ_EXP_NULL;
2293 args.compr = 0; /* COMPR flag (0 = 32-bit export) */
2294 args.out[0] = LLVMGetUndef(ctx->f32); /* R */
2295 args.out[1] = LLVMGetUndef(ctx->f32); /* G */
2296 args.out[2] = LLVMGetUndef(ctx->f32); /* B */
2297 args.out[3] = LLVMGetUndef(ctx->f32); /* A */
2298
2299 ac_build_export(ctx, &args);
2300 }
2301
2302 static unsigned ac_num_coords(enum ac_image_dim dim)
2303 {
2304 switch (dim) {
2305 case ac_image_1d:
2306 return 1;
2307 case ac_image_2d:
2308 case ac_image_1darray:
2309 return 2;
2310 case ac_image_3d:
2311 case ac_image_cube:
2312 case ac_image_2darray:
2313 case ac_image_2dmsaa:
2314 return 3;
2315 case ac_image_2darraymsaa:
2316 return 4;
2317 default:
2318 unreachable("ac_num_coords: bad dim");
2319 }
2320 }
2321
2322 static unsigned ac_num_derivs(enum ac_image_dim dim)
2323 {
2324 switch (dim) {
2325 case ac_image_1d:
2326 case ac_image_1darray:
2327 return 2;
2328 case ac_image_2d:
2329 case ac_image_2darray:
2330 case ac_image_cube:
2331 return 4;
2332 case ac_image_3d:
2333 return 6;
2334 case ac_image_2dmsaa:
2335 case ac_image_2darraymsaa:
2336 default:
2337 unreachable("derivatives not supported");
2338 }
2339 }
2340
2341 static const char *get_atomic_name(enum ac_atomic_op op)
2342 {
2343 switch (op) {
2344 case ac_atomic_swap: return "swap";
2345 case ac_atomic_add: return "add";
2346 case ac_atomic_sub: return "sub";
2347 case ac_atomic_smin: return "smin";
2348 case ac_atomic_umin: return "umin";
2349 case ac_atomic_smax: return "smax";
2350 case ac_atomic_umax: return "umax";
2351 case ac_atomic_and: return "and";
2352 case ac_atomic_or: return "or";
2353 case ac_atomic_xor: return "xor";
2354 case ac_atomic_inc_wrap: return "inc";
2355 case ac_atomic_dec_wrap: return "dec";
2356 }
2357 unreachable("bad atomic op");
2358 }
2359
2360 LLVMValueRef ac_build_image_opcode(struct ac_llvm_context *ctx,
2361 struct ac_image_args *a)
2362 {
2363 const char *overload[3] = { "", "", "" };
2364 unsigned num_overloads = 0;
2365 LLVMValueRef args[18];
2366 unsigned num_args = 0;
2367 enum ac_image_dim dim = a->dim;
2368
2369 assert(!a->lod || a->lod == ctx->i32_0 || a->lod == ctx->f32_0 ||
2370 !a->level_zero);
2371 assert((a->opcode != ac_image_get_resinfo && a->opcode != ac_image_load_mip &&
2372 a->opcode != ac_image_store_mip) ||
2373 a->lod);
2374 assert(a->opcode == ac_image_sample || a->opcode == ac_image_gather4 ||
2375 (!a->compare && !a->offset));
2376 assert((a->opcode == ac_image_sample || a->opcode == ac_image_gather4 ||
2377 a->opcode == ac_image_get_lod) ||
2378 !a->bias);
2379 assert((a->bias ? 1 : 0) +
2380 (a->lod ? 1 : 0) +
2381 (a->level_zero ? 1 : 0) +
2382 (a->derivs[0] ? 1 : 0) <= 1);
2383
2384 if (a->opcode == ac_image_get_lod) {
2385 switch (dim) {
2386 case ac_image_1darray:
2387 dim = ac_image_1d;
2388 break;
2389 case ac_image_2darray:
2390 case ac_image_cube:
2391 dim = ac_image_2d;
2392 break;
2393 default:
2394 break;
2395 }
2396 }
2397
2398 bool sample = a->opcode == ac_image_sample ||
2399 a->opcode == ac_image_gather4 ||
2400 a->opcode == ac_image_get_lod;
2401 bool atomic = a->opcode == ac_image_atomic ||
2402 a->opcode == ac_image_atomic_cmpswap;
2403 bool load = a->opcode == ac_image_sample ||
2404 a->opcode == ac_image_gather4 ||
2405 a->opcode == ac_image_load ||
2406 a->opcode == ac_image_load_mip;
2407 LLVMTypeRef coord_type = sample ? ctx->f32 : ctx->i32;
2408
2409 if (atomic || a->opcode == ac_image_store || a->opcode == ac_image_store_mip) {
2410 args[num_args++] = a->data[0];
2411 if (a->opcode == ac_image_atomic_cmpswap)
2412 args[num_args++] = a->data[1];
2413 }
2414
2415 if (!atomic)
2416 args[num_args++] = LLVMConstInt(ctx->i32, a->dmask, false);
2417
2418 if (a->offset)
2419 args[num_args++] = ac_to_integer(ctx, a->offset);
2420 if (a->bias) {
2421 args[num_args++] = ac_to_float(ctx, a->bias);
2422 overload[num_overloads++] = ".f32";
2423 }
2424 if (a->compare)
2425 args[num_args++] = ac_to_float(ctx, a->compare);
2426 if (a->derivs[0]) {
2427 unsigned count = ac_num_derivs(dim);
2428 for (unsigned i = 0; i < count; ++i)
2429 args[num_args++] = ac_to_float(ctx, a->derivs[i]);
2430 overload[num_overloads++] = ".f32";
2431 }
2432 unsigned num_coords =
2433 a->opcode != ac_image_get_resinfo ? ac_num_coords(dim) : 0;
2434 for (unsigned i = 0; i < num_coords; ++i)
2435 args[num_args++] = LLVMBuildBitCast(ctx->builder, a->coords[i], coord_type, "");
2436 if (a->lod)
2437 args[num_args++] = LLVMBuildBitCast(ctx->builder, a->lod, coord_type, "");
2438 overload[num_overloads++] = sample ? ".f32" : ".i32";
2439
2440 args[num_args++] = a->resource;
2441 if (sample) {
2442 args[num_args++] = a->sampler;
2443 args[num_args++] = LLVMConstInt(ctx->i1, a->unorm, false);
2444 }
2445
2446 args[num_args++] = ctx->i32_0; /* texfailctrl */
2447 args[num_args++] = LLVMConstInt(ctx->i32,
2448 load ? get_load_cache_policy(ctx, a->cache_policy) :
2449 a->cache_policy, false);
2450
2451 const char *name;
2452 const char *atomic_subop = "";
2453 switch (a->opcode) {
2454 case ac_image_sample: name = "sample"; break;
2455 case ac_image_gather4: name = "gather4"; break;
2456 case ac_image_load: name = "load"; break;
2457 case ac_image_load_mip: name = "load.mip"; break;
2458 case ac_image_store: name = "store"; break;
2459 case ac_image_store_mip: name = "store.mip"; break;
2460 case ac_image_atomic:
2461 name = "atomic.";
2462 atomic_subop = get_atomic_name(a->atomic);
2463 break;
2464 case ac_image_atomic_cmpswap:
2465 name = "atomic.";
2466 atomic_subop = "cmpswap";
2467 break;
2468 case ac_image_get_lod: name = "getlod"; break;
2469 case ac_image_get_resinfo: name = "getresinfo"; break;
2470 default: unreachable("invalid image opcode");
2471 }
2472
2473 const char *dimname;
2474 switch (dim) {
2475 case ac_image_1d: dimname = "1d"; break;
2476 case ac_image_2d: dimname = "2d"; break;
2477 case ac_image_3d: dimname = "3d"; break;
2478 case ac_image_cube: dimname = "cube"; break;
2479 case ac_image_1darray: dimname = "1darray"; break;
2480 case ac_image_2darray: dimname = "2darray"; break;
2481 case ac_image_2dmsaa: dimname = "2dmsaa"; break;
2482 case ac_image_2darraymsaa: dimname = "2darraymsaa"; break;
2483 default: unreachable("invalid dim");
2484 }
2485
2486 bool lod_suffix =
2487 a->lod && (a->opcode == ac_image_sample || a->opcode == ac_image_gather4);
2488 char intr_name[96];
2489 snprintf(intr_name, sizeof(intr_name),
2490 "llvm.amdgcn.image.%s%s" /* base name */
2491 "%s%s%s" /* sample/gather modifiers */
2492 ".%s.%s%s%s%s", /* dimension and type overloads */
2493 name, atomic_subop,
2494 a->compare ? ".c" : "",
2495 a->bias ? ".b" :
2496 lod_suffix ? ".l" :
2497 a->derivs[0] ? ".d" :
2498 a->level_zero ? ".lz" : "",
2499 a->offset ? ".o" : "",
2500 dimname,
2501 atomic ? "i32" : "v4f32",
2502 overload[0], overload[1], overload[2]);
2503
2504 LLVMTypeRef retty;
2505 if (atomic)
2506 retty = ctx->i32;
2507 else if (a->opcode == ac_image_store || a->opcode == ac_image_store_mip)
2508 retty = ctx->voidt;
2509 else
2510 retty = ctx->v4f32;
2511
2512 LLVMValueRef result =
2513 ac_build_intrinsic(ctx, intr_name, retty, args, num_args,
2514 a->attributes);
2515 if (!sample && retty == ctx->v4f32) {
2516 result = LLVMBuildBitCast(ctx->builder, result,
2517 ctx->v4i32, "");
2518 }
2519 return result;
2520 }
2521
2522 LLVMValueRef ac_build_image_get_sample_count(struct ac_llvm_context *ctx,
2523 LLVMValueRef rsrc)
2524 {
2525 LLVMValueRef samples;
2526
2527 /* Read the samples from the descriptor directly.
2528 * Hardware doesn't have any instruction for this.
2529 */
2530 samples = LLVMBuildExtractElement(ctx->builder, rsrc,
2531 LLVMConstInt(ctx->i32, 3, 0), "");
2532 samples = LLVMBuildLShr(ctx->builder, samples,
2533 LLVMConstInt(ctx->i32, 16, 0), "");
2534 samples = LLVMBuildAnd(ctx->builder, samples,
2535 LLVMConstInt(ctx->i32, 0xf, 0), "");
2536 samples = LLVMBuildShl(ctx->builder, ctx->i32_1,
2537 samples, "");
2538 return samples;
2539 }
2540
2541 LLVMValueRef ac_build_cvt_pkrtz_f16(struct ac_llvm_context *ctx,
2542 LLVMValueRef args[2])
2543 {
2544 LLVMTypeRef v2f16 =
2545 LLVMVectorType(LLVMHalfTypeInContext(ctx->context), 2);
2546
2547 return ac_build_intrinsic(ctx, "llvm.amdgcn.cvt.pkrtz", v2f16,
2548 args, 2, AC_FUNC_ATTR_READNONE);
2549 }
2550
2551 LLVMValueRef ac_build_cvt_pknorm_i16(struct ac_llvm_context *ctx,
2552 LLVMValueRef args[2])
2553 {
2554 LLVMValueRef res =
2555 ac_build_intrinsic(ctx, "llvm.amdgcn.cvt.pknorm.i16",
2556 ctx->v2i16, args, 2,
2557 AC_FUNC_ATTR_READNONE);
2558 return LLVMBuildBitCast(ctx->builder, res, ctx->i32, "");
2559 }
2560
2561 LLVMValueRef ac_build_cvt_pknorm_u16(struct ac_llvm_context *ctx,
2562 LLVMValueRef args[2])
2563 {
2564 LLVMValueRef res =
2565 ac_build_intrinsic(ctx, "llvm.amdgcn.cvt.pknorm.u16",
2566 ctx->v2i16, args, 2,
2567 AC_FUNC_ATTR_READNONE);
2568 return LLVMBuildBitCast(ctx->builder, res, ctx->i32, "");
2569 }
2570
2571 /* The 8-bit and 10-bit clamping is for HW workarounds. */
2572 LLVMValueRef ac_build_cvt_pk_i16(struct ac_llvm_context *ctx,
2573 LLVMValueRef args[2], unsigned bits, bool hi)
2574 {
2575 assert(bits == 8 || bits == 10 || bits == 16);
2576
2577 LLVMValueRef max_rgb = LLVMConstInt(ctx->i32,
2578 bits == 8 ? 127 : bits == 10 ? 511 : 32767, 0);
2579 LLVMValueRef min_rgb = LLVMConstInt(ctx->i32,
2580 bits == 8 ? -128 : bits == 10 ? -512 : -32768, 0);
2581 LLVMValueRef max_alpha =
2582 bits != 10 ? max_rgb : ctx->i32_1;
2583 LLVMValueRef min_alpha =
2584 bits != 10 ? min_rgb : LLVMConstInt(ctx->i32, -2, 0);
2585
2586 /* Clamp. */
2587 if (bits != 16) {
2588 for (int i = 0; i < 2; i++) {
2589 bool alpha = hi && i == 1;
2590 args[i] = ac_build_imin(ctx, args[i],
2591 alpha ? max_alpha : max_rgb);
2592 args[i] = ac_build_imax(ctx, args[i],
2593 alpha ? min_alpha : min_rgb);
2594 }
2595 }
2596
2597 LLVMValueRef res =
2598 ac_build_intrinsic(ctx, "llvm.amdgcn.cvt.pk.i16",
2599 ctx->v2i16, args, 2,
2600 AC_FUNC_ATTR_READNONE);
2601 return LLVMBuildBitCast(ctx->builder, res, ctx->i32, "");
2602 }
2603
2604 /* The 8-bit and 10-bit clamping is for HW workarounds. */
2605 LLVMValueRef ac_build_cvt_pk_u16(struct ac_llvm_context *ctx,
2606 LLVMValueRef args[2], unsigned bits, bool hi)
2607 {
2608 assert(bits == 8 || bits == 10 || bits == 16);
2609
2610 LLVMValueRef max_rgb = LLVMConstInt(ctx->i32,
2611 bits == 8 ? 255 : bits == 10 ? 1023 : 65535, 0);
2612 LLVMValueRef max_alpha =
2613 bits != 10 ? max_rgb : LLVMConstInt(ctx->i32, 3, 0);
2614
2615 /* Clamp. */
2616 if (bits != 16) {
2617 for (int i = 0; i < 2; i++) {
2618 bool alpha = hi && i == 1;
2619 args[i] = ac_build_umin(ctx, args[i],
2620 alpha ? max_alpha : max_rgb);
2621 }
2622 }
2623
2624 LLVMValueRef res =
2625 ac_build_intrinsic(ctx, "llvm.amdgcn.cvt.pk.u16",
2626 ctx->v2i16, args, 2,
2627 AC_FUNC_ATTR_READNONE);
2628 return LLVMBuildBitCast(ctx->builder, res, ctx->i32, "");
2629 }
2630
2631 LLVMValueRef ac_build_wqm_vote(struct ac_llvm_context *ctx, LLVMValueRef i1)
2632 {
2633 return ac_build_intrinsic(ctx, "llvm.amdgcn.wqm.vote", ctx->i1,
2634 &i1, 1, AC_FUNC_ATTR_READNONE);
2635 }
2636
2637 void ac_build_kill_if_false(struct ac_llvm_context *ctx, LLVMValueRef i1)
2638 {
2639 ac_build_intrinsic(ctx, "llvm.amdgcn.kill", ctx->voidt,
2640 &i1, 1, 0);
2641 }
2642
2643 LLVMValueRef ac_build_bfe(struct ac_llvm_context *ctx, LLVMValueRef input,
2644 LLVMValueRef offset, LLVMValueRef width,
2645 bool is_signed)
2646 {
2647 LLVMValueRef args[] = {
2648 input,
2649 offset,
2650 width,
2651 };
2652
2653 return ac_build_intrinsic(ctx, is_signed ? "llvm.amdgcn.sbfe.i32" :
2654 "llvm.amdgcn.ubfe.i32",
2655 ctx->i32, args, 3, AC_FUNC_ATTR_READNONE);
2656
2657 }
2658
2659 LLVMValueRef ac_build_imad(struct ac_llvm_context *ctx, LLVMValueRef s0,
2660 LLVMValueRef s1, LLVMValueRef s2)
2661 {
2662 return LLVMBuildAdd(ctx->builder,
2663 LLVMBuildMul(ctx->builder, s0, s1, ""), s2, "");
2664 }
2665
2666 LLVMValueRef ac_build_fmad(struct ac_llvm_context *ctx, LLVMValueRef s0,
2667 LLVMValueRef s1, LLVMValueRef s2)
2668 {
2669 /* FMA is better on GFX10, because it has FMA units instead of MUL-ADD units. */
2670 if (ctx->chip_class >= GFX10) {
2671 return ac_build_intrinsic(ctx, "llvm.fma.f32", ctx->f32,
2672 (LLVMValueRef []) {s0, s1, s2}, 3,
2673 AC_FUNC_ATTR_READNONE);
2674 }
2675
2676 return LLVMBuildFAdd(ctx->builder,
2677 LLVMBuildFMul(ctx->builder, s0, s1, ""), s2, "");
2678 }
2679
2680 void ac_build_waitcnt(struct ac_llvm_context *ctx, unsigned wait_flags)
2681 {
2682 if (!wait_flags)
2683 return;
2684
2685 unsigned lgkmcnt = 63;
2686 unsigned vmcnt = ctx->chip_class >= GFX9 ? 63 : 15;
2687 unsigned vscnt = 63;
2688
2689 if (wait_flags & AC_WAIT_LGKM)
2690 lgkmcnt = 0;
2691 if (wait_flags & AC_WAIT_VLOAD)
2692 vmcnt = 0;
2693
2694 if (wait_flags & AC_WAIT_VSTORE) {
2695 if (ctx->chip_class >= GFX10)
2696 vscnt = 0;
2697 else
2698 vmcnt = 0;
2699 }
2700
2701 /* There is no intrinsic for vscnt(0), so use a fence. */
2702 if ((wait_flags & AC_WAIT_LGKM &&
2703 wait_flags & AC_WAIT_VLOAD &&
2704 wait_flags & AC_WAIT_VSTORE) ||
2705 vscnt == 0) {
2706 LLVMBuildFence(ctx->builder, LLVMAtomicOrderingRelease, false, "");
2707 return;
2708 }
2709
2710 unsigned simm16 = (lgkmcnt << 8) |
2711 (7 << 4) | /* expcnt */
2712 (vmcnt & 0xf) |
2713 ((vmcnt >> 4) << 14);
2714
2715 LLVMValueRef args[1] = {
2716 LLVMConstInt(ctx->i32, simm16, false),
2717 };
2718 ac_build_intrinsic(ctx, "llvm.amdgcn.s.waitcnt",
2719 ctx->voidt, args, 1, 0);
2720 }
2721
2722 LLVMValueRef ac_build_fmed3(struct ac_llvm_context *ctx, LLVMValueRef src0,
2723 LLVMValueRef src1, LLVMValueRef src2,
2724 unsigned bitsize)
2725 {
2726 LLVMTypeRef type;
2727 char *intr;
2728
2729 if (bitsize == 16) {
2730 intr = "llvm.amdgcn.fmed3.f16";
2731 type = ctx->f16;
2732 } else if (bitsize == 32) {
2733 intr = "llvm.amdgcn.fmed3.f32";
2734 type = ctx->f32;
2735 } else {
2736 intr = "llvm.amdgcn.fmed3.f64";
2737 type = ctx->f64;
2738 }
2739
2740 LLVMValueRef params[] = {
2741 src0,
2742 src1,
2743 src2,
2744 };
2745 return ac_build_intrinsic(ctx, intr, type, params, 3,
2746 AC_FUNC_ATTR_READNONE);
2747 }
2748
2749 LLVMValueRef ac_build_fract(struct ac_llvm_context *ctx, LLVMValueRef src0,
2750 unsigned bitsize)
2751 {
2752 LLVMTypeRef type;
2753 char *intr;
2754
2755 if (bitsize == 16) {
2756 intr = "llvm.amdgcn.fract.f16";
2757 type = ctx->f16;
2758 } else if (bitsize == 32) {
2759 intr = "llvm.amdgcn.fract.f32";
2760 type = ctx->f32;
2761 } else {
2762 intr = "llvm.amdgcn.fract.f64";
2763 type = ctx->f64;
2764 }
2765
2766 LLVMValueRef params[] = {
2767 src0,
2768 };
2769 return ac_build_intrinsic(ctx, intr, type, params, 1,
2770 AC_FUNC_ATTR_READNONE);
2771 }
2772
2773 LLVMValueRef ac_build_isign(struct ac_llvm_context *ctx, LLVMValueRef src0,
2774 unsigned bitsize)
2775 {
2776 LLVMTypeRef type = LLVMIntTypeInContext(ctx->context, bitsize);
2777 LLVMValueRef zero = LLVMConstInt(type, 0, false);
2778 LLVMValueRef one = LLVMConstInt(type, 1, false);
2779
2780 LLVMValueRef cmp, val;
2781 cmp = LLVMBuildICmp(ctx->builder, LLVMIntSGT, src0, zero, "");
2782 val = LLVMBuildSelect(ctx->builder, cmp, one, src0, "");
2783 cmp = LLVMBuildICmp(ctx->builder, LLVMIntSGE, val, zero, "");
2784 val = LLVMBuildSelect(ctx->builder, cmp, val, LLVMConstInt(type, -1, true), "");
2785 return val;
2786 }
2787
2788 LLVMValueRef ac_build_fsign(struct ac_llvm_context *ctx, LLVMValueRef src0,
2789 unsigned bitsize)
2790 {
2791 LLVMValueRef cmp, val, zero, one;
2792 LLVMTypeRef type;
2793
2794 if (bitsize == 16) {
2795 type = ctx->f16;
2796 zero = ctx->f16_0;
2797 one = ctx->f16_1;
2798 } else if (bitsize == 32) {
2799 type = ctx->f32;
2800 zero = ctx->f32_0;
2801 one = ctx->f32_1;
2802 } else {
2803 type = ctx->f64;
2804 zero = ctx->f64_0;
2805 one = ctx->f64_1;
2806 }
2807
2808 cmp = LLVMBuildFCmp(ctx->builder, LLVMRealOGT, src0, zero, "");
2809 val = LLVMBuildSelect(ctx->builder, cmp, one, src0, "");
2810 cmp = LLVMBuildFCmp(ctx->builder, LLVMRealOGE, val, zero, "");
2811 val = LLVMBuildSelect(ctx->builder, cmp, val, LLVMConstReal(type, -1.0), "");
2812 return val;
2813 }
2814
2815 LLVMValueRef ac_build_bit_count(struct ac_llvm_context *ctx, LLVMValueRef src0)
2816 {
2817 LLVMValueRef result;
2818 unsigned bitsize;
2819
2820 bitsize = ac_get_elem_bits(ctx, LLVMTypeOf(src0));
2821
2822 switch (bitsize) {
2823 case 128:
2824 result = ac_build_intrinsic(ctx, "llvm.ctpop.i128", ctx->i128,
2825 (LLVMValueRef []) { src0 }, 1,
2826 AC_FUNC_ATTR_READNONE);
2827 result = LLVMBuildTrunc(ctx->builder, result, ctx->i32, "");
2828 break;
2829 case 64:
2830 result = ac_build_intrinsic(ctx, "llvm.ctpop.i64", ctx->i64,
2831 (LLVMValueRef []) { src0 }, 1,
2832 AC_FUNC_ATTR_READNONE);
2833
2834 result = LLVMBuildTrunc(ctx->builder, result, ctx->i32, "");
2835 break;
2836 case 32:
2837 result = ac_build_intrinsic(ctx, "llvm.ctpop.i32", ctx->i32,
2838 (LLVMValueRef []) { src0 }, 1,
2839 AC_FUNC_ATTR_READNONE);
2840 break;
2841 case 16:
2842 result = ac_build_intrinsic(ctx, "llvm.ctpop.i16", ctx->i16,
2843 (LLVMValueRef []) { src0 }, 1,
2844 AC_FUNC_ATTR_READNONE);
2845
2846 result = LLVMBuildZExt(ctx->builder, result, ctx->i32, "");
2847 break;
2848 case 8:
2849 result = ac_build_intrinsic(ctx, "llvm.ctpop.i8", ctx->i8,
2850 (LLVMValueRef []) { src0 }, 1,
2851 AC_FUNC_ATTR_READNONE);
2852
2853 result = LLVMBuildZExt(ctx->builder, result, ctx->i32, "");
2854 break;
2855 default:
2856 unreachable(!"invalid bitsize");
2857 break;
2858 }
2859
2860 return result;
2861 }
2862
2863 LLVMValueRef ac_build_bitfield_reverse(struct ac_llvm_context *ctx,
2864 LLVMValueRef src0)
2865 {
2866 LLVMValueRef result;
2867 unsigned bitsize;
2868
2869 bitsize = ac_get_elem_bits(ctx, LLVMTypeOf(src0));
2870
2871 switch (bitsize) {
2872 case 64:
2873 result = ac_build_intrinsic(ctx, "llvm.bitreverse.i64", ctx->i64,
2874 (LLVMValueRef []) { src0 }, 1,
2875 AC_FUNC_ATTR_READNONE);
2876
2877 result = LLVMBuildTrunc(ctx->builder, result, ctx->i32, "");
2878 break;
2879 case 32:
2880 result = ac_build_intrinsic(ctx, "llvm.bitreverse.i32", ctx->i32,
2881 (LLVMValueRef []) { src0 }, 1,
2882 AC_FUNC_ATTR_READNONE);
2883 break;
2884 case 16:
2885 result = ac_build_intrinsic(ctx, "llvm.bitreverse.i16", ctx->i16,
2886 (LLVMValueRef []) { src0 }, 1,
2887 AC_FUNC_ATTR_READNONE);
2888
2889 result = LLVMBuildZExt(ctx->builder, result, ctx->i32, "");
2890 break;
2891 case 8:
2892 result = ac_build_intrinsic(ctx, "llvm.bitreverse.i8", ctx->i8,
2893 (LLVMValueRef []) { src0 }, 1,
2894 AC_FUNC_ATTR_READNONE);
2895
2896 result = LLVMBuildZExt(ctx->builder, result, ctx->i32, "");
2897 break;
2898 default:
2899 unreachable(!"invalid bitsize");
2900 break;
2901 }
2902
2903 return result;
2904 }
2905
2906 #define AC_EXP_TARGET 0
2907 #define AC_EXP_ENABLED_CHANNELS 1
2908 #define AC_EXP_OUT0 2
2909
2910 enum ac_ir_type {
2911 AC_IR_UNDEF,
2912 AC_IR_CONST,
2913 AC_IR_VALUE,
2914 };
2915
2916 struct ac_vs_exp_chan
2917 {
2918 LLVMValueRef value;
2919 float const_float;
2920 enum ac_ir_type type;
2921 };
2922
2923 struct ac_vs_exp_inst {
2924 unsigned offset;
2925 LLVMValueRef inst;
2926 struct ac_vs_exp_chan chan[4];
2927 };
2928
2929 struct ac_vs_exports {
2930 unsigned num;
2931 struct ac_vs_exp_inst exp[VARYING_SLOT_MAX];
2932 };
2933
2934 /* Return true if the PARAM export has been eliminated. */
2935 static bool ac_eliminate_const_output(uint8_t *vs_output_param_offset,
2936 uint32_t num_outputs,
2937 struct ac_vs_exp_inst *exp)
2938 {
2939 unsigned i, default_val; /* SPI_PS_INPUT_CNTL_i.DEFAULT_VAL */
2940 bool is_zero[4] = {}, is_one[4] = {};
2941
2942 for (i = 0; i < 4; i++) {
2943 /* It's a constant expression. Undef outputs are eliminated too. */
2944 if (exp->chan[i].type == AC_IR_UNDEF) {
2945 is_zero[i] = true;
2946 is_one[i] = true;
2947 } else if (exp->chan[i].type == AC_IR_CONST) {
2948 if (exp->chan[i].const_float == 0)
2949 is_zero[i] = true;
2950 else if (exp->chan[i].const_float == 1)
2951 is_one[i] = true;
2952 else
2953 return false; /* other constant */
2954 } else
2955 return false;
2956 }
2957
2958 /* Only certain combinations of 0 and 1 can be eliminated. */
2959 if (is_zero[0] && is_zero[1] && is_zero[2])
2960 default_val = is_zero[3] ? 0 : 1;
2961 else if (is_one[0] && is_one[1] && is_one[2])
2962 default_val = is_zero[3] ? 2 : 3;
2963 else
2964 return false;
2965
2966 /* The PARAM export can be represented as DEFAULT_VAL. Kill it. */
2967 LLVMInstructionEraseFromParent(exp->inst);
2968
2969 /* Change OFFSET to DEFAULT_VAL. */
2970 for (i = 0; i < num_outputs; i++) {
2971 if (vs_output_param_offset[i] == exp->offset) {
2972 vs_output_param_offset[i] =
2973 AC_EXP_PARAM_DEFAULT_VAL_0000 + default_val;
2974 break;
2975 }
2976 }
2977 return true;
2978 }
2979
2980 static bool ac_eliminate_duplicated_output(struct ac_llvm_context *ctx,
2981 uint8_t *vs_output_param_offset,
2982 uint32_t num_outputs,
2983 struct ac_vs_exports *processed,
2984 struct ac_vs_exp_inst *exp)
2985 {
2986 unsigned p, copy_back_channels = 0;
2987
2988 /* See if the output is already in the list of processed outputs.
2989 * The LLVMValueRef comparison relies on SSA.
2990 */
2991 for (p = 0; p < processed->num; p++) {
2992 bool different = false;
2993
2994 for (unsigned j = 0; j < 4; j++) {
2995 struct ac_vs_exp_chan *c1 = &processed->exp[p].chan[j];
2996 struct ac_vs_exp_chan *c2 = &exp->chan[j];
2997
2998 /* Treat undef as a match. */
2999 if (c2->type == AC_IR_UNDEF)
3000 continue;
3001
3002 /* If c1 is undef but c2 isn't, we can copy c2 to c1
3003 * and consider the instruction duplicated.
3004 */
3005 if (c1->type == AC_IR_UNDEF) {
3006 copy_back_channels |= 1 << j;
3007 continue;
3008 }
3009
3010 /* Test whether the channels are not equal. */
3011 if (c1->type != c2->type ||
3012 (c1->type == AC_IR_CONST &&
3013 c1->const_float != c2->const_float) ||
3014 (c1->type == AC_IR_VALUE &&
3015 c1->value != c2->value)) {
3016 different = true;
3017 break;
3018 }
3019 }
3020 if (!different)
3021 break;
3022
3023 copy_back_channels = 0;
3024 }
3025 if (p == processed->num)
3026 return false;
3027
3028 /* If a match was found, but the matching export has undef where the new
3029 * one has a normal value, copy the normal value to the undef channel.
3030 */
3031 struct ac_vs_exp_inst *match = &processed->exp[p];
3032
3033 /* Get current enabled channels mask. */
3034 LLVMValueRef arg = LLVMGetOperand(match->inst, AC_EXP_ENABLED_CHANNELS);
3035 unsigned enabled_channels = LLVMConstIntGetZExtValue(arg);
3036
3037 while (copy_back_channels) {
3038 unsigned chan = u_bit_scan(&copy_back_channels);
3039
3040 assert(match->chan[chan].type == AC_IR_UNDEF);
3041 LLVMSetOperand(match->inst, AC_EXP_OUT0 + chan,
3042 exp->chan[chan].value);
3043 match->chan[chan] = exp->chan[chan];
3044
3045 /* Update number of enabled channels because the original mask
3046 * is not always 0xf.
3047 */
3048 enabled_channels |= (1 << chan);
3049 LLVMSetOperand(match->inst, AC_EXP_ENABLED_CHANNELS,
3050 LLVMConstInt(ctx->i32, enabled_channels, 0));
3051 }
3052
3053 /* The PARAM export is duplicated. Kill it. */
3054 LLVMInstructionEraseFromParent(exp->inst);
3055
3056 /* Change OFFSET to the matching export. */
3057 for (unsigned i = 0; i < num_outputs; i++) {
3058 if (vs_output_param_offset[i] == exp->offset) {
3059 vs_output_param_offset[i] = match->offset;
3060 break;
3061 }
3062 }
3063 return true;
3064 }
3065
3066 void ac_optimize_vs_outputs(struct ac_llvm_context *ctx,
3067 LLVMValueRef main_fn,
3068 uint8_t *vs_output_param_offset,
3069 uint32_t num_outputs,
3070 uint8_t *num_param_exports)
3071 {
3072 LLVMBasicBlockRef bb;
3073 bool removed_any = false;
3074 struct ac_vs_exports exports;
3075
3076 exports.num = 0;
3077
3078 /* Process all LLVM instructions. */
3079 bb = LLVMGetFirstBasicBlock(main_fn);
3080 while (bb) {
3081 LLVMValueRef inst = LLVMGetFirstInstruction(bb);
3082
3083 while (inst) {
3084 LLVMValueRef cur = inst;
3085 inst = LLVMGetNextInstruction(inst);
3086 struct ac_vs_exp_inst exp;
3087
3088 if (LLVMGetInstructionOpcode(cur) != LLVMCall)
3089 continue;
3090
3091 LLVMValueRef callee = ac_llvm_get_called_value(cur);
3092
3093 if (!ac_llvm_is_function(callee))
3094 continue;
3095
3096 const char *name = LLVMGetValueName(callee);
3097 unsigned num_args = LLVMCountParams(callee);
3098
3099 /* Check if this is an export instruction. */
3100 if ((num_args != 9 && num_args != 8) ||
3101 (strcmp(name, "llvm.SI.export") &&
3102 strcmp(name, "llvm.amdgcn.exp.f32")))
3103 continue;
3104
3105 LLVMValueRef arg = LLVMGetOperand(cur, AC_EXP_TARGET);
3106 unsigned target = LLVMConstIntGetZExtValue(arg);
3107
3108 if (target < V_008DFC_SQ_EXP_PARAM)
3109 continue;
3110
3111 target -= V_008DFC_SQ_EXP_PARAM;
3112
3113 /* Parse the instruction. */
3114 memset(&exp, 0, sizeof(exp));
3115 exp.offset = target;
3116 exp.inst = cur;
3117
3118 for (unsigned i = 0; i < 4; i++) {
3119 LLVMValueRef v = LLVMGetOperand(cur, AC_EXP_OUT0 + i);
3120
3121 exp.chan[i].value = v;
3122
3123 if (LLVMIsUndef(v)) {
3124 exp.chan[i].type = AC_IR_UNDEF;
3125 } else if (LLVMIsAConstantFP(v)) {
3126 LLVMBool loses_info;
3127 exp.chan[i].type = AC_IR_CONST;
3128 exp.chan[i].const_float =
3129 LLVMConstRealGetDouble(v, &loses_info);
3130 } else {
3131 exp.chan[i].type = AC_IR_VALUE;
3132 }
3133 }
3134
3135 /* Eliminate constant and duplicated PARAM exports. */
3136 if (ac_eliminate_const_output(vs_output_param_offset,
3137 num_outputs, &exp) ||
3138 ac_eliminate_duplicated_output(ctx,
3139 vs_output_param_offset,
3140 num_outputs, &exports,
3141 &exp)) {
3142 removed_any = true;
3143 } else {
3144 exports.exp[exports.num++] = exp;
3145 }
3146 }
3147 bb = LLVMGetNextBasicBlock(bb);
3148 }
3149
3150 /* Remove holes in export memory due to removed PARAM exports.
3151 * This is done by renumbering all PARAM exports.
3152 */
3153 if (removed_any) {
3154 uint8_t old_offset[VARYING_SLOT_MAX];
3155 unsigned out, i;
3156
3157 /* Make a copy of the offsets. We need the old version while
3158 * we are modifying some of them. */
3159 memcpy(old_offset, vs_output_param_offset,
3160 sizeof(old_offset));
3161
3162 for (i = 0; i < exports.num; i++) {
3163 unsigned offset = exports.exp[i].offset;
3164
3165 /* Update vs_output_param_offset. Multiple outputs can
3166 * have the same offset.
3167 */
3168 for (out = 0; out < num_outputs; out++) {
3169 if (old_offset[out] == offset)
3170 vs_output_param_offset[out] = i;
3171 }
3172
3173 /* Change the PARAM offset in the instruction. */
3174 LLVMSetOperand(exports.exp[i].inst, AC_EXP_TARGET,
3175 LLVMConstInt(ctx->i32,
3176 V_008DFC_SQ_EXP_PARAM + i, 0));
3177 }
3178 *num_param_exports = exports.num;
3179 }
3180 }
3181
3182 void ac_init_exec_full_mask(struct ac_llvm_context *ctx)
3183 {
3184 LLVMValueRef full_mask = LLVMConstInt(ctx->i64, ~0ull, 0);
3185 ac_build_intrinsic(ctx,
3186 "llvm.amdgcn.init.exec", ctx->voidt,
3187 &full_mask, 1, AC_FUNC_ATTR_CONVERGENT);
3188 }
3189
3190 void ac_declare_lds_as_pointer(struct ac_llvm_context *ctx)
3191 {
3192 unsigned lds_size = ctx->chip_class >= GFX7 ? 65536 : 32768;
3193 ctx->lds = LLVMBuildIntToPtr(ctx->builder, ctx->i32_0,
3194 LLVMPointerType(LLVMArrayType(ctx->i32, lds_size / 4), AC_ADDR_SPACE_LDS),
3195 "lds");
3196 }
3197
3198 LLVMValueRef ac_lds_load(struct ac_llvm_context *ctx,
3199 LLVMValueRef dw_addr)
3200 {
3201 return LLVMBuildLoad(ctx->builder, ac_build_gep0(ctx, ctx->lds, dw_addr), "");
3202 }
3203
3204 void ac_lds_store(struct ac_llvm_context *ctx,
3205 LLVMValueRef dw_addr,
3206 LLVMValueRef value)
3207 {
3208 value = ac_to_integer(ctx, value);
3209 ac_build_indexed_store(ctx, ctx->lds,
3210 dw_addr, value);
3211 }
3212
3213 LLVMValueRef ac_find_lsb(struct ac_llvm_context *ctx,
3214 LLVMTypeRef dst_type,
3215 LLVMValueRef src0)
3216 {
3217 unsigned src0_bitsize = ac_get_elem_bits(ctx, LLVMTypeOf(src0));
3218 const char *intrin_name;
3219 LLVMTypeRef type;
3220 LLVMValueRef zero;
3221
3222 switch (src0_bitsize) {
3223 case 64:
3224 intrin_name = "llvm.cttz.i64";
3225 type = ctx->i64;
3226 zero = ctx->i64_0;
3227 break;
3228 case 32:
3229 intrin_name = "llvm.cttz.i32";
3230 type = ctx->i32;
3231 zero = ctx->i32_0;
3232 break;
3233 case 16:
3234 intrin_name = "llvm.cttz.i16";
3235 type = ctx->i16;
3236 zero = ctx->i16_0;
3237 break;
3238 case 8:
3239 intrin_name = "llvm.cttz.i8";
3240 type = ctx->i8;
3241 zero = ctx->i8_0;
3242 break;
3243 default:
3244 unreachable(!"invalid bitsize");
3245 }
3246
3247 LLVMValueRef params[2] = {
3248 src0,
3249
3250 /* The value of 1 means that ffs(x=0) = undef, so LLVM won't
3251 * add special code to check for x=0. The reason is that
3252 * the LLVM behavior for x=0 is different from what we
3253 * need here. However, LLVM also assumes that ffs(x) is
3254 * in [0, 31], but GLSL expects that ffs(0) = -1, so
3255 * a conditional assignment to handle 0 is still required.
3256 *
3257 * The hardware already implements the correct behavior.
3258 */
3259 ctx->i1true,
3260 };
3261
3262 LLVMValueRef lsb = ac_build_intrinsic(ctx, intrin_name, type,
3263 params, 2,
3264 AC_FUNC_ATTR_READNONE);
3265
3266 if (src0_bitsize == 64) {
3267 lsb = LLVMBuildTrunc(ctx->builder, lsb, ctx->i32, "");
3268 } else if (src0_bitsize < 32) {
3269 lsb = LLVMBuildSExt(ctx->builder, lsb, ctx->i32, "");
3270 }
3271
3272 /* TODO: We need an intrinsic to skip this conditional. */
3273 /* Check for zero: */
3274 return LLVMBuildSelect(ctx->builder, LLVMBuildICmp(ctx->builder,
3275 LLVMIntEQ, src0,
3276 zero, ""),
3277 LLVMConstInt(ctx->i32, -1, 0), lsb, "");
3278 }
3279
3280 LLVMTypeRef ac_array_in_const_addr_space(LLVMTypeRef elem_type)
3281 {
3282 return LLVMPointerType(elem_type, AC_ADDR_SPACE_CONST);
3283 }
3284
3285 LLVMTypeRef ac_array_in_const32_addr_space(LLVMTypeRef elem_type)
3286 {
3287 return LLVMPointerType(elem_type, AC_ADDR_SPACE_CONST_32BIT);
3288 }
3289
3290 static struct ac_llvm_flow *
3291 get_current_flow(struct ac_llvm_context *ctx)
3292 {
3293 if (ctx->flow->depth > 0)
3294 return &ctx->flow->stack[ctx->flow->depth - 1];
3295 return NULL;
3296 }
3297
3298 static struct ac_llvm_flow *
3299 get_innermost_loop(struct ac_llvm_context *ctx)
3300 {
3301 for (unsigned i = ctx->flow->depth; i > 0; --i) {
3302 if (ctx->flow->stack[i - 1].loop_entry_block)
3303 return &ctx->flow->stack[i - 1];
3304 }
3305 return NULL;
3306 }
3307
3308 static struct ac_llvm_flow *
3309 push_flow(struct ac_llvm_context *ctx)
3310 {
3311 struct ac_llvm_flow *flow;
3312
3313 if (ctx->flow->depth >= ctx->flow->depth_max) {
3314 unsigned new_max = MAX2(ctx->flow->depth << 1,
3315 AC_LLVM_INITIAL_CF_DEPTH);
3316
3317 ctx->flow->stack = realloc(ctx->flow->stack, new_max * sizeof(*ctx->flow->stack));
3318 ctx->flow->depth_max = new_max;
3319 }
3320
3321 flow = &ctx->flow->stack[ctx->flow->depth];
3322 ctx->flow->depth++;
3323
3324 flow->next_block = NULL;
3325 flow->loop_entry_block = NULL;
3326 return flow;
3327 }
3328
3329 static void set_basicblock_name(LLVMBasicBlockRef bb, const char *base,
3330 int label_id)
3331 {
3332 char buf[32];
3333 snprintf(buf, sizeof(buf), "%s%d", base, label_id);
3334 LLVMSetValueName(LLVMBasicBlockAsValue(bb), buf);
3335 }
3336
3337 /* Append a basic block at the level of the parent flow.
3338 */
3339 static LLVMBasicBlockRef append_basic_block(struct ac_llvm_context *ctx,
3340 const char *name)
3341 {
3342 assert(ctx->flow->depth >= 1);
3343
3344 if (ctx->flow->depth >= 2) {
3345 struct ac_llvm_flow *flow = &ctx->flow->stack[ctx->flow->depth - 2];
3346
3347 return LLVMInsertBasicBlockInContext(ctx->context,
3348 flow->next_block, name);
3349 }
3350
3351 LLVMValueRef main_fn =
3352 LLVMGetBasicBlockParent(LLVMGetInsertBlock(ctx->builder));
3353 return LLVMAppendBasicBlockInContext(ctx->context, main_fn, name);
3354 }
3355
3356 /* Emit a branch to the given default target for the current block if
3357 * applicable -- that is, if the current block does not already contain a
3358 * branch from a break or continue.
3359 */
3360 static void emit_default_branch(LLVMBuilderRef builder,
3361 LLVMBasicBlockRef target)
3362 {
3363 if (!LLVMGetBasicBlockTerminator(LLVMGetInsertBlock(builder)))
3364 LLVMBuildBr(builder, target);
3365 }
3366
3367 void ac_build_bgnloop(struct ac_llvm_context *ctx, int label_id)
3368 {
3369 struct ac_llvm_flow *flow = push_flow(ctx);
3370 flow->loop_entry_block = append_basic_block(ctx, "LOOP");
3371 flow->next_block = append_basic_block(ctx, "ENDLOOP");
3372 set_basicblock_name(flow->loop_entry_block, "loop", label_id);
3373 LLVMBuildBr(ctx->builder, flow->loop_entry_block);
3374 LLVMPositionBuilderAtEnd(ctx->builder, flow->loop_entry_block);
3375 }
3376
3377 void ac_build_break(struct ac_llvm_context *ctx)
3378 {
3379 struct ac_llvm_flow *flow = get_innermost_loop(ctx);
3380 LLVMBuildBr(ctx->builder, flow->next_block);
3381 }
3382
3383 void ac_build_continue(struct ac_llvm_context *ctx)
3384 {
3385 struct ac_llvm_flow *flow = get_innermost_loop(ctx);
3386 LLVMBuildBr(ctx->builder, flow->loop_entry_block);
3387 }
3388
3389 void ac_build_else(struct ac_llvm_context *ctx, int label_id)
3390 {
3391 struct ac_llvm_flow *current_branch = get_current_flow(ctx);
3392 LLVMBasicBlockRef endif_block;
3393
3394 assert(!current_branch->loop_entry_block);
3395
3396 endif_block = append_basic_block(ctx, "ENDIF");
3397 emit_default_branch(ctx->builder, endif_block);
3398
3399 LLVMPositionBuilderAtEnd(ctx->builder, current_branch->next_block);
3400 set_basicblock_name(current_branch->next_block, "else", label_id);
3401
3402 current_branch->next_block = endif_block;
3403 }
3404
3405 void ac_build_endif(struct ac_llvm_context *ctx, int label_id)
3406 {
3407 struct ac_llvm_flow *current_branch = get_current_flow(ctx);
3408
3409 assert(!current_branch->loop_entry_block);
3410
3411 emit_default_branch(ctx->builder, current_branch->next_block);
3412 LLVMPositionBuilderAtEnd(ctx->builder, current_branch->next_block);
3413 set_basicblock_name(current_branch->next_block, "endif", label_id);
3414
3415 ctx->flow->depth--;
3416 }
3417
3418 void ac_build_endloop(struct ac_llvm_context *ctx, int label_id)
3419 {
3420 struct ac_llvm_flow *current_loop = get_current_flow(ctx);
3421
3422 assert(current_loop->loop_entry_block);
3423
3424 emit_default_branch(ctx->builder, current_loop->loop_entry_block);
3425
3426 LLVMPositionBuilderAtEnd(ctx->builder, current_loop->next_block);
3427 set_basicblock_name(current_loop->next_block, "endloop", label_id);
3428 ctx->flow->depth--;
3429 }
3430
3431 void ac_build_ifcc(struct ac_llvm_context *ctx, LLVMValueRef cond, int label_id)
3432 {
3433 struct ac_llvm_flow *flow = push_flow(ctx);
3434 LLVMBasicBlockRef if_block;
3435
3436 if_block = append_basic_block(ctx, "IF");
3437 flow->next_block = append_basic_block(ctx, "ELSE");
3438 set_basicblock_name(if_block, "if", label_id);
3439 LLVMBuildCondBr(ctx->builder, cond, if_block, flow->next_block);
3440 LLVMPositionBuilderAtEnd(ctx->builder, if_block);
3441 }
3442
3443 void ac_build_if(struct ac_llvm_context *ctx, LLVMValueRef value,
3444 int label_id)
3445 {
3446 LLVMValueRef cond = LLVMBuildFCmp(ctx->builder, LLVMRealUNE,
3447 value, ctx->f32_0, "");
3448 ac_build_ifcc(ctx, cond, label_id);
3449 }
3450
3451 void ac_build_uif(struct ac_llvm_context *ctx, LLVMValueRef value,
3452 int label_id)
3453 {
3454 LLVMValueRef cond = LLVMBuildICmp(ctx->builder, LLVMIntNE,
3455 ac_to_integer(ctx, value),
3456 ctx->i32_0, "");
3457 ac_build_ifcc(ctx, cond, label_id);
3458 }
3459
3460 LLVMValueRef ac_build_alloca_undef(struct ac_llvm_context *ac, LLVMTypeRef type,
3461 const char *name)
3462 {
3463 LLVMBuilderRef builder = ac->builder;
3464 LLVMBasicBlockRef current_block = LLVMGetInsertBlock(builder);
3465 LLVMValueRef function = LLVMGetBasicBlockParent(current_block);
3466 LLVMBasicBlockRef first_block = LLVMGetEntryBasicBlock(function);
3467 LLVMValueRef first_instr = LLVMGetFirstInstruction(first_block);
3468 LLVMBuilderRef first_builder = LLVMCreateBuilderInContext(ac->context);
3469 LLVMValueRef res;
3470
3471 if (first_instr) {
3472 LLVMPositionBuilderBefore(first_builder, first_instr);
3473 } else {
3474 LLVMPositionBuilderAtEnd(first_builder, first_block);
3475 }
3476
3477 res = LLVMBuildAlloca(first_builder, type, name);
3478 LLVMDisposeBuilder(first_builder);
3479 return res;
3480 }
3481
3482 LLVMValueRef ac_build_alloca(struct ac_llvm_context *ac,
3483 LLVMTypeRef type, const char *name)
3484 {
3485 LLVMValueRef ptr = ac_build_alloca_undef(ac, type, name);
3486 LLVMBuildStore(ac->builder, LLVMConstNull(type), ptr);
3487 return ptr;
3488 }
3489
3490 LLVMValueRef ac_cast_ptr(struct ac_llvm_context *ctx, LLVMValueRef ptr,
3491 LLVMTypeRef type)
3492 {
3493 int addr_space = LLVMGetPointerAddressSpace(LLVMTypeOf(ptr));
3494 return LLVMBuildBitCast(ctx->builder, ptr,
3495 LLVMPointerType(type, addr_space), "");
3496 }
3497
3498 LLVMValueRef ac_trim_vector(struct ac_llvm_context *ctx, LLVMValueRef value,
3499 unsigned count)
3500 {
3501 unsigned num_components = ac_get_llvm_num_components(value);
3502 if (count == num_components)
3503 return value;
3504
3505 LLVMValueRef masks[MAX2(count, 2)];
3506 masks[0] = ctx->i32_0;
3507 masks[1] = ctx->i32_1;
3508 for (unsigned i = 2; i < count; i++)
3509 masks[i] = LLVMConstInt(ctx->i32, i, false);
3510
3511 if (count == 1)
3512 return LLVMBuildExtractElement(ctx->builder, value, masks[0],
3513 "");
3514
3515 LLVMValueRef swizzle = LLVMConstVector(masks, count);
3516 return LLVMBuildShuffleVector(ctx->builder, value, value, swizzle, "");
3517 }
3518
3519 LLVMValueRef ac_unpack_param(struct ac_llvm_context *ctx, LLVMValueRef param,
3520 unsigned rshift, unsigned bitwidth)
3521 {
3522 LLVMValueRef value = param;
3523 if (rshift)
3524 value = LLVMBuildLShr(ctx->builder, value,
3525 LLVMConstInt(ctx->i32, rshift, false), "");
3526
3527 if (rshift + bitwidth < 32) {
3528 unsigned mask = (1 << bitwidth) - 1;
3529 value = LLVMBuildAnd(ctx->builder, value,
3530 LLVMConstInt(ctx->i32, mask, false), "");
3531 }
3532 return value;
3533 }
3534
3535 /* Adjust the sample index according to FMASK.
3536 *
3537 * For uncompressed MSAA surfaces, FMASK should return 0x76543210,
3538 * which is the identity mapping. Each nibble says which physical sample
3539 * should be fetched to get that sample.
3540 *
3541 * For example, 0x11111100 means there are only 2 samples stored and
3542 * the second sample covers 3/4 of the pixel. When reading samples 0
3543 * and 1, return physical sample 0 (determined by the first two 0s
3544 * in FMASK), otherwise return physical sample 1.
3545 *
3546 * The sample index should be adjusted as follows:
3547 * addr[sample_index] = (fmask >> (addr[sample_index] * 4)) & 0xF;
3548 */
3549 void ac_apply_fmask_to_sample(struct ac_llvm_context *ac, LLVMValueRef fmask,
3550 LLVMValueRef *addr, bool is_array_tex)
3551 {
3552 struct ac_image_args fmask_load = {};
3553 fmask_load.opcode = ac_image_load;
3554 fmask_load.resource = fmask;
3555 fmask_load.dmask = 0xf;
3556 fmask_load.dim = is_array_tex ? ac_image_2darray : ac_image_2d;
3557 fmask_load.attributes = AC_FUNC_ATTR_READNONE;
3558
3559 fmask_load.coords[0] = addr[0];
3560 fmask_load.coords[1] = addr[1];
3561 if (is_array_tex)
3562 fmask_load.coords[2] = addr[2];
3563
3564 LLVMValueRef fmask_value = ac_build_image_opcode(ac, &fmask_load);
3565 fmask_value = LLVMBuildExtractElement(ac->builder, fmask_value,
3566 ac->i32_0, "");
3567
3568 /* Apply the formula. */
3569 unsigned sample_chan = is_array_tex ? 3 : 2;
3570 LLVMValueRef final_sample;
3571 final_sample = LLVMBuildMul(ac->builder, addr[sample_chan],
3572 LLVMConstInt(ac->i32, 4, 0), "");
3573 final_sample = LLVMBuildLShr(ac->builder, fmask_value, final_sample, "");
3574 /* Mask the sample index by 0x7, because 0x8 means an unknown value
3575 * with EQAA, so those will map to 0. */
3576 final_sample = LLVMBuildAnd(ac->builder, final_sample,
3577 LLVMConstInt(ac->i32, 0x7, 0), "");
3578
3579 /* Don't rewrite the sample index if WORD1.DATA_FORMAT of the FMASK
3580 * resource descriptor is 0 (invalid).
3581 */
3582 LLVMValueRef tmp;
3583 tmp = LLVMBuildBitCast(ac->builder, fmask, ac->v8i32, "");
3584 tmp = LLVMBuildExtractElement(ac->builder, tmp, ac->i32_1, "");
3585 tmp = LLVMBuildICmp(ac->builder, LLVMIntNE, tmp, ac->i32_0, "");
3586
3587 /* Replace the MSAA sample index. */
3588 addr[sample_chan] = LLVMBuildSelect(ac->builder, tmp, final_sample,
3589 addr[sample_chan], "");
3590 }
3591
3592 static LLVMValueRef
3593 _ac_build_readlane(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef lane)
3594 {
3595 LLVMTypeRef type = LLVMTypeOf(src);
3596 LLVMValueRef result;
3597
3598 ac_build_optimization_barrier(ctx, &src);
3599
3600 src = LLVMBuildZExt(ctx->builder, src, ctx->i32, "");
3601 if (lane)
3602 lane = LLVMBuildZExt(ctx->builder, lane, ctx->i32, "");
3603
3604 result = ac_build_intrinsic(ctx,
3605 lane == NULL ? "llvm.amdgcn.readfirstlane" : "llvm.amdgcn.readlane",
3606 ctx->i32, (LLVMValueRef []) { src, lane },
3607 lane == NULL ? 1 : 2,
3608 AC_FUNC_ATTR_READNONE |
3609 AC_FUNC_ATTR_CONVERGENT);
3610
3611 return LLVMBuildTrunc(ctx->builder, result, type, "");
3612 }
3613
3614 /**
3615 * Builds the "llvm.amdgcn.readlane" or "llvm.amdgcn.readfirstlane" intrinsic.
3616 * @param ctx
3617 * @param src
3618 * @param lane - id of the lane or NULL for the first active lane
3619 * @return value of the lane
3620 */
3621 LLVMValueRef
3622 ac_build_readlane(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef lane)
3623 {
3624 LLVMTypeRef src_type = LLVMTypeOf(src);
3625 src = ac_to_integer(ctx, src);
3626 unsigned bits = LLVMGetIntTypeWidth(LLVMTypeOf(src));
3627 LLVMValueRef ret;
3628
3629 if (bits > 32) {
3630 assert(bits % 32 == 0);
3631 LLVMTypeRef vec_type = LLVMVectorType(ctx->i32, bits / 32);
3632 LLVMValueRef src_vector =
3633 LLVMBuildBitCast(ctx->builder, src, vec_type, "");
3634 ret = LLVMGetUndef(vec_type);
3635 for (unsigned i = 0; i < bits / 32; i++) {
3636 src = LLVMBuildExtractElement(ctx->builder, src_vector,
3637 LLVMConstInt(ctx->i32, i, 0), "");
3638 LLVMValueRef ret_comp = _ac_build_readlane(ctx, src, lane);
3639 ret = LLVMBuildInsertElement(ctx->builder, ret, ret_comp,
3640 LLVMConstInt(ctx->i32, i, 0), "");
3641 }
3642 } else {
3643 ret = _ac_build_readlane(ctx, src, lane);
3644 }
3645
3646 if (LLVMGetTypeKind(src_type) == LLVMPointerTypeKind)
3647 return LLVMBuildIntToPtr(ctx->builder, ret, src_type, "");
3648 return LLVMBuildBitCast(ctx->builder, ret, src_type, "");
3649 }
3650
3651 LLVMValueRef
3652 ac_build_writelane(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef value, LLVMValueRef lane)
3653 {
3654 return ac_build_intrinsic(ctx, "llvm.amdgcn.writelane", ctx->i32,
3655 (LLVMValueRef []) {value, lane, src}, 3,
3656 AC_FUNC_ATTR_READNONE | AC_FUNC_ATTR_CONVERGENT);
3657 }
3658
3659 LLVMValueRef
3660 ac_build_mbcnt(struct ac_llvm_context *ctx, LLVMValueRef mask)
3661 {
3662 if (ctx->wave_size == 32) {
3663 return ac_build_intrinsic(ctx, "llvm.amdgcn.mbcnt.lo", ctx->i32,
3664 (LLVMValueRef []) { mask, ctx->i32_0 },
3665 2, AC_FUNC_ATTR_READNONE);
3666 }
3667 LLVMValueRef mask_vec = LLVMBuildBitCast(ctx->builder, mask,
3668 LLVMVectorType(ctx->i32, 2),
3669 "");
3670 LLVMValueRef mask_lo = LLVMBuildExtractElement(ctx->builder, mask_vec,
3671 ctx->i32_0, "");
3672 LLVMValueRef mask_hi = LLVMBuildExtractElement(ctx->builder, mask_vec,
3673 ctx->i32_1, "");
3674 LLVMValueRef val =
3675 ac_build_intrinsic(ctx, "llvm.amdgcn.mbcnt.lo", ctx->i32,
3676 (LLVMValueRef []) { mask_lo, ctx->i32_0 },
3677 2, AC_FUNC_ATTR_READNONE);
3678 val = ac_build_intrinsic(ctx, "llvm.amdgcn.mbcnt.hi", ctx->i32,
3679 (LLVMValueRef []) { mask_hi, val },
3680 2, AC_FUNC_ATTR_READNONE);
3681 return val;
3682 }
3683
3684 enum dpp_ctrl {
3685 _dpp_quad_perm = 0x000,
3686 _dpp_row_sl = 0x100,
3687 _dpp_row_sr = 0x110,
3688 _dpp_row_rr = 0x120,
3689 dpp_wf_sl1 = 0x130,
3690 dpp_wf_rl1 = 0x134,
3691 dpp_wf_sr1 = 0x138,
3692 dpp_wf_rr1 = 0x13C,
3693 dpp_row_mirror = 0x140,
3694 dpp_row_half_mirror = 0x141,
3695 dpp_row_bcast15 = 0x142,
3696 dpp_row_bcast31 = 0x143
3697 };
3698
3699 static inline enum dpp_ctrl
3700 dpp_quad_perm(unsigned lane0, unsigned lane1, unsigned lane2, unsigned lane3)
3701 {
3702 assert(lane0 < 4 && lane1 < 4 && lane2 < 4 && lane3 < 4);
3703 return _dpp_quad_perm | lane0 | (lane1 << 2) | (lane2 << 4) | (lane3 << 6);
3704 }
3705
3706 static inline enum dpp_ctrl
3707 dpp_row_sl(unsigned amount)
3708 {
3709 assert(amount > 0 && amount < 16);
3710 return _dpp_row_sl | amount;
3711 }
3712
3713 static inline enum dpp_ctrl
3714 dpp_row_sr(unsigned amount)
3715 {
3716 assert(amount > 0 && amount < 16);
3717 return _dpp_row_sr | amount;
3718 }
3719
3720 static LLVMValueRef
3721 _ac_build_dpp(struct ac_llvm_context *ctx, LLVMValueRef old, LLVMValueRef src,
3722 enum dpp_ctrl dpp_ctrl, unsigned row_mask, unsigned bank_mask,
3723 bool bound_ctrl)
3724 {
3725 LLVMTypeRef type = LLVMTypeOf(src);
3726 LLVMValueRef res;
3727
3728 old = LLVMBuildZExt(ctx->builder, old, ctx->i32, "");
3729 src = LLVMBuildZExt(ctx->builder, src, ctx->i32, "");
3730
3731 res = ac_build_intrinsic(ctx, "llvm.amdgcn.update.dpp.i32", ctx->i32,
3732 (LLVMValueRef[]) {
3733 old, src,
3734 LLVMConstInt(ctx->i32, dpp_ctrl, 0),
3735 LLVMConstInt(ctx->i32, row_mask, 0),
3736 LLVMConstInt(ctx->i32, bank_mask, 0),
3737 LLVMConstInt(ctx->i1, bound_ctrl, 0) },
3738 6, AC_FUNC_ATTR_READNONE | AC_FUNC_ATTR_CONVERGENT);
3739
3740 return LLVMBuildTrunc(ctx->builder, res, type, "");
3741 }
3742
3743 static LLVMValueRef
3744 ac_build_dpp(struct ac_llvm_context *ctx, LLVMValueRef old, LLVMValueRef src,
3745 enum dpp_ctrl dpp_ctrl, unsigned row_mask, unsigned bank_mask,
3746 bool bound_ctrl)
3747 {
3748 LLVMTypeRef src_type = LLVMTypeOf(src);
3749 src = ac_to_integer(ctx, src);
3750 old = ac_to_integer(ctx, old);
3751 unsigned bits = LLVMGetIntTypeWidth(LLVMTypeOf(src));
3752 LLVMValueRef ret;
3753 if (bits > 32) {
3754 assert(bits % 32 == 0);
3755 LLVMTypeRef vec_type = LLVMVectorType(ctx->i32, bits / 32);
3756 LLVMValueRef src_vector =
3757 LLVMBuildBitCast(ctx->builder, src, vec_type, "");
3758 LLVMValueRef old_vector =
3759 LLVMBuildBitCast(ctx->builder, old, vec_type, "");
3760 ret = LLVMGetUndef(vec_type);
3761 for (unsigned i = 0; i < bits / 32; i++) {
3762 src = LLVMBuildExtractElement(ctx->builder, src_vector,
3763 LLVMConstInt(ctx->i32, i,
3764 0), "");
3765 old = LLVMBuildExtractElement(ctx->builder, old_vector,
3766 LLVMConstInt(ctx->i32, i,
3767 0), "");
3768 LLVMValueRef ret_comp = _ac_build_dpp(ctx, old, src,
3769 dpp_ctrl,
3770 row_mask,
3771 bank_mask,
3772 bound_ctrl);
3773 ret = LLVMBuildInsertElement(ctx->builder, ret,
3774 ret_comp,
3775 LLVMConstInt(ctx->i32, i,
3776 0), "");
3777 }
3778 } else {
3779 ret = _ac_build_dpp(ctx, old, src, dpp_ctrl, row_mask,
3780 bank_mask, bound_ctrl);
3781 }
3782 return LLVMBuildBitCast(ctx->builder, ret, src_type, "");
3783 }
3784
3785 static LLVMValueRef
3786 _ac_build_permlane16(struct ac_llvm_context *ctx, LLVMValueRef src, uint64_t sel,
3787 bool exchange_rows, bool bound_ctrl)
3788 {
3789 LLVMTypeRef type = LLVMTypeOf(src);
3790 LLVMValueRef result;
3791
3792 src = LLVMBuildZExt(ctx->builder, src, ctx->i32, "");
3793
3794 LLVMValueRef args[6] = {
3795 src,
3796 src,
3797 LLVMConstInt(ctx->i32, sel, false),
3798 LLVMConstInt(ctx->i32, sel >> 32, false),
3799 ctx->i1true, /* fi */
3800 bound_ctrl ? ctx->i1true : ctx->i1false,
3801 };
3802
3803 result = ac_build_intrinsic(ctx, exchange_rows ? "llvm.amdgcn.permlanex16"
3804 : "llvm.amdgcn.permlane16",
3805 ctx->i32, args, 6,
3806 AC_FUNC_ATTR_READNONE | AC_FUNC_ATTR_CONVERGENT);
3807
3808 return LLVMBuildTrunc(ctx->builder, result, type, "");
3809 }
3810
3811 static LLVMValueRef
3812 ac_build_permlane16(struct ac_llvm_context *ctx, LLVMValueRef src, uint64_t sel,
3813 bool exchange_rows, bool bound_ctrl)
3814 {
3815 LLVMTypeRef src_type = LLVMTypeOf(src);
3816 src = ac_to_integer(ctx, src);
3817 unsigned bits = LLVMGetIntTypeWidth(LLVMTypeOf(src));
3818 LLVMValueRef ret;
3819 if (bits > 32) {
3820 assert(bits % 32 == 0);
3821 LLVMTypeRef vec_type = LLVMVectorType(ctx->i32, bits / 32);
3822 LLVMValueRef src_vector =
3823 LLVMBuildBitCast(ctx->builder, src, vec_type, "");
3824 ret = LLVMGetUndef(vec_type);
3825 for (unsigned i = 0; i < bits / 32; i++) {
3826 src = LLVMBuildExtractElement(ctx->builder, src_vector,
3827 LLVMConstInt(ctx->i32, i,
3828 0), "");
3829 LLVMValueRef ret_comp =
3830 _ac_build_permlane16(ctx, src, sel,
3831 exchange_rows,
3832 bound_ctrl);
3833 ret = LLVMBuildInsertElement(ctx->builder, ret,
3834 ret_comp,
3835 LLVMConstInt(ctx->i32, i,
3836 0), "");
3837 }
3838 } else {
3839 ret = _ac_build_permlane16(ctx, src, sel, exchange_rows,
3840 bound_ctrl);
3841 }
3842 return LLVMBuildBitCast(ctx->builder, ret, src_type, "");
3843 }
3844
3845 static inline unsigned
3846 ds_pattern_bitmode(unsigned and_mask, unsigned or_mask, unsigned xor_mask)
3847 {
3848 assert(and_mask < 32 && or_mask < 32 && xor_mask < 32);
3849 return and_mask | (or_mask << 5) | (xor_mask << 10);
3850 }
3851
3852 static LLVMValueRef
3853 _ac_build_ds_swizzle(struct ac_llvm_context *ctx, LLVMValueRef src, unsigned mask)
3854 {
3855 LLVMTypeRef src_type = LLVMTypeOf(src);
3856 LLVMValueRef ret;
3857
3858 src = LLVMBuildZExt(ctx->builder, src, ctx->i32, "");
3859
3860 ret = ac_build_intrinsic(ctx, "llvm.amdgcn.ds.swizzle", ctx->i32,
3861 (LLVMValueRef []) {
3862 src, LLVMConstInt(ctx->i32, mask, 0) },
3863 2, AC_FUNC_ATTR_READNONE | AC_FUNC_ATTR_CONVERGENT);
3864
3865 return LLVMBuildTrunc(ctx->builder, ret, src_type, "");
3866 }
3867
3868 LLVMValueRef
3869 ac_build_ds_swizzle(struct ac_llvm_context *ctx, LLVMValueRef src, unsigned mask)
3870 {
3871 LLVMTypeRef src_type = LLVMTypeOf(src);
3872 src = ac_to_integer(ctx, src);
3873 unsigned bits = LLVMGetIntTypeWidth(LLVMTypeOf(src));
3874 LLVMValueRef ret;
3875 if (bits > 32) {
3876 assert(bits % 32 == 0);
3877 LLVMTypeRef vec_type = LLVMVectorType(ctx->i32, bits / 32);
3878 LLVMValueRef src_vector =
3879 LLVMBuildBitCast(ctx->builder, src, vec_type, "");
3880 ret = LLVMGetUndef(vec_type);
3881 for (unsigned i = 0; i < bits / 32; i++) {
3882 src = LLVMBuildExtractElement(ctx->builder, src_vector,
3883 LLVMConstInt(ctx->i32, i,
3884 0), "");
3885 LLVMValueRef ret_comp = _ac_build_ds_swizzle(ctx, src,
3886 mask);
3887 ret = LLVMBuildInsertElement(ctx->builder, ret,
3888 ret_comp,
3889 LLVMConstInt(ctx->i32, i,
3890 0), "");
3891 }
3892 } else {
3893 ret = _ac_build_ds_swizzle(ctx, src, mask);
3894 }
3895 return LLVMBuildBitCast(ctx->builder, ret, src_type, "");
3896 }
3897
3898 static LLVMValueRef
3899 ac_build_wwm(struct ac_llvm_context *ctx, LLVMValueRef src)
3900 {
3901 LLVMTypeRef src_type = LLVMTypeOf(src);
3902 unsigned bitsize = ac_get_elem_bits(ctx, src_type);
3903 char name[32], type[8];
3904 LLVMValueRef ret;
3905
3906 src = ac_to_integer(ctx, src);
3907
3908 if (bitsize < 32)
3909 src = LLVMBuildZExt(ctx->builder, src, ctx->i32, "");
3910
3911 ac_build_type_name_for_intr(LLVMTypeOf(src), type, sizeof(type));
3912 snprintf(name, sizeof(name), "llvm.amdgcn.wwm.%s", type);
3913 ret = ac_build_intrinsic(ctx, name, LLVMTypeOf(src),
3914 (LLVMValueRef []) { src }, 1,
3915 AC_FUNC_ATTR_READNONE);
3916
3917 if (bitsize < 32)
3918 ret = LLVMBuildTrunc(ctx->builder, ret,
3919 ac_to_integer_type(ctx, src_type), "");
3920
3921 return LLVMBuildBitCast(ctx->builder, ret, src_type, "");
3922 }
3923
3924 static LLVMValueRef
3925 ac_build_set_inactive(struct ac_llvm_context *ctx, LLVMValueRef src,
3926 LLVMValueRef inactive)
3927 {
3928 char name[33], type[8];
3929 LLVMTypeRef src_type = LLVMTypeOf(src);
3930 unsigned bitsize = ac_get_elem_bits(ctx, src_type);
3931 src = ac_to_integer(ctx, src);
3932 inactive = ac_to_integer(ctx, inactive);
3933
3934 if (bitsize < 32) {
3935 src = LLVMBuildZExt(ctx->builder, src, ctx->i32, "");
3936 inactive = LLVMBuildZExt(ctx->builder, inactive, ctx->i32, "");
3937 }
3938
3939 ac_build_type_name_for_intr(LLVMTypeOf(src), type, sizeof(type));
3940 snprintf(name, sizeof(name), "llvm.amdgcn.set.inactive.%s", type);
3941 LLVMValueRef ret =
3942 ac_build_intrinsic(ctx, name,
3943 LLVMTypeOf(src), (LLVMValueRef []) {
3944 src, inactive }, 2,
3945 AC_FUNC_ATTR_READNONE |
3946 AC_FUNC_ATTR_CONVERGENT);
3947 if (bitsize < 32)
3948 ret = LLVMBuildTrunc(ctx->builder, ret, src_type, "");
3949
3950 return ret;
3951 }
3952
3953 static LLVMValueRef
3954 get_reduction_identity(struct ac_llvm_context *ctx, nir_op op, unsigned type_size)
3955 {
3956 if (type_size == 1) {
3957 switch (op) {
3958 case nir_op_iadd: return ctx->i8_0;
3959 case nir_op_imul: return ctx->i8_1;
3960 case nir_op_imin: return LLVMConstInt(ctx->i8, INT8_MAX, 0);
3961 case nir_op_umin: return LLVMConstInt(ctx->i8, UINT8_MAX, 0);
3962 case nir_op_imax: return LLVMConstInt(ctx->i8, INT8_MIN, 0);
3963 case nir_op_umax: return ctx->i8_0;
3964 case nir_op_iand: return LLVMConstInt(ctx->i8, -1, 0);
3965 case nir_op_ior: return ctx->i8_0;
3966 case nir_op_ixor: return ctx->i8_0;
3967 default:
3968 unreachable("bad reduction intrinsic");
3969 }
3970 } else if (type_size == 2) {
3971 switch (op) {
3972 case nir_op_iadd: return ctx->i16_0;
3973 case nir_op_fadd: return ctx->f16_0;
3974 case nir_op_imul: return ctx->i16_1;
3975 case nir_op_fmul: return ctx->f16_1;
3976 case nir_op_imin: return LLVMConstInt(ctx->i16, INT16_MAX, 0);
3977 case nir_op_umin: return LLVMConstInt(ctx->i16, UINT16_MAX, 0);
3978 case nir_op_fmin: return LLVMConstReal(ctx->f16, INFINITY);
3979 case nir_op_imax: return LLVMConstInt(ctx->i16, INT16_MIN, 0);
3980 case nir_op_umax: return ctx->i16_0;
3981 case nir_op_fmax: return LLVMConstReal(ctx->f16, -INFINITY);
3982 case nir_op_iand: return LLVMConstInt(ctx->i16, -1, 0);
3983 case nir_op_ior: return ctx->i16_0;
3984 case nir_op_ixor: return ctx->i16_0;
3985 default:
3986 unreachable("bad reduction intrinsic");
3987 }
3988 } else if (type_size == 4) {
3989 switch (op) {
3990 case nir_op_iadd: return ctx->i32_0;
3991 case nir_op_fadd: return ctx->f32_0;
3992 case nir_op_imul: return ctx->i32_1;
3993 case nir_op_fmul: return ctx->f32_1;
3994 case nir_op_imin: return LLVMConstInt(ctx->i32, INT32_MAX, 0);
3995 case nir_op_umin: return LLVMConstInt(ctx->i32, UINT32_MAX, 0);
3996 case nir_op_fmin: return LLVMConstReal(ctx->f32, INFINITY);
3997 case nir_op_imax: return LLVMConstInt(ctx->i32, INT32_MIN, 0);
3998 case nir_op_umax: return ctx->i32_0;
3999 case nir_op_fmax: return LLVMConstReal(ctx->f32, -INFINITY);
4000 case nir_op_iand: return LLVMConstInt(ctx->i32, -1, 0);
4001 case nir_op_ior: return ctx->i32_0;
4002 case nir_op_ixor: return ctx->i32_0;
4003 default:
4004 unreachable("bad reduction intrinsic");
4005 }
4006 } else { /* type_size == 64bit */
4007 switch (op) {
4008 case nir_op_iadd: return ctx->i64_0;
4009 case nir_op_fadd: return ctx->f64_0;
4010 case nir_op_imul: return ctx->i64_1;
4011 case nir_op_fmul: return ctx->f64_1;
4012 case nir_op_imin: return LLVMConstInt(ctx->i64, INT64_MAX, 0);
4013 case nir_op_umin: return LLVMConstInt(ctx->i64, UINT64_MAX, 0);
4014 case nir_op_fmin: return LLVMConstReal(ctx->f64, INFINITY);
4015 case nir_op_imax: return LLVMConstInt(ctx->i64, INT64_MIN, 0);
4016 case nir_op_umax: return ctx->i64_0;
4017 case nir_op_fmax: return LLVMConstReal(ctx->f64, -INFINITY);
4018 case nir_op_iand: return LLVMConstInt(ctx->i64, -1, 0);
4019 case nir_op_ior: return ctx->i64_0;
4020 case nir_op_ixor: return ctx->i64_0;
4021 default:
4022 unreachable("bad reduction intrinsic");
4023 }
4024 }
4025 }
4026
4027 static LLVMValueRef
4028 ac_build_alu_op(struct ac_llvm_context *ctx, LLVMValueRef lhs, LLVMValueRef rhs, nir_op op)
4029 {
4030 bool _64bit = ac_get_type_size(LLVMTypeOf(lhs)) == 8;
4031 bool _32bit = ac_get_type_size(LLVMTypeOf(lhs)) == 4;
4032 switch (op) {
4033 case nir_op_iadd: return LLVMBuildAdd(ctx->builder, lhs, rhs, "");
4034 case nir_op_fadd: return LLVMBuildFAdd(ctx->builder, lhs, rhs, "");
4035 case nir_op_imul: return LLVMBuildMul(ctx->builder, lhs, rhs, "");
4036 case nir_op_fmul: return LLVMBuildFMul(ctx->builder, lhs, rhs, "");
4037 case nir_op_imin: return LLVMBuildSelect(ctx->builder,
4038 LLVMBuildICmp(ctx->builder, LLVMIntSLT, lhs, rhs, ""),
4039 lhs, rhs, "");
4040 case nir_op_umin: return LLVMBuildSelect(ctx->builder,
4041 LLVMBuildICmp(ctx->builder, LLVMIntULT, lhs, rhs, ""),
4042 lhs, rhs, "");
4043 case nir_op_fmin: return ac_build_intrinsic(ctx,
4044 _64bit ? "llvm.minnum.f64" : _32bit ? "llvm.minnum.f32" : "llvm.minnum.f16",
4045 _64bit ? ctx->f64 : _32bit ? ctx->f32 : ctx->f16,
4046 (LLVMValueRef[]){lhs, rhs}, 2, AC_FUNC_ATTR_READNONE);
4047 case nir_op_imax: return LLVMBuildSelect(ctx->builder,
4048 LLVMBuildICmp(ctx->builder, LLVMIntSGT, lhs, rhs, ""),
4049 lhs, rhs, "");
4050 case nir_op_umax: return LLVMBuildSelect(ctx->builder,
4051 LLVMBuildICmp(ctx->builder, LLVMIntUGT, lhs, rhs, ""),
4052 lhs, rhs, "");
4053 case nir_op_fmax: return ac_build_intrinsic(ctx,
4054 _64bit ? "llvm.maxnum.f64" : _32bit ? "llvm.maxnum.f32" : "llvm.maxnum.f16",
4055 _64bit ? ctx->f64 : _32bit ? ctx->f32 : ctx->f16,
4056 (LLVMValueRef[]){lhs, rhs}, 2, AC_FUNC_ATTR_READNONE);
4057 case nir_op_iand: return LLVMBuildAnd(ctx->builder, lhs, rhs, "");
4058 case nir_op_ior: return LLVMBuildOr(ctx->builder, lhs, rhs, "");
4059 case nir_op_ixor: return LLVMBuildXor(ctx->builder, lhs, rhs, "");
4060 default:
4061 unreachable("bad reduction intrinsic");
4062 }
4063 }
4064
4065 /**
4066 * \param src The value to shift.
4067 * \param identity The value to use the first lane.
4068 * \param maxprefix specifies that the result only needs to be correct for a
4069 * prefix of this many threads
4070 * \return src, shifted 1 lane up, and identity shifted into lane 0.
4071 */
4072 static LLVMValueRef
4073 ac_wavefront_shift_right_1(struct ac_llvm_context *ctx, LLVMValueRef src,
4074 LLVMValueRef identity, unsigned maxprefix)
4075 {
4076 if (ctx->chip_class >= GFX10) {
4077 /* wavefront shift_right by 1 on GFX10 (emulate dpp_wf_sr1) */
4078 LLVMValueRef active, tmp1, tmp2;
4079 LLVMValueRef tid = ac_get_thread_id(ctx);
4080
4081 tmp1 = ac_build_dpp(ctx, identity, src, dpp_row_sr(1), 0xf, 0xf, false);
4082
4083 tmp2 = ac_build_permlane16(ctx, src, (uint64_t)~0, true, false);
4084
4085 if (maxprefix > 32) {
4086 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ, tid,
4087 LLVMConstInt(ctx->i32, 32, false), "");
4088
4089 tmp2 = LLVMBuildSelect(ctx->builder, active,
4090 ac_build_readlane(ctx, src,
4091 LLVMConstInt(ctx->i32, 31, false)),
4092 tmp2, "");
4093
4094 active = LLVMBuildOr(ctx->builder, active,
4095 LLVMBuildICmp(ctx->builder, LLVMIntEQ,
4096 LLVMBuildAnd(ctx->builder, tid,
4097 LLVMConstInt(ctx->i32, 0x1f, false), ""),
4098 LLVMConstInt(ctx->i32, 0x10, false), ""), "");
4099 return LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
4100 } else if (maxprefix > 16) {
4101 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ, tid,
4102 LLVMConstInt(ctx->i32, 16, false), "");
4103
4104 return LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
4105 }
4106 } else if (ctx->chip_class >= GFX8) {
4107 return ac_build_dpp(ctx, identity, src, dpp_wf_sr1, 0xf, 0xf, false);
4108 }
4109
4110 /* wavefront shift_right by 1 on SI/CI */
4111 LLVMValueRef active, tmp1, tmp2;
4112 LLVMValueRef tid = ac_get_thread_id(ctx);
4113 tmp1 = ac_build_ds_swizzle(ctx, src, (1 << 15) | dpp_quad_perm(0, 0, 1, 2));
4114 tmp2 = ac_build_ds_swizzle(ctx, src, ds_pattern_bitmode(0x18, 0x03, 0x00));
4115 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ,
4116 LLVMBuildAnd(ctx->builder, tid, LLVMConstInt(ctx->i32, 0x7, 0), ""),
4117 LLVMConstInt(ctx->i32, 0x4, 0), "");
4118 tmp1 = LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
4119 tmp2 = ac_build_ds_swizzle(ctx, src, ds_pattern_bitmode(0x10, 0x07, 0x00));
4120 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ,
4121 LLVMBuildAnd(ctx->builder, tid, LLVMConstInt(ctx->i32, 0xf, 0), ""),
4122 LLVMConstInt(ctx->i32, 0x8, 0), "");
4123 tmp1 = LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
4124 tmp2 = ac_build_ds_swizzle(ctx, src, ds_pattern_bitmode(0x00, 0x0f, 0x00));
4125 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ,
4126 LLVMBuildAnd(ctx->builder, tid, LLVMConstInt(ctx->i32, 0x1f, 0), ""),
4127 LLVMConstInt(ctx->i32, 0x10, 0), "");
4128 tmp1 = LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
4129 tmp2 = ac_build_readlane(ctx, src, LLVMConstInt(ctx->i32, 31, 0));
4130 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ, tid, LLVMConstInt(ctx->i32, 32, 0), "");
4131 tmp1 = LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
4132 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ, tid, LLVMConstInt(ctx->i32, 0, 0), "");
4133 return LLVMBuildSelect(ctx->builder, active, identity, tmp1, "");
4134 }
4135
4136 /**
4137 * \param maxprefix specifies that the result only needs to be correct for a
4138 * prefix of this many threads
4139 */
4140 static LLVMValueRef
4141 ac_build_scan(struct ac_llvm_context *ctx, nir_op op, LLVMValueRef src, LLVMValueRef identity,
4142 unsigned maxprefix, bool inclusive)
4143 {
4144 LLVMValueRef result, tmp;
4145
4146 if (!inclusive)
4147 src = ac_wavefront_shift_right_1(ctx, src, identity, maxprefix);
4148
4149 result = src;
4150
4151 if (ctx->chip_class <= GFX7) {
4152 assert(maxprefix == 64);
4153 LLVMValueRef tid = ac_get_thread_id(ctx);
4154 LLVMValueRef active;
4155 tmp = ac_build_ds_swizzle(ctx, src, ds_pattern_bitmode(0x1e, 0x00, 0x00));
4156 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
4157 LLVMBuildAnd(ctx->builder, tid, ctx->i32_1, ""),
4158 ctx->i32_0, "");
4159 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
4160 result = ac_build_alu_op(ctx, result, tmp, op);
4161 tmp = ac_build_ds_swizzle(ctx, result, ds_pattern_bitmode(0x1c, 0x01, 0x00));
4162 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
4163 LLVMBuildAnd(ctx->builder, tid, LLVMConstInt(ctx->i32, 2, 0), ""),
4164 ctx->i32_0, "");
4165 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
4166 result = ac_build_alu_op(ctx, result, tmp, op);
4167 tmp = ac_build_ds_swizzle(ctx, result, ds_pattern_bitmode(0x18, 0x03, 0x00));
4168 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
4169 LLVMBuildAnd(ctx->builder, tid, LLVMConstInt(ctx->i32, 4, 0), ""),
4170 ctx->i32_0, "");
4171 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
4172 result = ac_build_alu_op(ctx, result, tmp, op);
4173 tmp = ac_build_ds_swizzle(ctx, result, ds_pattern_bitmode(0x10, 0x07, 0x00));
4174 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
4175 LLVMBuildAnd(ctx->builder, tid, LLVMConstInt(ctx->i32, 8, 0), ""),
4176 ctx->i32_0, "");
4177 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
4178 result = ac_build_alu_op(ctx, result, tmp, op);
4179 tmp = ac_build_ds_swizzle(ctx, result, ds_pattern_bitmode(0x00, 0x0f, 0x00));
4180 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
4181 LLVMBuildAnd(ctx->builder, tid, LLVMConstInt(ctx->i32, 16, 0), ""),
4182 ctx->i32_0, "");
4183 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
4184 result = ac_build_alu_op(ctx, result, tmp, op);
4185 tmp = ac_build_readlane(ctx, result, LLVMConstInt(ctx->i32, 31, 0));
4186 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
4187 LLVMBuildAnd(ctx->builder, tid, LLVMConstInt(ctx->i32, 32, 0), ""),
4188 ctx->i32_0, "");
4189 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
4190 result = ac_build_alu_op(ctx, result, tmp, op);
4191 return result;
4192 }
4193
4194 if (maxprefix <= 1)
4195 return result;
4196 tmp = ac_build_dpp(ctx, identity, src, dpp_row_sr(1), 0xf, 0xf, false);
4197 result = ac_build_alu_op(ctx, result, tmp, op);
4198 if (maxprefix <= 2)
4199 return result;
4200 tmp = ac_build_dpp(ctx, identity, src, dpp_row_sr(2), 0xf, 0xf, false);
4201 result = ac_build_alu_op(ctx, result, tmp, op);
4202 if (maxprefix <= 3)
4203 return result;
4204 tmp = ac_build_dpp(ctx, identity, src, dpp_row_sr(3), 0xf, 0xf, false);
4205 result = ac_build_alu_op(ctx, result, tmp, op);
4206 if (maxprefix <= 4)
4207 return result;
4208 tmp = ac_build_dpp(ctx, identity, result, dpp_row_sr(4), 0xf, 0xe, false);
4209 result = ac_build_alu_op(ctx, result, tmp, op);
4210 if (maxprefix <= 8)
4211 return result;
4212 tmp = ac_build_dpp(ctx, identity, result, dpp_row_sr(8), 0xf, 0xc, false);
4213 result = ac_build_alu_op(ctx, result, tmp, op);
4214 if (maxprefix <= 16)
4215 return result;
4216
4217 if (ctx->chip_class >= GFX10) {
4218 LLVMValueRef tid = ac_get_thread_id(ctx);
4219 LLVMValueRef active;
4220
4221 tmp = ac_build_permlane16(ctx, result, ~(uint64_t)0, true, false);
4222
4223 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
4224 LLVMBuildAnd(ctx->builder, tid,
4225 LLVMConstInt(ctx->i32, 16, false), ""),
4226 ctx->i32_0, "");
4227
4228 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
4229
4230 result = ac_build_alu_op(ctx, result, tmp, op);
4231
4232 if (maxprefix <= 32)
4233 return result;
4234
4235 tmp = ac_build_readlane(ctx, result, LLVMConstInt(ctx->i32, 31, false));
4236
4237 active = LLVMBuildICmp(ctx->builder, LLVMIntUGE, tid,
4238 LLVMConstInt(ctx->i32, 32, false), "");
4239
4240 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
4241
4242 result = ac_build_alu_op(ctx, result, tmp, op);
4243 return result;
4244 }
4245
4246 tmp = ac_build_dpp(ctx, identity, result, dpp_row_bcast15, 0xa, 0xf, false);
4247 result = ac_build_alu_op(ctx, result, tmp, op);
4248 if (maxprefix <= 32)
4249 return result;
4250 tmp = ac_build_dpp(ctx, identity, result, dpp_row_bcast31, 0xc, 0xf, false);
4251 result = ac_build_alu_op(ctx, result, tmp, op);
4252 return result;
4253 }
4254
4255 LLVMValueRef
4256 ac_build_inclusive_scan(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op)
4257 {
4258 LLVMValueRef result;
4259
4260 if (LLVMTypeOf(src) == ctx->i1 && op == nir_op_iadd) {
4261 LLVMBuilderRef builder = ctx->builder;
4262 src = LLVMBuildZExt(builder, src, ctx->i32, "");
4263 result = ac_build_ballot(ctx, src);
4264 result = ac_build_mbcnt(ctx, result);
4265 result = LLVMBuildAdd(builder, result, src, "");
4266 return result;
4267 }
4268
4269 ac_build_optimization_barrier(ctx, &src);
4270
4271 LLVMValueRef identity =
4272 get_reduction_identity(ctx, op, ac_get_type_size(LLVMTypeOf(src)));
4273 result = LLVMBuildBitCast(ctx->builder, ac_build_set_inactive(ctx, src, identity),
4274 LLVMTypeOf(identity), "");
4275 result = ac_build_scan(ctx, op, result, identity, ctx->wave_size, true);
4276
4277 return ac_build_wwm(ctx, result);
4278 }
4279
4280 LLVMValueRef
4281 ac_build_exclusive_scan(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op)
4282 {
4283 LLVMValueRef result;
4284
4285 if (LLVMTypeOf(src) == ctx->i1 && op == nir_op_iadd) {
4286 LLVMBuilderRef builder = ctx->builder;
4287 src = LLVMBuildZExt(builder, src, ctx->i32, "");
4288 result = ac_build_ballot(ctx, src);
4289 result = ac_build_mbcnt(ctx, result);
4290 return result;
4291 }
4292
4293 ac_build_optimization_barrier(ctx, &src);
4294
4295 LLVMValueRef identity =
4296 get_reduction_identity(ctx, op, ac_get_type_size(LLVMTypeOf(src)));
4297 result = LLVMBuildBitCast(ctx->builder, ac_build_set_inactive(ctx, src, identity),
4298 LLVMTypeOf(identity), "");
4299 result = ac_build_scan(ctx, op, result, identity, ctx->wave_size, false);
4300
4301 return ac_build_wwm(ctx, result);
4302 }
4303
4304 LLVMValueRef
4305 ac_build_reduce(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op, unsigned cluster_size)
4306 {
4307 if (cluster_size == 1) return src;
4308 ac_build_optimization_barrier(ctx, &src);
4309 LLVMValueRef result, swap;
4310 LLVMValueRef identity = get_reduction_identity(ctx, op,
4311 ac_get_type_size(LLVMTypeOf(src)));
4312 result = LLVMBuildBitCast(ctx->builder,
4313 ac_build_set_inactive(ctx, src, identity),
4314 LLVMTypeOf(identity), "");
4315 swap = ac_build_quad_swizzle(ctx, result, 1, 0, 3, 2);
4316 result = ac_build_alu_op(ctx, result, swap, op);
4317 if (cluster_size == 2) return ac_build_wwm(ctx, result);
4318
4319 swap = ac_build_quad_swizzle(ctx, result, 2, 3, 0, 1);
4320 result = ac_build_alu_op(ctx, result, swap, op);
4321 if (cluster_size == 4) return ac_build_wwm(ctx, result);
4322
4323 if (ctx->chip_class >= GFX8)
4324 swap = ac_build_dpp(ctx, identity, result, dpp_row_half_mirror, 0xf, 0xf, false);
4325 else
4326 swap = ac_build_ds_swizzle(ctx, result, ds_pattern_bitmode(0x1f, 0, 0x04));
4327 result = ac_build_alu_op(ctx, result, swap, op);
4328 if (cluster_size == 8) return ac_build_wwm(ctx, result);
4329
4330 if (ctx->chip_class >= GFX8)
4331 swap = ac_build_dpp(ctx, identity, result, dpp_row_mirror, 0xf, 0xf, false);
4332 else
4333 swap = ac_build_ds_swizzle(ctx, result, ds_pattern_bitmode(0x1f, 0, 0x08));
4334 result = ac_build_alu_op(ctx, result, swap, op);
4335 if (cluster_size == 16) return ac_build_wwm(ctx, result);
4336
4337 if (ctx->chip_class >= GFX10)
4338 swap = ac_build_permlane16(ctx, result, 0, true, false);
4339 else if (ctx->chip_class >= GFX8 && cluster_size != 32)
4340 swap = ac_build_dpp(ctx, identity, result, dpp_row_bcast15, 0xa, 0xf, false);
4341 else
4342 swap = ac_build_ds_swizzle(ctx, result, ds_pattern_bitmode(0x1f, 0, 0x10));
4343 result = ac_build_alu_op(ctx, result, swap, op);
4344 if (cluster_size == 32) return ac_build_wwm(ctx, result);
4345
4346 if (ctx->chip_class >= GFX8) {
4347 if (ctx->wave_size == 64) {
4348 if (ctx->chip_class >= GFX10)
4349 swap = ac_build_readlane(ctx, result, LLVMConstInt(ctx->i32, 31, false));
4350 else
4351 swap = ac_build_dpp(ctx, identity, result, dpp_row_bcast31, 0xc, 0xf, false);
4352 result = ac_build_alu_op(ctx, result, swap, op);
4353 result = ac_build_readlane(ctx, result, LLVMConstInt(ctx->i32, 63, 0));
4354 }
4355
4356 return ac_build_wwm(ctx, result);
4357 } else {
4358 swap = ac_build_readlane(ctx, result, ctx->i32_0);
4359 result = ac_build_readlane(ctx, result, LLVMConstInt(ctx->i32, 32, 0));
4360 result = ac_build_alu_op(ctx, result, swap, op);
4361 return ac_build_wwm(ctx, result);
4362 }
4363 }
4364
4365 /**
4366 * "Top half" of a scan that reduces per-wave values across an entire
4367 * workgroup.
4368 *
4369 * The source value must be present in the highest lane of the wave, and the
4370 * highest lane must be live.
4371 */
4372 void
4373 ac_build_wg_wavescan_top(struct ac_llvm_context *ctx, struct ac_wg_scan *ws)
4374 {
4375 if (ws->maxwaves <= 1)
4376 return;
4377
4378 const LLVMValueRef last_lane = LLVMConstInt(ctx->i32, ctx->wave_size - 1, false);
4379 LLVMBuilderRef builder = ctx->builder;
4380 LLVMValueRef tid = ac_get_thread_id(ctx);
4381 LLVMValueRef tmp;
4382
4383 tmp = LLVMBuildICmp(builder, LLVMIntEQ, tid, last_lane, "");
4384 ac_build_ifcc(ctx, tmp, 1000);
4385 LLVMBuildStore(builder, ws->src, LLVMBuildGEP(builder, ws->scratch, &ws->waveidx, 1, ""));
4386 ac_build_endif(ctx, 1000);
4387 }
4388
4389 /**
4390 * "Bottom half" of a scan that reduces per-wave values across an entire
4391 * workgroup.
4392 *
4393 * The caller must place a barrier between the top and bottom halves.
4394 */
4395 void
4396 ac_build_wg_wavescan_bottom(struct ac_llvm_context *ctx, struct ac_wg_scan *ws)
4397 {
4398 const LLVMTypeRef type = LLVMTypeOf(ws->src);
4399 const LLVMValueRef identity =
4400 get_reduction_identity(ctx, ws->op, ac_get_type_size(type));
4401
4402 if (ws->maxwaves <= 1) {
4403 ws->result_reduce = ws->src;
4404 ws->result_inclusive = ws->src;
4405 ws->result_exclusive = identity;
4406 return;
4407 }
4408 assert(ws->maxwaves <= 32);
4409
4410 LLVMBuilderRef builder = ctx->builder;
4411 LLVMValueRef tid = ac_get_thread_id(ctx);
4412 LLVMBasicBlockRef bbs[2];
4413 LLVMValueRef phivalues_scan[2];
4414 LLVMValueRef tmp, tmp2;
4415
4416 bbs[0] = LLVMGetInsertBlock(builder);
4417 phivalues_scan[0] = LLVMGetUndef(type);
4418
4419 if (ws->enable_reduce)
4420 tmp = LLVMBuildICmp(builder, LLVMIntULT, tid, ws->numwaves, "");
4421 else if (ws->enable_inclusive)
4422 tmp = LLVMBuildICmp(builder, LLVMIntULE, tid, ws->waveidx, "");
4423 else
4424 tmp = LLVMBuildICmp(builder, LLVMIntULT, tid, ws->waveidx, "");
4425 ac_build_ifcc(ctx, tmp, 1001);
4426 {
4427 tmp = LLVMBuildLoad(builder, LLVMBuildGEP(builder, ws->scratch, &tid, 1, ""), "");
4428
4429 ac_build_optimization_barrier(ctx, &tmp);
4430
4431 bbs[1] = LLVMGetInsertBlock(builder);
4432 phivalues_scan[1] = ac_build_scan(ctx, ws->op, tmp, identity, ws->maxwaves, true);
4433 }
4434 ac_build_endif(ctx, 1001);
4435
4436 const LLVMValueRef scan = ac_build_phi(ctx, type, 2, phivalues_scan, bbs);
4437
4438 if (ws->enable_reduce) {
4439 tmp = LLVMBuildSub(builder, ws->numwaves, ctx->i32_1, "");
4440 ws->result_reduce = ac_build_readlane(ctx, scan, tmp);
4441 }
4442 if (ws->enable_inclusive)
4443 ws->result_inclusive = ac_build_readlane(ctx, scan, ws->waveidx);
4444 if (ws->enable_exclusive) {
4445 tmp = LLVMBuildSub(builder, ws->waveidx, ctx->i32_1, "");
4446 tmp = ac_build_readlane(ctx, scan, tmp);
4447 tmp2 = LLVMBuildICmp(builder, LLVMIntEQ, ws->waveidx, ctx->i32_0, "");
4448 ws->result_exclusive = LLVMBuildSelect(builder, tmp2, identity, tmp, "");
4449 }
4450 }
4451
4452 /**
4453 * Inclusive scan of a per-wave value across an entire workgroup.
4454 *
4455 * This implies an s_barrier instruction.
4456 *
4457 * Unlike ac_build_inclusive_scan, the caller \em must ensure that all threads
4458 * of the workgroup are live. (This requirement cannot easily be relaxed in a
4459 * useful manner because of the barrier in the algorithm.)
4460 */
4461 void
4462 ac_build_wg_wavescan(struct ac_llvm_context *ctx, struct ac_wg_scan *ws)
4463 {
4464 ac_build_wg_wavescan_top(ctx, ws);
4465 ac_build_s_barrier(ctx);
4466 ac_build_wg_wavescan_bottom(ctx, ws);
4467 }
4468
4469 /**
4470 * "Top half" of a scan that reduces per-thread values across an entire
4471 * workgroup.
4472 *
4473 * All lanes must be active when this code runs.
4474 */
4475 void
4476 ac_build_wg_scan_top(struct ac_llvm_context *ctx, struct ac_wg_scan *ws)
4477 {
4478 if (ws->enable_exclusive) {
4479 ws->extra = ac_build_exclusive_scan(ctx, ws->src, ws->op);
4480 if (LLVMTypeOf(ws->src) == ctx->i1 && ws->op == nir_op_iadd)
4481 ws->src = LLVMBuildZExt(ctx->builder, ws->src, ctx->i32, "");
4482 ws->src = ac_build_alu_op(ctx, ws->extra, ws->src, ws->op);
4483 } else {
4484 ws->src = ac_build_inclusive_scan(ctx, ws->src, ws->op);
4485 }
4486
4487 bool enable_inclusive = ws->enable_inclusive;
4488 bool enable_exclusive = ws->enable_exclusive;
4489 ws->enable_inclusive = false;
4490 ws->enable_exclusive = ws->enable_exclusive || enable_inclusive;
4491 ac_build_wg_wavescan_top(ctx, ws);
4492 ws->enable_inclusive = enable_inclusive;
4493 ws->enable_exclusive = enable_exclusive;
4494 }
4495
4496 /**
4497 * "Bottom half" of a scan that reduces per-thread values across an entire
4498 * workgroup.
4499 *
4500 * The caller must place a barrier between the top and bottom halves.
4501 */
4502 void
4503 ac_build_wg_scan_bottom(struct ac_llvm_context *ctx, struct ac_wg_scan *ws)
4504 {
4505 bool enable_inclusive = ws->enable_inclusive;
4506 bool enable_exclusive = ws->enable_exclusive;
4507 ws->enable_inclusive = false;
4508 ws->enable_exclusive = ws->enable_exclusive || enable_inclusive;
4509 ac_build_wg_wavescan_bottom(ctx, ws);
4510 ws->enable_inclusive = enable_inclusive;
4511 ws->enable_exclusive = enable_exclusive;
4512
4513 /* ws->result_reduce is already the correct value */
4514 if (ws->enable_inclusive)
4515 ws->result_inclusive = ac_build_alu_op(ctx, ws->result_inclusive, ws->src, ws->op);
4516 if (ws->enable_exclusive)
4517 ws->result_exclusive = ac_build_alu_op(ctx, ws->result_exclusive, ws->extra, ws->op);
4518 }
4519
4520 /**
4521 * A scan that reduces per-thread values across an entire workgroup.
4522 *
4523 * The caller must ensure that all lanes are active when this code runs
4524 * (WWM is insufficient!), because there is an implied barrier.
4525 */
4526 void
4527 ac_build_wg_scan(struct ac_llvm_context *ctx, struct ac_wg_scan *ws)
4528 {
4529 ac_build_wg_scan_top(ctx, ws);
4530 ac_build_s_barrier(ctx);
4531 ac_build_wg_scan_bottom(ctx, ws);
4532 }
4533
4534 LLVMValueRef
4535 ac_build_quad_swizzle(struct ac_llvm_context *ctx, LLVMValueRef src,
4536 unsigned lane0, unsigned lane1, unsigned lane2, unsigned lane3)
4537 {
4538 unsigned mask = dpp_quad_perm(lane0, lane1, lane2, lane3);
4539 if (ctx->chip_class >= GFX8) {
4540 return ac_build_dpp(ctx, src, src, mask, 0xf, 0xf, false);
4541 } else {
4542 return ac_build_ds_swizzle(ctx, src, (1 << 15) | mask);
4543 }
4544 }
4545
4546 LLVMValueRef
4547 ac_build_shuffle(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef index)
4548 {
4549 LLVMTypeRef type = LLVMTypeOf(src);
4550 LLVMValueRef result;
4551
4552 index = LLVMBuildMul(ctx->builder, index, LLVMConstInt(ctx->i32, 4, 0), "");
4553 src = LLVMBuildZExt(ctx->builder, src, ctx->i32, "");
4554
4555 result = ac_build_intrinsic(ctx, "llvm.amdgcn.ds.bpermute", ctx->i32,
4556 (LLVMValueRef []) {index, src}, 2,
4557 AC_FUNC_ATTR_READNONE |
4558 AC_FUNC_ATTR_CONVERGENT);
4559 return LLVMBuildTrunc(ctx->builder, result, type, "");
4560 }
4561
4562 LLVMValueRef
4563 ac_build_frexp_exp(struct ac_llvm_context *ctx, LLVMValueRef src0,
4564 unsigned bitsize)
4565 {
4566 LLVMTypeRef type;
4567 char *intr;
4568
4569 if (bitsize == 16) {
4570 intr = "llvm.amdgcn.frexp.exp.i16.f16";
4571 type = ctx->i16;
4572 } else if (bitsize == 32) {
4573 intr = "llvm.amdgcn.frexp.exp.i32.f32";
4574 type = ctx->i32;
4575 } else {
4576 intr = "llvm.amdgcn.frexp.exp.i32.f64";
4577 type = ctx->i32;
4578 }
4579
4580 LLVMValueRef params[] = {
4581 src0,
4582 };
4583 return ac_build_intrinsic(ctx, intr, type, params, 1,
4584 AC_FUNC_ATTR_READNONE);
4585 }
4586 LLVMValueRef
4587 ac_build_frexp_mant(struct ac_llvm_context *ctx, LLVMValueRef src0,
4588 unsigned bitsize)
4589 {
4590 LLVMTypeRef type;
4591 char *intr;
4592
4593 if (bitsize == 16) {
4594 intr = "llvm.amdgcn.frexp.mant.f16";
4595 type = ctx->f16;
4596 } else if (bitsize == 32) {
4597 intr = "llvm.amdgcn.frexp.mant.f32";
4598 type = ctx->f32;
4599 } else {
4600 intr = "llvm.amdgcn.frexp.mant.f64";
4601 type = ctx->f64;
4602 }
4603
4604 LLVMValueRef params[] = {
4605 src0,
4606 };
4607 return ac_build_intrinsic(ctx, intr, type, params, 1,
4608 AC_FUNC_ATTR_READNONE);
4609 }
4610
4611 LLVMValueRef
4612 ac_build_canonicalize(struct ac_llvm_context *ctx, LLVMValueRef src0,
4613 unsigned bitsize)
4614 {
4615 LLVMTypeRef type;
4616 char *intr;
4617
4618 if (bitsize == 16) {
4619 intr = "llvm.canonicalize.f16";
4620 type = ctx->f16;
4621 } else if (bitsize == 32) {
4622 intr = "llvm.canonicalize.f32";
4623 type = ctx->f32;
4624 } else {
4625 intr = "llvm.canonicalize.f64";
4626 type = ctx->f64;
4627 }
4628
4629 LLVMValueRef params[] = {
4630 src0,
4631 };
4632 return ac_build_intrinsic(ctx, intr, type, params, 1,
4633 AC_FUNC_ATTR_READNONE);
4634 }
4635
4636 /*
4637 * this takes an I,J coordinate pair,
4638 * and works out the X and Y derivatives.
4639 * it returns DDX(I), DDX(J), DDY(I), DDY(J).
4640 */
4641 LLVMValueRef
4642 ac_build_ddxy_interp(struct ac_llvm_context *ctx, LLVMValueRef interp_ij)
4643 {
4644 LLVMValueRef result[4], a;
4645 unsigned i;
4646
4647 for (i = 0; i < 2; i++) {
4648 a = LLVMBuildExtractElement(ctx->builder, interp_ij,
4649 LLVMConstInt(ctx->i32, i, false), "");
4650 result[i] = ac_build_ddxy(ctx, AC_TID_MASK_TOP_LEFT, 1, a);
4651 result[2+i] = ac_build_ddxy(ctx, AC_TID_MASK_TOP_LEFT, 2, a);
4652 }
4653 return ac_build_gather_values(ctx, result, 4);
4654 }
4655
4656 LLVMValueRef
4657 ac_build_load_helper_invocation(struct ac_llvm_context *ctx)
4658 {
4659 LLVMValueRef result = ac_build_intrinsic(ctx, "llvm.amdgcn.ps.live",
4660 ctx->i1, NULL, 0,
4661 AC_FUNC_ATTR_READNONE);
4662 result = LLVMBuildNot(ctx->builder, result, "");
4663 return LLVMBuildSExt(ctx->builder, result, ctx->i32, "");
4664 }
4665
4666 LLVMValueRef ac_build_call(struct ac_llvm_context *ctx, LLVMValueRef func,
4667 LLVMValueRef *args, unsigned num_args)
4668 {
4669 LLVMValueRef ret = LLVMBuildCall(ctx->builder, func, args, num_args, "");
4670 LLVMSetInstructionCallConv(ret, LLVMGetFunctionCallConv(func));
4671 return ret;
4672 }
4673
4674 void
4675 ac_export_mrt_z(struct ac_llvm_context *ctx, LLVMValueRef depth,
4676 LLVMValueRef stencil, LLVMValueRef samplemask,
4677 struct ac_export_args *args)
4678 {
4679 unsigned mask = 0;
4680 unsigned format = ac_get_spi_shader_z_format(depth != NULL,
4681 stencil != NULL,
4682 samplemask != NULL);
4683
4684 assert(depth || stencil || samplemask);
4685
4686 memset(args, 0, sizeof(*args));
4687
4688 args->valid_mask = 1; /* whether the EXEC mask is valid */
4689 args->done = 1; /* DONE bit */
4690
4691 /* Specify the target we are exporting */
4692 args->target = V_008DFC_SQ_EXP_MRTZ;
4693
4694 args->compr = 0; /* COMP flag */
4695 args->out[0] = LLVMGetUndef(ctx->f32); /* R, depth */
4696 args->out[1] = LLVMGetUndef(ctx->f32); /* G, stencil test val[0:7], stencil op val[8:15] */
4697 args->out[2] = LLVMGetUndef(ctx->f32); /* B, sample mask */
4698 args->out[3] = LLVMGetUndef(ctx->f32); /* A, alpha to mask */
4699
4700 if (format == V_028710_SPI_SHADER_UINT16_ABGR) {
4701 assert(!depth);
4702 args->compr = 1; /* COMPR flag */
4703
4704 if (stencil) {
4705 /* Stencil should be in X[23:16]. */
4706 stencil = ac_to_integer(ctx, stencil);
4707 stencil = LLVMBuildShl(ctx->builder, stencil,
4708 LLVMConstInt(ctx->i32, 16, 0), "");
4709 args->out[0] = ac_to_float(ctx, stencil);
4710 mask |= 0x3;
4711 }
4712 if (samplemask) {
4713 /* SampleMask should be in Y[15:0]. */
4714 args->out[1] = samplemask;
4715 mask |= 0xc;
4716 }
4717 } else {
4718 if (depth) {
4719 args->out[0] = depth;
4720 mask |= 0x1;
4721 }
4722 if (stencil) {
4723 args->out[1] = stencil;
4724 mask |= 0x2;
4725 }
4726 if (samplemask) {
4727 args->out[2] = samplemask;
4728 mask |= 0x4;
4729 }
4730 }
4731
4732 /* GFX6 (except OLAND and HAINAN) has a bug that it only looks
4733 * at the X writemask component. */
4734 if (ctx->chip_class == GFX6 &&
4735 ctx->family != CHIP_OLAND &&
4736 ctx->family != CHIP_HAINAN)
4737 mask |= 0x1;
4738
4739 /* Specify which components to enable */
4740 args->enabled_channels = mask;
4741 }
4742
4743 /* Send GS Alloc Req message from the first wave of the group to SPI.
4744 * Message payload is:
4745 * - bits 0..10: vertices in group
4746 * - bits 12..22: primitives in group
4747 */
4748 void ac_build_sendmsg_gs_alloc_req(struct ac_llvm_context *ctx, LLVMValueRef wave_id,
4749 LLVMValueRef vtx_cnt, LLVMValueRef prim_cnt)
4750 {
4751 LLVMBuilderRef builder = ctx->builder;
4752 LLVMValueRef tmp;
4753
4754 ac_build_ifcc(ctx, LLVMBuildICmp(builder, LLVMIntEQ, wave_id, ctx->i32_0, ""), 5020);
4755
4756 tmp = LLVMBuildShl(builder, prim_cnt, LLVMConstInt(ctx->i32, 12, false),"");
4757 tmp = LLVMBuildOr(builder, tmp, vtx_cnt, "");
4758 ac_build_sendmsg(ctx, AC_SENDMSG_GS_ALLOC_REQ, tmp);
4759
4760 ac_build_endif(ctx, 5020);
4761 }
4762
4763 LLVMValueRef ac_pack_prim_export(struct ac_llvm_context *ctx,
4764 const struct ac_ngg_prim *prim)
4765 {
4766 /* The prim export format is:
4767 * - bits 0..8: index 0
4768 * - bit 9: edge flag 0
4769 * - bits 10..18: index 1
4770 * - bit 19: edge flag 1
4771 * - bits 20..28: index 2
4772 * - bit 29: edge flag 2
4773 * - bit 31: null primitive (skip)
4774 */
4775 LLVMBuilderRef builder = ctx->builder;
4776 LLVMValueRef tmp = LLVMBuildZExt(builder, prim->isnull, ctx->i32, "");
4777 LLVMValueRef result = LLVMBuildShl(builder, tmp, LLVMConstInt(ctx->i32, 31, false), "");
4778
4779 for (unsigned i = 0; i < prim->num_vertices; ++i) {
4780 tmp = LLVMBuildShl(builder, prim->index[i],
4781 LLVMConstInt(ctx->i32, 10 * i, false), "");
4782 result = LLVMBuildOr(builder, result, tmp, "");
4783 tmp = LLVMBuildZExt(builder, prim->edgeflag[i], ctx->i32, "");
4784 tmp = LLVMBuildShl(builder, tmp,
4785 LLVMConstInt(ctx->i32, 10 * i + 9, false), "");
4786 result = LLVMBuildOr(builder, result, tmp, "");
4787 }
4788 return result;
4789 }
4790
4791 void ac_build_export_prim(struct ac_llvm_context *ctx,
4792 const struct ac_ngg_prim *prim)
4793 {
4794 struct ac_export_args args;
4795
4796 if (prim->passthrough) {
4797 args.out[0] = prim->passthrough;
4798 } else {
4799 args.out[0] = ac_pack_prim_export(ctx, prim);
4800 }
4801
4802 args.out[0] = LLVMBuildBitCast(ctx->builder, args.out[0], ctx->f32, "");
4803 args.out[1] = LLVMGetUndef(ctx->f32);
4804 args.out[2] = LLVMGetUndef(ctx->f32);
4805 args.out[3] = LLVMGetUndef(ctx->f32);
4806
4807 args.target = V_008DFC_SQ_EXP_PRIM;
4808 args.enabled_channels = 1;
4809 args.done = true;
4810 args.valid_mask = false;
4811 args.compr = false;
4812
4813 ac_build_export(ctx, &args);
4814 }
4815
4816 static LLVMTypeRef
4817 arg_llvm_type(enum ac_arg_type type, unsigned size, struct ac_llvm_context *ctx)
4818 {
4819 if (type == AC_ARG_FLOAT) {
4820 return size == 1 ? ctx->f32 : LLVMVectorType(ctx->f32, size);
4821 } else if (type == AC_ARG_INT) {
4822 return size == 1 ? ctx->i32 : LLVMVectorType(ctx->i32, size);
4823 } else {
4824 LLVMTypeRef ptr_type;
4825 switch (type) {
4826 case AC_ARG_CONST_PTR:
4827 ptr_type = ctx->i8;
4828 break;
4829 case AC_ARG_CONST_FLOAT_PTR:
4830 ptr_type = ctx->f32;
4831 break;
4832 case AC_ARG_CONST_PTR_PTR:
4833 ptr_type = ac_array_in_const32_addr_space(ctx->i8);
4834 break;
4835 case AC_ARG_CONST_DESC_PTR:
4836 ptr_type = ctx->v4i32;
4837 break;
4838 case AC_ARG_CONST_IMAGE_PTR:
4839 ptr_type = ctx->v8i32;
4840 break;
4841 default:
4842 unreachable("unknown arg type");
4843 }
4844 if (size == 1) {
4845 return ac_array_in_const32_addr_space(ptr_type);
4846 } else {
4847 assert(size == 2);
4848 return ac_array_in_const_addr_space(ptr_type);
4849 }
4850 }
4851 }
4852
4853 LLVMValueRef
4854 ac_build_main(const struct ac_shader_args *args,
4855 struct ac_llvm_context *ctx,
4856 enum ac_llvm_calling_convention convention,
4857 const char *name, LLVMTypeRef ret_type,
4858 LLVMModuleRef module)
4859 {
4860 LLVMTypeRef arg_types[AC_MAX_ARGS];
4861
4862 for (unsigned i = 0; i < args->arg_count; i++) {
4863 arg_types[i] = arg_llvm_type(args->args[i].type,
4864 args->args[i].size, ctx);
4865 }
4866
4867 LLVMTypeRef main_function_type =
4868 LLVMFunctionType(ret_type, arg_types, args->arg_count, 0);
4869
4870 LLVMValueRef main_function =
4871 LLVMAddFunction(module, name, main_function_type);
4872 LLVMBasicBlockRef main_function_body =
4873 LLVMAppendBasicBlockInContext(ctx->context, main_function, "main_body");
4874 LLVMPositionBuilderAtEnd(ctx->builder, main_function_body);
4875
4876 LLVMSetFunctionCallConv(main_function, convention);
4877 for (unsigned i = 0; i < args->arg_count; ++i) {
4878 LLVMValueRef P = LLVMGetParam(main_function, i);
4879
4880 if (args->args[i].file != AC_ARG_SGPR)
4881 continue;
4882
4883 ac_add_function_attr(ctx->context, main_function, i + 1, AC_FUNC_ATTR_INREG);
4884
4885 if (LLVMGetTypeKind(LLVMTypeOf(P)) == LLVMPointerTypeKind) {
4886 ac_add_function_attr(ctx->context, main_function, i + 1, AC_FUNC_ATTR_NOALIAS);
4887 ac_add_attr_dereferenceable(P, UINT64_MAX);
4888 }
4889 }
4890
4891 ctx->main_function = main_function;
4892 return main_function;
4893 }
4894
4895 void ac_build_s_endpgm(struct ac_llvm_context *ctx)
4896 {
4897 LLVMTypeRef calltype = LLVMFunctionType(ctx->voidt, NULL, 0, false);
4898 LLVMValueRef code = LLVMConstInlineAsm(calltype, "s_endpgm", "", true, false);
4899 LLVMBuildCall(ctx->builder, code, NULL, 0, "");
4900 }
4901
4902 LLVMValueRef ac_prefix_bitcount(struct ac_llvm_context *ctx,
4903 LLVMValueRef mask, LLVMValueRef index)
4904 {
4905 LLVMBuilderRef builder = ctx->builder;
4906 LLVMTypeRef type = LLVMTypeOf(mask);
4907
4908 LLVMValueRef bit = LLVMBuildShl(builder, LLVMConstInt(type, 1, 0),
4909 LLVMBuildZExt(builder, index, type, ""), "");
4910 LLVMValueRef prefix_bits = LLVMBuildSub(builder, bit, LLVMConstInt(type, 1, 0), "");
4911 LLVMValueRef prefix_mask = LLVMBuildAnd(builder, mask, prefix_bits, "");
4912 return ac_build_bit_count(ctx, prefix_mask);
4913 }
4914
4915 /* Compute the prefix sum of the "mask" bit array with 128 elements (bits). */
4916 LLVMValueRef ac_prefix_bitcount_2x64(struct ac_llvm_context *ctx,
4917 LLVMValueRef mask[2], LLVMValueRef index)
4918 {
4919 LLVMBuilderRef builder = ctx->builder;
4920 #if 0
4921 /* Reference version using i128. */
4922 LLVMValueRef input_mask =
4923 LLVMBuildBitCast(builder, ac_build_gather_values(ctx, mask, 2), ctx->i128, "");
4924
4925 return ac_prefix_bitcount(ctx, input_mask, index);
4926 #else
4927 /* Optimized version using 2 64-bit masks. */
4928 LLVMValueRef is_hi, is_0, c64, c128, all_bits;
4929 LLVMValueRef prefix_mask[2], shift[2], mask_bcnt0, prefix_bcnt[2];
4930
4931 /* Compute the 128-bit prefix mask. */
4932 c64 = LLVMConstInt(ctx->i32, 64, 0);
4933 c128 = LLVMConstInt(ctx->i32, 128, 0);
4934 all_bits = LLVMConstInt(ctx->i64, UINT64_MAX, 0);
4935 /* The first index that can have non-zero high bits in the prefix mask is 65. */
4936 is_hi = LLVMBuildICmp(builder, LLVMIntUGT, index, c64, "");
4937 is_0 = LLVMBuildICmp(builder, LLVMIntEQ, index, ctx->i32_0, "");
4938 mask_bcnt0 = ac_build_bit_count(ctx, mask[0]);
4939
4940 for (unsigned i = 0; i < 2; i++) {
4941 shift[i] = LLVMBuildSub(builder, i ? c128 : c64, index, "");
4942 /* For i==0, index==0, the right shift by 64 doesn't give the desired result,
4943 * so we handle it by the is_0 select.
4944 * For i==1, index==64, same story, so we handle it by the last is_hi select.
4945 * For i==0, index==64, we shift by 0, which is what we want.
4946 */
4947 prefix_mask[i] = LLVMBuildLShr(builder, all_bits,
4948 LLVMBuildZExt(builder, shift[i], ctx->i64, ""), "");
4949 prefix_mask[i] = LLVMBuildAnd(builder, mask[i], prefix_mask[i], "");
4950 prefix_bcnt[i] = ac_build_bit_count(ctx, prefix_mask[i]);
4951 }
4952
4953 prefix_bcnt[0] = LLVMBuildSelect(builder, is_0, ctx->i32_0, prefix_bcnt[0], "");
4954 prefix_bcnt[0] = LLVMBuildSelect(builder, is_hi, mask_bcnt0, prefix_bcnt[0], "");
4955 prefix_bcnt[1] = LLVMBuildSelect(builder, is_hi, prefix_bcnt[1], ctx->i32_0, "");
4956
4957 return LLVMBuildAdd(builder, prefix_bcnt[0], prefix_bcnt[1], "");
4958 #endif
4959 }