radeonsi: move si_emit_ballot() to ac
[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
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 struct ac_llvm_context {
36 LLVMContextRef context;
37 LLVMModuleRef module;
38 LLVMBuilderRef builder;
39
40 LLVMTypeRef voidt;
41 LLVMTypeRef i1;
42 LLVMTypeRef i8;
43 LLVMTypeRef i16;
44 LLVMTypeRef i32;
45 LLVMTypeRef i64;
46 LLVMTypeRef f16;
47 LLVMTypeRef f32;
48 LLVMTypeRef f64;
49 LLVMTypeRef v4i32;
50 LLVMTypeRef v4f32;
51 LLVMTypeRef v8i32;
52
53 LLVMValueRef i32_0;
54 LLVMValueRef i32_1;
55 LLVMValueRef f32_0;
56 LLVMValueRef f32_1;
57
58 unsigned range_md_kind;
59 unsigned invariant_load_md_kind;
60 unsigned uniform_md_kind;
61 unsigned fpmath_md_kind;
62 LLVMValueRef fpmath_md_2p5_ulp;
63 LLVMValueRef empty_md;
64 };
65
66 void
67 ac_llvm_context_init(struct ac_llvm_context *ctx, LLVMContextRef context);
68
69 unsigned ac_get_type_size(LLVMTypeRef type);
70
71 LLVMValueRef
72 ac_build_intrinsic(struct ac_llvm_context *ctx, const char *name,
73 LLVMTypeRef return_type, LLVMValueRef *params,
74 unsigned param_count, unsigned attrib_mask);
75
76 void ac_build_type_name_for_intr(LLVMTypeRef type, char *buf, unsigned bufsize);
77
78 void ac_build_optimization_barrier(struct ac_llvm_context *ctx,
79 LLVMValueRef *pvgpr);
80
81 LLVMValueRef ac_build_ballot(struct ac_llvm_context *ctx, LLVMValueRef value);
82
83 LLVMValueRef
84 ac_build_gather_values_extended(struct ac_llvm_context *ctx,
85 LLVMValueRef *values,
86 unsigned value_count,
87 unsigned value_stride,
88 bool load,
89 bool always_vector);
90 LLVMValueRef
91 ac_build_gather_values(struct ac_llvm_context *ctx,
92 LLVMValueRef *values,
93 unsigned value_count);
94
95 LLVMValueRef
96 ac_build_fdiv(struct ac_llvm_context *ctx,
97 LLVMValueRef num,
98 LLVMValueRef den);
99
100 void
101 ac_prepare_cube_coords(struct ac_llvm_context *ctx,
102 bool is_deriv, bool is_array,
103 LLVMValueRef *coords_arg,
104 LLVMValueRef *derivs_arg);
105
106
107 LLVMValueRef
108 ac_build_fs_interp(struct ac_llvm_context *ctx,
109 LLVMValueRef llvm_chan,
110 LLVMValueRef attr_number,
111 LLVMValueRef params,
112 LLVMValueRef i,
113 LLVMValueRef j);
114
115 LLVMValueRef
116 ac_build_fs_interp_mov(struct ac_llvm_context *ctx,
117 LLVMValueRef parameter,
118 LLVMValueRef llvm_chan,
119 LLVMValueRef attr_number,
120 LLVMValueRef params);
121
122 LLVMValueRef
123 ac_build_gep0(struct ac_llvm_context *ctx,
124 LLVMValueRef base_ptr,
125 LLVMValueRef index);
126
127 void
128 ac_build_indexed_store(struct ac_llvm_context *ctx,
129 LLVMValueRef base_ptr, LLVMValueRef index,
130 LLVMValueRef value);
131
132 LLVMValueRef
133 ac_build_indexed_load(struct ac_llvm_context *ctx,
134 LLVMValueRef base_ptr, LLVMValueRef index,
135 bool uniform);
136
137 LLVMValueRef
138 ac_build_indexed_load_const(struct ac_llvm_context *ctx,
139 LLVMValueRef base_ptr, LLVMValueRef index);
140
141 void
142 ac_build_buffer_store_dword(struct ac_llvm_context *ctx,
143 LLVMValueRef rsrc,
144 LLVMValueRef vdata,
145 unsigned num_channels,
146 LLVMValueRef voffset,
147 LLVMValueRef soffset,
148 unsigned inst_offset,
149 bool glc,
150 bool slc,
151 bool writeonly_memory,
152 bool has_add_tid);
153 LLVMValueRef
154 ac_build_buffer_load(struct ac_llvm_context *ctx,
155 LLVMValueRef rsrc,
156 int num_channels,
157 LLVMValueRef vindex,
158 LLVMValueRef voffset,
159 LLVMValueRef soffset,
160 unsigned inst_offset,
161 unsigned glc,
162 unsigned slc,
163 bool can_speculate,
164 bool allow_smem);
165
166 LLVMValueRef ac_build_buffer_load_format(struct ac_llvm_context *ctx,
167 LLVMValueRef rsrc,
168 LLVMValueRef vindex,
169 LLVMValueRef voffset,
170 bool can_speculate);
171
172 LLVMValueRef
173 ac_get_thread_id(struct ac_llvm_context *ctx);
174
175 #define AC_TID_MASK_TOP_LEFT 0xfffffffc
176 #define AC_TID_MASK_TOP 0xfffffffd
177 #define AC_TID_MASK_LEFT 0xfffffffe
178
179 LLVMValueRef
180 ac_build_ddxy(struct ac_llvm_context *ctx,
181 bool has_ds_bpermute,
182 uint32_t mask,
183 int idx,
184 LLVMValueRef val);
185
186 #define AC_SENDMSG_GS 2
187 #define AC_SENDMSG_GS_DONE 3
188
189 #define AC_SENDMSG_GS_OP_NOP (0 << 4)
190 #define AC_SENDMSG_GS_OP_CUT (1 << 4)
191 #define AC_SENDMSG_GS_OP_EMIT (2 << 4)
192 #define AC_SENDMSG_GS_OP_EMIT_CUT (3 << 4)
193
194 void ac_build_sendmsg(struct ac_llvm_context *ctx,
195 uint32_t msg,
196 LLVMValueRef wave_id);
197
198 LLVMValueRef ac_build_imsb(struct ac_llvm_context *ctx,
199 LLVMValueRef arg,
200 LLVMTypeRef dst_type);
201
202 LLVMValueRef ac_build_umsb(struct ac_llvm_context *ctx,
203 LLVMValueRef arg,
204 LLVMTypeRef dst_type);
205
206 LLVMValueRef ac_build_umin(struct ac_llvm_context *ctx, LLVMValueRef a, LLVMValueRef b);
207 LLVMValueRef ac_build_clamp(struct ac_llvm_context *ctx, LLVMValueRef value);
208
209 struct ac_export_args {
210 LLVMValueRef out[4];
211 unsigned target;
212 unsigned enabled_channels;
213 bool compr;
214 bool done;
215 bool valid_mask;
216 };
217
218 void ac_build_export(struct ac_llvm_context *ctx, struct ac_export_args *a);
219
220 enum ac_image_opcode {
221 ac_image_sample,
222 ac_image_gather4,
223 ac_image_load,
224 ac_image_load_mip,
225 ac_image_get_lod,
226 ac_image_get_resinfo,
227 };
228
229 struct ac_image_args {
230 enum ac_image_opcode opcode;
231 bool level_zero;
232 bool bias;
233 bool lod;
234 bool deriv;
235 bool compare;
236 bool offset;
237
238 LLVMValueRef resource;
239 LLVMValueRef sampler;
240 LLVMValueRef addr;
241 unsigned dmask;
242 bool unorm;
243 bool da;
244 };
245
246 LLVMValueRef ac_build_image_opcode(struct ac_llvm_context *ctx,
247 struct ac_image_args *a);
248 LLVMValueRef ac_build_cvt_pkrtz_f16(struct ac_llvm_context *ctx,
249 LLVMValueRef args[2]);
250 void ac_build_kill(struct ac_llvm_context *ctx, LLVMValueRef value);
251 LLVMValueRef ac_build_bfe(struct ac_llvm_context *ctx, LLVMValueRef input,
252 LLVMValueRef offset, LLVMValueRef width,
253 bool is_signed);
254
255 void ac_get_image_intr_name(const char *base_name,
256 LLVMTypeRef data_type,
257 LLVMTypeRef coords_type,
258 LLVMTypeRef rsrc_type,
259 char *out_name, unsigned out_len);
260
261 void ac_optimize_vs_outputs(struct ac_llvm_context *ac,
262 LLVMValueRef main_fn,
263 uint8_t *vs_output_param_offset,
264 uint32_t num_outputs,
265 uint8_t *num_param_exports);
266 #ifdef __cplusplus
267 }
268 #endif
269
270 #endif