ac: add ac_build_{struct,raw}_tbuffer_store() helpers
[mesa.git] / src / amd / common / ac_llvm_build.h
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
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
17 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18 * USE OR OTHER DEALINGS IN THE SOFTWARE.
19 *
20 * The above copyright notice and this permission notice (including the
21 * next paragraph) shall be included in all copies or substantial portions
22 * of the Software.
23 *
24 */
25 #ifndef AC_LLVM_BUILD_H
26 #define AC_LLVM_BUILD_H
27
28 #include <stdbool.h>
29 #include <llvm-c/TargetMachine.h>
30 #include "compiler/nir/nir.h"
31 #include "amd_family.h"
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36
37 enum {
38 AC_ADDR_SPACE_FLAT = 0, /* Slower than global. */
39 AC_ADDR_SPACE_GLOBAL = 1,
40 AC_ADDR_SPACE_GDS = 2,
41 AC_ADDR_SPACE_LDS = 3,
42 AC_ADDR_SPACE_CONST = 4, /* Global allowing SMEM. */
43 AC_ADDR_SPACE_CONST_32BIT = 6, /* same as CONST, but the pointer type has 32 bits */
44 };
45
46 /* Combine these with & instead of |. */
47 #define NOOP_WAITCNT 0xcf7f
48 #define LGKM_CNT 0xc07f
49 #define EXP_CNT 0xcf0f
50 #define VM_CNT 0x0f70 /* On GFX9, vmcnt has 6 bits in [0:3] and [14:15] */
51
52 struct ac_llvm_flow;
53
54 struct ac_llvm_context {
55 LLVMContextRef context;
56 LLVMModuleRef module;
57 LLVMBuilderRef builder;
58
59 LLVMTypeRef voidt;
60 LLVMTypeRef i1;
61 LLVMTypeRef i8;
62 LLVMTypeRef i16;
63 LLVMTypeRef i32;
64 LLVMTypeRef i64;
65 LLVMTypeRef intptr;
66 LLVMTypeRef f16;
67 LLVMTypeRef f32;
68 LLVMTypeRef f64;
69 LLVMTypeRef v2i16;
70 LLVMTypeRef v2i32;
71 LLVMTypeRef v3i32;
72 LLVMTypeRef v4i32;
73 LLVMTypeRef v2f32;
74 LLVMTypeRef v4f32;
75 LLVMTypeRef v8i32;
76
77 LLVMValueRef i16_0;
78 LLVMValueRef i16_1;
79 LLVMValueRef i32_0;
80 LLVMValueRef i32_1;
81 LLVMValueRef i64_0;
82 LLVMValueRef i64_1;
83 LLVMValueRef f32_0;
84 LLVMValueRef f32_1;
85 LLVMValueRef f64_0;
86 LLVMValueRef f64_1;
87 LLVMValueRef i1true;
88 LLVMValueRef i1false;
89
90 struct ac_llvm_flow *flow;
91 unsigned flow_depth;
92 unsigned flow_depth_max;
93
94 unsigned range_md_kind;
95 unsigned invariant_load_md_kind;
96 unsigned uniform_md_kind;
97 unsigned fpmath_md_kind;
98 LLVMValueRef fpmath_md_2p5_ulp;
99 LLVMValueRef empty_md;
100
101 enum chip_class chip_class;
102 enum radeon_family family;
103
104 LLVMValueRef lds;
105 };
106
107 void
108 ac_llvm_context_init(struct ac_llvm_context *ctx,
109 enum chip_class chip_class, enum radeon_family family);
110
111 void
112 ac_llvm_context_dispose(struct ac_llvm_context *ctx);
113
114 int
115 ac_get_llvm_num_components(LLVMValueRef value);
116
117 int
118 ac_get_elem_bits(struct ac_llvm_context *ctx, LLVMTypeRef type);
119
120 LLVMValueRef
121 ac_llvm_extract_elem(struct ac_llvm_context *ac,
122 LLVMValueRef value,
123 int index);
124
125 unsigned ac_get_type_size(LLVMTypeRef type);
126
127 LLVMTypeRef ac_to_integer_type(struct ac_llvm_context *ctx, LLVMTypeRef t);
128 LLVMValueRef ac_to_integer(struct ac_llvm_context *ctx, LLVMValueRef v);
129 LLVMValueRef ac_to_integer_or_pointer(struct ac_llvm_context *ctx, LLVMValueRef v);
130 LLVMTypeRef ac_to_float_type(struct ac_llvm_context *ctx, LLVMTypeRef t);
131 LLVMValueRef ac_to_float(struct ac_llvm_context *ctx, LLVMValueRef v);
132
133 LLVMValueRef
134 ac_build_intrinsic(struct ac_llvm_context *ctx, const char *name,
135 LLVMTypeRef return_type, LLVMValueRef *params,
136 unsigned param_count, unsigned attrib_mask);
137
138 void ac_build_type_name_for_intr(LLVMTypeRef type, char *buf, unsigned bufsize);
139
140 LLVMValueRef
141 ac_build_phi(struct ac_llvm_context *ctx, LLVMTypeRef type,
142 unsigned count_incoming, LLVMValueRef *values,
143 LLVMBasicBlockRef *blocks);
144
145 void ac_build_s_barrier(struct ac_llvm_context *ctx);
146 void ac_build_optimization_barrier(struct ac_llvm_context *ctx,
147 LLVMValueRef *pvgpr);
148
149 LLVMValueRef ac_build_shader_clock(struct ac_llvm_context *ctx);
150
151 LLVMValueRef ac_build_ballot(struct ac_llvm_context *ctx, LLVMValueRef value);
152
153 LLVMValueRef ac_build_vote_all(struct ac_llvm_context *ctx, LLVMValueRef value);
154
155 LLVMValueRef ac_build_vote_any(struct ac_llvm_context *ctx, LLVMValueRef value);
156
157 LLVMValueRef ac_build_vote_eq(struct ac_llvm_context *ctx, LLVMValueRef value);
158
159 LLVMValueRef
160 ac_build_varying_gather_values(struct ac_llvm_context *ctx, LLVMValueRef *values,
161 unsigned value_count, unsigned component);
162
163 LLVMValueRef
164 ac_build_gather_values_extended(struct ac_llvm_context *ctx,
165 LLVMValueRef *values,
166 unsigned value_count,
167 unsigned value_stride,
168 bool load,
169 bool always_vector);
170 LLVMValueRef
171 ac_build_gather_values(struct ac_llvm_context *ctx,
172 LLVMValueRef *values,
173 unsigned value_count);
174 LLVMValueRef ac_build_expand_to_vec4(struct ac_llvm_context *ctx,
175 LLVMValueRef value,
176 unsigned num_channels);
177 LLVMValueRef ac_build_round(struct ac_llvm_context *ctx, LLVMValueRef value);
178
179 LLVMValueRef
180 ac_build_fdiv(struct ac_llvm_context *ctx,
181 LLVMValueRef num,
182 LLVMValueRef den);
183
184 LLVMValueRef ac_build_fast_udiv(struct ac_llvm_context *ctx,
185 LLVMValueRef num,
186 LLVMValueRef multiplier,
187 LLVMValueRef pre_shift,
188 LLVMValueRef post_shift,
189 LLVMValueRef increment);
190 LLVMValueRef ac_build_fast_udiv_nuw(struct ac_llvm_context *ctx,
191 LLVMValueRef num,
192 LLVMValueRef multiplier,
193 LLVMValueRef pre_shift,
194 LLVMValueRef post_shift,
195 LLVMValueRef increment);
196 LLVMValueRef ac_build_fast_udiv_u31_d_not_one(struct ac_llvm_context *ctx,
197 LLVMValueRef num,
198 LLVMValueRef multiplier,
199 LLVMValueRef post_shift);
200
201 void
202 ac_prepare_cube_coords(struct ac_llvm_context *ctx,
203 bool is_deriv, bool is_array, bool is_lod,
204 LLVMValueRef *coords_arg,
205 LLVMValueRef *derivs_arg);
206
207
208 LLVMValueRef
209 ac_build_fs_interp(struct ac_llvm_context *ctx,
210 LLVMValueRef llvm_chan,
211 LLVMValueRef attr_number,
212 LLVMValueRef params,
213 LLVMValueRef i,
214 LLVMValueRef j);
215
216 LLVMValueRef
217 ac_build_fs_interp_f16(struct ac_llvm_context *ctx,
218 LLVMValueRef llvm_chan,
219 LLVMValueRef attr_number,
220 LLVMValueRef params,
221 LLVMValueRef i,
222 LLVMValueRef j);
223
224 LLVMValueRef
225 ac_build_fs_interp_mov(struct ac_llvm_context *ctx,
226 LLVMValueRef parameter,
227 LLVMValueRef llvm_chan,
228 LLVMValueRef attr_number,
229 LLVMValueRef params);
230
231 LLVMValueRef
232 ac_build_gep_ptr(struct ac_llvm_context *ctx,
233 LLVMValueRef base_ptr,
234 LLVMValueRef index);
235
236 LLVMValueRef
237 ac_build_gep0(struct ac_llvm_context *ctx,
238 LLVMValueRef base_ptr,
239 LLVMValueRef index);
240 LLVMValueRef ac_build_pointer_add(struct ac_llvm_context *ctx, LLVMValueRef ptr,
241 LLVMValueRef index);
242
243 void
244 ac_build_indexed_store(struct ac_llvm_context *ctx,
245 LLVMValueRef base_ptr, LLVMValueRef index,
246 LLVMValueRef value);
247
248 LLVMValueRef ac_build_load(struct ac_llvm_context *ctx, LLVMValueRef base_ptr,
249 LLVMValueRef index);
250 LLVMValueRef ac_build_load_invariant(struct ac_llvm_context *ctx,
251 LLVMValueRef base_ptr, LLVMValueRef index);
252 LLVMValueRef ac_build_load_to_sgpr(struct ac_llvm_context *ctx,
253 LLVMValueRef base_ptr, LLVMValueRef index);
254 LLVMValueRef ac_build_load_to_sgpr_uint_wraparound(struct ac_llvm_context *ctx,
255 LLVMValueRef base_ptr, LLVMValueRef index);
256
257 void
258 ac_build_buffer_store_dword(struct ac_llvm_context *ctx,
259 LLVMValueRef rsrc,
260 LLVMValueRef vdata,
261 unsigned num_channels,
262 LLVMValueRef voffset,
263 LLVMValueRef soffset,
264 unsigned inst_offset,
265 bool glc,
266 bool slc,
267 bool writeonly_memory,
268 bool swizzle_enable_hint);
269
270 void
271 ac_build_buffer_store_format(struct ac_llvm_context *ctx,
272 LLVMValueRef rsrc,
273 LLVMValueRef data,
274 LLVMValueRef vindex,
275 LLVMValueRef voffset,
276 unsigned num_channels,
277 bool glc,
278 bool writeonly_memory);
279
280 LLVMValueRef
281 ac_build_buffer_load(struct ac_llvm_context *ctx,
282 LLVMValueRef rsrc,
283 int num_channels,
284 LLVMValueRef vindex,
285 LLVMValueRef voffset,
286 LLVMValueRef soffset,
287 unsigned inst_offset,
288 unsigned glc,
289 unsigned slc,
290 bool can_speculate,
291 bool allow_smem);
292
293 LLVMValueRef ac_build_buffer_load_format(struct ac_llvm_context *ctx,
294 LLVMValueRef rsrc,
295 LLVMValueRef vindex,
296 LLVMValueRef voffset,
297 unsigned num_channels,
298 bool glc,
299 bool can_speculate);
300
301 /* load_format that handles the stride & element count better if idxen is
302 * disabled by LLVM. */
303 LLVMValueRef ac_build_buffer_load_format_gfx9_safe(struct ac_llvm_context *ctx,
304 LLVMValueRef rsrc,
305 LLVMValueRef vindex,
306 LLVMValueRef voffset,
307 unsigned num_channels,
308 bool glc,
309 bool can_speculate);
310
311 LLVMValueRef
312 ac_build_tbuffer_load_short(struct ac_llvm_context *ctx,
313 LLVMValueRef rsrc,
314 LLVMValueRef voffset,
315 LLVMValueRef soffset,
316 LLVMValueRef immoffset,
317 bool glc);
318
319 LLVMValueRef
320 ac_build_struct_tbuffer_load(struct ac_llvm_context *ctx,
321 LLVMValueRef rsrc,
322 LLVMValueRef vindex,
323 LLVMValueRef voffset,
324 LLVMValueRef soffset,
325 LLVMValueRef immoffset,
326 unsigned num_channels,
327 unsigned dfmt,
328 unsigned nfmt,
329 bool glc,
330 bool slc,
331 bool can_speculate);
332
333 LLVMValueRef
334 ac_build_raw_tbuffer_load(struct ac_llvm_context *ctx,
335 LLVMValueRef rsrc,
336 LLVMValueRef voffset,
337 LLVMValueRef soffset,
338 LLVMValueRef immoffset,
339 unsigned num_channels,
340 unsigned dfmt,
341 unsigned nfmt,
342 bool glc,
343 bool slc,
344 bool can_speculate);
345
346 void
347 ac_build_struct_tbuffer_store(struct ac_llvm_context *ctx,
348 LLVMValueRef rsrc,
349 LLVMValueRef vdata,
350 LLVMValueRef vindex,
351 LLVMValueRef voffset,
352 LLVMValueRef soffset,
353 LLVMValueRef immoffset,
354 unsigned num_channels,
355 unsigned dfmt,
356 unsigned nfmt,
357 bool glc,
358 bool slc,
359 bool writeonly_memory);
360
361 void
362 ac_build_raw_tbuffer_store(struct ac_llvm_context *ctx,
363 LLVMValueRef rsrc,
364 LLVMValueRef vdata,
365 LLVMValueRef voffset,
366 LLVMValueRef soffset,
367 LLVMValueRef immoffset,
368 unsigned num_channels,
369 unsigned dfmt,
370 unsigned nfmt,
371 bool glc,
372 bool slc,
373 bool writeonly_memory);
374
375 LLVMValueRef
376 ac_get_thread_id(struct ac_llvm_context *ctx);
377
378 #define AC_TID_MASK_TOP_LEFT 0xfffffffc
379 #define AC_TID_MASK_TOP 0xfffffffd
380 #define AC_TID_MASK_LEFT 0xfffffffe
381
382 LLVMValueRef
383 ac_build_ddxy(struct ac_llvm_context *ctx,
384 uint32_t mask,
385 int idx,
386 LLVMValueRef val);
387
388 #define AC_SENDMSG_GS 2
389 #define AC_SENDMSG_GS_DONE 3
390
391 #define AC_SENDMSG_GS_OP_NOP (0 << 4)
392 #define AC_SENDMSG_GS_OP_CUT (1 << 4)
393 #define AC_SENDMSG_GS_OP_EMIT (2 << 4)
394 #define AC_SENDMSG_GS_OP_EMIT_CUT (3 << 4)
395
396 void ac_build_sendmsg(struct ac_llvm_context *ctx,
397 uint32_t msg,
398 LLVMValueRef wave_id);
399
400 LLVMValueRef ac_build_imsb(struct ac_llvm_context *ctx,
401 LLVMValueRef arg,
402 LLVMTypeRef dst_type);
403
404 LLVMValueRef ac_build_umsb(struct ac_llvm_context *ctx,
405 LLVMValueRef arg,
406 LLVMTypeRef dst_type);
407 LLVMValueRef ac_build_fmin(struct ac_llvm_context *ctx, LLVMValueRef a,
408 LLVMValueRef b);
409 LLVMValueRef ac_build_fmax(struct ac_llvm_context *ctx, LLVMValueRef a,
410 LLVMValueRef b);
411 LLVMValueRef ac_build_imin(struct ac_llvm_context *ctx, LLVMValueRef a,
412 LLVMValueRef b);
413 LLVMValueRef ac_build_imax(struct ac_llvm_context *ctx, LLVMValueRef a,
414 LLVMValueRef b);
415 LLVMValueRef ac_build_umin(struct ac_llvm_context *ctx, LLVMValueRef a, LLVMValueRef b);
416 LLVMValueRef ac_build_clamp(struct ac_llvm_context *ctx, LLVMValueRef value);
417
418 struct ac_export_args {
419 LLVMValueRef out[4];
420 unsigned target;
421 unsigned enabled_channels;
422 bool compr;
423 bool done;
424 bool valid_mask;
425 };
426
427 void ac_build_export(struct ac_llvm_context *ctx, struct ac_export_args *a);
428
429 void ac_build_export_null(struct ac_llvm_context *ctx);
430
431 enum ac_image_opcode {
432 ac_image_sample,
433 ac_image_gather4,
434 ac_image_load,
435 ac_image_load_mip,
436 ac_image_store,
437 ac_image_store_mip,
438 ac_image_get_lod,
439 ac_image_get_resinfo,
440 ac_image_atomic,
441 ac_image_atomic_cmpswap,
442 };
443
444 enum ac_atomic_op {
445 ac_atomic_swap,
446 ac_atomic_add,
447 ac_atomic_sub,
448 ac_atomic_smin,
449 ac_atomic_umin,
450 ac_atomic_smax,
451 ac_atomic_umax,
452 ac_atomic_and,
453 ac_atomic_or,
454 ac_atomic_xor,
455 };
456
457 enum ac_image_dim {
458 ac_image_1d,
459 ac_image_2d,
460 ac_image_3d,
461 ac_image_cube, // includes cube arrays
462 ac_image_1darray,
463 ac_image_2darray,
464 ac_image_2dmsaa,
465 ac_image_2darraymsaa,
466 };
467
468 /* These cache policy bits match the definitions used by the LLVM intrinsics. */
469 enum ac_image_cache_policy {
470 ac_glc = 1 << 0,
471 ac_slc = 1 << 1,
472 };
473
474 struct ac_image_args {
475 enum ac_image_opcode opcode : 4;
476 enum ac_atomic_op atomic : 4; /* for the ac_image_atomic opcode */
477 enum ac_image_dim dim : 3;
478 unsigned dmask : 4;
479 unsigned cache_policy : 2;
480 bool unorm : 1;
481 bool level_zero : 1;
482 unsigned attributes; /* additional call-site specific AC_FUNC_ATTRs */
483
484 LLVMValueRef resource;
485 LLVMValueRef sampler;
486 LLVMValueRef data[2]; /* data[0] is source data (vector); data[1] is cmp for cmpswap */
487 LLVMValueRef offset;
488 LLVMValueRef bias;
489 LLVMValueRef compare;
490 LLVMValueRef derivs[6];
491 LLVMValueRef coords[4];
492 LLVMValueRef lod; // also used by ac_image_get_resinfo
493 };
494
495 LLVMValueRef ac_build_image_opcode(struct ac_llvm_context *ctx,
496 struct ac_image_args *a);
497 LLVMValueRef ac_build_cvt_pkrtz_f16(struct ac_llvm_context *ctx,
498 LLVMValueRef args[2]);
499 LLVMValueRef ac_build_cvt_pknorm_i16(struct ac_llvm_context *ctx,
500 LLVMValueRef args[2]);
501 LLVMValueRef ac_build_cvt_pknorm_u16(struct ac_llvm_context *ctx,
502 LLVMValueRef args[2]);
503 LLVMValueRef ac_build_cvt_pk_i16(struct ac_llvm_context *ctx,
504 LLVMValueRef args[2], unsigned bits, bool hi);
505 LLVMValueRef ac_build_cvt_pk_u16(struct ac_llvm_context *ctx,
506 LLVMValueRef args[2], unsigned bits, bool hi);
507 LLVMValueRef ac_build_wqm_vote(struct ac_llvm_context *ctx, LLVMValueRef i1);
508 void ac_build_kill_if_false(struct ac_llvm_context *ctx, LLVMValueRef i1);
509 LLVMValueRef ac_build_bfe(struct ac_llvm_context *ctx, LLVMValueRef input,
510 LLVMValueRef offset, LLVMValueRef width,
511 bool is_signed);
512 LLVMValueRef ac_build_imad(struct ac_llvm_context *ctx, LLVMValueRef s0,
513 LLVMValueRef s1, LLVMValueRef s2);
514 LLVMValueRef ac_build_fmad(struct ac_llvm_context *ctx, LLVMValueRef s0,
515 LLVMValueRef s1, LLVMValueRef s2);
516
517 void ac_build_waitcnt(struct ac_llvm_context *ctx, unsigned simm16);
518
519 LLVMValueRef ac_build_fract(struct ac_llvm_context *ctx, LLVMValueRef src0,
520 unsigned bitsize);
521
522 LLVMValueRef ac_build_isign(struct ac_llvm_context *ctx, LLVMValueRef src0,
523 unsigned bitsize);
524
525 LLVMValueRef ac_build_fsign(struct ac_llvm_context *ctx, LLVMValueRef src0,
526 unsigned bitsize);
527
528 LLVMValueRef ac_build_bit_count(struct ac_llvm_context *ctx, LLVMValueRef src0);
529
530 LLVMValueRef ac_build_bitfield_reverse(struct ac_llvm_context *ctx,
531 LLVMValueRef src0);
532
533 void ac_optimize_vs_outputs(struct ac_llvm_context *ac,
534 LLVMValueRef main_fn,
535 uint8_t *vs_output_param_offset,
536 uint32_t num_outputs,
537 uint8_t *num_param_exports);
538 void ac_init_exec_full_mask(struct ac_llvm_context *ctx);
539
540 void ac_declare_lds_as_pointer(struct ac_llvm_context *ac);
541 LLVMValueRef ac_lds_load(struct ac_llvm_context *ctx,
542 LLVMValueRef dw_addr);
543 void ac_lds_store(struct ac_llvm_context *ctx,
544 LLVMValueRef dw_addr, LLVMValueRef value);
545
546 LLVMValueRef ac_find_lsb(struct ac_llvm_context *ctx,
547 LLVMTypeRef dst_type,
548 LLVMValueRef src0);
549
550 LLVMTypeRef ac_array_in_const_addr_space(LLVMTypeRef elem_type);
551 LLVMTypeRef ac_array_in_const32_addr_space(LLVMTypeRef elem_type);
552
553 void ac_build_bgnloop(struct ac_llvm_context *ctx, int lable_id);
554 void ac_build_break(struct ac_llvm_context *ctx);
555 void ac_build_continue(struct ac_llvm_context *ctx);
556 void ac_build_else(struct ac_llvm_context *ctx, int lable_id);
557 void ac_build_endif(struct ac_llvm_context *ctx, int lable_id);
558 void ac_build_endloop(struct ac_llvm_context *ctx, int lable_id);
559 void ac_build_ifcc(struct ac_llvm_context *ctx, LLVMValueRef cond, int label_id);
560 void ac_build_if(struct ac_llvm_context *ctx, LLVMValueRef value,
561 int lable_id);
562 void ac_build_uif(struct ac_llvm_context *ctx, LLVMValueRef value,
563 int lable_id);
564
565 LLVMValueRef ac_build_alloca(struct ac_llvm_context *ac, LLVMTypeRef type,
566 const char *name);
567 LLVMValueRef ac_build_alloca_undef(struct ac_llvm_context *ac, LLVMTypeRef type,
568 const char *name);
569
570 LLVMValueRef ac_cast_ptr(struct ac_llvm_context *ctx, LLVMValueRef ptr,
571 LLVMTypeRef type);
572
573 LLVMValueRef ac_trim_vector(struct ac_llvm_context *ctx, LLVMValueRef value,
574 unsigned count);
575
576 LLVMValueRef ac_unpack_param(struct ac_llvm_context *ctx, LLVMValueRef param,
577 unsigned rshift, unsigned bitwidth);
578
579 void ac_apply_fmask_to_sample(struct ac_llvm_context *ac, LLVMValueRef fmask,
580 LLVMValueRef *addr, bool is_array_tex);
581
582 LLVMValueRef
583 ac_build_ds_swizzle(struct ac_llvm_context *ctx, LLVMValueRef src, unsigned mask);
584
585 LLVMValueRef
586 ac_build_readlane(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef lane);
587
588 LLVMValueRef
589 ac_build_writelane(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef value, LLVMValueRef lane);
590
591 LLVMValueRef
592 ac_build_mbcnt(struct ac_llvm_context *ctx, LLVMValueRef mask);
593
594 LLVMValueRef
595 ac_build_inclusive_scan(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op);
596
597 LLVMValueRef
598 ac_build_exclusive_scan(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op);
599
600 LLVMValueRef
601 ac_build_reduce(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op, unsigned cluster_size);
602
603 /**
604 * Common arguments for a scan/reduce operation that accumulates per-wave
605 * values across an entire workgroup, while respecting the order of waves.
606 */
607 struct ac_wg_scan {
608 bool enable_reduce;
609 bool enable_exclusive;
610 bool enable_inclusive;
611 nir_op op;
612 LLVMValueRef src; /* clobbered! */
613 LLVMValueRef result_reduce;
614 LLVMValueRef result_exclusive;
615 LLVMValueRef result_inclusive;
616 LLVMValueRef extra;
617 LLVMValueRef waveidx;
618 LLVMValueRef numwaves; /* only needed for "reduce" operations */
619
620 /* T addrspace(LDS) pointer to the same type as value, at least maxwaves entries */
621 LLVMValueRef scratch;
622 unsigned maxwaves;
623 };
624
625 void
626 ac_build_wg_wavescan_top(struct ac_llvm_context *ctx, struct ac_wg_scan *ws);
627 void
628 ac_build_wg_wavescan_bottom(struct ac_llvm_context *ctx, struct ac_wg_scan *ws);
629 void
630 ac_build_wg_wavescan(struct ac_llvm_context *ctx, struct ac_wg_scan *ws);
631
632 void
633 ac_build_wg_scan_top(struct ac_llvm_context *ctx, struct ac_wg_scan *ws);
634 void
635 ac_build_wg_scan_bottom(struct ac_llvm_context *ctx, struct ac_wg_scan *ws);
636 void
637 ac_build_wg_scan(struct ac_llvm_context *ctx, struct ac_wg_scan *ws);
638
639 LLVMValueRef
640 ac_build_quad_swizzle(struct ac_llvm_context *ctx, LLVMValueRef src,
641 unsigned lane0, unsigned lane1, unsigned lane2, unsigned lane3);
642
643 LLVMValueRef
644 ac_build_shuffle(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef index);
645
646 #ifdef __cplusplus
647 }
648 #endif
649
650 #endif