radeonsi: move llvm_get_type_size() 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 LLVMValueRef
79 ac_build_gather_values_extended(struct ac_llvm_context *ctx,
80 LLVMValueRef *values,
81 unsigned value_count,
82 unsigned value_stride,
83 bool load,
84 bool always_vector);
85 LLVMValueRef
86 ac_build_gather_values(struct ac_llvm_context *ctx,
87 LLVMValueRef *values,
88 unsigned value_count);
89
90 LLVMValueRef
91 ac_build_fdiv(struct ac_llvm_context *ctx,
92 LLVMValueRef num,
93 LLVMValueRef den);
94
95 void
96 ac_prepare_cube_coords(struct ac_llvm_context *ctx,
97 bool is_deriv, bool is_array,
98 LLVMValueRef *coords_arg,
99 LLVMValueRef *derivs_arg);
100
101
102 LLVMValueRef
103 ac_build_fs_interp(struct ac_llvm_context *ctx,
104 LLVMValueRef llvm_chan,
105 LLVMValueRef attr_number,
106 LLVMValueRef params,
107 LLVMValueRef i,
108 LLVMValueRef j);
109
110 LLVMValueRef
111 ac_build_fs_interp_mov(struct ac_llvm_context *ctx,
112 LLVMValueRef parameter,
113 LLVMValueRef llvm_chan,
114 LLVMValueRef attr_number,
115 LLVMValueRef params);
116
117 LLVMValueRef
118 ac_build_gep0(struct ac_llvm_context *ctx,
119 LLVMValueRef base_ptr,
120 LLVMValueRef index);
121
122 void
123 ac_build_indexed_store(struct ac_llvm_context *ctx,
124 LLVMValueRef base_ptr, LLVMValueRef index,
125 LLVMValueRef value);
126
127 LLVMValueRef
128 ac_build_indexed_load(struct ac_llvm_context *ctx,
129 LLVMValueRef base_ptr, LLVMValueRef index,
130 bool uniform);
131
132 LLVMValueRef
133 ac_build_indexed_load_const(struct ac_llvm_context *ctx,
134 LLVMValueRef base_ptr, LLVMValueRef index);
135
136 void
137 ac_build_buffer_store_dword(struct ac_llvm_context *ctx,
138 LLVMValueRef rsrc,
139 LLVMValueRef vdata,
140 unsigned num_channels,
141 LLVMValueRef voffset,
142 LLVMValueRef soffset,
143 unsigned inst_offset,
144 bool glc,
145 bool slc,
146 bool writeonly_memory,
147 bool has_add_tid);
148 LLVMValueRef
149 ac_build_buffer_load(struct ac_llvm_context *ctx,
150 LLVMValueRef rsrc,
151 int num_channels,
152 LLVMValueRef vindex,
153 LLVMValueRef voffset,
154 LLVMValueRef soffset,
155 unsigned inst_offset,
156 unsigned glc,
157 unsigned slc,
158 bool can_speculate,
159 bool allow_smem);
160
161 LLVMValueRef ac_build_buffer_load_format(struct ac_llvm_context *ctx,
162 LLVMValueRef rsrc,
163 LLVMValueRef vindex,
164 LLVMValueRef voffset,
165 bool can_speculate);
166
167 LLVMValueRef
168 ac_get_thread_id(struct ac_llvm_context *ctx);
169
170 #define AC_TID_MASK_TOP_LEFT 0xfffffffc
171 #define AC_TID_MASK_TOP 0xfffffffd
172 #define AC_TID_MASK_LEFT 0xfffffffe
173
174 LLVMValueRef
175 ac_build_ddxy(struct ac_llvm_context *ctx,
176 bool has_ds_bpermute,
177 uint32_t mask,
178 int idx,
179 LLVMValueRef val);
180
181 #define AC_SENDMSG_GS 2
182 #define AC_SENDMSG_GS_DONE 3
183
184 #define AC_SENDMSG_GS_OP_NOP (0 << 4)
185 #define AC_SENDMSG_GS_OP_CUT (1 << 4)
186 #define AC_SENDMSG_GS_OP_EMIT (2 << 4)
187 #define AC_SENDMSG_GS_OP_EMIT_CUT (3 << 4)
188
189 void ac_build_sendmsg(struct ac_llvm_context *ctx,
190 uint32_t msg,
191 LLVMValueRef wave_id);
192
193 LLVMValueRef ac_build_imsb(struct ac_llvm_context *ctx,
194 LLVMValueRef arg,
195 LLVMTypeRef dst_type);
196
197 LLVMValueRef ac_build_umsb(struct ac_llvm_context *ctx,
198 LLVMValueRef arg,
199 LLVMTypeRef dst_type);
200
201 LLVMValueRef ac_build_umin(struct ac_llvm_context *ctx, LLVMValueRef a, LLVMValueRef b);
202 LLVMValueRef ac_build_clamp(struct ac_llvm_context *ctx, LLVMValueRef value);
203
204 struct ac_export_args {
205 LLVMValueRef out[4];
206 unsigned target;
207 unsigned enabled_channels;
208 bool compr;
209 bool done;
210 bool valid_mask;
211 };
212
213 void ac_build_export(struct ac_llvm_context *ctx, struct ac_export_args *a);
214
215 enum ac_image_opcode {
216 ac_image_sample,
217 ac_image_gather4,
218 ac_image_load,
219 ac_image_load_mip,
220 ac_image_get_lod,
221 ac_image_get_resinfo,
222 };
223
224 struct ac_image_args {
225 enum ac_image_opcode opcode;
226 bool level_zero;
227 bool bias;
228 bool lod;
229 bool deriv;
230 bool compare;
231 bool offset;
232
233 LLVMValueRef resource;
234 LLVMValueRef sampler;
235 LLVMValueRef addr;
236 unsigned dmask;
237 bool unorm;
238 bool da;
239 };
240
241 LLVMValueRef ac_build_image_opcode(struct ac_llvm_context *ctx,
242 struct ac_image_args *a);
243 LLVMValueRef ac_build_cvt_pkrtz_f16(struct ac_llvm_context *ctx,
244 LLVMValueRef args[2]);
245 void ac_build_kill(struct ac_llvm_context *ctx, LLVMValueRef value);
246 LLVMValueRef ac_build_bfe(struct ac_llvm_context *ctx, LLVMValueRef input,
247 LLVMValueRef offset, LLVMValueRef width,
248 bool is_signed);
249
250 void ac_get_image_intr_name(const char *base_name,
251 LLVMTypeRef data_type,
252 LLVMTypeRef coords_type,
253 LLVMTypeRef rsrc_type,
254 char *out_name, unsigned out_len);
255
256 void ac_optimize_vs_outputs(struct ac_llvm_context *ac,
257 LLVMValueRef main_fn,
258 uint8_t *vs_output_param_offset,
259 uint32_t num_outputs,
260 uint8_t *num_param_exports);
261 #ifdef __cplusplus
262 }
263 #endif
264
265 #endif