c68cb9c6a30adbd40bc384a39d688734cdb56cbc
[mesa.git] / src / amd / common / ac_nir_to_llvm.c
1 /*
2 * Copyright © 2016 Bas Nieuwenhuizen
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include "ac_nir_to_llvm.h"
25 #include "ac_llvm_util.h"
26 #include "ac_binary.h"
27 #include "sid.h"
28 #include "nir/nir.h"
29 #include "../vulkan/radv_descriptor_set.h"
30 #include "util/bitscan.h"
31 #include <llvm-c/Transforms/Scalar.h>
32
33 enum radeon_llvm_calling_convention {
34 RADEON_LLVM_AMDGPU_VS = 87,
35 RADEON_LLVM_AMDGPU_GS = 88,
36 RADEON_LLVM_AMDGPU_PS = 89,
37 RADEON_LLVM_AMDGPU_CS = 90,
38 };
39
40 #define CONST_ADDR_SPACE 2
41 #define LOCAL_ADDR_SPACE 3
42
43 #define RADEON_LLVM_MAX_INPUTS (VARYING_SLOT_VAR31 + 1)
44 #define RADEON_LLVM_MAX_OUTPUTS (VARYING_SLOT_VAR31 + 1)
45
46 enum desc_type {
47 DESC_IMAGE,
48 DESC_FMASK,
49 DESC_SAMPLER,
50 DESC_BUFFER,
51 };
52
53 struct nir_to_llvm_context {
54 const struct ac_nir_compiler_options *options;
55 struct ac_shader_variant_info *shader_info;
56
57 LLVMContextRef context;
58 LLVMModuleRef module;
59 LLVMBuilderRef builder;
60 LLVMValueRef main_function;
61
62 struct hash_table *defs;
63 struct hash_table *phis;
64
65 LLVMValueRef descriptor_sets[4];
66 LLVMValueRef push_constants;
67 LLVMValueRef num_work_groups;
68 LLVMValueRef workgroup_ids;
69 LLVMValueRef local_invocation_ids;
70 LLVMValueRef tg_size;
71
72 LLVMValueRef vertex_buffers;
73 LLVMValueRef base_vertex;
74 LLVMValueRef start_instance;
75 LLVMValueRef vertex_id;
76 LLVMValueRef rel_auto_id;
77 LLVMValueRef vs_prim_id;
78 LLVMValueRef instance_id;
79
80 LLVMValueRef prim_mask;
81 LLVMValueRef sample_positions;
82 LLVMValueRef persp_sample, persp_center, persp_centroid;
83 LLVMValueRef linear_sample, linear_center, linear_centroid;
84 LLVMValueRef front_face;
85 LLVMValueRef ancillary;
86 LLVMValueRef frag_pos[4];
87
88 LLVMBasicBlockRef continue_block;
89 LLVMBasicBlockRef break_block;
90
91 LLVMTypeRef i1;
92 LLVMTypeRef i8;
93 LLVMTypeRef i16;
94 LLVMTypeRef i32;
95 LLVMTypeRef i64;
96 LLVMTypeRef v2i32;
97 LLVMTypeRef v3i32;
98 LLVMTypeRef v4i32;
99 LLVMTypeRef v8i32;
100 LLVMTypeRef f32;
101 LLVMTypeRef f16;
102 LLVMTypeRef v2f32;
103 LLVMTypeRef v4f32;
104 LLVMTypeRef v16i8;
105 LLVMTypeRef voidt;
106
107 LLVMValueRef i32zero;
108 LLVMValueRef i32one;
109 LLVMValueRef f32zero;
110 LLVMValueRef f32one;
111 LLVMValueRef v4f32empty;
112
113 unsigned range_md_kind;
114 unsigned uniform_md_kind;
115 unsigned fpmath_md_kind;
116 unsigned invariant_load_md_kind;
117 LLVMValueRef empty_md;
118 LLVMValueRef fpmath_md_2p5_ulp;
119 gl_shader_stage stage;
120
121 LLVMValueRef lds;
122 LLVMValueRef inputs[RADEON_LLVM_MAX_INPUTS * 4];
123 LLVMValueRef outputs[RADEON_LLVM_MAX_OUTPUTS * 4];
124
125 LLVMValueRef shared_memory;
126 uint64_t input_mask;
127 uint64_t output_mask;
128 int num_locals;
129 LLVMValueRef *locals;
130 bool has_ddxy;
131 unsigned num_clips;
132 unsigned num_culls;
133
134 bool has_ds_bpermute;
135 };
136
137 struct ac_tex_info {
138 LLVMValueRef args[12];
139 int arg_count;
140 LLVMTypeRef dst_type;
141 bool has_offset;
142 };
143
144 enum ac_func_attr {
145 AC_FUNC_ATTR_ALWAYSINLINE = (1 << 0),
146 AC_FUNC_ATTR_BYVAL = (1 << 1),
147 AC_FUNC_ATTR_INREG = (1 << 2),
148 AC_FUNC_ATTR_NOALIAS = (1 << 3),
149 AC_FUNC_ATTR_NOUNWIND = (1 << 4),
150 AC_FUNC_ATTR_READNONE = (1 << 5),
151 AC_FUNC_ATTR_READONLY = (1 << 6),
152 AC_FUNC_ATTR_LAST = (1 << 7)
153 };
154
155 #if HAVE_LLVM < 0x0400
156 static LLVMAttribute ac_attr_to_llvm_attr(enum ac_func_attr attr)
157 {
158 switch (attr) {
159 case AC_FUNC_ATTR_ALWAYSINLINE: return LLVMAlwaysInlineAttribute;
160 case AC_FUNC_ATTR_BYVAL: return LLVMByValAttribute;
161 case AC_FUNC_ATTR_INREG: return LLVMInRegAttribute;
162 case AC_FUNC_ATTR_NOALIAS: return LLVMNoAliasAttribute;
163 case AC_FUNC_ATTR_NOUNWIND: return LLVMNoUnwindAttribute;
164 case AC_FUNC_ATTR_READNONE: return LLVMReadNoneAttribute;
165 case AC_FUNC_ATTR_READONLY: return LLVMReadOnlyAttribute;
166 default:
167 fprintf(stderr, "Unhandled function attribute: %x\n", attr);
168 return 0;
169 }
170 }
171
172 #else
173
174 static const char *attr_to_str(enum ac_func_attr attr)
175 {
176 switch (attr) {
177 case AC_FUNC_ATTR_ALWAYSINLINE: return "alwaysinline";
178 case AC_FUNC_ATTR_BYVAL: return "byval";
179 case AC_FUNC_ATTR_INREG: return "inreg";
180 case AC_FUNC_ATTR_NOALIAS: return "noalias";
181 case AC_FUNC_ATTR_NOUNWIND: return "nounwind";
182 case AC_FUNC_ATTR_READNONE: return "readnone";
183 case AC_FUNC_ATTR_READONLY: return "readonly";
184 default:
185 fprintf(stderr, "Unhandled function attribute: %x\n", attr);
186 return 0;
187 }
188 }
189
190 #endif
191
192 static void
193 ac_add_function_attr(LLVMValueRef function,
194 int attr_idx,
195 enum ac_func_attr attr)
196 {
197
198 #if HAVE_LLVM < 0x0400
199 LLVMAttribute llvm_attr = ac_attr_to_llvm_attr(attr);
200 if (attr_idx == -1) {
201 LLVMAddFunctionAttr(function, llvm_attr);
202 } else {
203 LLVMAddAttribute(LLVMGetParam(function, attr_idx - 1), llvm_attr);
204 }
205 #else
206 LLVMContextRef context = LLVMGetModuleContext(LLVMGetGlobalParent(function));
207 const char *attr_name = attr_to_str(attr);
208 unsigned kind_id = LLVMGetEnumAttributeKindForName(attr_name,
209 strlen(attr_name));
210 LLVMAttributeRef llvm_attr = LLVMCreateEnumAttribute(context, kind_id, 0);
211 LLVMAddAttributeAtIndex(function, attr_idx, llvm_attr);
212 #endif
213 }
214
215 static LLVMValueRef
216 emit_llvm_intrinsic(struct nir_to_llvm_context *ctx, const char *name,
217 LLVMTypeRef return_type, LLVMValueRef *params,
218 unsigned param_count, unsigned attr_mask);
219 static LLVMValueRef get_sampler_desc(struct nir_to_llvm_context *ctx,
220 nir_deref_var *deref,
221 enum desc_type desc_type);
222 static unsigned radeon_llvm_reg_index_soa(unsigned index, unsigned chan)
223 {
224 return (index * 4) + chan;
225 }
226
227 static unsigned llvm_get_type_size(LLVMTypeRef type)
228 {
229 LLVMTypeKind kind = LLVMGetTypeKind(type);
230
231 switch (kind) {
232 case LLVMIntegerTypeKind:
233 return LLVMGetIntTypeWidth(type) / 8;
234 case LLVMFloatTypeKind:
235 return 4;
236 case LLVMPointerTypeKind:
237 return 8;
238 case LLVMVectorTypeKind:
239 return LLVMGetVectorSize(type) *
240 llvm_get_type_size(LLVMGetElementType(type));
241 default:
242 assert(0);
243 return 0;
244 }
245 }
246
247 static void set_llvm_calling_convention(LLVMValueRef func,
248 gl_shader_stage stage)
249 {
250 enum radeon_llvm_calling_convention calling_conv;
251
252 switch (stage) {
253 case MESA_SHADER_VERTEX:
254 case MESA_SHADER_TESS_CTRL:
255 case MESA_SHADER_TESS_EVAL:
256 calling_conv = RADEON_LLVM_AMDGPU_VS;
257 break;
258 case MESA_SHADER_GEOMETRY:
259 calling_conv = RADEON_LLVM_AMDGPU_GS;
260 break;
261 case MESA_SHADER_FRAGMENT:
262 calling_conv = RADEON_LLVM_AMDGPU_PS;
263 break;
264 case MESA_SHADER_COMPUTE:
265 calling_conv = RADEON_LLVM_AMDGPU_CS;
266 break;
267 default:
268 unreachable("Unhandle shader type");
269 }
270
271 LLVMSetFunctionCallConv(func, calling_conv);
272 }
273
274 static LLVMValueRef
275 create_llvm_function(LLVMContextRef ctx, LLVMModuleRef module,
276 LLVMBuilderRef builder, LLVMTypeRef *return_types,
277 unsigned num_return_elems, LLVMTypeRef *param_types,
278 unsigned param_count, unsigned array_params,
279 unsigned sgpr_params, bool unsafe_math)
280 {
281 LLVMTypeRef main_function_type, ret_type;
282 LLVMBasicBlockRef main_function_body;
283
284 if (num_return_elems)
285 ret_type = LLVMStructTypeInContext(ctx, return_types,
286 num_return_elems, true);
287 else
288 ret_type = LLVMVoidTypeInContext(ctx);
289
290 /* Setup the function */
291 main_function_type =
292 LLVMFunctionType(ret_type, param_types, param_count, 0);
293 LLVMValueRef main_function =
294 LLVMAddFunction(module, "main", main_function_type);
295 main_function_body =
296 LLVMAppendBasicBlockInContext(ctx, main_function, "main_body");
297 LLVMPositionBuilderAtEnd(builder, main_function_body);
298
299 LLVMSetFunctionCallConv(main_function, RADEON_LLVM_AMDGPU_CS);
300 for (unsigned i = 0; i < sgpr_params; ++i) {
301 if (i < array_params) {
302 LLVMValueRef P = LLVMGetParam(main_function, i);
303 ac_add_function_attr(main_function, i + 1, AC_FUNC_ATTR_BYVAL);
304 ac_add_attr_dereferenceable(P, UINT64_MAX);
305 }
306 else {
307 ac_add_function_attr(main_function, i + 1, AC_FUNC_ATTR_INREG);
308 }
309 }
310
311 if (unsafe_math) {
312 /* These were copied from some LLVM test. */
313 LLVMAddTargetDependentFunctionAttr(main_function,
314 "less-precise-fpmad",
315 "true");
316 LLVMAddTargetDependentFunctionAttr(main_function,
317 "no-infs-fp-math",
318 "true");
319 LLVMAddTargetDependentFunctionAttr(main_function,
320 "no-nans-fp-math",
321 "true");
322 LLVMAddTargetDependentFunctionAttr(main_function,
323 "unsafe-fp-math",
324 "true");
325 }
326 return main_function;
327 }
328
329 static LLVMTypeRef const_array(LLVMTypeRef elem_type, int num_elements)
330 {
331 return LLVMPointerType(LLVMArrayType(elem_type, num_elements),
332 CONST_ADDR_SPACE);
333 }
334
335 static LLVMValueRef get_shared_memory_ptr(struct nir_to_llvm_context *ctx,
336 int idx,
337 LLVMTypeRef type)
338 {
339 LLVMValueRef offset;
340 LLVMValueRef ptr;
341 int addr_space;
342
343 offset = LLVMConstInt(ctx->i32, idx, false);
344
345 ptr = ctx->shared_memory;
346 ptr = LLVMBuildGEP(ctx->builder, ptr, &offset, 1, "");
347 addr_space = LLVMGetPointerAddressSpace(LLVMTypeOf(ptr));
348 ptr = LLVMBuildBitCast(ctx->builder, ptr, LLVMPointerType(type, addr_space), "");
349 return ptr;
350 }
351
352 static LLVMValueRef to_integer(struct nir_to_llvm_context *ctx, LLVMValueRef v)
353 {
354 LLVMTypeRef type = LLVMTypeOf(v);
355 if (type == ctx->f32) {
356 return LLVMBuildBitCast(ctx->builder, v, ctx->i32, "");
357 } else if (LLVMGetTypeKind(type) == LLVMVectorTypeKind) {
358 LLVMTypeRef elem_type = LLVMGetElementType(type);
359 if (elem_type == ctx->f32) {
360 LLVMTypeRef nt = LLVMVectorType(ctx->i32, LLVMGetVectorSize(type));
361 return LLVMBuildBitCast(ctx->builder, v, nt, "");
362 }
363 }
364 return v;
365 }
366
367 static LLVMValueRef to_float(struct nir_to_llvm_context *ctx, LLVMValueRef v)
368 {
369 LLVMTypeRef type = LLVMTypeOf(v);
370 if (type == ctx->i32) {
371 return LLVMBuildBitCast(ctx->builder, v, ctx->f32, "");
372 } else if (LLVMGetTypeKind(type) == LLVMVectorTypeKind) {
373 LLVMTypeRef elem_type = LLVMGetElementType(type);
374 if (elem_type == ctx->i32) {
375 LLVMTypeRef nt = LLVMVectorType(ctx->f32, LLVMGetVectorSize(type));
376 return LLVMBuildBitCast(ctx->builder, v, nt, "");
377 }
378 }
379 return v;
380 }
381
382 static LLVMValueRef unpack_param(struct nir_to_llvm_context *ctx,
383 LLVMValueRef param, unsigned rshift,
384 unsigned bitwidth)
385 {
386 LLVMValueRef value = param;
387 if (rshift)
388 value = LLVMBuildLShr(ctx->builder, value,
389 LLVMConstInt(ctx->i32, rshift, false), "");
390
391 if (rshift + bitwidth < 32) {
392 unsigned mask = (1 << bitwidth) - 1;
393 value = LLVMBuildAnd(ctx->builder, value,
394 LLVMConstInt(ctx->i32, mask, false), "");
395 }
396 return value;
397 }
398
399 static LLVMValueRef build_gep0(struct nir_to_llvm_context *ctx,
400 LLVMValueRef base_ptr, LLVMValueRef index)
401 {
402 LLVMValueRef indices[2] = {
403 ctx->i32zero,
404 index,
405 };
406 return LLVMBuildGEP(ctx->builder, base_ptr,
407 indices, 2, "");
408 }
409
410 static LLVMValueRef build_indexed_load(struct nir_to_llvm_context *ctx,
411 LLVMValueRef base_ptr, LLVMValueRef index,
412 bool uniform)
413 {
414 LLVMValueRef pointer;
415 pointer = build_gep0(ctx, base_ptr, index);
416 if (uniform)
417 LLVMSetMetadata(pointer, ctx->uniform_md_kind, ctx->empty_md);
418 return LLVMBuildLoad(ctx->builder, pointer, "");
419 }
420
421 static LLVMValueRef build_indexed_load_const(struct nir_to_llvm_context *ctx,
422 LLVMValueRef base_ptr, LLVMValueRef index)
423 {
424 LLVMValueRef result = build_indexed_load(ctx, base_ptr, index, true);
425 LLVMSetMetadata(result, ctx->invariant_load_md_kind, ctx->empty_md);
426 return result;
427 }
428
429 static void create_function(struct nir_to_llvm_context *ctx,
430 struct nir_shader *nir)
431 {
432 LLVMTypeRef arg_types[23];
433 unsigned arg_idx = 0;
434 unsigned array_count = 0;
435 unsigned sgpr_count = 0, user_sgpr_count;
436 unsigned i;
437
438 /* 1 for each descriptor set */
439 for (unsigned i = 0; i < 4; ++i)
440 arg_types[arg_idx++] = const_array(ctx->i8, 1024 * 1024);
441
442 /* 1 for push constants and dynamic descriptors */
443 arg_types[arg_idx++] = const_array(ctx->i8, 1024 * 1024);
444
445 array_count = arg_idx;
446 switch (nir->stage) {
447 case MESA_SHADER_COMPUTE:
448 arg_types[arg_idx++] = LLVMVectorType(ctx->i32, 3); /* grid size */
449 user_sgpr_count = arg_idx;
450 arg_types[arg_idx++] = LLVMVectorType(ctx->i32, 3);
451 arg_types[arg_idx++] = ctx->i32;
452 sgpr_count = arg_idx;
453
454 arg_types[arg_idx++] = LLVMVectorType(ctx->i32, 3);
455 break;
456 case MESA_SHADER_VERTEX:
457 arg_types[arg_idx++] = const_array(ctx->v16i8, 16); /* vertex buffers */
458 arg_types[arg_idx++] = ctx->i32; // base vertex
459 arg_types[arg_idx++] = ctx->i32; // start instance
460 user_sgpr_count = sgpr_count = arg_idx;
461 arg_types[arg_idx++] = ctx->i32; // vertex id
462 arg_types[arg_idx++] = ctx->i32; // rel auto id
463 arg_types[arg_idx++] = ctx->i32; // vs prim id
464 arg_types[arg_idx++] = ctx->i32; // instance id
465 break;
466 case MESA_SHADER_FRAGMENT:
467 arg_types[arg_idx++] = const_array(ctx->f32, 32); /* sample positions */
468 user_sgpr_count = arg_idx;
469 arg_types[arg_idx++] = ctx->i32; /* prim mask */
470 sgpr_count = arg_idx;
471 arg_types[arg_idx++] = ctx->v2i32; /* persp sample */
472 arg_types[arg_idx++] = ctx->v2i32; /* persp center */
473 arg_types[arg_idx++] = ctx->v2i32; /* persp centroid */
474 arg_types[arg_idx++] = ctx->v3i32; /* persp pull model */
475 arg_types[arg_idx++] = ctx->v2i32; /* linear sample */
476 arg_types[arg_idx++] = ctx->v2i32; /* linear center */
477 arg_types[arg_idx++] = ctx->v2i32; /* linear centroid */
478 arg_types[arg_idx++] = ctx->f32; /* line stipple tex */
479 arg_types[arg_idx++] = ctx->f32; /* pos x float */
480 arg_types[arg_idx++] = ctx->f32; /* pos y float */
481 arg_types[arg_idx++] = ctx->f32; /* pos z float */
482 arg_types[arg_idx++] = ctx->f32; /* pos w float */
483 arg_types[arg_idx++] = ctx->i32; /* front face */
484 arg_types[arg_idx++] = ctx->i32; /* ancillary */
485 arg_types[arg_idx++] = ctx->f32; /* sample coverage */
486 arg_types[arg_idx++] = ctx->i32; /* fixed pt */
487 break;
488 default:
489 unreachable("Shader stage not implemented");
490 }
491
492 ctx->main_function = create_llvm_function(
493 ctx->context, ctx->module, ctx->builder, NULL, 0, arg_types,
494 arg_idx, array_count, sgpr_count, ctx->options->unsafe_math);
495 set_llvm_calling_convention(ctx->main_function, nir->stage);
496
497
498 ctx->shader_info->num_input_sgprs = 0;
499 ctx->shader_info->num_input_vgprs = 0;
500
501 for (i = 0; i < user_sgpr_count; i++)
502 ctx->shader_info->num_user_sgprs += llvm_get_type_size(arg_types[i]) / 4;
503
504 ctx->shader_info->num_input_sgprs = ctx->shader_info->num_user_sgprs;
505 for (; i < sgpr_count; i++)
506 ctx->shader_info->num_input_sgprs += llvm_get_type_size(arg_types[i]) / 4;
507
508 if (nir->stage != MESA_SHADER_FRAGMENT)
509 for (; i < arg_idx; ++i)
510 ctx->shader_info->num_input_vgprs += llvm_get_type_size(arg_types[i]) / 4;
511
512 arg_idx = 0;
513 for (unsigned i = 0; i < 4; ++i)
514 ctx->descriptor_sets[i] =
515 LLVMGetParam(ctx->main_function, arg_idx++);
516
517 ctx->push_constants = LLVMGetParam(ctx->main_function, arg_idx++);
518
519 switch (nir->stage) {
520 case MESA_SHADER_COMPUTE:
521 ctx->num_work_groups =
522 LLVMGetParam(ctx->main_function, arg_idx++);
523 ctx->workgroup_ids =
524 LLVMGetParam(ctx->main_function, arg_idx++);
525 ctx->tg_size =
526 LLVMGetParam(ctx->main_function, arg_idx++);
527 ctx->local_invocation_ids =
528 LLVMGetParam(ctx->main_function, arg_idx++);
529 break;
530 case MESA_SHADER_VERTEX:
531 ctx->vertex_buffers = LLVMGetParam(ctx->main_function, arg_idx++);
532 ctx->base_vertex = LLVMGetParam(ctx->main_function, arg_idx++);
533 ctx->start_instance = LLVMGetParam(ctx->main_function, arg_idx++);
534 ctx->vertex_id = LLVMGetParam(ctx->main_function, arg_idx++);
535 ctx->rel_auto_id = LLVMGetParam(ctx->main_function, arg_idx++);
536 ctx->vs_prim_id = LLVMGetParam(ctx->main_function, arg_idx++);
537 ctx->instance_id = LLVMGetParam(ctx->main_function, arg_idx++);
538 break;
539 case MESA_SHADER_FRAGMENT:
540 ctx->sample_positions = LLVMGetParam(ctx->main_function, arg_idx++);
541 ctx->prim_mask = LLVMGetParam(ctx->main_function, arg_idx++);
542 ctx->persp_sample = LLVMGetParam(ctx->main_function, arg_idx++);
543 ctx->persp_center = LLVMGetParam(ctx->main_function, arg_idx++);
544 ctx->persp_centroid = LLVMGetParam(ctx->main_function, arg_idx++);
545 arg_idx++;
546 ctx->linear_sample = LLVMGetParam(ctx->main_function, arg_idx++);
547 ctx->linear_center = LLVMGetParam(ctx->main_function, arg_idx++);
548 ctx->linear_centroid = LLVMGetParam(ctx->main_function, arg_idx++);
549 arg_idx++; /* line stipple */
550 ctx->frag_pos[0] = LLVMGetParam(ctx->main_function, arg_idx++);
551 ctx->frag_pos[1] = LLVMGetParam(ctx->main_function, arg_idx++);
552 ctx->frag_pos[2] = LLVMGetParam(ctx->main_function, arg_idx++);
553 ctx->frag_pos[3] = LLVMGetParam(ctx->main_function, arg_idx++);
554 ctx->front_face = LLVMGetParam(ctx->main_function, arg_idx++);
555 ctx->ancillary = LLVMGetParam(ctx->main_function, arg_idx++);
556 break;
557 default:
558 unreachable("Shader stage not implemented");
559 }
560 }
561
562 static void setup_types(struct nir_to_llvm_context *ctx)
563 {
564 LLVMValueRef args[4];
565
566 ctx->voidt = LLVMVoidTypeInContext(ctx->context);
567 ctx->i1 = LLVMIntTypeInContext(ctx->context, 1);
568 ctx->i8 = LLVMIntTypeInContext(ctx->context, 8);
569 ctx->i16 = LLVMIntTypeInContext(ctx->context, 16);
570 ctx->i32 = LLVMIntTypeInContext(ctx->context, 32);
571 ctx->i64 = LLVMIntTypeInContext(ctx->context, 64);
572 ctx->v2i32 = LLVMVectorType(ctx->i32, 2);
573 ctx->v3i32 = LLVMVectorType(ctx->i32, 3);
574 ctx->v4i32 = LLVMVectorType(ctx->i32, 4);
575 ctx->v8i32 = LLVMVectorType(ctx->i32, 8);
576 ctx->f32 = LLVMFloatTypeInContext(ctx->context);
577 ctx->f16 = LLVMHalfTypeInContext(ctx->context);
578 ctx->v2f32 = LLVMVectorType(ctx->f32, 2);
579 ctx->v4f32 = LLVMVectorType(ctx->f32, 4);
580 ctx->v16i8 = LLVMVectorType(ctx->i8, 16);
581
582 ctx->i32zero = LLVMConstInt(ctx->i32, 0, false);
583 ctx->i32one = LLVMConstInt(ctx->i32, 1, false);
584 ctx->f32zero = LLVMConstReal(ctx->f32, 0.0);
585 ctx->f32one = LLVMConstReal(ctx->f32, 1.0);
586
587 args[0] = ctx->f32zero;
588 args[1] = ctx->f32zero;
589 args[2] = ctx->f32zero;
590 args[3] = ctx->f32one;
591 ctx->v4f32empty = LLVMConstVector(args, 4);
592
593 ctx->range_md_kind = LLVMGetMDKindIDInContext(ctx->context,
594 "range", 5);
595 ctx->invariant_load_md_kind = LLVMGetMDKindIDInContext(ctx->context,
596 "invariant.load", 14);
597 ctx->uniform_md_kind =
598 LLVMGetMDKindIDInContext(ctx->context, "amdgpu.uniform", 14);
599 ctx->empty_md = LLVMMDNodeInContext(ctx->context, NULL, 0);
600
601 ctx->fpmath_md_kind = LLVMGetMDKindIDInContext(ctx->context, "fpmath", 6);
602
603 args[0] = LLVMConstReal(ctx->f32, 2.5);
604 ctx->fpmath_md_2p5_ulp = LLVMMDNodeInContext(ctx->context, args, 1);
605 }
606
607 static int get_llvm_num_components(LLVMValueRef value)
608 {
609 LLVMTypeRef type = LLVMTypeOf(value);
610 unsigned num_components = LLVMGetTypeKind(type) == LLVMVectorTypeKind
611 ? LLVMGetVectorSize(type)
612 : 1;
613 return num_components;
614 }
615
616 static LLVMValueRef llvm_extract_elem(struct nir_to_llvm_context *ctx,
617 LLVMValueRef value,
618 int index)
619 {
620 int count = get_llvm_num_components(value);
621
622 assert(index < count);
623 if (count == 1)
624 return value;
625
626 return LLVMBuildExtractElement(ctx->builder, value,
627 LLVMConstInt(ctx->i32, index, false), "");
628 }
629
630 static LLVMValueRef trim_vector(struct nir_to_llvm_context *ctx,
631 LLVMValueRef value, unsigned count)
632 {
633 unsigned num_components = get_llvm_num_components(value);
634 if (count == num_components)
635 return value;
636
637 LLVMValueRef masks[] = {
638 LLVMConstInt(ctx->i32, 0, false), LLVMConstInt(ctx->i32, 1, false),
639 LLVMConstInt(ctx->i32, 2, false), LLVMConstInt(ctx->i32, 3, false)};
640
641 if (count == 1)
642 return LLVMBuildExtractElement(ctx->builder, value, masks[0],
643 "");
644
645 LLVMValueRef swizzle = LLVMConstVector(masks, count);
646 return LLVMBuildShuffleVector(ctx->builder, value, value, swizzle, "");
647 }
648
649 static LLVMValueRef
650 build_gather_values_extended(struct nir_to_llvm_context *ctx,
651 LLVMValueRef *values,
652 unsigned value_count,
653 unsigned value_stride,
654 bool load)
655 {
656 LLVMBuilderRef builder = ctx->builder;
657 LLVMValueRef vec;
658 unsigned i;
659
660
661 if (value_count == 1) {
662 if (load)
663 return LLVMBuildLoad(builder, values[0], "");
664 return values[0];
665 }
666
667 for (i = 0; i < value_count; i++) {
668 LLVMValueRef value = values[i * value_stride];
669 if (load)
670 value = LLVMBuildLoad(builder, value, "");
671
672 if (!i)
673 vec = LLVMGetUndef( LLVMVectorType(LLVMTypeOf(value), value_count));
674 LLVMValueRef index = LLVMConstInt(ctx->i32, i, false);
675 vec = LLVMBuildInsertElement(builder, vec, value, index, "");
676 }
677 return vec;
678 }
679
680
681 static void
682 build_store_values_extended(struct nir_to_llvm_context *ctx,
683 LLVMValueRef *values,
684 unsigned value_count,
685 unsigned value_stride,
686 LLVMValueRef vec)
687 {
688 LLVMBuilderRef builder = ctx->builder;
689 unsigned i;
690
691 if (value_count == 1) {
692 LLVMBuildStore(builder, vec, values[0]);
693 return;
694 }
695
696 for (i = 0; i < value_count; i++) {
697 LLVMValueRef ptr = values[i * value_stride];
698 LLVMValueRef index = LLVMConstInt(ctx->i32, i, false);
699 LLVMValueRef value = LLVMBuildExtractElement(builder, vec, index, "");
700 LLVMBuildStore(builder, value, ptr);
701 }
702 }
703
704 static LLVMValueRef
705 build_gather_values(struct nir_to_llvm_context *ctx,
706 LLVMValueRef *values,
707 unsigned value_count)
708 {
709 return build_gather_values_extended(ctx, values, value_count, 1, false);
710 }
711
712 static LLVMTypeRef get_def_type(struct nir_to_llvm_context *ctx,
713 nir_ssa_def *def)
714 {
715 LLVMTypeRef type = LLVMIntTypeInContext(ctx->context, def->bit_size);
716 if (def->num_components > 1) {
717 type = LLVMVectorType(type, def->num_components);
718 }
719 return type;
720 }
721
722 static LLVMValueRef get_src(struct nir_to_llvm_context *ctx, nir_src src)
723 {
724 assert(src.is_ssa);
725 struct hash_entry *entry = _mesa_hash_table_search(ctx->defs, src.ssa);
726 return (LLVMValueRef)entry->data;
727 }
728
729
730 static LLVMBasicBlockRef get_block(struct nir_to_llvm_context *ctx,
731 struct nir_block *b)
732 {
733 struct hash_entry *entry = _mesa_hash_table_search(ctx->defs, b);
734 return (LLVMBasicBlockRef)entry->data;
735 }
736
737 static LLVMValueRef get_alu_src(struct nir_to_llvm_context *ctx,
738 nir_alu_src src,
739 unsigned num_components)
740 {
741 LLVMValueRef value = get_src(ctx, src.src);
742 bool need_swizzle = false;
743
744 assert(value);
745 LLVMTypeRef type = LLVMTypeOf(value);
746 unsigned src_components = LLVMGetTypeKind(type) == LLVMVectorTypeKind
747 ? LLVMGetVectorSize(type)
748 : 1;
749
750 for (unsigned i = 0; i < num_components; ++i) {
751 assert(src.swizzle[i] < src_components);
752 if (src.swizzle[i] != i)
753 need_swizzle = true;
754 }
755
756 if (need_swizzle || num_components != src_components) {
757 LLVMValueRef masks[] = {
758 LLVMConstInt(ctx->i32, src.swizzle[0], false),
759 LLVMConstInt(ctx->i32, src.swizzle[1], false),
760 LLVMConstInt(ctx->i32, src.swizzle[2], false),
761 LLVMConstInt(ctx->i32, src.swizzle[3], false)};
762
763 if (src_components > 1 && num_components == 1) {
764 value = LLVMBuildExtractElement(ctx->builder, value,
765 masks[0], "");
766 } else if (src_components == 1 && num_components > 1) {
767 LLVMValueRef values[] = {value, value, value, value};
768 value = build_gather_values(ctx, values, num_components);
769 } else {
770 LLVMValueRef swizzle = LLVMConstVector(masks, num_components);
771 value = LLVMBuildShuffleVector(ctx->builder, value, value,
772 swizzle, "");
773 }
774 }
775 assert(!src.negate);
776 assert(!src.abs);
777 return value;
778 }
779
780 static LLVMValueRef emit_int_cmp(struct nir_to_llvm_context *ctx,
781 LLVMIntPredicate pred, LLVMValueRef src0,
782 LLVMValueRef src1)
783 {
784 LLVMValueRef result = LLVMBuildICmp(ctx->builder, pred, src0, src1, "");
785 return LLVMBuildSelect(ctx->builder, result,
786 LLVMConstInt(ctx->i32, 0xFFFFFFFF, false),
787 LLVMConstInt(ctx->i32, 0, false), "");
788 }
789
790 static LLVMValueRef emit_float_cmp(struct nir_to_llvm_context *ctx,
791 LLVMRealPredicate pred, LLVMValueRef src0,
792 LLVMValueRef src1)
793 {
794 LLVMValueRef result;
795 src0 = to_float(ctx, src0);
796 src1 = to_float(ctx, src1);
797 result = LLVMBuildFCmp(ctx->builder, pred, src0, src1, "");
798 return LLVMBuildSelect(ctx->builder, result,
799 LLVMConstInt(ctx->i32, 0xFFFFFFFF, false),
800 LLVMConstInt(ctx->i32, 0, false), "");
801 }
802
803 static LLVMValueRef emit_intrin_1f_param(struct nir_to_llvm_context *ctx,
804 const char *intrin,
805 LLVMValueRef src0)
806 {
807 LLVMValueRef params[] = {
808 to_float(ctx, src0),
809 };
810 return emit_llvm_intrinsic(ctx, intrin, ctx->f32, params, 1, AC_FUNC_ATTR_READNONE);
811 }
812
813 static LLVMValueRef emit_intrin_2f_param(struct nir_to_llvm_context *ctx,
814 const char *intrin,
815 LLVMValueRef src0, LLVMValueRef src1)
816 {
817 LLVMValueRef params[] = {
818 to_float(ctx, src0),
819 to_float(ctx, src1),
820 };
821 return emit_llvm_intrinsic(ctx, intrin, ctx->f32, params, 2, AC_FUNC_ATTR_READNONE);
822 }
823
824 static LLVMValueRef emit_intrin_3f_param(struct nir_to_llvm_context *ctx,
825 const char *intrin,
826 LLVMValueRef src0, LLVMValueRef src1, LLVMValueRef src2)
827 {
828 LLVMValueRef params[] = {
829 to_float(ctx, src0),
830 to_float(ctx, src1),
831 to_float(ctx, src2),
832 };
833 return emit_llvm_intrinsic(ctx, intrin, ctx->f32, params, 3, AC_FUNC_ATTR_READNONE);
834 }
835
836 static LLVMValueRef emit_bcsel(struct nir_to_llvm_context *ctx,
837 LLVMValueRef src0, LLVMValueRef src1, LLVMValueRef src2)
838 {
839 LLVMValueRef v = LLVMBuildICmp(ctx->builder, LLVMIntNE, src0,
840 ctx->i32zero, "");
841 return LLVMBuildSelect(ctx->builder, v, src1, src2, "");
842 }
843
844 static LLVMValueRef emit_find_lsb(struct nir_to_llvm_context *ctx,
845 LLVMValueRef src0)
846 {
847 LLVMValueRef params[2] = {
848 src0,
849
850 /* The value of 1 means that ffs(x=0) = undef, so LLVM won't
851 * add special code to check for x=0. The reason is that
852 * the LLVM behavior for x=0 is different from what we
853 * need here.
854 *
855 * The hardware already implements the correct behavior.
856 */
857 LLVMConstInt(ctx->i32, 1, false),
858 };
859 return emit_llvm_intrinsic(ctx, "llvm.cttz.i32", ctx->i32, params, 2, AC_FUNC_ATTR_READNONE);
860 }
861
862 static LLVMValueRef emit_ifind_msb(struct nir_to_llvm_context *ctx,
863 LLVMValueRef src0)
864 {
865 LLVMValueRef msb = emit_llvm_intrinsic(ctx, "llvm.AMDGPU.flbit.i32",
866 ctx->i32, &src0, 1,
867 AC_FUNC_ATTR_READNONE);
868
869 /* The HW returns the last bit index from MSB, but NIR wants
870 * the index from LSB. Invert it by doing "31 - msb". */
871 msb = LLVMBuildSub(ctx->builder, LLVMConstInt(ctx->i32, 31, false),
872 msb, "");
873
874 LLVMValueRef all_ones = LLVMConstInt(ctx->i32, -1, true);
875 LLVMValueRef cond = LLVMBuildOr(ctx->builder,
876 LLVMBuildICmp(ctx->builder, LLVMIntEQ,
877 src0, ctx->i32zero, ""),
878 LLVMBuildICmp(ctx->builder, LLVMIntEQ,
879 src0, all_ones, ""), "");
880
881 return LLVMBuildSelect(ctx->builder, cond, all_ones, msb, "");
882 }
883
884 static LLVMValueRef emit_ufind_msb(struct nir_to_llvm_context *ctx,
885 LLVMValueRef src0)
886 {
887 LLVMValueRef args[2] = {
888 src0,
889 ctx->i32one,
890 };
891 LLVMValueRef msb = emit_llvm_intrinsic(ctx, "llvm.ctlz.i32",
892 ctx->i32, args, ARRAY_SIZE(args),
893 AC_FUNC_ATTR_READNONE);
894
895 /* The HW returns the last bit index from MSB, but NIR wants
896 * the index from LSB. Invert it by doing "31 - msb". */
897 msb = LLVMBuildSub(ctx->builder, LLVMConstInt(ctx->i32, 31, false),
898 msb, "");
899
900 return LLVMBuildSelect(ctx->builder,
901 LLVMBuildICmp(ctx->builder, LLVMIntEQ, src0,
902 ctx->i32zero, ""),
903 LLVMConstInt(ctx->i32, -1, true), msb, "");
904 }
905
906 static LLVMValueRef emit_minmax_int(struct nir_to_llvm_context *ctx,
907 LLVMIntPredicate pred,
908 LLVMValueRef src0, LLVMValueRef src1)
909 {
910 return LLVMBuildSelect(ctx->builder,
911 LLVMBuildICmp(ctx->builder, pred, src0, src1, ""),
912 src0,
913 src1, "");
914
915 }
916 static LLVMValueRef emit_iabs(struct nir_to_llvm_context *ctx,
917 LLVMValueRef src0)
918 {
919 return emit_minmax_int(ctx, LLVMIntSGT, src0,
920 LLVMBuildNeg(ctx->builder, src0, ""));
921 }
922
923 static LLVMValueRef emit_fsign(struct nir_to_llvm_context *ctx,
924 LLVMValueRef src0)
925 {
926 LLVMValueRef cmp, val;
927
928 cmp = LLVMBuildFCmp(ctx->builder, LLVMRealOGT, src0, ctx->f32zero, "");
929 val = LLVMBuildSelect(ctx->builder, cmp, ctx->f32one, src0, "");
930 cmp = LLVMBuildFCmp(ctx->builder, LLVMRealOGE, val, ctx->f32zero, "");
931 val = LLVMBuildSelect(ctx->builder, cmp, val, LLVMConstReal(ctx->f32, -1.0), "");
932 return val;
933 }
934
935 static LLVMValueRef emit_isign(struct nir_to_llvm_context *ctx,
936 LLVMValueRef src0)
937 {
938 LLVMValueRef cmp, val;
939
940 cmp = LLVMBuildICmp(ctx->builder, LLVMIntSGT, src0, ctx->i32zero, "");
941 val = LLVMBuildSelect(ctx->builder, cmp, ctx->i32one, src0, "");
942 cmp = LLVMBuildICmp(ctx->builder, LLVMIntSGE, val, ctx->i32zero, "");
943 val = LLVMBuildSelect(ctx->builder, cmp, val, LLVMConstInt(ctx->i32, -1, true), "");
944 return val;
945 }
946
947 static LLVMValueRef emit_ffract(struct nir_to_llvm_context *ctx,
948 LLVMValueRef src0)
949 {
950 const char *intr = "llvm.floor.f32";
951 LLVMValueRef fsrc0 = to_float(ctx, src0);
952 LLVMValueRef params[] = {
953 fsrc0,
954 };
955 LLVMValueRef floor = emit_llvm_intrinsic(ctx, intr,
956 ctx->f32, params, 1,
957 AC_FUNC_ATTR_READNONE);
958 return LLVMBuildFSub(ctx->builder, fsrc0, floor, "");
959 }
960
961 static LLVMValueRef emit_uint_carry(struct nir_to_llvm_context *ctx,
962 const char *intrin,
963 LLVMValueRef src0, LLVMValueRef src1)
964 {
965 LLVMTypeRef ret_type;
966 LLVMTypeRef types[] = { ctx->i32, ctx->i1 };
967 LLVMValueRef res;
968 LLVMValueRef params[] = { src0, src1 };
969 ret_type = LLVMStructTypeInContext(ctx->context, types,
970 2, true);
971
972 res = emit_llvm_intrinsic(ctx, intrin, ret_type,
973 params, 2, AC_FUNC_ATTR_READNONE);
974
975 res = LLVMBuildExtractValue(ctx->builder, res, 1, "");
976 res = LLVMBuildZExt(ctx->builder, res, ctx->i32, "");
977 return res;
978 }
979
980 static LLVMValueRef emit_b2f(struct nir_to_llvm_context *ctx,
981 LLVMValueRef src0)
982 {
983 return LLVMBuildAnd(ctx->builder, src0, LLVMBuildBitCast(ctx->builder, LLVMConstReal(ctx->f32, 1.0), ctx->i32, ""), "");
984 }
985
986 static LLVMValueRef emit_umul_high(struct nir_to_llvm_context *ctx,
987 LLVMValueRef src0, LLVMValueRef src1)
988 {
989 LLVMValueRef dst64, result;
990 src0 = LLVMBuildZExt(ctx->builder, src0, ctx->i64, "");
991 src1 = LLVMBuildZExt(ctx->builder, src1, ctx->i64, "");
992
993 dst64 = LLVMBuildMul(ctx->builder, src0, src1, "");
994 dst64 = LLVMBuildLShr(ctx->builder, dst64, LLVMConstInt(ctx->i64, 32, false), "");
995 result = LLVMBuildTrunc(ctx->builder, dst64, ctx->i32, "");
996 return result;
997 }
998
999 static LLVMValueRef emit_imul_high(struct nir_to_llvm_context *ctx,
1000 LLVMValueRef src0, LLVMValueRef src1)
1001 {
1002 LLVMValueRef dst64, result;
1003 src0 = LLVMBuildSExt(ctx->builder, src0, ctx->i64, "");
1004 src1 = LLVMBuildSExt(ctx->builder, src1, ctx->i64, "");
1005
1006 dst64 = LLVMBuildMul(ctx->builder, src0, src1, "");
1007 dst64 = LLVMBuildAShr(ctx->builder, dst64, LLVMConstInt(ctx->i64, 32, false), "");
1008 result = LLVMBuildTrunc(ctx->builder, dst64, ctx->i32, "");
1009 return result;
1010 }
1011
1012 static LLVMValueRef emit_bitfield_extract(struct nir_to_llvm_context *ctx,
1013 const char *intrin,
1014 LLVMValueRef srcs[3])
1015 {
1016 LLVMValueRef result;
1017 LLVMValueRef icond = LLVMBuildICmp(ctx->builder, LLVMIntEQ, srcs[2], LLVMConstInt(ctx->i32, 32, false), "");
1018 result = emit_llvm_intrinsic(ctx, intrin, ctx->i32, srcs, 3, AC_FUNC_ATTR_READNONE);
1019
1020 result = LLVMBuildSelect(ctx->builder, icond, srcs[0], result, "");
1021 return result;
1022 }
1023
1024 static LLVMValueRef emit_bitfield_insert(struct nir_to_llvm_context *ctx,
1025 LLVMValueRef src0, LLVMValueRef src1,
1026 LLVMValueRef src2, LLVMValueRef src3)
1027 {
1028 LLVMValueRef bfi_args[3], result;
1029
1030 bfi_args[0] = LLVMBuildShl(ctx->builder,
1031 LLVMBuildSub(ctx->builder,
1032 LLVMBuildShl(ctx->builder,
1033 ctx->i32one,
1034 src3, ""),
1035 ctx->i32one, ""),
1036 src2, "");
1037 bfi_args[1] = LLVMBuildShl(ctx->builder, src1, src2, "");
1038 bfi_args[2] = src0;
1039
1040 LLVMValueRef icond = LLVMBuildICmp(ctx->builder, LLVMIntEQ, src3, LLVMConstInt(ctx->i32, 32, false), "");
1041
1042 /* Calculate:
1043 * (arg0 & arg1) | (~arg0 & arg2) = arg2 ^ (arg0 & (arg1 ^ arg2)
1044 * Use the right-hand side, which the LLVM backend can convert to V_BFI.
1045 */
1046 result = LLVMBuildXor(ctx->builder, bfi_args[2],
1047 LLVMBuildAnd(ctx->builder, bfi_args[0],
1048 LLVMBuildXor(ctx->builder, bfi_args[1], bfi_args[2], ""), ""), "");
1049
1050 result = LLVMBuildSelect(ctx->builder, icond, src1, result, "");
1051 return result;
1052 }
1053
1054 static LLVMValueRef emit_pack_half_2x16(struct nir_to_llvm_context *ctx,
1055 LLVMValueRef src0)
1056 {
1057 LLVMValueRef const16 = LLVMConstInt(ctx->i32, 16, false);
1058 int i;
1059 LLVMValueRef comp[2];
1060
1061 src0 = to_float(ctx, src0);
1062 comp[0] = LLVMBuildExtractElement(ctx->builder, src0, ctx->i32zero, "");
1063 comp[1] = LLVMBuildExtractElement(ctx->builder, src0, ctx->i32one, "");
1064 for (i = 0; i < 2; i++) {
1065 comp[i] = LLVMBuildFPTrunc(ctx->builder, comp[i], ctx->f16, "");
1066 comp[i] = LLVMBuildBitCast(ctx->builder, comp[i], ctx->i16, "");
1067 comp[i] = LLVMBuildZExt(ctx->builder, comp[i], ctx->i32, "");
1068 }
1069
1070 comp[1] = LLVMBuildShl(ctx->builder, comp[1], const16, "");
1071 comp[0] = LLVMBuildOr(ctx->builder, comp[0], comp[1], "");
1072
1073 return comp[0];
1074 }
1075
1076 static LLVMValueRef emit_unpack_half_2x16(struct nir_to_llvm_context *ctx,
1077 LLVMValueRef src0)
1078 {
1079 LLVMValueRef const16 = LLVMConstInt(ctx->i32, 16, false);
1080 LLVMValueRef temps[2], result, val;
1081 int i;
1082
1083 for (i = 0; i < 2; i++) {
1084 val = i == 1 ? LLVMBuildLShr(ctx->builder, src0, const16, "") : src0;
1085 val = LLVMBuildTrunc(ctx->builder, val, ctx->i16, "");
1086 val = LLVMBuildBitCast(ctx->builder, val, ctx->f16, "");
1087 temps[i] = LLVMBuildFPExt(ctx->builder, val, ctx->f32, "");
1088 }
1089
1090 result = LLVMBuildInsertElement(ctx->builder, LLVMGetUndef(ctx->v2f32), temps[0],
1091 ctx->i32zero, "");
1092 result = LLVMBuildInsertElement(ctx->builder, result, temps[1],
1093 ctx->i32one, "");
1094 return result;
1095 }
1096
1097 /**
1098 * Set range metadata on an instruction. This can only be used on load and
1099 * call instructions. If you know an instruction can only produce the values
1100 * 0, 1, 2, you would do set_range_metadata(value, 0, 3);
1101 * \p lo is the minimum value inclusive.
1102 * \p hi is the maximum value exclusive.
1103 */
1104 static void set_range_metadata(struct nir_to_llvm_context *ctx,
1105 LLVMValueRef value, unsigned lo, unsigned hi)
1106 {
1107 LLVMValueRef range_md, md_args[2];
1108 LLVMTypeRef type = LLVMTypeOf(value);
1109 LLVMContextRef context = LLVMGetTypeContext(type);
1110
1111 md_args[0] = LLVMConstInt(type, lo, false);
1112 md_args[1] = LLVMConstInt(type, hi, false);
1113 range_md = LLVMMDNodeInContext(context, md_args, 2);
1114 LLVMSetMetadata(value, ctx->range_md_kind, range_md);
1115 }
1116
1117 static LLVMValueRef get_thread_id(struct nir_to_llvm_context *ctx)
1118 {
1119 LLVMValueRef tid;
1120 LLVMValueRef tid_args[2];
1121 tid_args[0] = LLVMConstInt(ctx->i32, 0xffffffff, false);
1122 tid_args[1] = ctx->i32zero;
1123 tid_args[1] = emit_llvm_intrinsic(ctx,
1124 "llvm.amdgcn.mbcnt.lo", ctx->i32,
1125 tid_args, 2, AC_FUNC_ATTR_READNONE);
1126
1127 tid = emit_llvm_intrinsic(ctx,
1128 "llvm.amdgcn.mbcnt.hi", ctx->i32,
1129 tid_args, 2, AC_FUNC_ATTR_READNONE);
1130 set_range_metadata(ctx, tid, 0, 64);
1131 return tid;
1132 }
1133
1134 /*
1135 * SI implements derivatives using the local data store (LDS)
1136 * All writes to the LDS happen in all executing threads at
1137 * the same time. TID is the Thread ID for the current
1138 * thread and is a value between 0 and 63, representing
1139 * the thread's position in the wavefront.
1140 *
1141 * For the pixel shader threads are grouped into quads of four pixels.
1142 * The TIDs of the pixels of a quad are:
1143 *
1144 * +------+------+
1145 * |4n + 0|4n + 1|
1146 * +------+------+
1147 * |4n + 2|4n + 3|
1148 * +------+------+
1149 *
1150 * So, masking the TID with 0xfffffffc yields the TID of the top left pixel
1151 * of the quad, masking with 0xfffffffd yields the TID of the top pixel of
1152 * the current pixel's column, and masking with 0xfffffffe yields the TID
1153 * of the left pixel of the current pixel's row.
1154 *
1155 * Adding 1 yields the TID of the pixel to the right of the left pixel, and
1156 * adding 2 yields the TID of the pixel below the top pixel.
1157 */
1158 /* masks for thread ID. */
1159 #define TID_MASK_TOP_LEFT 0xfffffffc
1160 #define TID_MASK_TOP 0xfffffffd
1161 #define TID_MASK_LEFT 0xfffffffe
1162 static LLVMValueRef emit_ddxy(struct nir_to_llvm_context *ctx,
1163 nir_op op,
1164 LLVMValueRef src0)
1165 {
1166 LLVMValueRef tl, trbl, result;
1167 LLVMValueRef tl_tid, trbl_tid;
1168 LLVMValueRef args[2];
1169 LLVMValueRef thread_id;
1170 unsigned mask;
1171 int idx;
1172 ctx->has_ddxy = true;
1173
1174 if (!ctx->lds && !ctx->has_ds_bpermute)
1175 ctx->lds = LLVMAddGlobalInAddressSpace(ctx->module,
1176 LLVMArrayType(ctx->i32, 64),
1177 "ddxy_lds", LOCAL_ADDR_SPACE);
1178
1179 thread_id = get_thread_id(ctx);
1180 if (op == nir_op_fddx_fine || op == nir_op_fddx)
1181 mask = TID_MASK_LEFT;
1182 else if (op == nir_op_fddy_fine || op == nir_op_fddy)
1183 mask = TID_MASK_TOP;
1184 else
1185 mask = TID_MASK_TOP_LEFT;
1186
1187 tl_tid = LLVMBuildAnd(ctx->builder, thread_id,
1188 LLVMConstInt(ctx->i32, mask, false), "");
1189 /* for DDX we want to next X pixel, DDY next Y pixel. */
1190 if (op == nir_op_fddx_fine ||
1191 op == nir_op_fddx_coarse ||
1192 op == nir_op_fddx)
1193 idx = 1;
1194 else
1195 idx = 2;
1196
1197 trbl_tid = LLVMBuildAdd(ctx->builder, tl_tid,
1198 LLVMConstInt(ctx->i32, idx, false), "");
1199
1200 if (ctx->has_ds_bpermute) {
1201 args[0] = LLVMBuildMul(ctx->builder, tl_tid,
1202 LLVMConstInt(ctx->i32, 4, false), "");
1203 args[1] = src0;
1204 tl = emit_llvm_intrinsic(ctx, "llvm.amdgcn.ds.bpermute",
1205 ctx->i32, args, 2,
1206 AC_FUNC_ATTR_READNONE);
1207
1208 args[0] = LLVMBuildMul(ctx->builder, trbl_tid,
1209 LLVMConstInt(ctx->i32, 4, false), "");
1210 trbl = emit_llvm_intrinsic(ctx, "llvm.amdgcn.ds.bpermute",
1211 ctx->i32, args, 2,
1212 AC_FUNC_ATTR_READNONE);
1213 } else {
1214 LLVMValueRef store_ptr, load_ptr0, load_ptr1;
1215
1216 store_ptr = build_gep0(ctx, ctx->lds, thread_id);
1217 load_ptr0 = build_gep0(ctx, ctx->lds, tl_tid);
1218 load_ptr1 = build_gep0(ctx, ctx->lds, trbl_tid);
1219
1220 LLVMBuildStore(ctx->builder, src0, store_ptr);
1221 tl = LLVMBuildLoad(ctx->builder, load_ptr0, "");
1222 trbl = LLVMBuildLoad(ctx->builder, load_ptr1, "");
1223 }
1224 tl = LLVMBuildBitCast(ctx->builder, tl, ctx->f32, "");
1225 trbl = LLVMBuildBitCast(ctx->builder, trbl, ctx->f32, "");
1226 result = LLVMBuildFSub(ctx->builder, trbl, tl, "");
1227 return result;
1228 }
1229
1230 /*
1231 * this takes an I,J coordinate pair,
1232 * and works out the X and Y derivatives.
1233 * it returns DDX(I), DDX(J), DDY(I), DDY(J).
1234 */
1235 static LLVMValueRef emit_ddxy_interp(
1236 struct nir_to_llvm_context *ctx,
1237 LLVMValueRef interp_ij)
1238 {
1239 LLVMValueRef result[4], a;
1240 unsigned i;
1241
1242 for (i = 0; i < 2; i++) {
1243 a = LLVMBuildExtractElement(ctx->builder, interp_ij,
1244 LLVMConstInt(ctx->i32, i, false), "");
1245 result[i] = emit_ddxy(ctx, nir_op_fddx, a);
1246 result[2+i] = emit_ddxy(ctx, nir_op_fddy, a);
1247 }
1248 return build_gather_values(ctx, result, 4);
1249 }
1250
1251 static LLVMValueRef emit_fdiv(struct nir_to_llvm_context *ctx,
1252 LLVMValueRef num,
1253 LLVMValueRef den)
1254 {
1255 LLVMValueRef ret = LLVMBuildFDiv(ctx->builder, num, den, "");
1256
1257 if (!LLVMIsConstant(ret))
1258 LLVMSetMetadata(ret, ctx->fpmath_md_kind, ctx->fpmath_md_2p5_ulp);
1259 return ret;
1260 }
1261
1262 static void visit_alu(struct nir_to_llvm_context *ctx, nir_alu_instr *instr)
1263 {
1264 LLVMValueRef src[4], result = NULL;
1265 unsigned num_components = instr->dest.dest.ssa.num_components;
1266 unsigned src_components;
1267
1268 assert(nir_op_infos[instr->op].num_inputs <= ARRAY_SIZE(src));
1269 switch (instr->op) {
1270 case nir_op_vec2:
1271 case nir_op_vec3:
1272 case nir_op_vec4:
1273 src_components = 1;
1274 break;
1275 case nir_op_pack_half_2x16:
1276 src_components = 2;
1277 break;
1278 case nir_op_unpack_half_2x16:
1279 src_components = 1;
1280 break;
1281 default:
1282 src_components = num_components;
1283 break;
1284 }
1285 for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++)
1286 src[i] = get_alu_src(ctx, instr->src[i], src_components);
1287
1288 switch (instr->op) {
1289 case nir_op_fmov:
1290 case nir_op_imov:
1291 result = src[0];
1292 break;
1293 case nir_op_fneg:
1294 src[0] = to_float(ctx, src[0]);
1295 result = LLVMBuildFNeg(ctx->builder, src[0], "");
1296 break;
1297 case nir_op_ineg:
1298 result = LLVMBuildNeg(ctx->builder, src[0], "");
1299 break;
1300 case nir_op_inot:
1301 result = LLVMBuildNot(ctx->builder, src[0], "");
1302 break;
1303 case nir_op_iadd:
1304 result = LLVMBuildAdd(ctx->builder, src[0], src[1], "");
1305 break;
1306 case nir_op_fadd:
1307 src[0] = to_float(ctx, src[0]);
1308 src[1] = to_float(ctx, src[1]);
1309 result = LLVMBuildFAdd(ctx->builder, src[0], src[1], "");
1310 break;
1311 case nir_op_fsub:
1312 src[0] = to_float(ctx, src[0]);
1313 src[1] = to_float(ctx, src[1]);
1314 result = LLVMBuildFSub(ctx->builder, src[0], src[1], "");
1315 break;
1316 case nir_op_isub:
1317 result = LLVMBuildSub(ctx->builder, src[0], src[1], "");
1318 break;
1319 case nir_op_imul:
1320 result = LLVMBuildMul(ctx->builder, src[0], src[1], "");
1321 break;
1322 case nir_op_imod:
1323 result = LLVMBuildSRem(ctx->builder, src[0], src[1], "");
1324 break;
1325 case nir_op_umod:
1326 result = LLVMBuildURem(ctx->builder, src[0], src[1], "");
1327 break;
1328 case nir_op_fmod:
1329 src[0] = to_float(ctx, src[0]);
1330 src[1] = to_float(ctx, src[1]);
1331 result = emit_fdiv(ctx, src[0], src[1]);
1332 result = emit_intrin_1f_param(ctx, "llvm.floor.f32", result);
1333 result = LLVMBuildFMul(ctx->builder, src[1] , result, "");
1334 result = LLVMBuildFSub(ctx->builder, src[0], result, "");
1335 break;
1336 case nir_op_frem:
1337 src[0] = to_float(ctx, src[0]);
1338 src[1] = to_float(ctx, src[1]);
1339 result = LLVMBuildFRem(ctx->builder, src[0], src[1], "");
1340 break;
1341 case nir_op_idiv:
1342 result = LLVMBuildSDiv(ctx->builder, src[0], src[1], "");
1343 break;
1344 case nir_op_udiv:
1345 result = LLVMBuildUDiv(ctx->builder, src[0], src[1], "");
1346 break;
1347 case nir_op_fmul:
1348 src[0] = to_float(ctx, src[0]);
1349 src[1] = to_float(ctx, src[1]);
1350 result = LLVMBuildFMul(ctx->builder, src[0], src[1], "");
1351 break;
1352 case nir_op_fdiv:
1353 src[0] = to_float(ctx, src[0]);
1354 src[1] = to_float(ctx, src[1]);
1355 result = emit_fdiv(ctx, src[0], src[1]);
1356 break;
1357 case nir_op_frcp:
1358 src[0] = to_float(ctx, src[0]);
1359 result = emit_fdiv(ctx, ctx->f32one, src[0]);
1360 break;
1361 case nir_op_iand:
1362 result = LLVMBuildAnd(ctx->builder, src[0], src[1], "");
1363 break;
1364 case nir_op_ior:
1365 result = LLVMBuildOr(ctx->builder, src[0], src[1], "");
1366 break;
1367 case nir_op_ixor:
1368 result = LLVMBuildXor(ctx->builder, src[0], src[1], "");
1369 break;
1370 case nir_op_ishl:
1371 result = LLVMBuildShl(ctx->builder, src[0], src[1], "");
1372 break;
1373 case nir_op_ishr:
1374 result = LLVMBuildAShr(ctx->builder, src[0], src[1], "");
1375 break;
1376 case nir_op_ushr:
1377 result = LLVMBuildLShr(ctx->builder, src[0], src[1], "");
1378 break;
1379 case nir_op_ilt:
1380 result = emit_int_cmp(ctx, LLVMIntSLT, src[0], src[1]);
1381 break;
1382 case nir_op_ine:
1383 result = emit_int_cmp(ctx, LLVMIntNE, src[0], src[1]);
1384 break;
1385 case nir_op_ieq:
1386 result = emit_int_cmp(ctx, LLVMIntEQ, src[0], src[1]);
1387 break;
1388 case nir_op_ige:
1389 result = emit_int_cmp(ctx, LLVMIntSGE, src[0], src[1]);
1390 break;
1391 case nir_op_ult:
1392 result = emit_int_cmp(ctx, LLVMIntULT, src[0], src[1]);
1393 break;
1394 case nir_op_uge:
1395 result = emit_int_cmp(ctx, LLVMIntUGE, src[0], src[1]);
1396 break;
1397 case nir_op_feq:
1398 result = emit_float_cmp(ctx, LLVMRealUEQ, src[0], src[1]);
1399 break;
1400 case nir_op_fne:
1401 result = emit_float_cmp(ctx, LLVMRealUNE, src[0], src[1]);
1402 break;
1403 case nir_op_flt:
1404 result = emit_float_cmp(ctx, LLVMRealULT, src[0], src[1]);
1405 break;
1406 case nir_op_fge:
1407 result = emit_float_cmp(ctx, LLVMRealUGE, src[0], src[1]);
1408 break;
1409 case nir_op_fabs:
1410 result = emit_intrin_1f_param(ctx, "llvm.fabs.f32", src[0]);
1411 break;
1412 case nir_op_iabs:
1413 result = emit_iabs(ctx, src[0]);
1414 break;
1415 case nir_op_imax:
1416 result = emit_minmax_int(ctx, LLVMIntSGT, src[0], src[1]);
1417 break;
1418 case nir_op_imin:
1419 result = emit_minmax_int(ctx, LLVMIntSLT, src[0], src[1]);
1420 break;
1421 case nir_op_umax:
1422 result = emit_minmax_int(ctx, LLVMIntUGT, src[0], src[1]);
1423 break;
1424 case nir_op_umin:
1425 result = emit_minmax_int(ctx, LLVMIntULT, src[0], src[1]);
1426 break;
1427 case nir_op_isign:
1428 result = emit_isign(ctx, src[0]);
1429 break;
1430 case nir_op_fsign:
1431 src[0] = to_float(ctx, src[0]);
1432 result = emit_fsign(ctx, src[0]);
1433 break;
1434 case nir_op_ffloor:
1435 result = emit_intrin_1f_param(ctx, "llvm.floor.f32", src[0]);
1436 break;
1437 case nir_op_ftrunc:
1438 result = emit_intrin_1f_param(ctx, "llvm.trunc.f32", src[0]);
1439 break;
1440 case nir_op_fceil:
1441 result = emit_intrin_1f_param(ctx, "llvm.ceil.f32", src[0]);
1442 break;
1443 case nir_op_fround_even:
1444 result = emit_intrin_1f_param(ctx, "llvm.rint.f32", src[0]);
1445 break;
1446 case nir_op_ffract:
1447 result = emit_ffract(ctx, src[0]);
1448 break;
1449 case nir_op_fsin:
1450 result = emit_intrin_1f_param(ctx, "llvm.sin.f32", src[0]);
1451 break;
1452 case nir_op_fcos:
1453 result = emit_intrin_1f_param(ctx, "llvm.cos.f32", src[0]);
1454 break;
1455 case nir_op_fsqrt:
1456 result = emit_intrin_1f_param(ctx, "llvm.sqrt.f32", src[0]);
1457 break;
1458 case nir_op_fexp2:
1459 result = emit_intrin_1f_param(ctx, "llvm.exp2.f32", src[0]);
1460 break;
1461 case nir_op_flog2:
1462 result = emit_intrin_1f_param(ctx, "llvm.log2.f32", src[0]);
1463 break;
1464 case nir_op_frsq:
1465 result = emit_intrin_1f_param(ctx, "llvm.sqrt.f32", src[0]);
1466 result = emit_fdiv(ctx, ctx->f32one, result);
1467 break;
1468 case nir_op_fpow:
1469 result = emit_intrin_2f_param(ctx, "llvm.pow.f32", src[0], src[1]);
1470 break;
1471 case nir_op_fmax:
1472 result = emit_intrin_2f_param(ctx, "llvm.maxnum.f32", src[0], src[1]);
1473 break;
1474 case nir_op_fmin:
1475 result = emit_intrin_2f_param(ctx, "llvm.minnum.f32", src[0], src[1]);
1476 break;
1477 case nir_op_ffma:
1478 result = emit_intrin_3f_param(ctx, "llvm.fma.f32", src[0], src[1], src[2]);
1479 break;
1480 case nir_op_ibitfield_extract:
1481 result = emit_bitfield_extract(ctx, "llvm.AMDGPU.bfe.i32", src);
1482 break;
1483 case nir_op_ubitfield_extract:
1484 result = emit_bitfield_extract(ctx, "llvm.AMDGPU.bfe.u32", src);
1485 break;
1486 case nir_op_bitfield_insert:
1487 result = emit_bitfield_insert(ctx, src[0], src[1], src[2], src[3]);
1488 break;
1489 case nir_op_bitfield_reverse:
1490 result = emit_llvm_intrinsic(ctx, "llvm.bitreverse.i32", ctx->i32, src, 1, AC_FUNC_ATTR_READNONE);
1491 break;
1492 case nir_op_bit_count:
1493 result = emit_llvm_intrinsic(ctx, "llvm.ctpop.i32", ctx->i32, src, 1, AC_FUNC_ATTR_READNONE);
1494 break;
1495 case nir_op_vec2:
1496 case nir_op_vec3:
1497 case nir_op_vec4:
1498 for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++)
1499 src[i] = to_integer(ctx, src[i]);
1500 result = build_gather_values(ctx, src, num_components);
1501 break;
1502 case nir_op_f2i:
1503 src[0] = to_float(ctx, src[0]);
1504 result = LLVMBuildFPToSI(ctx->builder, src[0], ctx->i32, "");
1505 break;
1506 case nir_op_f2u:
1507 src[0] = to_float(ctx, src[0]);
1508 result = LLVMBuildFPToUI(ctx->builder, src[0], ctx->i32, "");
1509 break;
1510 case nir_op_i2f:
1511 result = LLVMBuildSIToFP(ctx->builder, src[0], ctx->f32, "");
1512 break;
1513 case nir_op_u2f:
1514 result = LLVMBuildUIToFP(ctx->builder, src[0], ctx->f32, "");
1515 break;
1516 case nir_op_bcsel:
1517 result = emit_bcsel(ctx, src[0], src[1], src[2]);
1518 break;
1519 case nir_op_find_lsb:
1520 result = emit_find_lsb(ctx, src[0]);
1521 break;
1522 case nir_op_ufind_msb:
1523 result = emit_ufind_msb(ctx, src[0]);
1524 break;
1525 case nir_op_ifind_msb:
1526 result = emit_ifind_msb(ctx, src[0]);
1527 break;
1528 case nir_op_uadd_carry:
1529 result = emit_uint_carry(ctx, "llvm.uadd.with.overflow.i32", src[0], src[1]);
1530 break;
1531 case nir_op_usub_borrow:
1532 result = emit_uint_carry(ctx, "llvm.usub.with.overflow.i32", src[0], src[1]);
1533 break;
1534 case nir_op_b2f:
1535 result = emit_b2f(ctx, src[0]);
1536 break;
1537 case nir_op_fquantize2f16:
1538 src[0] = to_float(ctx, src[0]);
1539 result = LLVMBuildFPTrunc(ctx->builder, src[0], ctx->f16, "");
1540 /* need to convert back up to f32 */
1541 result = LLVMBuildFPExt(ctx->builder, result, ctx->f32, "");
1542 break;
1543 case nir_op_umul_high:
1544 result = emit_umul_high(ctx, src[0], src[1]);
1545 break;
1546 case nir_op_imul_high:
1547 result = emit_imul_high(ctx, src[0], src[1]);
1548 break;
1549 case nir_op_pack_half_2x16:
1550 result = emit_pack_half_2x16(ctx, src[0]);
1551 break;
1552 case nir_op_unpack_half_2x16:
1553 result = emit_unpack_half_2x16(ctx, src[0]);
1554 break;
1555 case nir_op_fddx:
1556 case nir_op_fddy:
1557 case nir_op_fddx_fine:
1558 case nir_op_fddy_fine:
1559 case nir_op_fddx_coarse:
1560 case nir_op_fddy_coarse:
1561 result = emit_ddxy(ctx, instr->op, src[0]);
1562 break;
1563 default:
1564 fprintf(stderr, "Unknown NIR alu instr: ");
1565 nir_print_instr(&instr->instr, stderr);
1566 fprintf(stderr, "\n");
1567 abort();
1568 }
1569
1570 if (result) {
1571 assert(instr->dest.dest.is_ssa);
1572 result = to_integer(ctx, result);
1573 _mesa_hash_table_insert(ctx->defs, &instr->dest.dest.ssa,
1574 result);
1575 }
1576 }
1577
1578 static void visit_load_const(struct nir_to_llvm_context *ctx,
1579 nir_load_const_instr *instr)
1580 {
1581 LLVMValueRef values[4], value = NULL;
1582 LLVMTypeRef element_type =
1583 LLVMIntTypeInContext(ctx->context, instr->def.bit_size);
1584
1585 for (unsigned i = 0; i < instr->def.num_components; ++i) {
1586 switch (instr->def.bit_size) {
1587 case 32:
1588 values[i] = LLVMConstInt(element_type,
1589 instr->value.u32[i], false);
1590 break;
1591 case 64:
1592 values[i] = LLVMConstInt(element_type,
1593 instr->value.u64[i], false);
1594 break;
1595 default:
1596 fprintf(stderr,
1597 "unsupported nir load_const bit_size: %d\n",
1598 instr->def.bit_size);
1599 abort();
1600 }
1601 }
1602 if (instr->def.num_components > 1) {
1603 value = LLVMConstVector(values, instr->def.num_components);
1604 } else
1605 value = values[0];
1606
1607 _mesa_hash_table_insert(ctx->defs, &instr->def, value);
1608 }
1609
1610 static LLVMValueRef cast_ptr(struct nir_to_llvm_context *ctx, LLVMValueRef ptr,
1611 LLVMTypeRef type)
1612 {
1613 int addr_space = LLVMGetPointerAddressSpace(LLVMTypeOf(ptr));
1614 return LLVMBuildBitCast(ctx->builder, ptr,
1615 LLVMPointerType(type, addr_space), "");
1616 }
1617
1618 static LLVMValueRef
1619 emit_llvm_intrinsic(struct nir_to_llvm_context *ctx, const char *name,
1620 LLVMTypeRef return_type, LLVMValueRef *params,
1621 unsigned param_count, unsigned attrib_mask)
1622 {
1623 LLVMValueRef function;
1624
1625 function = LLVMGetNamedFunction(ctx->module, name);
1626 if (!function) {
1627 LLVMTypeRef param_types[32], function_type;
1628 unsigned i;
1629
1630 assert(param_count <= 32);
1631
1632 for (i = 0; i < param_count; ++i) {
1633 assert(params[i]);
1634 param_types[i] = LLVMTypeOf(params[i]);
1635 }
1636 function_type =
1637 LLVMFunctionType(return_type, param_types, param_count, 0);
1638 function = LLVMAddFunction(ctx->module, name, function_type);
1639
1640 LLVMSetFunctionCallConv(function, LLVMCCallConv);
1641 LLVMSetLinkage(function, LLVMExternalLinkage);
1642
1643 attrib_mask |= AC_FUNC_ATTR_NOUNWIND;
1644 while (attrib_mask) {
1645 enum ac_func_attr attr = 1u << u_bit_scan(&attrib_mask);
1646 ac_add_function_attr(function, -1, attr);
1647 }
1648 }
1649 return LLVMBuildCall(ctx->builder, function, params, param_count, "");
1650 }
1651
1652 static LLVMValueRef
1653 get_buffer_size(struct nir_to_llvm_context *ctx, LLVMValueRef descriptor, bool in_elements)
1654 {
1655 LLVMValueRef size =
1656 LLVMBuildExtractElement(ctx->builder, descriptor,
1657 LLVMConstInt(ctx->i32, 2, false), "");
1658
1659 /* VI only */
1660 if (ctx->options->chip_class >= VI && in_elements) {
1661 /* On VI, the descriptor contains the size in bytes,
1662 * but TXQ must return the size in elements.
1663 * The stride is always non-zero for resources using TXQ.
1664 */
1665 LLVMValueRef stride =
1666 LLVMBuildExtractElement(ctx->builder, descriptor,
1667 LLVMConstInt(ctx->i32, 1, false), "");
1668 stride = LLVMBuildLShr(ctx->builder, stride,
1669 LLVMConstInt(ctx->i32, 16, false), "");
1670 stride = LLVMBuildAnd(ctx->builder, stride,
1671 LLVMConstInt(ctx->i32, 0x3fff, false), "");
1672
1673 size = LLVMBuildUDiv(ctx->builder, size, stride, "");
1674 }
1675 return size;
1676 }
1677
1678 /**
1679 * Given the i32 or vNi32 \p type, generate the textual name (e.g. for use with
1680 * intrinsic names).
1681 */
1682 static void build_int_type_name(
1683 LLVMTypeRef type,
1684 char *buf, unsigned bufsize)
1685 {
1686 assert(bufsize >= 6);
1687
1688 if (LLVMGetTypeKind(type) == LLVMVectorTypeKind)
1689 snprintf(buf, bufsize, "v%ui32",
1690 LLVMGetVectorSize(type));
1691 else
1692 strcpy(buf, "i32");
1693 }
1694
1695 static LLVMValueRef radv_lower_gather4_integer(struct nir_to_llvm_context *ctx,
1696 struct ac_tex_info *tinfo,
1697 nir_tex_instr *instr,
1698 const char *intr_name,
1699 unsigned coord_vgpr_index)
1700 {
1701 LLVMValueRef coord = tinfo->args[0];
1702 LLVMValueRef half_texel[2];
1703 int c;
1704
1705 //TODO Rect
1706 {
1707 LLVMValueRef txq_args[10];
1708 int txq_arg_count = 0;
1709 LLVMValueRef size;
1710 bool da = instr->is_array || instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE;
1711 txq_args[txq_arg_count++] = LLVMConstInt(ctx->i32, 0, false);
1712 txq_args[txq_arg_count++] = tinfo->args[1];
1713 txq_args[txq_arg_count++] = LLVMConstInt(ctx->i32, 0xf, 0); /* dmask */
1714 txq_args[txq_arg_count++] = LLVMConstInt(ctx->i32, 0, 0); /* unorm */
1715 txq_args[txq_arg_count++] = LLVMConstInt(ctx->i32, 0, 0); /* r128 */
1716 txq_args[txq_arg_count++] = LLVMConstInt(ctx->i32, da ? 1 : 0, 0);
1717 txq_args[txq_arg_count++] = LLVMConstInt(ctx->i32, 0, 0); /* glc */
1718 txq_args[txq_arg_count++] = LLVMConstInt(ctx->i32, 0, 0); /* slc */
1719 txq_args[txq_arg_count++] = LLVMConstInt(ctx->i32, 0, 0); /* tfe */
1720 txq_args[txq_arg_count++] = LLVMConstInt(ctx->i32, 0, 0); /* lwe */
1721 size = emit_llvm_intrinsic(ctx, "llvm.SI.getresinfo.i32", ctx->v4i32,
1722 txq_args, txq_arg_count,
1723 AC_FUNC_ATTR_READNONE);
1724
1725 for (c = 0; c < 2; c++) {
1726 half_texel[c] = LLVMBuildExtractElement(ctx->builder, size,
1727 LLVMConstInt(ctx->i32, c, false), "");
1728 half_texel[c] = LLVMBuildUIToFP(ctx->builder, half_texel[c], ctx->f32, "");
1729 half_texel[c] = emit_fdiv(ctx, ctx->f32one, half_texel[c]);
1730 half_texel[c] = LLVMBuildFMul(ctx->builder, half_texel[c],
1731 LLVMConstReal(ctx->f32, -0.5), "");
1732 }
1733 }
1734
1735 for (c = 0; c < 2; c++) {
1736 LLVMValueRef tmp;
1737 LLVMValueRef index = LLVMConstInt(ctx->i32, coord_vgpr_index + c, 0);
1738 tmp = LLVMBuildExtractElement(ctx->builder, coord, index, "");
1739 tmp = LLVMBuildBitCast(ctx->builder, tmp, ctx->f32, "");
1740 tmp = LLVMBuildFAdd(ctx->builder, tmp, half_texel[c], "");
1741 tmp = LLVMBuildBitCast(ctx->builder, tmp, ctx->i32, "");
1742 coord = LLVMBuildInsertElement(ctx->builder, coord, tmp, index, "");
1743 }
1744
1745 tinfo->args[0] = coord;
1746 return emit_llvm_intrinsic(ctx, intr_name, tinfo->dst_type, tinfo->args, tinfo->arg_count,
1747 AC_FUNC_ATTR_READNONE | AC_FUNC_ATTR_NOUNWIND);
1748
1749 }
1750
1751 static LLVMValueRef build_tex_intrinsic(struct nir_to_llvm_context *ctx,
1752 nir_tex_instr *instr,
1753 struct ac_tex_info *tinfo)
1754 {
1755 const char *name = "llvm.SI.image.sample";
1756 const char *infix = "";
1757 char intr_name[127];
1758 char type[64];
1759 bool is_shadow = instr->is_shadow;
1760 bool has_offset = tinfo->has_offset;
1761 switch (instr->op) {
1762 case nir_texop_txf:
1763 case nir_texop_txf_ms:
1764 case nir_texop_samples_identical:
1765 name = instr->sampler_dim == GLSL_SAMPLER_DIM_MS ? "llvm.SI.image.load" :
1766 instr->sampler_dim == GLSL_SAMPLER_DIM_BUF ? "llvm.SI.vs.load.input" :
1767 "llvm.SI.image.load.mip";
1768 is_shadow = false;
1769 has_offset = false;
1770 break;
1771 case nir_texop_txb:
1772 infix = ".b";
1773 break;
1774 case nir_texop_txl:
1775 infix = ".l";
1776 break;
1777 case nir_texop_txs:
1778 name = "llvm.SI.getresinfo";
1779 break;
1780 case nir_texop_query_levels:
1781 name = "llvm.SI.getresinfo";
1782 break;
1783 case nir_texop_tex:
1784 if (ctx->stage != MESA_SHADER_FRAGMENT)
1785 infix = ".lz";
1786 break;
1787 case nir_texop_txd:
1788 infix = ".d";
1789 break;
1790 case nir_texop_tg4:
1791 name = "llvm.SI.gather4";
1792 infix = ".lz";
1793 break;
1794 case nir_texop_lod:
1795 name = "llvm.SI.getlod";
1796 is_shadow = false;
1797 has_offset = false;
1798 break;
1799 default:
1800 break;
1801 }
1802
1803 build_int_type_name(LLVMTypeOf(tinfo->args[0]), type, sizeof(type));
1804 sprintf(intr_name, "%s%s%s%s.%s", name, is_shadow ? ".c" : "", infix,
1805 has_offset ? ".o" : "", type);
1806
1807 if (instr->op == nir_texop_tg4) {
1808 enum glsl_base_type stype = glsl_get_sampler_result_type(instr->texture->var->type);
1809 if (stype == GLSL_TYPE_UINT || stype == GLSL_TYPE_INT) {
1810 return radv_lower_gather4_integer(ctx, tinfo, instr, intr_name,
1811 (int)has_offset + (int)is_shadow);
1812 }
1813 }
1814 return emit_llvm_intrinsic(ctx, intr_name, tinfo->dst_type, tinfo->args, tinfo->arg_count,
1815 AC_FUNC_ATTR_READNONE | AC_FUNC_ATTR_NOUNWIND);
1816
1817 }
1818
1819 static LLVMValueRef visit_vulkan_resource_index(struct nir_to_llvm_context *ctx,
1820 nir_intrinsic_instr *instr)
1821 {
1822 LLVMValueRef index = get_src(ctx, instr->src[0]);
1823 unsigned desc_set = nir_intrinsic_desc_set(instr);
1824 unsigned binding = nir_intrinsic_binding(instr);
1825 LLVMValueRef desc_ptr = ctx->descriptor_sets[desc_set];
1826 struct radv_descriptor_set_layout *layout = ctx->options->layout->set[desc_set].layout;
1827 unsigned base_offset = layout->binding[binding].offset;
1828 LLVMValueRef offset, stride;
1829
1830 if (layout->binding[binding].type == VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC ||
1831 layout->binding[binding].type == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC) {
1832 desc_ptr = ctx->push_constants;
1833 base_offset = ctx->options->layout->push_constant_size;
1834 base_offset += 16 * layout->binding[binding].dynamic_offset_offset;
1835 stride = LLVMConstInt(ctx->i32, 16, false);
1836 } else
1837 stride = LLVMConstInt(ctx->i32, layout->binding[binding].size, false);
1838
1839 offset = LLVMConstInt(ctx->i32, base_offset, false);
1840 index = LLVMBuildMul(ctx->builder, index, stride, "");
1841 offset = LLVMBuildAdd(ctx->builder, offset, index, "");
1842
1843 LLVMValueRef indices[] = {ctx->i32zero, offset};
1844 desc_ptr = LLVMBuildGEP(ctx->builder, desc_ptr, indices, 2, "");
1845 desc_ptr = cast_ptr(ctx, desc_ptr, ctx->v4i32);
1846 LLVMSetMetadata(desc_ptr, ctx->uniform_md_kind, ctx->empty_md);
1847
1848 return LLVMBuildLoad(ctx->builder, desc_ptr, "");
1849 }
1850
1851 static LLVMValueRef visit_load_push_constant(struct nir_to_llvm_context *ctx,
1852 nir_intrinsic_instr *instr)
1853 {
1854 LLVMValueRef ptr;
1855
1856 LLVMValueRef indices[] = {ctx->i32zero, get_src(ctx, instr->src[0])};
1857 ptr = LLVMBuildGEP(ctx->builder, ctx->push_constants, indices, 2, "");
1858 ptr = cast_ptr(ctx, ptr, get_def_type(ctx, &instr->dest.ssa));
1859
1860 return LLVMBuildLoad(ctx->builder, ptr, "");
1861 }
1862
1863 static LLVMValueRef visit_get_buffer_size(struct nir_to_llvm_context *ctx,
1864 nir_intrinsic_instr *instr)
1865 {
1866 LLVMValueRef desc = get_src(ctx, instr->src[0]);
1867
1868 return get_buffer_size(ctx, desc, false);
1869 }
1870 static void visit_store_ssbo(struct nir_to_llvm_context *ctx,
1871 nir_intrinsic_instr *instr)
1872 {
1873 const char *store_name;
1874 LLVMTypeRef data_type = ctx->f32;
1875 unsigned writemask = nir_intrinsic_write_mask(instr);
1876 LLVMValueRef base_data, base_offset;
1877 LLVMValueRef params[6];
1878
1879 if (ctx->stage == MESA_SHADER_FRAGMENT)
1880 ctx->shader_info->fs.writes_memory = true;
1881
1882 params[1] = get_src(ctx, instr->src[1]);
1883 params[2] = LLVMConstInt(ctx->i32, 0, false); /* vindex */
1884 params[4] = LLVMConstInt(ctx->i1, 0, false); /* glc */
1885 params[5] = LLVMConstInt(ctx->i1, 0, false); /* slc */
1886
1887 if (instr->num_components > 1)
1888 data_type = LLVMVectorType(ctx->f32, instr->num_components);
1889
1890 base_data = to_float(ctx, get_src(ctx, instr->src[0]));
1891 base_data = trim_vector(ctx, base_data, instr->num_components);
1892 base_data = LLVMBuildBitCast(ctx->builder, base_data,
1893 data_type, "");
1894 base_offset = get_src(ctx, instr->src[2]); /* voffset */
1895 while (writemask) {
1896 int start, count;
1897 LLVMValueRef data;
1898 LLVMValueRef offset;
1899 LLVMValueRef tmp;
1900 u_bit_scan_consecutive_range(&writemask, &start, &count);
1901
1902 /* Due to an LLVM limitation, split 3-element writes
1903 * into a 2-element and a 1-element write. */
1904 if (count == 3) {
1905 writemask |= 1 << (start + 2);
1906 count = 2;
1907 }
1908
1909 if (count == 4) {
1910 store_name = "llvm.amdgcn.buffer.store.v4f32";
1911 data = base_data;
1912 } else if (count == 2) {
1913 tmp = LLVMBuildExtractElement(ctx->builder,
1914 base_data, LLVMConstInt(ctx->i32, start, false), "");
1915 data = LLVMBuildInsertElement(ctx->builder, LLVMGetUndef(ctx->v2f32), tmp,
1916 ctx->i32zero, "");
1917
1918 tmp = LLVMBuildExtractElement(ctx->builder,
1919 base_data, LLVMConstInt(ctx->i32, start + 1, false), "");
1920 data = LLVMBuildInsertElement(ctx->builder, data, tmp,
1921 ctx->i32one, "");
1922 store_name = "llvm.amdgcn.buffer.store.v2f32";
1923
1924 } else {
1925 assert(count == 1);
1926 if (get_llvm_num_components(base_data) > 1)
1927 data = LLVMBuildExtractElement(ctx->builder, base_data,
1928 LLVMConstInt(ctx->i32, start, false), "");
1929 else
1930 data = base_data;
1931 store_name = "llvm.amdgcn.buffer.store.f32";
1932 }
1933
1934 offset = base_offset;
1935 if (start != 0) {
1936 offset = LLVMBuildAdd(ctx->builder, offset, LLVMConstInt(ctx->i32, start * 4, false), "");
1937 }
1938 params[0] = data;
1939 params[3] = offset;
1940 emit_llvm_intrinsic(ctx, store_name,
1941 LLVMVoidTypeInContext(ctx->context), params, 6, 0);
1942 }
1943 }
1944
1945 static LLVMValueRef visit_atomic_ssbo(struct nir_to_llvm_context *ctx,
1946 nir_intrinsic_instr *instr)
1947 {
1948 const char *name;
1949 LLVMValueRef params[5];
1950 int arg_count = 0;
1951 if (ctx->stage == MESA_SHADER_FRAGMENT)
1952 ctx->shader_info->fs.writes_memory = true;
1953
1954 if (instr->intrinsic == nir_intrinsic_ssbo_atomic_comp_swap) {
1955 params[arg_count++] = get_src(ctx, instr->src[3]);
1956 }
1957 params[arg_count++] = get_src(ctx, instr->src[2]);
1958 params[arg_count++] = get_src(ctx, instr->src[0]);
1959 params[arg_count++] = LLVMConstInt(ctx->i32, 0, false); /* vindex */
1960 params[arg_count++] = get_src(ctx, instr->src[1]); /* voffset */
1961 params[arg_count++] = LLVMConstInt(ctx->i1, 0, false); /* slc */
1962
1963 switch (instr->intrinsic) {
1964 case nir_intrinsic_ssbo_atomic_add:
1965 name = "llvm.amdgcn.buffer.atomic.add";
1966 break;
1967 case nir_intrinsic_ssbo_atomic_imin:
1968 name = "llvm.amdgcn.buffer.atomic.smin";
1969 break;
1970 case nir_intrinsic_ssbo_atomic_umin:
1971 name = "llvm.amdgcn.buffer.atomic.umin";
1972 break;
1973 case nir_intrinsic_ssbo_atomic_imax:
1974 name = "llvm.amdgcn.buffer.atomic.smax";
1975 break;
1976 case nir_intrinsic_ssbo_atomic_umax:
1977 name = "llvm.amdgcn.buffer.atomic.umax";
1978 break;
1979 case nir_intrinsic_ssbo_atomic_and:
1980 name = "llvm.amdgcn.buffer.atomic.and";
1981 break;
1982 case nir_intrinsic_ssbo_atomic_or:
1983 name = "llvm.amdgcn.buffer.atomic.or";
1984 break;
1985 case nir_intrinsic_ssbo_atomic_xor:
1986 name = "llvm.amdgcn.buffer.atomic.xor";
1987 break;
1988 case nir_intrinsic_ssbo_atomic_exchange:
1989 name = "llvm.amdgcn.buffer.atomic.swap";
1990 break;
1991 case nir_intrinsic_ssbo_atomic_comp_swap:
1992 name = "llvm.amdgcn.buffer.atomic.cmpswap";
1993 break;
1994 default:
1995 abort();
1996 }
1997
1998 return emit_llvm_intrinsic(ctx, name, ctx->i32, params, arg_count, 0);
1999 }
2000
2001 static LLVMValueRef visit_load_buffer(struct nir_to_llvm_context *ctx,
2002 nir_intrinsic_instr *instr)
2003 {
2004 const char *load_name;
2005 LLVMTypeRef data_type = ctx->f32;
2006 if (instr->num_components == 3)
2007 data_type = LLVMVectorType(ctx->f32, 4);
2008 else if (instr->num_components > 1)
2009 data_type = LLVMVectorType(ctx->f32, instr->num_components);
2010
2011 if (instr->num_components == 4 || instr->num_components == 3)
2012 load_name = "llvm.amdgcn.buffer.load.v4f32";
2013 else if (instr->num_components == 2)
2014 load_name = "llvm.amdgcn.buffer.load.v2f32";
2015 else if (instr->num_components == 1)
2016 load_name = "llvm.amdgcn.buffer.load.f32";
2017 else
2018 abort();
2019
2020 LLVMValueRef params[] = {
2021 get_src(ctx, instr->src[0]),
2022 LLVMConstInt(ctx->i32, 0, false),
2023 get_src(ctx, instr->src[1]),
2024 LLVMConstInt(ctx->i1, 0, false),
2025 LLVMConstInt(ctx->i1, 0, false),
2026 };
2027
2028 LLVMValueRef ret =
2029 emit_llvm_intrinsic(ctx, load_name, data_type, params, 5, 0);
2030
2031 if (instr->num_components == 3)
2032 ret = trim_vector(ctx, ret, 3);
2033
2034 return LLVMBuildBitCast(ctx->builder, ret,
2035 get_def_type(ctx, &instr->dest.ssa), "");
2036 }
2037
2038 static void
2039 radv_get_deref_offset(struct nir_to_llvm_context *ctx, nir_deref *tail,
2040 bool vs_in, unsigned *const_out, LLVMValueRef *indir_out)
2041 {
2042 unsigned const_offset = 0;
2043 LLVMValueRef offset = NULL;
2044
2045
2046 while (tail->child != NULL) {
2047 const struct glsl_type *parent_type = tail->type;
2048 tail = tail->child;
2049
2050 if (tail->deref_type == nir_deref_type_array) {
2051 nir_deref_array *deref_array = nir_deref_as_array(tail);
2052 LLVMValueRef index, stride, local_offset;
2053 unsigned size = glsl_count_attribute_slots(tail->type, vs_in);
2054
2055 const_offset += size * deref_array->base_offset;
2056 if (deref_array->deref_array_type == nir_deref_array_type_direct)
2057 continue;
2058
2059 assert(deref_array->deref_array_type == nir_deref_array_type_indirect);
2060 index = get_src(ctx, deref_array->indirect);
2061 stride = LLVMConstInt(ctx->i32, size, 0);
2062 local_offset = LLVMBuildMul(ctx->builder, stride, index, "");
2063
2064 if (offset)
2065 offset = LLVMBuildAdd(ctx->builder, offset, local_offset, "");
2066 else
2067 offset = local_offset;
2068 } else if (tail->deref_type == nir_deref_type_struct) {
2069 nir_deref_struct *deref_struct = nir_deref_as_struct(tail);
2070
2071 for (unsigned i = 0; i < deref_struct->index; i++) {
2072 const struct glsl_type *ft = glsl_get_struct_field(parent_type, i);
2073 const_offset += glsl_count_attribute_slots(ft, vs_in);
2074 }
2075 } else
2076 unreachable("unsupported deref type");
2077
2078 }
2079
2080 if (const_offset && offset)
2081 offset = LLVMBuildAdd(ctx->builder, offset,
2082 LLVMConstInt(ctx->i32, const_offset, 0),
2083 "");
2084
2085 *const_out = const_offset;
2086 *indir_out = offset;
2087 }
2088
2089 static LLVMValueRef visit_load_var(struct nir_to_llvm_context *ctx,
2090 nir_intrinsic_instr *instr)
2091 {
2092 LLVMValueRef values[4];
2093 int idx = instr->variables[0]->var->data.driver_location;
2094 int ve = instr->dest.ssa.num_components;
2095 LLVMValueRef indir_index;
2096 unsigned const_index;
2097 switch (instr->variables[0]->var->data.mode) {
2098 case nir_var_shader_in:
2099 radv_get_deref_offset(ctx, &instr->variables[0]->deref,
2100 ctx->stage == MESA_SHADER_VERTEX,
2101 &const_index, &indir_index);
2102 for (unsigned chan = 0; chan < ve; chan++) {
2103 if (indir_index) {
2104 unsigned count = glsl_count_attribute_slots(
2105 instr->variables[0]->var->type,
2106 ctx->stage == MESA_SHADER_VERTEX);
2107 LLVMValueRef tmp_vec = build_gather_values_extended(
2108 ctx, ctx->inputs + idx + chan, count,
2109 4, false);
2110
2111 values[chan] = LLVMBuildExtractElement(ctx->builder,
2112 tmp_vec,
2113 indir_index, "");
2114 } else
2115 values[chan] = ctx->inputs[idx + chan + const_index * 4];
2116 }
2117 return to_integer(ctx, build_gather_values(ctx, values, ve));
2118 break;
2119 case nir_var_local:
2120 radv_get_deref_offset(ctx, &instr->variables[0]->deref, false,
2121 &const_index, &indir_index);
2122 for (unsigned chan = 0; chan < ve; chan++) {
2123 if (indir_index) {
2124 unsigned count = glsl_count_attribute_slots(
2125 instr->variables[0]->var->type, false);
2126 LLVMValueRef tmp_vec = build_gather_values_extended(
2127 ctx, ctx->locals + idx + chan, count,
2128 4, true);
2129
2130 values[chan] = LLVMBuildExtractElement(ctx->builder,
2131 tmp_vec,
2132 indir_index, "");
2133 } else {
2134 values[chan] = LLVMBuildLoad(ctx->builder, ctx->locals[idx + chan + const_index * 4], "");
2135 }
2136 }
2137 return to_integer(ctx, build_gather_values(ctx, values, ve));
2138 case nir_var_shader_out:
2139 radv_get_deref_offset(ctx, &instr->variables[0]->deref, false,
2140 &const_index, &indir_index);
2141 for (unsigned chan = 0; chan < ve; chan++) {
2142 if (indir_index) {
2143 unsigned count = glsl_count_attribute_slots(
2144 instr->variables[0]->var->type, false);
2145 LLVMValueRef tmp_vec = build_gather_values_extended(
2146 ctx, ctx->outputs + idx + chan, count,
2147 4, true);
2148
2149 values[chan] = LLVMBuildExtractElement(ctx->builder,
2150 tmp_vec,
2151 indir_index, "");
2152 } else {
2153 values[chan] = LLVMBuildLoad(ctx->builder,
2154 ctx->outputs[idx + chan + const_index * 4],
2155 "");
2156 }
2157 }
2158 return to_integer(ctx, build_gather_values(ctx, values, ve));
2159 case nir_var_shared: {
2160 radv_get_deref_offset(ctx, &instr->variables[0]->deref, false,
2161 &const_index, &indir_index);
2162 LLVMValueRef ptr = get_shared_memory_ptr(ctx, idx, ctx->i32);
2163 LLVMValueRef derived_ptr;
2164 LLVMValueRef index = ctx->i32zero;
2165 if (indir_index)
2166 index = LLVMBuildAdd(ctx->builder, index, indir_index, "");
2167 derived_ptr = LLVMBuildGEP(ctx->builder, ptr, &index, 1, "");
2168
2169 return to_integer(ctx, LLVMBuildLoad(ctx->builder, derived_ptr, ""));
2170 break;
2171 }
2172 default:
2173 break;
2174 }
2175 return NULL;
2176 }
2177
2178 static void
2179 visit_store_var(struct nir_to_llvm_context *ctx,
2180 nir_intrinsic_instr *instr)
2181 {
2182 LLVMValueRef temp_ptr, value;
2183 int idx = instr->variables[0]->var->data.driver_location;
2184 LLVMValueRef src = to_float(ctx, get_src(ctx, instr->src[0]));
2185 int writemask = instr->const_index[0];
2186 LLVMValueRef indir_index;
2187 unsigned const_index;
2188 switch (instr->variables[0]->var->data.mode) {
2189 case nir_var_shader_out:
2190 radv_get_deref_offset(ctx, &instr->variables[0]->deref, false,
2191 &const_index, &indir_index);
2192 for (unsigned chan = 0; chan < 4; chan++) {
2193 int stride = 4;
2194 if (!(writemask & (1 << chan)))
2195 continue;
2196 if (get_llvm_num_components(src) == 1)
2197 value = src;
2198 else
2199 value = LLVMBuildExtractElement(ctx->builder, src,
2200 LLVMConstInt(ctx->i32,
2201 chan, false),
2202 "");
2203
2204 if (instr->variables[0]->var->data.location == VARYING_SLOT_CLIP_DIST0 ||
2205 instr->variables[0]->var->data.location == VARYING_SLOT_CULL_DIST0)
2206 stride = 1;
2207 if (indir_index) {
2208 unsigned count = glsl_count_attribute_slots(
2209 instr->variables[0]->var->type, false);
2210 LLVMValueRef tmp_vec = build_gather_values_extended(
2211 ctx, ctx->outputs + idx + chan, count,
2212 stride, true);
2213
2214 if (get_llvm_num_components(tmp_vec) > 1) {
2215 tmp_vec = LLVMBuildInsertElement(ctx->builder, tmp_vec,
2216 value, indir_index, "");
2217 } else
2218 tmp_vec = value;
2219 build_store_values_extended(ctx, ctx->outputs + idx + chan,
2220 count, stride, tmp_vec);
2221
2222 } else {
2223 temp_ptr = ctx->outputs[idx + chan + const_index * stride];
2224
2225 LLVMBuildStore(ctx->builder, value, temp_ptr);
2226 }
2227 }
2228 break;
2229 case nir_var_local:
2230 radv_get_deref_offset(ctx, &instr->variables[0]->deref, false,
2231 &const_index, &indir_index);
2232 for (unsigned chan = 0; chan < 4; chan++) {
2233 if (!(writemask & (1 << chan)))
2234 continue;
2235
2236 if (get_llvm_num_components(src) == 1)
2237 value = src;
2238 else
2239 value = LLVMBuildExtractElement(ctx->builder, src,
2240 LLVMConstInt(ctx->i32, chan, false), "");
2241 if (indir_index) {
2242 unsigned count = glsl_count_attribute_slots(
2243 instr->variables[0]->var->type, false);
2244 LLVMValueRef tmp_vec = build_gather_values_extended(
2245 ctx, ctx->locals + idx + chan, count,
2246 4, true);
2247
2248 tmp_vec = LLVMBuildInsertElement(ctx->builder, tmp_vec,
2249 value, indir_index, "");
2250 build_store_values_extended(ctx, ctx->locals + idx + chan,
2251 count, 4, tmp_vec);
2252 } else {
2253 temp_ptr = ctx->locals[idx + chan + const_index * 4];
2254
2255 LLVMBuildStore(ctx->builder, value, temp_ptr);
2256 }
2257 }
2258 break;
2259 case nir_var_shared: {
2260 LLVMValueRef ptr;
2261 radv_get_deref_offset(ctx, &instr->variables[0]->deref, false,
2262 &const_index, &indir_index);
2263
2264 ptr = get_shared_memory_ptr(ctx, idx, ctx->i32);
2265 LLVMValueRef index = ctx->i32zero;
2266 LLVMValueRef derived_ptr;
2267
2268 if (indir_index)
2269 index = LLVMBuildAdd(ctx->builder, index, indir_index, "");
2270 derived_ptr = LLVMBuildGEP(ctx->builder, ptr, &index, 1, "");
2271 LLVMBuildStore(ctx->builder,
2272 to_integer(ctx, src), derived_ptr);
2273 break;
2274 }
2275 default:
2276 break;
2277 }
2278 }
2279
2280 static int image_type_to_components_count(enum glsl_sampler_dim dim, bool array)
2281 {
2282 switch (dim) {
2283 case GLSL_SAMPLER_DIM_BUF:
2284 return 1;
2285 case GLSL_SAMPLER_DIM_1D:
2286 return array ? 2 : 1;
2287 case GLSL_SAMPLER_DIM_2D:
2288 return array ? 3 : 2;
2289 case GLSL_SAMPLER_DIM_3D:
2290 case GLSL_SAMPLER_DIM_CUBE:
2291 return 3;
2292 case GLSL_SAMPLER_DIM_RECT:
2293 case GLSL_SAMPLER_DIM_SUBPASS:
2294 return 2;
2295 default:
2296 break;
2297 }
2298 return 0;
2299 }
2300
2301 static LLVMValueRef get_image_coords(struct nir_to_llvm_context *ctx,
2302 nir_intrinsic_instr *instr, bool add_frag_pos)
2303 {
2304 const struct glsl_type *type = instr->variables[0]->var->type;
2305 if(instr->variables[0]->deref.child)
2306 type = instr->variables[0]->deref.child->type;
2307
2308 LLVMValueRef src0 = get_src(ctx, instr->src[0]);
2309 LLVMValueRef coords[4];
2310 LLVMValueRef masks[] = {
2311 LLVMConstInt(ctx->i32, 0, false), LLVMConstInt(ctx->i32, 1, false),
2312 LLVMConstInt(ctx->i32, 2, false), LLVMConstInt(ctx->i32, 3, false),
2313 };
2314 LLVMValueRef res;
2315 int count;
2316 count = image_type_to_components_count(glsl_get_sampler_dim(type),
2317 glsl_sampler_type_is_array(type));
2318
2319 if (count == 1) {
2320 if (instr->src[0].ssa->num_components)
2321 res = LLVMBuildExtractElement(ctx->builder, src0, masks[0], "");
2322 else
2323 res = src0;
2324 } else {
2325 int chan;
2326 for (chan = 0; chan < count; ++chan) {
2327 coords[chan] = LLVMBuildExtractElement(ctx->builder, src0, masks[chan], "");
2328 }
2329
2330 if (add_frag_pos) {
2331 for (chan = 0; chan < count; ++chan)
2332 coords[chan] = LLVMBuildAdd(ctx->builder, coords[chan], LLVMBuildFPToUI(ctx->builder, ctx->frag_pos[chan], ctx->i32, ""), "");
2333 }
2334 if (count == 3) {
2335 coords[3] = LLVMGetUndef(ctx->i32);
2336 count = 4;
2337 }
2338 res = build_gather_values(ctx, coords, count);
2339 }
2340 return res;
2341 }
2342
2343 static void build_type_name_for_intr(
2344 LLVMTypeRef type,
2345 char *buf, unsigned bufsize)
2346 {
2347 LLVMTypeRef elem_type = type;
2348
2349 assert(bufsize >= 8);
2350
2351 if (LLVMGetTypeKind(type) == LLVMVectorTypeKind) {
2352 int ret = snprintf(buf, bufsize, "v%u",
2353 LLVMGetVectorSize(type));
2354 if (ret < 0) {
2355 char *type_name = LLVMPrintTypeToString(type);
2356 fprintf(stderr, "Error building type name for: %s\n",
2357 type_name);
2358 return;
2359 }
2360 elem_type = LLVMGetElementType(type);
2361 buf += ret;
2362 bufsize -= ret;
2363 }
2364 switch (LLVMGetTypeKind(elem_type)) {
2365 default: break;
2366 case LLVMIntegerTypeKind:
2367 snprintf(buf, bufsize, "i%d", LLVMGetIntTypeWidth(elem_type));
2368 break;
2369 case LLVMFloatTypeKind:
2370 snprintf(buf, bufsize, "f32");
2371 break;
2372 case LLVMDoubleTypeKind:
2373 snprintf(buf, bufsize, "f64");
2374 break;
2375 }
2376 }
2377
2378 static void get_image_intr_name(const char *base_name,
2379 LLVMTypeRef data_type,
2380 LLVMTypeRef coords_type,
2381 LLVMTypeRef rsrc_type,
2382 char *out_name, unsigned out_len)
2383 {
2384 char coords_type_name[8];
2385
2386 build_type_name_for_intr(coords_type, coords_type_name,
2387 sizeof(coords_type_name));
2388
2389 if (HAVE_LLVM <= 0x0309) {
2390 snprintf(out_name, out_len, "%s.%s", base_name, coords_type_name);
2391 } else {
2392 char data_type_name[8];
2393 char rsrc_type_name[8];
2394
2395 build_type_name_for_intr(data_type, data_type_name,
2396 sizeof(data_type_name));
2397 build_type_name_for_intr(rsrc_type, rsrc_type_name,
2398 sizeof(rsrc_type_name));
2399 snprintf(out_name, out_len, "%s.%s.%s.%s", base_name,
2400 data_type_name, coords_type_name, rsrc_type_name);
2401 }
2402 }
2403
2404 static LLVMValueRef visit_image_load(struct nir_to_llvm_context *ctx,
2405 nir_intrinsic_instr *instr)
2406 {
2407 LLVMValueRef params[7];
2408 LLVMValueRef res;
2409 char intrinsic_name[64];
2410 const nir_variable *var = instr->variables[0]->var;
2411 const struct glsl_type *type = var->type;
2412 if(instr->variables[0]->deref.child)
2413 type = instr->variables[0]->deref.child->type;
2414
2415 type = glsl_without_array(type);
2416 if (glsl_get_sampler_dim(type) == GLSL_SAMPLER_DIM_BUF) {
2417 params[0] = get_sampler_desc(ctx, instr->variables[0], DESC_BUFFER);
2418 params[1] = LLVMBuildExtractElement(ctx->builder, get_src(ctx, instr->src[0]),
2419 LLVMConstInt(ctx->i32, 0, false), ""); /* vindex */
2420 params[2] = LLVMConstInt(ctx->i32, 0, false); /* voffset */
2421 params[3] = LLVMConstInt(ctx->i1, 0, false); /* glc */
2422 params[4] = LLVMConstInt(ctx->i1, 0, false); /* slc */
2423 res = emit_llvm_intrinsic(ctx, "llvm.amdgcn.buffer.load.format.v4f32", ctx->v4f32,
2424 params, 5, 0);
2425
2426 res = trim_vector(ctx, res, instr->dest.ssa.num_components);
2427 res = to_integer(ctx, res);
2428 } else {
2429 bool is_da = glsl_sampler_type_is_array(type) ||
2430 glsl_get_sampler_dim(type) == GLSL_SAMPLER_DIM_CUBE;
2431 bool add_frag_pos = glsl_get_sampler_dim(type) == GLSL_SAMPLER_DIM_SUBPASS;
2432 LLVMValueRef da = is_da ? ctx->i32one : ctx->i32zero;
2433 LLVMValueRef glc = LLVMConstInt(ctx->i1, 0, false);
2434 LLVMValueRef slc = LLVMConstInt(ctx->i1, 0, false);
2435
2436 params[0] = get_image_coords(ctx, instr, add_frag_pos);
2437 params[1] = get_sampler_desc(ctx, instr->variables[0], DESC_IMAGE);
2438 params[2] = LLVMConstInt(ctx->i32, 15, false); /* dmask */
2439 if (HAVE_LLVM <= 0x0309) {
2440 params[3] = LLVMConstInt(ctx->i1, 0, false); /* r128 */
2441 params[4] = da;
2442 params[5] = glc;
2443 params[6] = slc;
2444 } else {
2445 LLVMValueRef lwe = LLVMConstInt(ctx->i1, 0, false);
2446 params[3] = glc;
2447 params[4] = slc;
2448 params[5] = lwe;
2449 params[6] = da;
2450 }
2451
2452 get_image_intr_name("llvm.amdgcn.image.load",
2453 ctx->v4f32, /* vdata */
2454 LLVMTypeOf(params[0]), /* coords */
2455 LLVMTypeOf(params[1]), /* rsrc */
2456 intrinsic_name, sizeof(intrinsic_name));
2457
2458 res = emit_llvm_intrinsic(ctx, intrinsic_name, ctx->v4f32,
2459 params, 7, AC_FUNC_ATTR_READONLY);
2460 }
2461 return to_integer(ctx, res);
2462 }
2463
2464 static void visit_image_store(struct nir_to_llvm_context *ctx,
2465 nir_intrinsic_instr *instr)
2466 {
2467 LLVMValueRef params[8];
2468 char intrinsic_name[64];
2469 const nir_variable *var = instr->variables[0]->var;
2470 LLVMValueRef i1false = LLVMConstInt(ctx->i1, 0, 0);
2471 LLVMValueRef i1true = LLVMConstInt(ctx->i1, 1, 0);
2472 const struct glsl_type *type = glsl_without_array(var->type);
2473
2474 if (ctx->stage == MESA_SHADER_FRAGMENT)
2475 ctx->shader_info->fs.writes_memory = true;
2476
2477 if (glsl_get_sampler_dim(type) == GLSL_SAMPLER_DIM_BUF) {
2478 params[0] = to_float(ctx, get_src(ctx, instr->src[2])); /* data */
2479 params[1] = get_sampler_desc(ctx, instr->variables[0], DESC_BUFFER);
2480 params[2] = LLVMBuildExtractElement(ctx->builder, get_src(ctx, instr->src[0]),
2481 LLVMConstInt(ctx->i32, 0, false), ""); /* vindex */
2482 params[3] = LLVMConstInt(ctx->i32, 0, false); /* voffset */
2483 params[4] = i1false; /* glc */
2484 params[5] = i1false; /* slc */
2485 emit_llvm_intrinsic(ctx, "llvm.amdgcn.buffer.store.format.v4f32", ctx->voidt,
2486 params, 6, 0);
2487 } else {
2488 bool is_da = glsl_sampler_type_is_array(type) ||
2489 glsl_get_sampler_dim(type) == GLSL_SAMPLER_DIM_CUBE;
2490 LLVMValueRef da = is_da ? i1true : i1false;
2491 LLVMValueRef glc = i1false;
2492 LLVMValueRef slc = i1false;
2493
2494 params[0] = to_float(ctx, get_src(ctx, instr->src[2]));
2495 params[1] = get_image_coords(ctx, instr, false); /* coords */
2496 params[2] = get_sampler_desc(ctx, instr->variables[0], DESC_IMAGE);
2497 params[3] = LLVMConstInt(ctx->i32, 15, false); /* dmask */
2498 if (HAVE_LLVM <= 0x0309) {
2499 params[4] = i1false; /* r128 */
2500 params[5] = da;
2501 params[6] = glc;
2502 params[7] = slc;
2503 } else {
2504 LLVMValueRef lwe = i1false;
2505 params[4] = glc;
2506 params[5] = slc;
2507 params[6] = lwe;
2508 params[7] = da;
2509 }
2510
2511 get_image_intr_name("llvm.amdgcn.image.store",
2512 LLVMTypeOf(params[0]), /* vdata */
2513 LLVMTypeOf(params[1]), /* coords */
2514 LLVMTypeOf(params[2]), /* rsrc */
2515 intrinsic_name, sizeof(intrinsic_name));
2516
2517 emit_llvm_intrinsic(ctx, intrinsic_name, ctx->voidt,
2518 params, 8, 0);
2519 }
2520
2521 }
2522
2523 static LLVMValueRef visit_image_atomic(struct nir_to_llvm_context *ctx,
2524 nir_intrinsic_instr *instr)
2525 {
2526 LLVMValueRef params[6];
2527 int param_count = 0;
2528 const nir_variable *var = instr->variables[0]->var;
2529 LLVMValueRef i1false = LLVMConstInt(ctx->i1, 0, 0);
2530 LLVMValueRef i1true = LLVMConstInt(ctx->i1, 1, 0);
2531 const char *base_name = "llvm.amdgcn.image.atomic";
2532 const char *atomic_name;
2533 LLVMValueRef coords;
2534 char intrinsic_name[32], coords_type[8];
2535 const struct glsl_type *type = glsl_without_array(var->type);
2536
2537 if (ctx->stage == MESA_SHADER_FRAGMENT)
2538 ctx->shader_info->fs.writes_memory = true;
2539
2540 params[param_count++] = get_src(ctx, instr->src[2]);
2541 if (instr->intrinsic == nir_intrinsic_image_atomic_comp_swap)
2542 params[param_count++] = get_src(ctx, instr->src[3]);
2543
2544 if (glsl_get_sampler_dim(type) == GLSL_SAMPLER_DIM_BUF) {
2545 params[param_count++] = get_sampler_desc(ctx, instr->variables[0], DESC_BUFFER);
2546 coords = params[param_count++] = LLVMBuildExtractElement(ctx->builder, get_src(ctx, instr->src[0]),
2547 LLVMConstInt(ctx->i32, 0, false), ""); /* vindex */
2548 params[param_count++] = ctx->i32zero; /* voffset */
2549 params[param_count++] = i1false; /* glc */
2550 params[param_count++] = i1false; /* slc */
2551 } else {
2552 bool da = glsl_sampler_type_is_array(type) ||
2553 glsl_get_sampler_dim(type) == GLSL_SAMPLER_DIM_CUBE;
2554
2555 coords = params[param_count++] = get_image_coords(ctx, instr, false);
2556 params[param_count++] = get_sampler_desc(ctx, instr->variables[0], DESC_IMAGE);
2557 params[param_count++] = i1false; /* r128 */
2558 params[param_count++] = da ? i1true : i1false; /* da */
2559 params[param_count++] = i1false; /* slc */
2560 }
2561
2562 switch (instr->intrinsic) {
2563 case nir_intrinsic_image_atomic_add:
2564 atomic_name = "add";
2565 break;
2566 case nir_intrinsic_image_atomic_min:
2567 atomic_name = "smin";
2568 break;
2569 case nir_intrinsic_image_atomic_max:
2570 atomic_name = "smax";
2571 break;
2572 case nir_intrinsic_image_atomic_and:
2573 atomic_name = "and";
2574 break;
2575 case nir_intrinsic_image_atomic_or:
2576 atomic_name = "or";
2577 break;
2578 case nir_intrinsic_image_atomic_xor:
2579 atomic_name = "xor";
2580 break;
2581 case nir_intrinsic_image_atomic_exchange:
2582 atomic_name = "swap";
2583 break;
2584 case nir_intrinsic_image_atomic_comp_swap:
2585 atomic_name = "cmpswap";
2586 break;
2587 default:
2588 abort();
2589 }
2590 build_int_type_name(LLVMTypeOf(coords),
2591 coords_type, sizeof(coords_type));
2592
2593 snprintf(intrinsic_name, sizeof(intrinsic_name),
2594 "%s.%s.%s", base_name, atomic_name, coords_type);
2595 return emit_llvm_intrinsic(ctx, intrinsic_name, ctx->i32, params, param_count, 0);
2596 }
2597
2598 static LLVMValueRef visit_image_size(struct nir_to_llvm_context *ctx,
2599 nir_intrinsic_instr *instr)
2600 {
2601 LLVMValueRef res;
2602 LLVMValueRef params[10];
2603 const nir_variable *var = instr->variables[0]->var;
2604 const struct glsl_type *type = instr->variables[0]->var->type;
2605 bool da = glsl_sampler_type_is_array(var->type) ||
2606 glsl_get_sampler_dim(var->type) == GLSL_SAMPLER_DIM_CUBE;
2607 if(instr->variables[0]->deref.child)
2608 type = instr->variables[0]->deref.child->type;
2609
2610 if (glsl_get_sampler_dim(type) == GLSL_SAMPLER_DIM_BUF)
2611 return get_buffer_size(ctx, get_sampler_desc(ctx, instr->variables[0], DESC_BUFFER), true);
2612 params[0] = ctx->i32zero;
2613 params[1] = get_sampler_desc(ctx, instr->variables[0], DESC_IMAGE);
2614 params[2] = LLVMConstInt(ctx->i32, 15, false);
2615 params[3] = ctx->i32zero;
2616 params[4] = ctx->i32zero;
2617 params[5] = da ? ctx->i32one : ctx->i32zero;
2618 params[6] = ctx->i32zero;
2619 params[7] = ctx->i32zero;
2620 params[8] = ctx->i32zero;
2621 params[9] = ctx->i32zero;
2622
2623 res = emit_llvm_intrinsic(ctx, "llvm.SI.getresinfo.i32", ctx->v4i32,
2624 params, 10, AC_FUNC_ATTR_READNONE);
2625
2626 if (glsl_get_sampler_dim(type) == GLSL_SAMPLER_DIM_CUBE &&
2627 glsl_sampler_type_is_array(type)) {
2628 LLVMValueRef two = LLVMConstInt(ctx->i32, 2, false);
2629 LLVMValueRef six = LLVMConstInt(ctx->i32, 6, false);
2630 LLVMValueRef z = LLVMBuildExtractElement(ctx->builder, res, two, "");
2631 z = LLVMBuildSDiv(ctx->builder, z, six, "");
2632 res = LLVMBuildInsertElement(ctx->builder, res, z, two, "");
2633 }
2634 return res;
2635 }
2636
2637 static void emit_waitcnt(struct nir_to_llvm_context *ctx)
2638 {
2639 LLVMValueRef args[1] = {
2640 LLVMConstInt(ctx->i32, 0xf70, false),
2641 };
2642 emit_llvm_intrinsic(ctx, "llvm.amdgcn.s.waitcnt",
2643 ctx->voidt, args, 1, 0);
2644 }
2645
2646 static void emit_barrier(struct nir_to_llvm_context *ctx)
2647 {
2648 // TODO tess
2649 emit_llvm_intrinsic(ctx, "llvm.amdgcn.s.barrier",
2650 ctx->voidt, NULL, 0, 0);
2651 }
2652
2653 static void emit_discard_if(struct nir_to_llvm_context *ctx,
2654 nir_intrinsic_instr *instr)
2655 {
2656 LLVMValueRef cond;
2657 ctx->shader_info->fs.can_discard = true;
2658
2659 cond = LLVMBuildICmp(ctx->builder, LLVMIntNE,
2660 get_src(ctx, instr->src[0]),
2661 ctx->i32zero, "");
2662
2663 cond = LLVMBuildSelect(ctx->builder, cond,
2664 LLVMConstReal(ctx->f32, -1.0f),
2665 ctx->f32zero, "");
2666 emit_llvm_intrinsic(ctx, "llvm.AMDGPU.kill",
2667 LLVMVoidTypeInContext(ctx->context),
2668 &cond, 1, 0);
2669 }
2670
2671 static LLVMValueRef
2672 visit_load_local_invocation_index(struct nir_to_llvm_context *ctx)
2673 {
2674 LLVMValueRef result;
2675 LLVMValueRef thread_id = get_thread_id(ctx);
2676 result = LLVMBuildAnd(ctx->builder, ctx->tg_size,
2677 LLVMConstInt(ctx->i32, 0xfc0, false), "");
2678
2679 return LLVMBuildAdd(ctx->builder, result, thread_id, "");
2680 }
2681
2682 static LLVMValueRef visit_var_atomic(struct nir_to_llvm_context *ctx,
2683 nir_intrinsic_instr *instr)
2684 {
2685 LLVMValueRef ptr, result;
2686 int idx = instr->variables[0]->var->data.driver_location;
2687 LLVMValueRef src = get_src(ctx, instr->src[0]);
2688 ptr = get_shared_memory_ptr(ctx, idx, ctx->i32);
2689
2690 if (instr->intrinsic == nir_intrinsic_var_atomic_comp_swap) {
2691 LLVMValueRef src1 = get_src(ctx, instr->src[1]);
2692 result = LLVMBuildAtomicCmpXchg(ctx->builder,
2693 ptr, src, src1,
2694 LLVMAtomicOrderingSequentiallyConsistent,
2695 LLVMAtomicOrderingSequentiallyConsistent,
2696 false);
2697 } else {
2698 LLVMAtomicRMWBinOp op;
2699 switch (instr->intrinsic) {
2700 case nir_intrinsic_var_atomic_add:
2701 op = LLVMAtomicRMWBinOpAdd;
2702 break;
2703 case nir_intrinsic_var_atomic_umin:
2704 op = LLVMAtomicRMWBinOpUMin;
2705 break;
2706 case nir_intrinsic_var_atomic_umax:
2707 op = LLVMAtomicRMWBinOpUMax;
2708 break;
2709 case nir_intrinsic_var_atomic_imin:
2710 op = LLVMAtomicRMWBinOpMin;
2711 break;
2712 case nir_intrinsic_var_atomic_imax:
2713 op = LLVMAtomicRMWBinOpMax;
2714 break;
2715 case nir_intrinsic_var_atomic_and:
2716 op = LLVMAtomicRMWBinOpAnd;
2717 break;
2718 case nir_intrinsic_var_atomic_or:
2719 op = LLVMAtomicRMWBinOpOr;
2720 break;
2721 case nir_intrinsic_var_atomic_xor:
2722 op = LLVMAtomicRMWBinOpXor;
2723 break;
2724 case nir_intrinsic_var_atomic_exchange:
2725 op = LLVMAtomicRMWBinOpXchg;
2726 break;
2727 default:
2728 return NULL;
2729 }
2730
2731 result = LLVMBuildAtomicRMW(ctx->builder, op, ptr, to_integer(ctx, src),
2732 LLVMAtomicOrderingSequentiallyConsistent,
2733 false);
2734 }
2735 return result;
2736 }
2737
2738 #define INTERP_CENTER 0
2739 #define INTERP_CENTROID 1
2740 #define INTERP_SAMPLE 2
2741
2742 static LLVMValueRef lookup_interp_param(struct nir_to_llvm_context *ctx,
2743 enum glsl_interp_mode interp, unsigned location)
2744 {
2745 switch (interp) {
2746 case INTERP_MODE_FLAT:
2747 default:
2748 return NULL;
2749 case INTERP_MODE_SMOOTH:
2750 case INTERP_MODE_NONE:
2751 if (location == INTERP_CENTER)
2752 return ctx->persp_center;
2753 else if (location == INTERP_CENTROID)
2754 return ctx->persp_centroid;
2755 else if (location == INTERP_SAMPLE)
2756 return ctx->persp_sample;
2757 break;
2758 case INTERP_MODE_NOPERSPECTIVE:
2759 if (location == INTERP_CENTER)
2760 return ctx->linear_center;
2761 else if (location == INTERP_CENTROID)
2762 return ctx->linear_centroid;
2763 else if (location == INTERP_SAMPLE)
2764 return ctx->linear_sample;
2765 break;
2766 }
2767 return NULL;
2768 }
2769
2770 static LLVMValueRef load_sample_position(struct nir_to_llvm_context *ctx,
2771 LLVMValueRef sample_id)
2772 {
2773 /* offset = sample_id * 8 (8 = 2 floats containing samplepos.xy) */
2774 LLVMValueRef offset0 = LLVMBuildMul(ctx->builder, sample_id, LLVMConstInt(ctx->i32, 8, false), "");
2775 LLVMValueRef offset1 = LLVMBuildAdd(ctx->builder, offset0, LLVMConstInt(ctx->i32, 4, false), "");
2776 LLVMValueRef result[2];
2777
2778 result[0] = build_indexed_load_const(ctx, ctx->sample_positions, offset0);
2779 result[1] = build_indexed_load_const(ctx, ctx->sample_positions, offset1);
2780
2781 return build_gather_values(ctx, result, 2);
2782 }
2783
2784 static LLVMValueRef load_sample_pos(struct nir_to_llvm_context *ctx)
2785 {
2786 LLVMValueRef values[2];
2787
2788 values[0] = emit_ffract(ctx, ctx->frag_pos[0]);
2789 values[1] = emit_ffract(ctx, ctx->frag_pos[1]);
2790 return build_gather_values(ctx, values, 2);
2791 }
2792
2793 static LLVMValueRef visit_interp(struct nir_to_llvm_context *ctx,
2794 nir_intrinsic_instr *instr)
2795 {
2796 LLVMValueRef result[2];
2797 LLVMValueRef interp_param, attr_number;
2798 unsigned location;
2799 unsigned chan;
2800 LLVMValueRef src_c0, src_c1;
2801 const char *intr_name;
2802 LLVMValueRef src0;
2803 int input_index = instr->variables[0]->var->data.location - VARYING_SLOT_VAR0;
2804 switch (instr->intrinsic) {
2805 case nir_intrinsic_interp_var_at_centroid:
2806 location = INTERP_CENTROID;
2807 break;
2808 case nir_intrinsic_interp_var_at_sample:
2809 case nir_intrinsic_interp_var_at_offset:
2810 location = INTERP_SAMPLE;
2811 src0 = get_src(ctx, instr->src[0]);
2812 break;
2813 default:
2814 break;
2815 }
2816
2817 if (instr->intrinsic == nir_intrinsic_interp_var_at_offset) {
2818 src_c0 = to_float(ctx, LLVMBuildExtractElement(ctx->builder, src0, ctx->i32zero, ""));
2819 src_c1 = to_float(ctx, LLVMBuildExtractElement(ctx->builder, src0, ctx->i32one, ""));
2820 } else if (instr->intrinsic == nir_intrinsic_interp_var_at_sample) {
2821 LLVMValueRef sample_position;
2822 LLVMValueRef halfval = LLVMConstReal(ctx->f32, 0.5f);
2823
2824 /* fetch sample ID */
2825 sample_position = load_sample_position(ctx, src0);
2826
2827 src_c0 = LLVMBuildExtractElement(ctx->builder, sample_position, ctx->i32zero, "");
2828 src_c0 = LLVMBuildFSub(ctx->builder, src_c0, halfval, "");
2829 src_c1 = LLVMBuildExtractElement(ctx->builder, sample_position, ctx->i32one, "");
2830 src_c1 = LLVMBuildFSub(ctx->builder, src_c1, halfval, "");
2831 }
2832 interp_param = lookup_interp_param(ctx, instr->variables[0]->var->data.interpolation, location);
2833 attr_number = LLVMConstInt(ctx->i32, input_index, false);
2834
2835 if (location == INTERP_SAMPLE) {
2836 LLVMValueRef ij_out[2];
2837 LLVMValueRef ddxy_out = emit_ddxy_interp(ctx, interp_param);
2838
2839 /*
2840 * take the I then J parameters, and the DDX/Y for it, and
2841 * calculate the IJ inputs for the interpolator.
2842 * temp1 = ddx * offset/sample.x + I;
2843 * interp_param.I = ddy * offset/sample.y + temp1;
2844 * temp1 = ddx * offset/sample.x + J;
2845 * interp_param.J = ddy * offset/sample.y + temp1;
2846 */
2847 for (unsigned i = 0; i < 2; i++) {
2848 LLVMValueRef ix_ll = LLVMConstInt(ctx->i32, i, false);
2849 LLVMValueRef iy_ll = LLVMConstInt(ctx->i32, i + 2, false);
2850 LLVMValueRef ddx_el = LLVMBuildExtractElement(ctx->builder,
2851 ddxy_out, ix_ll, "");
2852 LLVMValueRef ddy_el = LLVMBuildExtractElement(ctx->builder,
2853 ddxy_out, iy_ll, "");
2854 LLVMValueRef interp_el = LLVMBuildExtractElement(ctx->builder,
2855 interp_param, ix_ll, "");
2856 LLVMValueRef temp1, temp2;
2857
2858 interp_el = LLVMBuildBitCast(ctx->builder, interp_el,
2859 ctx->f32, "");
2860
2861 temp1 = LLVMBuildFMul(ctx->builder, ddx_el, src_c0, "");
2862 temp1 = LLVMBuildFAdd(ctx->builder, temp1, interp_el, "");
2863
2864 temp2 = LLVMBuildFMul(ctx->builder, ddy_el, src_c1, "");
2865 temp2 = LLVMBuildFAdd(ctx->builder, temp2, temp1, "");
2866
2867 ij_out[i] = LLVMBuildBitCast(ctx->builder,
2868 temp2, ctx->i32, "");
2869 }
2870 interp_param = build_gather_values(ctx, ij_out, 2);
2871
2872 }
2873 intr_name = interp_param ? "llvm.SI.fs.interp" : "llvm.SI.fs.constant";
2874 for (chan = 0; chan < 2; chan++) {
2875 LLVMValueRef args[4];
2876 LLVMValueRef llvm_chan = LLVMConstInt(ctx->i32, chan, false);
2877
2878 args[0] = llvm_chan;
2879 args[1] = attr_number;
2880 args[2] = ctx->prim_mask;
2881 args[3] = interp_param;
2882 result[chan] = emit_llvm_intrinsic(ctx, intr_name,
2883 ctx->f32, args, args[3] ? 4 : 3,
2884 AC_FUNC_ATTR_READNONE);
2885 }
2886 return build_gather_values(ctx, result, 2);
2887 }
2888
2889 static void visit_intrinsic(struct nir_to_llvm_context *ctx,
2890 nir_intrinsic_instr *instr)
2891 {
2892 LLVMValueRef result = NULL;
2893
2894 switch (instr->intrinsic) {
2895 case nir_intrinsic_load_work_group_id: {
2896 result = ctx->workgroup_ids;
2897 break;
2898 }
2899 case nir_intrinsic_load_base_vertex: {
2900 result = ctx->base_vertex;
2901 break;
2902 }
2903 case nir_intrinsic_load_vertex_id_zero_base: {
2904 result = ctx->vertex_id;
2905 break;
2906 }
2907 case nir_intrinsic_load_local_invocation_id: {
2908 result = ctx->local_invocation_ids;
2909 break;
2910 }
2911 case nir_intrinsic_load_base_instance:
2912 result = ctx->start_instance;
2913 break;
2914 case nir_intrinsic_load_sample_id:
2915 result = unpack_param(ctx, ctx->ancillary, 8, 4);
2916 break;
2917 case nir_intrinsic_load_sample_pos:
2918 result = load_sample_pos(ctx);
2919 break;
2920 case nir_intrinsic_load_front_face:
2921 result = ctx->front_face;
2922 break;
2923 case nir_intrinsic_load_instance_id:
2924 result = ctx->instance_id;
2925 ctx->shader_info->vs.vgpr_comp_cnt = MAX2(3,
2926 ctx->shader_info->vs.vgpr_comp_cnt);
2927 break;
2928 case nir_intrinsic_load_num_work_groups:
2929 result = ctx->num_work_groups;
2930 break;
2931 case nir_intrinsic_load_local_invocation_index:
2932 result = visit_load_local_invocation_index(ctx);
2933 break;
2934 case nir_intrinsic_load_push_constant:
2935 result = visit_load_push_constant(ctx, instr);
2936 break;
2937 case nir_intrinsic_vulkan_resource_index:
2938 result = visit_vulkan_resource_index(ctx, instr);
2939 break;
2940 case nir_intrinsic_store_ssbo:
2941 visit_store_ssbo(ctx, instr);
2942 break;
2943 case nir_intrinsic_load_ssbo:
2944 result = visit_load_buffer(ctx, instr);
2945 break;
2946 case nir_intrinsic_ssbo_atomic_add:
2947 case nir_intrinsic_ssbo_atomic_imin:
2948 case nir_intrinsic_ssbo_atomic_umin:
2949 case nir_intrinsic_ssbo_atomic_imax:
2950 case nir_intrinsic_ssbo_atomic_umax:
2951 case nir_intrinsic_ssbo_atomic_and:
2952 case nir_intrinsic_ssbo_atomic_or:
2953 case nir_intrinsic_ssbo_atomic_xor:
2954 case nir_intrinsic_ssbo_atomic_exchange:
2955 case nir_intrinsic_ssbo_atomic_comp_swap:
2956 result = visit_atomic_ssbo(ctx, instr);
2957 break;
2958 case nir_intrinsic_load_ubo:
2959 result = visit_load_buffer(ctx, instr);
2960 break;
2961 case nir_intrinsic_get_buffer_size:
2962 result = visit_get_buffer_size(ctx, instr);
2963 break;
2964 case nir_intrinsic_load_var:
2965 result = visit_load_var(ctx, instr);
2966 break;
2967 case nir_intrinsic_store_var:
2968 visit_store_var(ctx, instr);
2969 break;
2970 case nir_intrinsic_image_load:
2971 result = visit_image_load(ctx, instr);
2972 break;
2973 case nir_intrinsic_image_store:
2974 visit_image_store(ctx, instr);
2975 break;
2976 case nir_intrinsic_image_atomic_add:
2977 case nir_intrinsic_image_atomic_min:
2978 case nir_intrinsic_image_atomic_max:
2979 case nir_intrinsic_image_atomic_and:
2980 case nir_intrinsic_image_atomic_or:
2981 case nir_intrinsic_image_atomic_xor:
2982 case nir_intrinsic_image_atomic_exchange:
2983 case nir_intrinsic_image_atomic_comp_swap:
2984 result = visit_image_atomic(ctx, instr);
2985 break;
2986 case nir_intrinsic_image_size:
2987 result = visit_image_size(ctx, instr);
2988 break;
2989 case nir_intrinsic_discard:
2990 ctx->shader_info->fs.can_discard = true;
2991 emit_llvm_intrinsic(ctx, "llvm.AMDGPU.kilp",
2992 LLVMVoidTypeInContext(ctx->context),
2993 NULL, 0, 0);
2994 break;
2995 case nir_intrinsic_discard_if:
2996 emit_discard_if(ctx, instr);
2997 break;
2998 case nir_intrinsic_memory_barrier:
2999 emit_waitcnt(ctx);
3000 break;
3001 case nir_intrinsic_barrier:
3002 emit_barrier(ctx);
3003 break;
3004 case nir_intrinsic_var_atomic_add:
3005 case nir_intrinsic_var_atomic_imin:
3006 case nir_intrinsic_var_atomic_umin:
3007 case nir_intrinsic_var_atomic_imax:
3008 case nir_intrinsic_var_atomic_umax:
3009 case nir_intrinsic_var_atomic_and:
3010 case nir_intrinsic_var_atomic_or:
3011 case nir_intrinsic_var_atomic_xor:
3012 case nir_intrinsic_var_atomic_exchange:
3013 case nir_intrinsic_var_atomic_comp_swap:
3014 result = visit_var_atomic(ctx, instr);
3015 break;
3016 case nir_intrinsic_interp_var_at_centroid:
3017 case nir_intrinsic_interp_var_at_sample:
3018 case nir_intrinsic_interp_var_at_offset:
3019 result = visit_interp(ctx, instr);
3020 break;
3021 default:
3022 fprintf(stderr, "Unknown intrinsic: ");
3023 nir_print_instr(&instr->instr, stderr);
3024 fprintf(stderr, "\n");
3025 break;
3026 }
3027 if (result) {
3028 _mesa_hash_table_insert(ctx->defs, &instr->dest.ssa, result);
3029 }
3030 }
3031
3032 static LLVMValueRef get_sampler_desc(struct nir_to_llvm_context *ctx,
3033 nir_deref_var *deref,
3034 enum desc_type desc_type)
3035 {
3036 unsigned desc_set = deref->var->data.descriptor_set;
3037 LLVMValueRef list = ctx->descriptor_sets[desc_set];
3038 struct radv_descriptor_set_layout *layout = ctx->options->layout->set[desc_set].layout;
3039 struct radv_descriptor_set_binding_layout *binding = layout->binding + deref->var->data.binding;
3040 unsigned offset = binding->offset;
3041 unsigned stride = binding->size;
3042 unsigned type_size;
3043 LLVMBuilderRef builder = ctx->builder;
3044 LLVMTypeRef type;
3045 LLVMValueRef indices[2];
3046 LLVMValueRef index = NULL;
3047
3048 assert(deref->var->data.binding < layout->binding_count);
3049
3050 switch (desc_type) {
3051 case DESC_IMAGE:
3052 type = ctx->v8i32;
3053 type_size = 32;
3054 break;
3055 case DESC_FMASK:
3056 type = ctx->v8i32;
3057 offset += 32;
3058 type_size = 32;
3059 break;
3060 case DESC_SAMPLER:
3061 type = ctx->v4i32;
3062 if (binding->type == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER)
3063 offset += 64;
3064
3065 type_size = 16;
3066 break;
3067 case DESC_BUFFER:
3068 type = ctx->v4i32;
3069 type_size = 16;
3070 break;
3071 }
3072
3073 if (deref->deref.child) {
3074 nir_deref_array *child = (nir_deref_array*)deref->deref.child;
3075
3076 assert(child->deref_array_type != nir_deref_array_type_wildcard);
3077 offset += child->base_offset * stride;
3078 if (child->deref_array_type == nir_deref_array_type_indirect) {
3079 index = get_src(ctx, child->indirect);
3080 }
3081 }
3082
3083 assert(stride % type_size == 0);
3084
3085 if (!index)
3086 index = ctx->i32zero;
3087
3088 index = LLVMBuildMul(builder, index, LLVMConstInt(ctx->i32, stride / type_size, 0), "");
3089 indices[0] = ctx->i32zero;
3090 indices[1] = LLVMConstInt(ctx->i32, offset, 0);
3091 list = LLVMBuildGEP(builder, list, indices, 2, "");
3092 list = LLVMBuildPointerCast(builder, list, const_array(type, 0), "");
3093
3094 return build_indexed_load_const(ctx, list, index);
3095 }
3096
3097 static void set_tex_fetch_args(struct nir_to_llvm_context *ctx,
3098 struct ac_tex_info *tinfo,
3099 nir_tex_instr *instr,
3100 nir_texop op,
3101 LLVMValueRef res_ptr, LLVMValueRef samp_ptr,
3102 LLVMValueRef *param, unsigned count,
3103 unsigned dmask)
3104 {
3105 int num_args;
3106 unsigned is_rect = 0;
3107 bool da = instr->is_array || instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE;
3108
3109 if (op == nir_texop_lod)
3110 da = false;
3111 /* Pad to power of two vector */
3112 while (count < util_next_power_of_two(count))
3113 param[count++] = LLVMGetUndef(ctx->i32);
3114
3115 if (count > 1)
3116 tinfo->args[0] = build_gather_values(ctx, param, count);
3117 else
3118 tinfo->args[0] = param[0];
3119
3120 tinfo->args[1] = res_ptr;
3121 num_args = 2;
3122
3123 if (op == nir_texop_txf ||
3124 op == nir_texop_txf_ms ||
3125 op == nir_texop_query_levels ||
3126 op == nir_texop_texture_samples ||
3127 op == nir_texop_txs)
3128 tinfo->dst_type = ctx->v4i32;
3129 else {
3130 tinfo->dst_type = ctx->v4f32;
3131 tinfo->args[num_args++] = samp_ptr;
3132 }
3133
3134 if (instr->sampler_dim == GLSL_SAMPLER_DIM_BUF && op == nir_texop_txf) {
3135 tinfo->args[0] = res_ptr;
3136 tinfo->args[1] = LLVMConstInt(ctx->i32, 0, false);
3137 tinfo->args[2] = param[0];
3138 tinfo->arg_count = 3;
3139 return;
3140 }
3141
3142 tinfo->args[num_args++] = LLVMConstInt(ctx->i32, dmask, 0);
3143 tinfo->args[num_args++] = LLVMConstInt(ctx->i32, is_rect, 0); /* unorm */
3144 tinfo->args[num_args++] = LLVMConstInt(ctx->i32, 0, 0); /* r128 */
3145 tinfo->args[num_args++] = LLVMConstInt(ctx->i32, da ? 1 : 0, 0);
3146 tinfo->args[num_args++] = LLVMConstInt(ctx->i32, 0, 0); /* glc */
3147 tinfo->args[num_args++] = LLVMConstInt(ctx->i32, 0, 0); /* slc */
3148 tinfo->args[num_args++] = LLVMConstInt(ctx->i32, 0, 0); /* tfe */
3149 tinfo->args[num_args++] = LLVMConstInt(ctx->i32, 0, 0); /* lwe */
3150
3151 tinfo->arg_count = num_args;
3152 }
3153
3154 static void tex_fetch_ptrs(struct nir_to_llvm_context *ctx,
3155 nir_tex_instr *instr,
3156 LLVMValueRef *res_ptr, LLVMValueRef *samp_ptr,
3157 LLVMValueRef *fmask_ptr)
3158 {
3159 if (instr->sampler_dim == GLSL_SAMPLER_DIM_BUF)
3160 *res_ptr = get_sampler_desc(ctx, instr->texture, DESC_BUFFER);
3161 else
3162 *res_ptr = get_sampler_desc(ctx, instr->texture, DESC_IMAGE);
3163 if (samp_ptr) {
3164 if (instr->sampler)
3165 *samp_ptr = get_sampler_desc(ctx, instr->sampler, DESC_SAMPLER);
3166 else
3167 *samp_ptr = get_sampler_desc(ctx, instr->texture, DESC_SAMPLER);
3168 }
3169 if (fmask_ptr && !instr->sampler && (instr->op == nir_texop_txf_ms ||
3170 instr->op == nir_texop_samples_identical))
3171 *fmask_ptr = get_sampler_desc(ctx, instr->texture, DESC_FMASK);
3172 }
3173
3174 static LLVMValueRef build_cube_intrinsic(struct nir_to_llvm_context *ctx,
3175 LLVMValueRef *in)
3176 {
3177
3178 LLVMValueRef v, cube_vec;
3179
3180 if (1) {
3181 LLVMTypeRef f32 = LLVMTypeOf(in[0]);
3182 LLVMValueRef out[4];
3183
3184 out[0] = emit_llvm_intrinsic(ctx, "llvm.amdgcn.cubetc",
3185 f32, in, 3, AC_FUNC_ATTR_READNONE);
3186 out[1] = emit_llvm_intrinsic(ctx, "llvm.amdgcn.cubesc",
3187 f32, in, 3, AC_FUNC_ATTR_READNONE);
3188 out[2] = emit_llvm_intrinsic(ctx, "llvm.amdgcn.cubema",
3189 f32, in, 3, AC_FUNC_ATTR_READNONE);
3190 out[3] = emit_llvm_intrinsic(ctx, "llvm.amdgcn.cubeid",
3191 f32, in, 3, AC_FUNC_ATTR_READNONE);
3192
3193 return build_gather_values(ctx, out, 4);
3194 } else {
3195 LLVMValueRef c[4];
3196 c[0] = in[0];
3197 c[1] = in[1];
3198 c[2] = in[2];
3199 c[3] = LLVMGetUndef(LLVMTypeOf(in[0]));
3200 cube_vec = build_gather_values(ctx, c, 4);
3201 v = emit_llvm_intrinsic(ctx, "llvm.AMDGPU.cube", LLVMTypeOf(cube_vec),
3202 &cube_vec, 1, AC_FUNC_ATTR_READNONE);
3203 }
3204 return v;
3205 }
3206
3207 static void cube_to_2d_coords(struct nir_to_llvm_context *ctx,
3208 LLVMValueRef *in, LLVMValueRef *out)
3209 {
3210 LLVMValueRef coords[4];
3211 LLVMValueRef mad_args[3];
3212 LLVMValueRef v;
3213 LLVMValueRef tmp;
3214 int i;
3215
3216 v = build_cube_intrinsic(ctx, in);
3217 for (i = 0; i < 4; i++)
3218 coords[i] = LLVMBuildExtractElement(ctx->builder, v,
3219 LLVMConstInt(ctx->i32, i, false), "");
3220
3221 coords[2] = emit_llvm_intrinsic(ctx, "llvm.fabs.f32", ctx->f32,
3222 &coords[2], 1, AC_FUNC_ATTR_READNONE);
3223 coords[2] = emit_fdiv(ctx, ctx->f32one, coords[2]);
3224
3225 mad_args[1] = coords[2];
3226 mad_args[2] = LLVMConstReal(ctx->f32, 1.5);
3227 mad_args[0] = coords[0];
3228
3229 /* emit MAD */
3230 tmp = LLVMBuildFMul(ctx->builder, mad_args[0], mad_args[1], "");
3231 coords[0] = LLVMBuildFAdd(ctx->builder, tmp, mad_args[2], "");
3232
3233 mad_args[0] = coords[1];
3234
3235 /* emit MAD */
3236 tmp = LLVMBuildFMul(ctx->builder, mad_args[0], mad_args[1], "");
3237 coords[1] = LLVMBuildFAdd(ctx->builder, tmp, mad_args[2], "");
3238
3239 /* apply xyz = yxw swizzle to cooords */
3240 out[0] = coords[1];
3241 out[1] = coords[0];
3242 out[2] = coords[3];
3243 }
3244
3245 static void emit_prepare_cube_coords(struct nir_to_llvm_context *ctx,
3246 LLVMValueRef *coords_arg, int num_coords,
3247 bool is_deriv,
3248 bool is_array, LLVMValueRef *derivs_arg)
3249 {
3250 LLVMValueRef coords[4];
3251 int i;
3252 cube_to_2d_coords(ctx, coords_arg, coords);
3253
3254 if (is_deriv && derivs_arg) {
3255 LLVMValueRef derivs[4];
3256 int axis;
3257
3258 /* Convert cube derivatives to 2D derivatives. */
3259 for (axis = 0; axis < 2; axis++) {
3260 LLVMValueRef shifted_cube_coords[4], shifted_coords[4];
3261
3262 /* Shift the cube coordinates by the derivatives to get
3263 * the cube coordinates of the "neighboring pixel".
3264 */
3265 for (i = 0; i < 3; i++)
3266 shifted_cube_coords[i] =
3267 LLVMBuildFAdd(ctx->builder, coords_arg[i],
3268 derivs_arg[axis*3+i], "");
3269 shifted_cube_coords[3] = LLVMGetUndef(ctx->f32);
3270
3271 /* Project the shifted cube coordinates onto the face. */
3272 cube_to_2d_coords(ctx, shifted_cube_coords,
3273 shifted_coords);
3274
3275 /* Subtract both sets of 2D coordinates to get 2D derivatives.
3276 * This won't work if the shifted coordinates ended up
3277 * in a different face.
3278 */
3279 for (i = 0; i < 2; i++)
3280 derivs[axis * 2 + i] =
3281 LLVMBuildFSub(ctx->builder, shifted_coords[i],
3282 coords[i], "");
3283 }
3284
3285 memcpy(derivs_arg, derivs, sizeof(derivs));
3286 }
3287
3288 if (is_array) {
3289 /* for cube arrays coord.z = coord.w(array_index) * 8 + face */
3290 /* coords_arg.w component - array_index for cube arrays */
3291 LLVMValueRef tmp = LLVMBuildFMul(ctx->builder, coords_arg[3], LLVMConstReal(ctx->f32, 8.0), "");
3292 coords[2] = LLVMBuildFAdd(ctx->builder, tmp, coords[2], "");
3293 }
3294
3295 memcpy(coords_arg, coords, sizeof(coords));
3296 }
3297
3298 static void visit_tex(struct nir_to_llvm_context *ctx, nir_tex_instr *instr)
3299 {
3300 LLVMValueRef result = NULL;
3301 struct ac_tex_info tinfo = { 0 };
3302 unsigned dmask = 0xf;
3303 LLVMValueRef address[16];
3304 LLVMValueRef coords[5];
3305 LLVMValueRef coord = NULL, lod = NULL, comparitor = NULL, bias, offsets = NULL;
3306 LLVMValueRef res_ptr, samp_ptr, fmask_ptr = NULL, sample_index = NULL;
3307 LLVMValueRef ddx = NULL, ddy = NULL;
3308 LLVMValueRef derivs[6];
3309 unsigned chan, count = 0;
3310 unsigned const_src = 0, num_deriv_comp = 0;
3311
3312 tex_fetch_ptrs(ctx, instr, &res_ptr, &samp_ptr, &fmask_ptr);
3313
3314 for (unsigned i = 0; i < instr->num_srcs; i++) {
3315 switch (instr->src[i].src_type) {
3316 case nir_tex_src_coord:
3317 coord = get_src(ctx, instr->src[i].src);
3318 break;
3319 case nir_tex_src_projector:
3320 break;
3321 case nir_tex_src_comparitor:
3322 comparitor = get_src(ctx, instr->src[i].src);
3323 break;
3324 case nir_tex_src_offset:
3325 offsets = get_src(ctx, instr->src[i].src);
3326 const_src = i;
3327 break;
3328 case nir_tex_src_bias:
3329 bias = get_src(ctx, instr->src[i].src);
3330 break;
3331 case nir_tex_src_lod:
3332 lod = get_src(ctx, instr->src[i].src);
3333 break;
3334 case nir_tex_src_ms_index:
3335 sample_index = get_src(ctx, instr->src[i].src);
3336 break;
3337 case nir_tex_src_ms_mcs:
3338 break;
3339 case nir_tex_src_ddx:
3340 ddx = get_src(ctx, instr->src[i].src);
3341 num_deriv_comp = instr->src[i].src.ssa->num_components;
3342 break;
3343 case nir_tex_src_ddy:
3344 ddy = get_src(ctx, instr->src[i].src);
3345 break;
3346 case nir_tex_src_texture_offset:
3347 case nir_tex_src_sampler_offset:
3348 case nir_tex_src_plane:
3349 default:
3350 break;
3351 }
3352 }
3353
3354 if (instr->op == nir_texop_texture_samples) {
3355 LLVMValueRef res, samples, is_msaa;
3356 res = LLVMBuildBitCast(ctx->builder, res_ptr, ctx->v8i32, "");
3357 samples = LLVMBuildExtractElement(ctx->builder, res,
3358 LLVMConstInt(ctx->i32, 3, false), "");
3359 is_msaa = LLVMBuildLShr(ctx->builder, samples,
3360 LLVMConstInt(ctx->i32, 28, false), "");
3361 is_msaa = LLVMBuildAnd(ctx->builder, is_msaa,
3362 LLVMConstInt(ctx->i32, 0xe, false), "");
3363 is_msaa = LLVMBuildICmp(ctx->builder, LLVMIntEQ, is_msaa,
3364 LLVMConstInt(ctx->i32, 0xe, false), "");
3365
3366 samples = LLVMBuildLShr(ctx->builder, samples,
3367 LLVMConstInt(ctx->i32, 16, false), "");
3368 samples = LLVMBuildAnd(ctx->builder, samples,
3369 LLVMConstInt(ctx->i32, 0xf, false), "");
3370 samples = LLVMBuildShl(ctx->builder, ctx->i32one,
3371 samples, "");
3372 samples = LLVMBuildSelect(ctx->builder, is_msaa, samples,
3373 ctx->i32one, "");
3374 result = samples;
3375 goto write_result;
3376 }
3377
3378 if (coord)
3379 for (chan = 0; chan < instr->coord_components; chan++)
3380 coords[chan] = llvm_extract_elem(ctx, coord, chan);
3381
3382 if (offsets && instr->op != nir_texop_txf) {
3383 LLVMValueRef offset[3], pack;
3384 for (chan = 0; chan < 3; ++chan)
3385 offset[chan] = ctx->i32zero;
3386
3387 tinfo.has_offset = true;
3388 for (chan = 0; chan < get_llvm_num_components(offsets); chan++) {
3389 offset[chan] = llvm_extract_elem(ctx, offsets, chan);
3390 offset[chan] = LLVMBuildAnd(ctx->builder, offset[chan],
3391 LLVMConstInt(ctx->i32, 0x3f, false), "");
3392 if (chan)
3393 offset[chan] = LLVMBuildShl(ctx->builder, offset[chan],
3394 LLVMConstInt(ctx->i32, chan * 8, false), "");
3395 }
3396 pack = LLVMBuildOr(ctx->builder, offset[0], offset[1], "");
3397 pack = LLVMBuildOr(ctx->builder, pack, offset[2], "");
3398 address[count++] = pack;
3399
3400 }
3401 /* pack LOD bias value */
3402 if (instr->op == nir_texop_txb && bias) {
3403 address[count++] = bias;
3404 }
3405
3406 /* Pack depth comparison value */
3407 if (instr->is_shadow && comparitor) {
3408 address[count++] = llvm_extract_elem(ctx, comparitor, 0);
3409 }
3410
3411 /* pack derivatives */
3412 if (ddx || ddy) {
3413 switch (instr->sampler_dim) {
3414 case GLSL_SAMPLER_DIM_3D:
3415 case GLSL_SAMPLER_DIM_CUBE:
3416 num_deriv_comp = 3;
3417 break;
3418 case GLSL_SAMPLER_DIM_2D:
3419 default:
3420 num_deriv_comp = 2;
3421 break;
3422 case GLSL_SAMPLER_DIM_1D:
3423 num_deriv_comp = 1;
3424 break;
3425 }
3426
3427 for (unsigned i = 0; i < num_deriv_comp; i++) {
3428 derivs[i * 2] = to_float(ctx, llvm_extract_elem(ctx, ddx, i));
3429 derivs[i * 2 + 1] = to_float(ctx, llvm_extract_elem(ctx, ddy, i));
3430 }
3431 }
3432
3433 if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE && coord) {
3434 for (chan = 0; chan < instr->coord_components; chan++)
3435 coords[chan] = to_float(ctx, coords[chan]);
3436 if (instr->coord_components == 3)
3437 coords[3] = LLVMGetUndef(ctx->f32);
3438 emit_prepare_cube_coords(ctx, coords, instr->coord_components, instr->op == nir_texop_txd, instr->is_array, derivs);
3439 if (num_deriv_comp)
3440 num_deriv_comp--;
3441 }
3442
3443 if (ddx || ddy) {
3444 for (unsigned i = 0; i < num_deriv_comp * 2; i++)
3445 address[count++] = derivs[i];
3446 }
3447
3448 /* Pack texture coordinates */
3449 if (coord) {
3450 address[count++] = coords[0];
3451 if (instr->coord_components > 1)
3452 address[count++] = coords[1];
3453 if (instr->coord_components > 2) {
3454 /* This seems like a bit of a hack - but it passes Vulkan CTS with it */
3455 if (instr->sampler_dim != GLSL_SAMPLER_DIM_3D && instr->op != nir_texop_txf) {
3456 coords[2] = to_float(ctx, coords[2]);
3457 coords[2] = emit_llvm_intrinsic(ctx, "llvm.rint.f32", ctx->f32, &coords[2],
3458 1, 0);
3459 coords[2] = to_integer(ctx, coords[2]);
3460 }
3461 address[count++] = coords[2];
3462 }
3463 }
3464
3465 /* Pack LOD */
3466 if ((instr->op == nir_texop_txl || instr->op == nir_texop_txf) && lod) {
3467 address[count++] = lod;
3468 } else if (instr->op == nir_texop_txf_ms && sample_index) {
3469 address[count++] = sample_index;
3470 } else if(instr->op == nir_texop_txs) {
3471 count = 0;
3472 if (lod)
3473 address[count++] = lod;
3474 else
3475 address[count++] = ctx->i32zero;
3476 }
3477
3478 for (chan = 0; chan < count; chan++) {
3479 address[chan] = LLVMBuildBitCast(ctx->builder,
3480 address[chan], ctx->i32, "");
3481 }
3482
3483 if (instr->op == nir_texop_samples_identical) {
3484 LLVMValueRef txf_address[4];
3485 struct ac_tex_info txf_info = { 0 };
3486 unsigned txf_count = count;
3487 memcpy(txf_address, address, sizeof(txf_address));
3488
3489 if (!instr->is_array)
3490 txf_address[2] = ctx->i32zero;
3491 txf_address[3] = ctx->i32zero;
3492
3493 set_tex_fetch_args(ctx, &txf_info, instr, nir_texop_txf,
3494 fmask_ptr, NULL,
3495 txf_address, txf_count, 0xf);
3496
3497 result = build_tex_intrinsic(ctx, instr, &txf_info);
3498
3499 result = LLVMBuildExtractElement(ctx->builder, result, ctx->i32zero, "");
3500 result = emit_int_cmp(ctx, LLVMIntEQ, result, ctx->i32zero);
3501 goto write_result;
3502 }
3503
3504 /* Adjust the sample index according to FMASK.
3505 *
3506 * For uncompressed MSAA surfaces, FMASK should return 0x76543210,
3507 * which is the identity mapping. Each nibble says which physical sample
3508 * should be fetched to get that sample.
3509 *
3510 * For example, 0x11111100 means there are only 2 samples stored and
3511 * the second sample covers 3/4 of the pixel. When reading samples 0
3512 * and 1, return physical sample 0 (determined by the first two 0s
3513 * in FMASK), otherwise return physical sample 1.
3514 *
3515 * The sample index should be adjusted as follows:
3516 * sample_index = (fmask >> (sample_index * 4)) & 0xF;
3517 */
3518 if (instr->sampler_dim == GLSL_SAMPLER_DIM_MS) {
3519 LLVMValueRef txf_address[4];
3520 struct ac_tex_info txf_info = { 0 };
3521 unsigned txf_count = count;
3522 memcpy(txf_address, address, sizeof(txf_address));
3523
3524 if (!instr->is_array)
3525 txf_address[2] = ctx->i32zero;
3526 txf_address[3] = ctx->i32zero;
3527
3528 set_tex_fetch_args(ctx, &txf_info, instr, nir_texop_txf,
3529 fmask_ptr, NULL,
3530 txf_address, txf_count, 0xf);
3531
3532 result = build_tex_intrinsic(ctx, instr, &txf_info);
3533 LLVMValueRef four = LLVMConstInt(ctx->i32, 4, false);
3534 LLVMValueRef F = LLVMConstInt(ctx->i32, 0xf, false);
3535
3536 LLVMValueRef fmask = LLVMBuildExtractElement(ctx->builder,
3537 result,
3538 ctx->i32zero, "");
3539
3540 unsigned sample_chan = instr->is_array ? 3 : 2;
3541
3542 LLVMValueRef sample_index4 =
3543 LLVMBuildMul(ctx->builder, address[sample_chan], four, "");
3544 LLVMValueRef shifted_fmask =
3545 LLVMBuildLShr(ctx->builder, fmask, sample_index4, "");
3546 LLVMValueRef final_sample =
3547 LLVMBuildAnd(ctx->builder, shifted_fmask, F, "");
3548
3549 /* Don't rewrite the sample index if WORD1.DATA_FORMAT of the FMASK
3550 * resource descriptor is 0 (invalid),
3551 */
3552 LLVMValueRef fmask_desc =
3553 LLVMBuildBitCast(ctx->builder, fmask_ptr,
3554 ctx->v8i32, "");
3555
3556 LLVMValueRef fmask_word1 =
3557 LLVMBuildExtractElement(ctx->builder, fmask_desc,
3558 ctx->i32one, "");
3559
3560 LLVMValueRef word1_is_nonzero =
3561 LLVMBuildICmp(ctx->builder, LLVMIntNE,
3562 fmask_word1, ctx->i32zero, "");
3563
3564 /* Replace the MSAA sample index. */
3565 address[sample_chan] =
3566 LLVMBuildSelect(ctx->builder, word1_is_nonzero,
3567 final_sample, address[sample_chan], "");
3568 }
3569
3570 if (offsets && instr->op == nir_texop_txf) {
3571 nir_const_value *const_offset =
3572 nir_src_as_const_value(instr->src[const_src].src);
3573
3574 assert(const_offset);
3575 if (instr->coord_components > 2)
3576 address[2] = LLVMBuildAdd(ctx->builder,
3577 address[2], LLVMConstInt(ctx->i32, const_offset->i32[2], false), "");
3578 if (instr->coord_components > 1)
3579 address[1] = LLVMBuildAdd(ctx->builder,
3580 address[1], LLVMConstInt(ctx->i32, const_offset->i32[1], false), "");
3581 address[0] = LLVMBuildAdd(ctx->builder,
3582 address[0], LLVMConstInt(ctx->i32, const_offset->i32[0], false), "");
3583
3584 }
3585
3586 /* TODO TG4 support */
3587 if (instr->op == nir_texop_tg4) {
3588 if (instr->is_shadow)
3589 dmask = 1;
3590 else
3591 dmask = 1 << instr->component;
3592 }
3593 set_tex_fetch_args(ctx, &tinfo, instr, instr->op,
3594 res_ptr, samp_ptr, address, count, dmask);
3595
3596 result = build_tex_intrinsic(ctx, instr, &tinfo);
3597
3598 if (instr->op == nir_texop_query_levels)
3599 result = LLVMBuildExtractElement(ctx->builder, result, LLVMConstInt(ctx->i32, 3, false), "");
3600 else if (instr->op == nir_texop_txs &&
3601 instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE &&
3602 instr->is_array) {
3603 LLVMValueRef two = LLVMConstInt(ctx->i32, 2, false);
3604 LLVMValueRef six = LLVMConstInt(ctx->i32, 6, false);
3605 LLVMValueRef z = LLVMBuildExtractElement(ctx->builder, result, two, "");
3606 z = LLVMBuildSDiv(ctx->builder, z, six, "");
3607 result = LLVMBuildInsertElement(ctx->builder, result, z, two, "");
3608 } else if (instr->dest.ssa.num_components != 4)
3609 result = trim_vector(ctx, result, instr->dest.ssa.num_components);
3610
3611 write_result:
3612 if (result) {
3613 assert(instr->dest.is_ssa);
3614 result = to_integer(ctx, result);
3615 _mesa_hash_table_insert(ctx->defs, &instr->dest.ssa, result);
3616 }
3617 }
3618
3619
3620 static void visit_phi(struct nir_to_llvm_context *ctx, nir_phi_instr *instr)
3621 {
3622 LLVMTypeRef type = get_def_type(ctx, &instr->dest.ssa);
3623 LLVMValueRef result = LLVMBuildPhi(ctx->builder, type, "");
3624
3625 _mesa_hash_table_insert(ctx->defs, &instr->dest.ssa, result);
3626 _mesa_hash_table_insert(ctx->phis, instr, result);
3627 }
3628
3629 static void visit_post_phi(struct nir_to_llvm_context *ctx,
3630 nir_phi_instr *instr,
3631 LLVMValueRef llvm_phi)
3632 {
3633 nir_foreach_phi_src(src, instr) {
3634 LLVMBasicBlockRef block = get_block(ctx, src->pred);
3635 LLVMValueRef llvm_src = get_src(ctx, src->src);
3636
3637 LLVMAddIncoming(llvm_phi, &llvm_src, &block, 1);
3638 }
3639 }
3640
3641 static void phi_post_pass(struct nir_to_llvm_context *ctx)
3642 {
3643 struct hash_entry *entry;
3644 hash_table_foreach(ctx->phis, entry) {
3645 visit_post_phi(ctx, (nir_phi_instr*)entry->key,
3646 (LLVMValueRef)entry->data);
3647 }
3648 }
3649
3650
3651 static void visit_ssa_undef(struct nir_to_llvm_context *ctx,
3652 nir_ssa_undef_instr *instr)
3653 {
3654 unsigned num_components = instr->def.num_components;
3655 LLVMValueRef undef;
3656
3657 if (num_components == 1)
3658 undef = LLVMGetUndef(ctx->i32);
3659 else {
3660 undef = LLVMGetUndef(LLVMVectorType(ctx->i32, num_components));
3661 }
3662 _mesa_hash_table_insert(ctx->defs, &instr->def, undef);
3663 }
3664
3665 static void visit_jump(struct nir_to_llvm_context *ctx,
3666 nir_jump_instr *instr)
3667 {
3668 switch (instr->type) {
3669 case nir_jump_break:
3670 LLVMBuildBr(ctx->builder, ctx->break_block);
3671 LLVMClearInsertionPosition(ctx->builder);
3672 break;
3673 case nir_jump_continue:
3674 LLVMBuildBr(ctx->builder, ctx->continue_block);
3675 LLVMClearInsertionPosition(ctx->builder);
3676 break;
3677 default:
3678 fprintf(stderr, "Unknown NIR jump instr: ");
3679 nir_print_instr(&instr->instr, stderr);
3680 fprintf(stderr, "\n");
3681 abort();
3682 }
3683 }
3684
3685 static void visit_cf_list(struct nir_to_llvm_context *ctx,
3686 struct exec_list *list);
3687
3688 static void visit_block(struct nir_to_llvm_context *ctx, nir_block *block)
3689 {
3690 LLVMBasicBlockRef llvm_block = LLVMGetInsertBlock(ctx->builder);
3691 nir_foreach_instr(instr, block)
3692 {
3693 switch (instr->type) {
3694 case nir_instr_type_alu:
3695 visit_alu(ctx, nir_instr_as_alu(instr));
3696 break;
3697 case nir_instr_type_load_const:
3698 visit_load_const(ctx, nir_instr_as_load_const(instr));
3699 break;
3700 case nir_instr_type_intrinsic:
3701 visit_intrinsic(ctx, nir_instr_as_intrinsic(instr));
3702 break;
3703 case nir_instr_type_tex:
3704 visit_tex(ctx, nir_instr_as_tex(instr));
3705 break;
3706 case nir_instr_type_phi:
3707 visit_phi(ctx, nir_instr_as_phi(instr));
3708 break;
3709 case nir_instr_type_ssa_undef:
3710 visit_ssa_undef(ctx, nir_instr_as_ssa_undef(instr));
3711 break;
3712 case nir_instr_type_jump:
3713 visit_jump(ctx, nir_instr_as_jump(instr));
3714 break;
3715 default:
3716 fprintf(stderr, "Unknown NIR instr type: ");
3717 nir_print_instr(instr, stderr);
3718 fprintf(stderr, "\n");
3719 abort();
3720 }
3721 }
3722
3723 _mesa_hash_table_insert(ctx->defs, block, llvm_block);
3724 }
3725
3726 static void visit_if(struct nir_to_llvm_context *ctx, nir_if *if_stmt)
3727 {
3728 LLVMValueRef value = get_src(ctx, if_stmt->condition);
3729
3730 LLVMBasicBlockRef merge_block =
3731 LLVMAppendBasicBlockInContext(ctx->context, ctx->main_function, "");
3732 LLVMBasicBlockRef if_block =
3733 LLVMAppendBasicBlockInContext(ctx->context, ctx->main_function, "");
3734 LLVMBasicBlockRef else_block = merge_block;
3735 if (!exec_list_is_empty(&if_stmt->else_list))
3736 else_block = LLVMAppendBasicBlockInContext(
3737 ctx->context, ctx->main_function, "");
3738
3739 LLVMValueRef cond = LLVMBuildICmp(ctx->builder, LLVMIntNE, value,
3740 LLVMConstInt(ctx->i32, 0, false), "");
3741 LLVMBuildCondBr(ctx->builder, cond, if_block, else_block);
3742
3743 LLVMPositionBuilderAtEnd(ctx->builder, if_block);
3744 visit_cf_list(ctx, &if_stmt->then_list);
3745 if (LLVMGetInsertBlock(ctx->builder))
3746 LLVMBuildBr(ctx->builder, merge_block);
3747
3748 if (!exec_list_is_empty(&if_stmt->else_list)) {
3749 LLVMPositionBuilderAtEnd(ctx->builder, else_block);
3750 visit_cf_list(ctx, &if_stmt->else_list);
3751 if (LLVMGetInsertBlock(ctx->builder))
3752 LLVMBuildBr(ctx->builder, merge_block);
3753 }
3754
3755 LLVMPositionBuilderAtEnd(ctx->builder, merge_block);
3756 }
3757
3758 static void visit_loop(struct nir_to_llvm_context *ctx, nir_loop *loop)
3759 {
3760 LLVMBasicBlockRef continue_parent = ctx->continue_block;
3761 LLVMBasicBlockRef break_parent = ctx->break_block;
3762
3763 ctx->continue_block =
3764 LLVMAppendBasicBlockInContext(ctx->context, ctx->main_function, "");
3765 ctx->break_block =
3766 LLVMAppendBasicBlockInContext(ctx->context, ctx->main_function, "");
3767
3768 LLVMBuildBr(ctx->builder, ctx->continue_block);
3769 LLVMPositionBuilderAtEnd(ctx->builder, ctx->continue_block);
3770 visit_cf_list(ctx, &loop->body);
3771
3772 if (LLVMGetInsertBlock(ctx->builder))
3773 LLVMBuildBr(ctx->builder, ctx->continue_block);
3774 LLVMPositionBuilderAtEnd(ctx->builder, ctx->break_block);
3775
3776 ctx->continue_block = continue_parent;
3777 ctx->break_block = break_parent;
3778 }
3779
3780 static void visit_cf_list(struct nir_to_llvm_context *ctx,
3781 struct exec_list *list)
3782 {
3783 foreach_list_typed(nir_cf_node, node, node, list)
3784 {
3785 switch (node->type) {
3786 case nir_cf_node_block:
3787 visit_block(ctx, nir_cf_node_as_block(node));
3788 break;
3789
3790 case nir_cf_node_if:
3791 visit_if(ctx, nir_cf_node_as_if(node));
3792 break;
3793
3794 case nir_cf_node_loop:
3795 visit_loop(ctx, nir_cf_node_as_loop(node));
3796 break;
3797
3798 default:
3799 assert(0);
3800 }
3801 }
3802 }
3803
3804 static void
3805 handle_vs_input_decl(struct nir_to_llvm_context *ctx,
3806 struct nir_variable *variable)
3807 {
3808 LLVMValueRef t_list_ptr = ctx->vertex_buffers;
3809 LLVMValueRef t_offset;
3810 LLVMValueRef t_list;
3811 LLVMValueRef args[3];
3812 LLVMValueRef input;
3813 LLVMValueRef buffer_index;
3814 int index = variable->data.location - VERT_ATTRIB_GENERIC0;
3815 int idx = variable->data.location;
3816 unsigned attrib_count = glsl_count_attribute_slots(variable->type, true);
3817
3818 variable->data.driver_location = idx * 4;
3819
3820 if (ctx->options->key.vs.instance_rate_inputs & (1u << index)) {
3821 buffer_index = LLVMBuildAdd(ctx->builder, ctx->instance_id,
3822 ctx->start_instance, "");
3823 ctx->shader_info->vs.vgpr_comp_cnt = MAX2(3,
3824 ctx->shader_info->vs.vgpr_comp_cnt);
3825 } else
3826 buffer_index = LLVMBuildAdd(ctx->builder, ctx->vertex_id,
3827 ctx->base_vertex, "");
3828
3829 for (unsigned i = 0; i < attrib_count; ++i, ++idx) {
3830 t_offset = LLVMConstInt(ctx->i32, index + i, false);
3831
3832 t_list = build_indexed_load_const(ctx, t_list_ptr, t_offset);
3833 args[0] = t_list;
3834 args[1] = LLVMConstInt(ctx->i32, 0, false);
3835 args[2] = buffer_index;
3836 input = emit_llvm_intrinsic(ctx,
3837 "llvm.SI.vs.load.input", ctx->v4f32, args, 3,
3838 AC_FUNC_ATTR_READNONE | AC_FUNC_ATTR_NOUNWIND);
3839
3840 for (unsigned chan = 0; chan < 4; chan++) {
3841 LLVMValueRef llvm_chan = LLVMConstInt(ctx->i32, chan, false);
3842 ctx->inputs[radeon_llvm_reg_index_soa(idx, chan)] =
3843 to_integer(ctx, LLVMBuildExtractElement(ctx->builder,
3844 input, llvm_chan, ""));
3845 }
3846 }
3847 }
3848
3849
3850 static void interp_fs_input(struct nir_to_llvm_context *ctx,
3851 unsigned attr,
3852 LLVMValueRef interp_param,
3853 LLVMValueRef prim_mask,
3854 LLVMValueRef result[4])
3855 {
3856 const char *intr_name;
3857 LLVMValueRef attr_number;
3858 unsigned chan;
3859
3860 attr_number = LLVMConstInt(ctx->i32, attr, false);
3861
3862 /* fs.constant returns the param from the middle vertex, so it's not
3863 * really useful for flat shading. It's meant to be used for custom
3864 * interpolation (but the intrinsic can't fetch from the other two
3865 * vertices).
3866 *
3867 * Luckily, it doesn't matter, because we rely on the FLAT_SHADE state
3868 * to do the right thing. The only reason we use fs.constant is that
3869 * fs.interp cannot be used on integers, because they can be equal
3870 * to NaN.
3871 */
3872 intr_name = interp_param ? "llvm.SI.fs.interp" : "llvm.SI.fs.constant";
3873
3874 for (chan = 0; chan < 4; chan++) {
3875 LLVMValueRef args[4];
3876 LLVMValueRef llvm_chan = LLVMConstInt(ctx->i32, chan, false);
3877
3878 args[0] = llvm_chan;
3879 args[1] = attr_number;
3880 args[2] = prim_mask;
3881 args[3] = interp_param;
3882 result[chan] = emit_llvm_intrinsic(ctx, intr_name,
3883 ctx->f32, args, args[3] ? 4 : 3,
3884 AC_FUNC_ATTR_READNONE | AC_FUNC_ATTR_NOUNWIND);
3885 }
3886 }
3887
3888 static void
3889 handle_fs_input_decl(struct nir_to_llvm_context *ctx,
3890 struct nir_variable *variable)
3891 {
3892 int idx = variable->data.location;
3893 unsigned attrib_count = glsl_count_attribute_slots(variable->type, false);
3894 LLVMValueRef interp;
3895
3896 variable->data.driver_location = idx * 4;
3897 ctx->input_mask |= ((1ull << attrib_count) - 1) << variable->data.location;
3898
3899 if (glsl_get_base_type(glsl_without_array(variable->type)) == GLSL_TYPE_FLOAT)
3900 interp = lookup_interp_param(ctx, variable->data.interpolation, INTERP_CENTER);
3901 else
3902 interp = NULL;
3903
3904 for (unsigned i = 0; i < attrib_count; ++i)
3905 ctx->inputs[radeon_llvm_reg_index_soa(idx + i, 0)] = interp;
3906
3907 }
3908
3909 static void
3910 handle_shader_input_decl(struct nir_to_llvm_context *ctx,
3911 struct nir_variable *variable)
3912 {
3913 switch (ctx->stage) {
3914 case MESA_SHADER_VERTEX:
3915 handle_vs_input_decl(ctx, variable);
3916 break;
3917 case MESA_SHADER_FRAGMENT:
3918 handle_fs_input_decl(ctx, variable);
3919 break;
3920 default:
3921 break;
3922 }
3923
3924 }
3925
3926 static void
3927 handle_fs_inputs_pre(struct nir_to_llvm_context *ctx,
3928 struct nir_shader *nir)
3929 {
3930 unsigned index = 0;
3931 for (unsigned i = 0; i < RADEON_LLVM_MAX_INPUTS; ++i) {
3932 LLVMValueRef interp_param;
3933 LLVMValueRef *inputs = ctx->inputs +radeon_llvm_reg_index_soa(i, 0);
3934
3935 if (!(ctx->input_mask & (1ull << i)))
3936 continue;
3937
3938 if (i >= VARYING_SLOT_VAR0 || i == VARYING_SLOT_PNTC) {
3939 interp_param = *inputs;
3940 interp_fs_input(ctx, index, interp_param, ctx->prim_mask,
3941 inputs);
3942
3943 if (!interp_param)
3944 ctx->shader_info->fs.flat_shaded_mask |= 1u << index;
3945 ++index;
3946 } else if (i == VARYING_SLOT_POS) {
3947 for(int i = 0; i < 3; ++i)
3948 inputs[i] = ctx->frag_pos[i];
3949
3950 inputs[3] = emit_fdiv(ctx, ctx->f32one, ctx->frag_pos[3]);
3951 }
3952 }
3953 ctx->shader_info->fs.num_interp = index;
3954 if (ctx->input_mask & (1 << VARYING_SLOT_PNTC))
3955 ctx->shader_info->fs.has_pcoord = true;
3956 ctx->shader_info->fs.input_mask = ctx->input_mask >> VARYING_SLOT_VAR0;
3957 }
3958
3959 static LLVMValueRef
3960 ac_build_alloca(struct nir_to_llvm_context *ctx,
3961 LLVMTypeRef type,
3962 const char *name)
3963 {
3964 LLVMBuilderRef builder = ctx->builder;
3965 LLVMBasicBlockRef current_block = LLVMGetInsertBlock(builder);
3966 LLVMValueRef function = LLVMGetBasicBlockParent(current_block);
3967 LLVMBasicBlockRef first_block = LLVMGetEntryBasicBlock(function);
3968 LLVMValueRef first_instr = LLVMGetFirstInstruction(first_block);
3969 LLVMBuilderRef first_builder = LLVMCreateBuilderInContext(ctx->context);
3970 LLVMValueRef res;
3971
3972 if (first_instr) {
3973 LLVMPositionBuilderBefore(first_builder, first_instr);
3974 } else {
3975 LLVMPositionBuilderAtEnd(first_builder, first_block);
3976 }
3977
3978 res = LLVMBuildAlloca(first_builder, type, name);
3979 LLVMBuildStore(builder, LLVMConstNull(type), res);
3980
3981 LLVMDisposeBuilder(first_builder);
3982
3983 return res;
3984 }
3985
3986 static LLVMValueRef si_build_alloca_undef(struct nir_to_llvm_context *ctx,
3987 LLVMTypeRef type,
3988 const char *name)
3989 {
3990 LLVMValueRef ptr = ac_build_alloca(ctx, type, name);
3991 LLVMBuildStore(ctx->builder, LLVMGetUndef(type), ptr);
3992 return ptr;
3993 }
3994
3995 static void
3996 handle_shader_output_decl(struct nir_to_llvm_context *ctx,
3997 struct nir_variable *variable)
3998 {
3999 int idx = variable->data.location;
4000 unsigned attrib_count = glsl_count_attribute_slots(variable->type, false);
4001
4002 variable->data.driver_location = idx * 4;
4003
4004 if (ctx->stage == MESA_SHADER_VERTEX) {
4005
4006 if (idx == VARYING_SLOT_CLIP_DIST0 ||
4007 idx == VARYING_SLOT_CULL_DIST0) {
4008 int length = glsl_get_length(variable->type);
4009 if (idx == VARYING_SLOT_CLIP_DIST0) {
4010 ctx->shader_info->vs.clip_dist_mask = (1 << length) - 1;
4011 ctx->num_clips = length;
4012 } else if (idx == VARYING_SLOT_CULL_DIST0) {
4013 ctx->shader_info->vs.cull_dist_mask = (1 << length) - 1;
4014 ctx->num_culls = length;
4015 }
4016 if (length > 4)
4017 attrib_count = 2;
4018 else
4019 attrib_count = 1;
4020 }
4021 }
4022
4023 for (unsigned i = 0; i < attrib_count; ++i) {
4024 for (unsigned chan = 0; chan < 4; chan++) {
4025 ctx->outputs[radeon_llvm_reg_index_soa(idx + i, chan)] =
4026 si_build_alloca_undef(ctx, ctx->f32, "");
4027 }
4028 }
4029 ctx->output_mask |= ((1ull << attrib_count) - 1) << variable->data.location;
4030 }
4031
4032 static void
4033 setup_locals(struct nir_to_llvm_context *ctx,
4034 struct nir_function *func)
4035 {
4036 int i, j;
4037 ctx->num_locals = 0;
4038 nir_foreach_variable(variable, &func->impl->locals) {
4039 unsigned attrib_count = glsl_count_attribute_slots(variable->type, false);
4040 variable->data.driver_location = ctx->num_locals * 4;
4041 ctx->num_locals += attrib_count;
4042 }
4043 ctx->locals = malloc(4 * ctx->num_locals * sizeof(LLVMValueRef));
4044 if (!ctx->locals)
4045 return;
4046
4047 for (i = 0; i < ctx->num_locals; i++) {
4048 for (j = 0; j < 4; j++) {
4049 ctx->locals[i * 4 + j] =
4050 si_build_alloca_undef(ctx, ctx->f32, "temp");
4051 }
4052 }
4053 }
4054
4055 static LLVMValueRef
4056 emit_float_saturate(struct nir_to_llvm_context *ctx, LLVMValueRef v, float lo, float hi)
4057 {
4058 v = to_float(ctx, v);
4059 v = emit_intrin_2f_param(ctx, "llvm.maxnum.f32", v, LLVMConstReal(ctx->f32, lo));
4060 return emit_intrin_2f_param(ctx, "llvm.minnum.f32", v, LLVMConstReal(ctx->f32, hi));
4061 }
4062
4063
4064 static LLVMValueRef emit_pack_int16(struct nir_to_llvm_context *ctx,
4065 LLVMValueRef src0, LLVMValueRef src1)
4066 {
4067 LLVMValueRef const16 = LLVMConstInt(ctx->i32, 16, false);
4068 LLVMValueRef comp[2];
4069
4070 comp[0] = LLVMBuildAnd(ctx->builder, src0, LLVMConstInt(ctx-> i32, 65535, 0), "");
4071 comp[1] = LLVMBuildAnd(ctx->builder, src1, LLVMConstInt(ctx-> i32, 65535, 0), "");
4072 comp[1] = LLVMBuildShl(ctx->builder, comp[1], const16, "");
4073 return LLVMBuildOr(ctx->builder, comp[0], comp[1], "");
4074 }
4075
4076 /* Initialize arguments for the shader export intrinsic */
4077 static void
4078 si_llvm_init_export_args(struct nir_to_llvm_context *ctx,
4079 LLVMValueRef *values,
4080 unsigned target,
4081 LLVMValueRef *args)
4082 {
4083 /* Default is 0xf. Adjusted below depending on the format. */
4084 args[0] = LLVMConstInt(ctx->i32, target != V_008DFC_SQ_EXP_NULL ? 0xf : 0, false);
4085 /* Specify whether the EXEC mask represents the valid mask */
4086 args[1] = LLVMConstInt(ctx->i32, 0, false);
4087
4088 /* Specify whether this is the last export */
4089 args[2] = LLVMConstInt(ctx->i32, 0, false);
4090 /* Specify the target we are exporting */
4091 args[3] = LLVMConstInt(ctx->i32, target, false);
4092
4093 args[4] = LLVMConstInt(ctx->i32, 0, false); /* COMPR flag */
4094 args[5] = LLVMGetUndef(ctx->f32);
4095 args[6] = LLVMGetUndef(ctx->f32);
4096 args[7] = LLVMGetUndef(ctx->f32);
4097 args[8] = LLVMGetUndef(ctx->f32);
4098
4099 if (!values)
4100 return;
4101
4102 if (ctx->stage == MESA_SHADER_FRAGMENT && target >= V_008DFC_SQ_EXP_MRT) {
4103 LLVMValueRef val[4];
4104 unsigned index = target - V_008DFC_SQ_EXP_MRT;
4105 unsigned col_format = (ctx->options->key.fs.col_format >> (4 * index)) & 0xf;
4106 bool is_int8 = (ctx->options->key.fs.is_int8 >> index) & 1;
4107
4108 switch(col_format) {
4109 case V_028714_SPI_SHADER_ZERO:
4110 args[0] = LLVMConstInt(ctx->i32, 0x0, 0);
4111 args[3] = LLVMConstInt(ctx->i32, V_008DFC_SQ_EXP_NULL, 0);
4112 break;
4113
4114 case V_028714_SPI_SHADER_32_R:
4115 args[0] = LLVMConstInt(ctx->i32, 0x1, 0);
4116 args[5] = values[0];
4117 break;
4118
4119 case V_028714_SPI_SHADER_32_GR:
4120 args[0] = LLVMConstInt(ctx->i32, 0x3, 0);
4121 args[5] = values[0];
4122 args[6] = values[1];
4123 break;
4124
4125 case V_028714_SPI_SHADER_32_AR:
4126 args[0] = LLVMConstInt(ctx->i32, 0x9, 0);
4127 args[5] = values[0];
4128 args[8] = values[3];
4129 break;
4130
4131 case V_028714_SPI_SHADER_FP16_ABGR:
4132 args[4] = ctx->i32one;
4133
4134 for (unsigned chan = 0; chan < 2; chan++) {
4135 LLVMValueRef pack_args[2] = {
4136 values[2 * chan],
4137 values[2 * chan + 1]
4138 };
4139 LLVMValueRef packed;
4140
4141 packed = emit_llvm_intrinsic(ctx, "llvm.SI.packf16",
4142 ctx->i32, pack_args, 2,
4143 AC_FUNC_ATTR_READNONE);
4144 args[chan + 5] = packed;
4145 }
4146 break;
4147
4148 case V_028714_SPI_SHADER_UNORM16_ABGR:
4149 for (unsigned chan = 0; chan < 4; chan++) {
4150 val[chan] = emit_float_saturate(ctx, values[chan], 0, 1);
4151 val[chan] = LLVMBuildFMul(ctx->builder, val[chan],
4152 LLVMConstReal(ctx->f32, 65535), "");
4153 val[chan] = LLVMBuildFAdd(ctx->builder, val[chan],
4154 LLVMConstReal(ctx->f32, 0.5), "");
4155 val[chan] = LLVMBuildFPToUI(ctx->builder, val[chan],
4156 ctx->i32, "");
4157 }
4158
4159 args[4] = ctx->i32one;
4160 args[5] = emit_pack_int16(ctx, val[0], val[1]);
4161 args[6] = emit_pack_int16(ctx, val[2], val[3]);
4162 break;
4163
4164 case V_028714_SPI_SHADER_SNORM16_ABGR:
4165 for (unsigned chan = 0; chan < 4; chan++) {
4166 val[chan] = emit_float_saturate(ctx, values[chan], -1, 1);
4167 val[chan] = LLVMBuildFMul(ctx->builder, val[chan],
4168 LLVMConstReal(ctx->f32, 32767), "");
4169
4170 /* If positive, add 0.5, else add -0.5. */
4171 val[chan] = LLVMBuildFAdd(ctx->builder, val[chan],
4172 LLVMBuildSelect(ctx->builder,
4173 LLVMBuildFCmp(ctx->builder, LLVMRealOGE,
4174 val[chan], ctx->f32zero, ""),
4175 LLVMConstReal(ctx->f32, 0.5),
4176 LLVMConstReal(ctx->f32, -0.5), ""), "");
4177 val[chan] = LLVMBuildFPToSI(ctx->builder, val[chan], ctx->i32, "");
4178 }
4179
4180 args[4] = ctx->i32one;
4181 args[5] = emit_pack_int16(ctx, val[0], val[1]);
4182 args[6] = emit_pack_int16(ctx, val[2], val[3]);
4183 break;
4184
4185 case V_028714_SPI_SHADER_UINT16_ABGR: {
4186 LLVMValueRef max = LLVMConstInt(ctx->i32, is_int8 ? 255 : 65535, 0);
4187
4188 for (unsigned chan = 0; chan < 4; chan++) {
4189 val[chan] = to_integer(ctx, values[chan]);
4190 val[chan] = emit_minmax_int(ctx, LLVMIntULT, val[chan], max);
4191 }
4192
4193 args[4] = ctx->i32one;
4194 args[5] = emit_pack_int16(ctx, val[0], val[1]);
4195 args[6] = emit_pack_int16(ctx, val[2], val[3]);
4196 break;
4197 }
4198
4199 case V_028714_SPI_SHADER_SINT16_ABGR: {
4200 LLVMValueRef max = LLVMConstInt(ctx->i32, is_int8 ? 127 : 32767, 0);
4201 LLVMValueRef min = LLVMConstInt(ctx->i32, is_int8 ? -128 : -32768, 0);
4202
4203 /* Clamp. */
4204 for (unsigned chan = 0; chan < 4; chan++) {
4205 val[chan] = to_integer(ctx, values[chan]);
4206 val[chan] = emit_minmax_int(ctx, LLVMIntSLT, val[chan], max);
4207 val[chan] = emit_minmax_int(ctx, LLVMIntSGT, val[chan], min);
4208 }
4209
4210 args[4] = ctx->i32one;
4211 args[5] = emit_pack_int16(ctx, val[0], val[1]);
4212 args[6] = emit_pack_int16(ctx, val[2], val[3]);
4213 break;
4214 }
4215
4216 default:
4217 case V_028714_SPI_SHADER_32_ABGR:
4218 memcpy(&args[5], values, sizeof(values[0]) * 4);
4219 break;
4220 }
4221 } else
4222 memcpy(&args[5], values, sizeof(values[0]) * 4);
4223
4224 for (unsigned i = 5; i < 9; ++i)
4225 args[i] = to_float(ctx, args[i]);
4226 }
4227
4228 static void
4229 handle_vs_outputs_post(struct nir_to_llvm_context *ctx,
4230 struct nir_shader *nir)
4231 {
4232 uint32_t param_count = 0;
4233 unsigned target;
4234 unsigned pos_idx, num_pos_exports = 0;
4235 LLVMValueRef args[9];
4236 LLVMValueRef pos_args[4][9] = { { 0 } };
4237 LLVMValueRef psize_value = 0;
4238 int i;
4239 const uint64_t clip_mask = ctx->output_mask & ((1ull << VARYING_SLOT_CLIP_DIST0) |
4240 (1ull << VARYING_SLOT_CLIP_DIST1) |
4241 (1ull << VARYING_SLOT_CULL_DIST0) |
4242 (1ull << VARYING_SLOT_CULL_DIST1));
4243
4244 if (clip_mask) {
4245 LLVMValueRef slots[8];
4246 unsigned j;
4247
4248 if (ctx->shader_info->vs.cull_dist_mask)
4249 ctx->shader_info->vs.cull_dist_mask <<= ctx->num_clips;
4250
4251 i = VARYING_SLOT_CLIP_DIST0;
4252 for (j = 0; j < ctx->num_clips; j++)
4253 slots[j] = to_float(ctx, LLVMBuildLoad(ctx->builder,
4254 ctx->outputs[radeon_llvm_reg_index_soa(i, j)], ""));
4255 i = VARYING_SLOT_CULL_DIST0;
4256 for (j = 0; j < ctx->num_culls; j++)
4257 slots[ctx->num_clips + j] = to_float(ctx, LLVMBuildLoad(ctx->builder,
4258 ctx->outputs[radeon_llvm_reg_index_soa(i, j)], ""));
4259
4260 for (i = ctx->num_clips + ctx->num_culls; i < 8; i++)
4261 slots[i] = LLVMGetUndef(ctx->f32);
4262
4263 if (ctx->num_clips + ctx->num_culls > 4) {
4264 target = V_008DFC_SQ_EXP_POS + 3;
4265 si_llvm_init_export_args(ctx, &slots[4], target, args);
4266 memcpy(pos_args[target - V_008DFC_SQ_EXP_POS],
4267 args, sizeof(args));
4268 }
4269
4270 target = V_008DFC_SQ_EXP_POS + 2;
4271 si_llvm_init_export_args(ctx, &slots[0], target, args);
4272 memcpy(pos_args[target - V_008DFC_SQ_EXP_POS],
4273 args, sizeof(args));
4274
4275 }
4276
4277 for (unsigned i = 0; i < RADEON_LLVM_MAX_OUTPUTS; ++i) {
4278 LLVMValueRef values[4];
4279 if (!(ctx->output_mask & (1ull << i)))
4280 continue;
4281
4282 for (unsigned j = 0; j < 4; j++)
4283 values[j] = to_float(ctx, LLVMBuildLoad(ctx->builder,
4284 ctx->outputs[radeon_llvm_reg_index_soa(i, j)], ""));
4285
4286 if (i == VARYING_SLOT_POS) {
4287 target = V_008DFC_SQ_EXP_POS;
4288 } else if (i == VARYING_SLOT_CLIP_DIST0 ||
4289 i == VARYING_SLOT_CLIP_DIST1 ||
4290 i == VARYING_SLOT_CULL_DIST0 ||
4291 i == VARYING_SLOT_CULL_DIST1) {
4292 continue;
4293 } else if (i == VARYING_SLOT_PSIZ) {
4294 ctx->shader_info->vs.writes_pointsize = true;
4295 psize_value = values[0];
4296 continue;
4297 } else if (i >= VARYING_SLOT_VAR0) {
4298 ctx->shader_info->vs.export_mask |= 1u << (i - VARYING_SLOT_VAR0);
4299 target = V_008DFC_SQ_EXP_PARAM + param_count;
4300 param_count++;
4301 }
4302
4303 si_llvm_init_export_args(ctx, values, target, args);
4304
4305 if (target >= V_008DFC_SQ_EXP_POS &&
4306 target <= (V_008DFC_SQ_EXP_POS + 3)) {
4307 memcpy(pos_args[target - V_008DFC_SQ_EXP_POS],
4308 args, sizeof(args));
4309 } else {
4310 emit_llvm_intrinsic(ctx,
4311 "llvm.SI.export",
4312 LLVMVoidTypeInContext(ctx->context),
4313 args, 9, 0);
4314 }
4315 }
4316
4317 /* We need to add the position output manually if it's missing. */
4318 if (!pos_args[0][0]) {
4319 pos_args[0][0] = LLVMConstInt(ctx->i32, 0xf, false);
4320 pos_args[0][1] = ctx->i32zero; /* EXEC mask */
4321 pos_args[0][2] = ctx->i32zero; /* last export? */
4322 pos_args[0][3] = LLVMConstInt(ctx->i32, V_008DFC_SQ_EXP_POS, false);
4323 pos_args[0][4] = ctx->i32zero; /* COMPR flag */
4324 pos_args[0][5] = ctx->f32zero; /* X */
4325 pos_args[0][6] = ctx->f32zero; /* Y */
4326 pos_args[0][7] = ctx->f32zero; /* Z */
4327 pos_args[0][8] = ctx->f32one; /* W */
4328 }
4329
4330 if (ctx->shader_info->vs.writes_pointsize == true) {
4331 pos_args[1][0] = LLVMConstInt(ctx->i32, (ctx->shader_info->vs.writes_pointsize == true), false); /* writemask */
4332 pos_args[1][1] = ctx->i32zero; /* EXEC mask */
4333 pos_args[1][2] = ctx->i32zero; /* last export? */
4334 pos_args[1][3] = LLVMConstInt(ctx->i32, V_008DFC_SQ_EXP_POS + 1, false);
4335 pos_args[1][4] = ctx->i32zero; /* COMPR flag */
4336 pos_args[1][5] = ctx->f32zero; /* X */
4337 pos_args[1][6] = ctx->f32zero; /* Y */
4338 pos_args[1][7] = ctx->f32zero; /* Z */
4339 pos_args[1][8] = ctx->f32zero; /* W */
4340
4341 if (ctx->shader_info->vs.writes_pointsize == true)
4342 pos_args[1][5] = psize_value;
4343 }
4344 for (i = 0; i < 4; i++) {
4345 if (pos_args[i][0])
4346 num_pos_exports++;
4347 }
4348
4349 pos_idx = 0;
4350 for (i = 0; i < 4; i++) {
4351 if (!pos_args[i][0])
4352 continue;
4353
4354 /* Specify the target we are exporting */
4355 pos_args[i][3] = LLVMConstInt(ctx->i32, V_008DFC_SQ_EXP_POS + pos_idx++, false);
4356 if (pos_idx == num_pos_exports)
4357 pos_args[i][2] = ctx->i32one;
4358 emit_llvm_intrinsic(ctx,
4359 "llvm.SI.export",
4360 LLVMVoidTypeInContext(ctx->context),
4361 pos_args[i], 9, 0);
4362 }
4363
4364 ctx->shader_info->vs.pos_exports = num_pos_exports;
4365 ctx->shader_info->vs.param_exports = param_count;
4366 }
4367
4368 static void
4369 si_export_mrt_color(struct nir_to_llvm_context *ctx,
4370 LLVMValueRef *color, unsigned param, bool is_last)
4371 {
4372 LLVMValueRef args[9];
4373 /* Export */
4374 si_llvm_init_export_args(ctx, color, param,
4375 args);
4376
4377 if (is_last) {
4378 args[1] = ctx->i32one; /* whether the EXEC mask is valid */
4379 args[2] = ctx->i32one; /* DONE bit */
4380 } else if (args[0] == ctx->i32zero)
4381 return; /* unnecessary NULL export */
4382
4383 emit_llvm_intrinsic(ctx, "llvm.SI.export",
4384 ctx->voidt, args, 9, 0);
4385 }
4386
4387 static void
4388 si_export_mrt_z(struct nir_to_llvm_context *ctx,
4389 LLVMValueRef depth, LLVMValueRef stencil,
4390 LLVMValueRef samplemask)
4391 {
4392 LLVMValueRef args[9];
4393 unsigned mask = 0;
4394 args[1] = ctx->i32one; /* whether the EXEC mask is valid */
4395 args[2] = ctx->i32one; /* DONE bit */
4396 /* Specify the target we are exporting */
4397 args[3] = LLVMConstInt(ctx->i32, V_008DFC_SQ_EXP_MRTZ, false);
4398
4399 args[4] = ctx->i32zero; /* COMP flag */
4400 args[5] = LLVMGetUndef(ctx->f32); /* R, depth */
4401 args[6] = LLVMGetUndef(ctx->f32); /* G, stencil test val[0:7], stencil op val[8:15] */
4402 args[7] = LLVMGetUndef(ctx->f32); /* B, sample mask */
4403 args[8] = LLVMGetUndef(ctx->f32); /* A, alpha to mask */
4404
4405 if (depth) {
4406 args[5] = depth;
4407 mask |= 0x1;
4408 }
4409
4410 if (stencil) {
4411 args[6] = stencil;
4412 mask |= 0x2;
4413 }
4414
4415 if (samplemask) {
4416 args[7] = samplemask;
4417 mask |= 0x04;
4418 }
4419
4420 /* SI (except OLAND) has a bug that it only looks
4421 * at the X writemask component. */
4422 if (ctx->options->chip_class == SI &&
4423 ctx->options->family != CHIP_OLAND)
4424 mask |= 0x01;
4425
4426 args[0] = LLVMConstInt(ctx->i32, mask, false);
4427 emit_llvm_intrinsic(ctx, "llvm.SI.export",
4428 ctx->voidt, args, 9, 0);
4429 }
4430
4431 static void
4432 handle_fs_outputs_post(struct nir_to_llvm_context *ctx,
4433 struct nir_shader *nir)
4434 {
4435 unsigned index = 0;
4436 LLVMValueRef depth = NULL, stencil = NULL, samplemask = NULL;
4437
4438 for (unsigned i = 0; i < RADEON_LLVM_MAX_OUTPUTS; ++i) {
4439 LLVMValueRef values[4];
4440
4441 if (!(ctx->output_mask & (1ull << i)))
4442 continue;
4443
4444 if (i == FRAG_RESULT_DEPTH) {
4445 ctx->shader_info->fs.writes_z = true;
4446 depth = to_float(ctx, LLVMBuildLoad(ctx->builder,
4447 ctx->outputs[radeon_llvm_reg_index_soa(i, 0)], ""));
4448 } else if (i == FRAG_RESULT_STENCIL) {
4449 ctx->shader_info->fs.writes_stencil = true;
4450 stencil = to_float(ctx, LLVMBuildLoad(ctx->builder,
4451 ctx->outputs[radeon_llvm_reg_index_soa(i, 0)], ""));
4452 } else {
4453 bool last = false;
4454 for (unsigned j = 0; j < 4; j++)
4455 values[j] = to_float(ctx, LLVMBuildLoad(ctx->builder,
4456 ctx->outputs[radeon_llvm_reg_index_soa(i, j)], ""));
4457
4458 if (!ctx->shader_info->fs.writes_z && !ctx->shader_info->fs.writes_stencil)
4459 last = ctx->output_mask <= ((1ull << (i + 1)) - 1);
4460
4461 si_export_mrt_color(ctx, values, V_008DFC_SQ_EXP_MRT + index, last);
4462 index++;
4463 }
4464 }
4465
4466 if (depth || stencil)
4467 si_export_mrt_z(ctx, depth, stencil, samplemask);
4468 else if (!index)
4469 si_export_mrt_color(ctx, NULL, V_008DFC_SQ_EXP_NULL, true);
4470
4471 ctx->shader_info->fs.output_mask = index ? ((1ull << index) - 1) : 0;
4472 }
4473
4474 static void
4475 handle_shader_outputs_post(struct nir_to_llvm_context *ctx,
4476 struct nir_shader *nir)
4477 {
4478 switch (ctx->stage) {
4479 case MESA_SHADER_VERTEX:
4480 handle_vs_outputs_post(ctx, nir);
4481 break;
4482 case MESA_SHADER_FRAGMENT:
4483 handle_fs_outputs_post(ctx, nir);
4484 break;
4485 default:
4486 break;
4487 }
4488 }
4489
4490 static void
4491 handle_shared_compute_var(struct nir_to_llvm_context *ctx,
4492 struct nir_variable *variable, uint32_t *offset, int idx)
4493 {
4494 unsigned size = glsl_count_attribute_slots(variable->type, false);
4495 variable->data.driver_location = *offset;
4496 *offset += size;
4497 }
4498
4499 static void ac_llvm_finalize_module(struct nir_to_llvm_context * ctx)
4500 {
4501 LLVMPassManagerRef passmgr;
4502 /* Create the pass manager */
4503 passmgr = LLVMCreateFunctionPassManagerForModule(
4504 ctx->module);
4505
4506 /* This pass should eliminate all the load and store instructions */
4507 LLVMAddPromoteMemoryToRegisterPass(passmgr);
4508
4509 /* Add some optimization passes */
4510 LLVMAddScalarReplAggregatesPass(passmgr);
4511 LLVMAddLICMPass(passmgr);
4512 LLVMAddAggressiveDCEPass(passmgr);
4513 LLVMAddCFGSimplificationPass(passmgr);
4514 LLVMAddInstructionCombiningPass(passmgr);
4515
4516 /* Run the pass */
4517 LLVMInitializeFunctionPassManager(passmgr);
4518 LLVMRunFunctionPassManager(passmgr, ctx->main_function);
4519 LLVMFinalizeFunctionPassManager(passmgr);
4520
4521 LLVMDisposeBuilder(ctx->builder);
4522 LLVMDisposePassManager(passmgr);
4523 }
4524
4525 static
4526 LLVMModuleRef ac_translate_nir_to_llvm(LLVMTargetMachineRef tm,
4527 struct nir_shader *nir,
4528 struct ac_shader_variant_info *shader_info,
4529 const struct ac_nir_compiler_options *options)
4530 {
4531 struct nir_to_llvm_context ctx = {0};
4532 struct nir_function *func;
4533 ctx.options = options;
4534 ctx.shader_info = shader_info;
4535 ctx.context = LLVMContextCreate();
4536 ctx.module = LLVMModuleCreateWithNameInContext("shader", ctx.context);
4537
4538 ctx.has_ds_bpermute = ctx.options->chip_class >= VI;
4539
4540 memset(shader_info, 0, sizeof(*shader_info));
4541
4542 LLVMSetTarget(ctx.module, "amdgcn--");
4543 setup_types(&ctx);
4544
4545 ctx.builder = LLVMCreateBuilderInContext(ctx.context);
4546 ctx.stage = nir->stage;
4547
4548 create_function(&ctx, nir);
4549
4550 if (nir->stage == MESA_SHADER_COMPUTE) {
4551 int num_shared = 0;
4552 nir_foreach_variable(variable, &nir->shared)
4553 num_shared++;
4554 if (num_shared) {
4555 int idx = 0;
4556 uint32_t shared_size = 0;
4557 LLVMValueRef var;
4558 LLVMTypeRef i8p = LLVMPointerType(ctx.i8, LOCAL_ADDR_SPACE);
4559 nir_foreach_variable(variable, &nir->shared) {
4560 handle_shared_compute_var(&ctx, variable, &shared_size, idx);
4561 idx++;
4562 }
4563
4564 shared_size *= 4;
4565 var = LLVMAddGlobalInAddressSpace(ctx.module,
4566 LLVMArrayType(ctx.i8, shared_size),
4567 "compute_lds",
4568 LOCAL_ADDR_SPACE);
4569 LLVMSetAlignment(var, 4);
4570 ctx.shared_memory = LLVMBuildBitCast(ctx.builder, var, i8p, "");
4571 }
4572 }
4573
4574 nir_foreach_variable(variable, &nir->inputs)
4575 handle_shader_input_decl(&ctx, variable);
4576
4577 if (nir->stage == MESA_SHADER_FRAGMENT)
4578 handle_fs_inputs_pre(&ctx, nir);
4579
4580 nir_foreach_variable(variable, &nir->outputs)
4581 handle_shader_output_decl(&ctx, variable);
4582
4583 ctx.defs = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
4584 _mesa_key_pointer_equal);
4585 ctx.phis = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
4586 _mesa_key_pointer_equal);
4587
4588 func = (struct nir_function *)exec_list_get_head(&nir->functions);
4589
4590 setup_locals(&ctx, func);
4591
4592 visit_cf_list(&ctx, &func->impl->body);
4593 phi_post_pass(&ctx);
4594
4595 handle_shader_outputs_post(&ctx, nir);
4596 LLVMBuildRetVoid(ctx.builder);
4597
4598 ac_llvm_finalize_module(&ctx);
4599 free(ctx.locals);
4600 ralloc_free(ctx.defs);
4601 ralloc_free(ctx.phis);
4602
4603 return ctx.module;
4604 }
4605
4606 static void ac_diagnostic_handler(LLVMDiagnosticInfoRef di, void *context)
4607 {
4608 unsigned *retval = (unsigned *)context;
4609 LLVMDiagnosticSeverity severity = LLVMGetDiagInfoSeverity(di);
4610 char *description = LLVMGetDiagInfoDescription(di);
4611
4612 if (severity == LLVMDSError) {
4613 *retval = 1;
4614 fprintf(stderr, "LLVM triggered Diagnostic Handler: %s\n",
4615 description);
4616 }
4617
4618 LLVMDisposeMessage(description);
4619 }
4620
4621 static unsigned ac_llvm_compile(LLVMModuleRef M,
4622 struct ac_shader_binary *binary,
4623 LLVMTargetMachineRef tm)
4624 {
4625 unsigned retval = 0;
4626 char *err;
4627 LLVMContextRef llvm_ctx;
4628 LLVMMemoryBufferRef out_buffer;
4629 unsigned buffer_size;
4630 const char *buffer_data;
4631 LLVMBool mem_err;
4632
4633 /* Setup Diagnostic Handler*/
4634 llvm_ctx = LLVMGetModuleContext(M);
4635
4636 LLVMContextSetDiagnosticHandler(llvm_ctx, ac_diagnostic_handler,
4637 &retval);
4638
4639 /* Compile IR*/
4640 mem_err = LLVMTargetMachineEmitToMemoryBuffer(tm, M, LLVMObjectFile,
4641 &err, &out_buffer);
4642
4643 /* Process Errors/Warnings */
4644 if (mem_err) {
4645 fprintf(stderr, "%s: %s", __FUNCTION__, err);
4646 free(err);
4647 retval = 1;
4648 goto out;
4649 }
4650
4651 /* Extract Shader Code*/
4652 buffer_size = LLVMGetBufferSize(out_buffer);
4653 buffer_data = LLVMGetBufferStart(out_buffer);
4654
4655 ac_elf_read(buffer_data, buffer_size, binary);
4656
4657 /* Clean up */
4658 LLVMDisposeMemoryBuffer(out_buffer);
4659
4660 out:
4661 return retval;
4662 }
4663
4664 void ac_compile_nir_shader(LLVMTargetMachineRef tm,
4665 struct ac_shader_binary *binary,
4666 struct ac_shader_config *config,
4667 struct ac_shader_variant_info *shader_info,
4668 struct nir_shader *nir,
4669 const struct ac_nir_compiler_options *options,
4670 bool dump_shader)
4671 {
4672
4673 LLVMModuleRef llvm_module = ac_translate_nir_to_llvm(tm, nir, shader_info,
4674 options);
4675 if (dump_shader)
4676 LLVMDumpModule(llvm_module);
4677
4678 memset(binary, 0, sizeof(*binary));
4679 int v = ac_llvm_compile(llvm_module, binary, tm);
4680 if (v) {
4681 fprintf(stderr, "compile failed\n");
4682 }
4683
4684 if (dump_shader)
4685 fprintf(stderr, "disasm:\n%s\n", binary->disasm_string);
4686
4687 ac_shader_binary_read_config(binary, config, 0);
4688
4689 LLVMContextRef ctx = LLVMGetModuleContext(llvm_module);
4690 LLVMDisposeModule(llvm_module);
4691 LLVMContextDispose(ctx);
4692
4693 if (nir->stage == MESA_SHADER_FRAGMENT) {
4694 shader_info->num_input_vgprs = 0;
4695 if (G_0286CC_PERSP_SAMPLE_ENA(config->spi_ps_input_addr))
4696 shader_info->num_input_vgprs += 2;
4697 if (G_0286CC_PERSP_CENTER_ENA(config->spi_ps_input_addr))
4698 shader_info->num_input_vgprs += 2;
4699 if (G_0286CC_PERSP_CENTROID_ENA(config->spi_ps_input_addr))
4700 shader_info->num_input_vgprs += 2;
4701 if (G_0286CC_PERSP_PULL_MODEL_ENA(config->spi_ps_input_addr))
4702 shader_info->num_input_vgprs += 3;
4703 if (G_0286CC_LINEAR_SAMPLE_ENA(config->spi_ps_input_addr))
4704 shader_info->num_input_vgprs += 2;
4705 if (G_0286CC_LINEAR_CENTER_ENA(config->spi_ps_input_addr))
4706 shader_info->num_input_vgprs += 2;
4707 if (G_0286CC_LINEAR_CENTROID_ENA(config->spi_ps_input_addr))
4708 shader_info->num_input_vgprs += 2;
4709 if (G_0286CC_LINE_STIPPLE_TEX_ENA(config->spi_ps_input_addr))
4710 shader_info->num_input_vgprs += 1;
4711 if (G_0286CC_POS_X_FLOAT_ENA(config->spi_ps_input_addr))
4712 shader_info->num_input_vgprs += 1;
4713 if (G_0286CC_POS_Y_FLOAT_ENA(config->spi_ps_input_addr))
4714 shader_info->num_input_vgprs += 1;
4715 if (G_0286CC_POS_Z_FLOAT_ENA(config->spi_ps_input_addr))
4716 shader_info->num_input_vgprs += 1;
4717 if (G_0286CC_POS_W_FLOAT_ENA(config->spi_ps_input_addr))
4718 shader_info->num_input_vgprs += 1;
4719 if (G_0286CC_FRONT_FACE_ENA(config->spi_ps_input_addr))
4720 shader_info->num_input_vgprs += 1;
4721 if (G_0286CC_ANCILLARY_ENA(config->spi_ps_input_addr))
4722 shader_info->num_input_vgprs += 1;
4723 if (G_0286CC_SAMPLE_COVERAGE_ENA(config->spi_ps_input_addr))
4724 shader_info->num_input_vgprs += 1;
4725 if (G_0286CC_POS_FIXED_PT_ENA(config->spi_ps_input_addr))
4726 shader_info->num_input_vgprs += 1;
4727 }
4728 config->num_vgprs = MAX2(config->num_vgprs, shader_info->num_input_vgprs);
4729
4730 /* +3 for scratch wave offset and VCC */
4731 config->num_sgprs = MAX2(config->num_sgprs,
4732 shader_info->num_input_sgprs + 3);
4733 if (nir->stage == MESA_SHADER_COMPUTE) {
4734 for (int i = 0; i < 3; ++i)
4735 shader_info->cs.block_size[i] = nir->info->cs.local_size[i];
4736 }
4737
4738 if (nir->stage == MESA_SHADER_FRAGMENT)
4739 shader_info->fs.early_fragment_test = nir->info->fs.early_fragment_tests;
4740 }