radeonsi/gfx10: fix the vertex order for triangle strips emitted by a GS
[mesa.git] / src / gallium / auxiliary / gallivm / lp_bld_nir_soa.c
1 /**************************************************************************
2 *
3 * Copyright 2019 Red Hat.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 *
24 **************************************************************************/
25
26 #include "lp_bld_nir.h"
27 #include "lp_bld_init.h"
28 #include "lp_bld_flow.h"
29 #include "lp_bld_logic.h"
30 #include "lp_bld_gather.h"
31 #include "lp_bld_const.h"
32 #include "lp_bld_struct.h"
33 #include "lp_bld_arit.h"
34 #include "lp_bld_bitarit.h"
35 #include "lp_bld_coro.h"
36 #include "lp_bld_printf.h"
37 #include "util/u_math.h"
38 /*
39 * combine the execution mask if there is one with the current mask.
40 */
41 static LLVMValueRef
42 mask_vec(struct lp_build_nir_context *bld_base)
43 {
44 struct lp_build_nir_soa_context * bld = (struct lp_build_nir_soa_context *)bld_base;
45 LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder;
46 struct lp_exec_mask *exec_mask = &bld->exec_mask;
47 LLVMValueRef bld_mask = bld->mask ? lp_build_mask_value(bld->mask) : NULL;
48 if (!exec_mask->has_mask) {
49 return bld_mask;
50 }
51 if (!bld_mask)
52 return exec_mask->exec_mask;
53 return LLVMBuildAnd(builder, lp_build_mask_value(bld->mask),
54 exec_mask->exec_mask, "");
55 }
56
57 static LLVMValueRef
58 emit_fetch_64bit(
59 struct lp_build_nir_context * bld_base,
60 LLVMValueRef input,
61 LLVMValueRef input2)
62 {
63 struct gallivm_state *gallivm = bld_base->base.gallivm;
64 LLVMBuilderRef builder = gallivm->builder;
65 LLVMValueRef res;
66 int i;
67 LLVMValueRef shuffles[2 * (LP_MAX_VECTOR_WIDTH/32)];
68 int len = bld_base->base.type.length * 2;
69 assert(len <= (2 * (LP_MAX_VECTOR_WIDTH/32)));
70
71 for (i = 0; i < bld_base->base.type.length * 2; i+=2) {
72 shuffles[i] = lp_build_const_int32(gallivm, i / 2);
73 shuffles[i + 1] = lp_build_const_int32(gallivm, i / 2 + bld_base->base.type.length);
74 }
75 res = LLVMBuildShuffleVector(builder, input, input2, LLVMConstVector(shuffles, len), "");
76
77 return LLVMBuildBitCast(builder, res, bld_base->dbl_bld.vec_type, "");
78 }
79
80 static void
81 emit_store_64bit_chan(struct lp_build_nir_context *bld_base,
82 LLVMValueRef chan_ptr,
83 LLVMValueRef chan_ptr2,
84 LLVMValueRef value)
85 {
86 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
87 struct gallivm_state *gallivm = bld_base->base.gallivm;
88 LLVMBuilderRef builder = gallivm->builder;
89 struct lp_build_context *float_bld = &bld_base->base;
90 unsigned i;
91 LLVMValueRef temp, temp2;
92 LLVMValueRef shuffles[LP_MAX_VECTOR_WIDTH/32];
93 LLVMValueRef shuffles2[LP_MAX_VECTOR_WIDTH/32];
94 int len = bld_base->base.type.length * 2;
95
96 value = LLVMBuildBitCast(gallivm->builder, value, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), len), "");
97 for (i = 0; i < bld_base->base.type.length; i++) {
98 shuffles[i] = lp_build_const_int32(gallivm, i * 2);
99 shuffles2[i] = lp_build_const_int32(gallivm, (i * 2) + 1);
100 }
101
102 temp = LLVMBuildShuffleVector(builder, value,
103 LLVMGetUndef(LLVMTypeOf(value)),
104 LLVMConstVector(shuffles,
105 bld_base->base.type.length),
106 "");
107 temp2 = LLVMBuildShuffleVector(builder, value,
108 LLVMGetUndef(LLVMTypeOf(value)),
109 LLVMConstVector(shuffles2,
110 bld_base->base.type.length),
111 "");
112
113 lp_exec_mask_store(&bld->exec_mask, float_bld, temp, chan_ptr);
114 lp_exec_mask_store(&bld->exec_mask, float_bld, temp2, chan_ptr2);
115 }
116
117 static LLVMValueRef
118 get_soa_array_offsets(struct lp_build_context *uint_bld,
119 LLVMValueRef indirect_index,
120 int num_components,
121 unsigned chan_index,
122 bool need_perelement_offset)
123 {
124 struct gallivm_state *gallivm = uint_bld->gallivm;
125 LLVMValueRef chan_vec =
126 lp_build_const_int_vec(uint_bld->gallivm, uint_bld->type, chan_index);
127 LLVMValueRef length_vec =
128 lp_build_const_int_vec(gallivm, uint_bld->type, uint_bld->type.length);
129 LLVMValueRef index_vec;
130
131 /* index_vec = (indirect_index * 4 + chan_index) * length + offsets */
132 index_vec = lp_build_mul(uint_bld, indirect_index, lp_build_const_int_vec(uint_bld->gallivm, uint_bld->type, num_components));
133 index_vec = lp_build_add(uint_bld, index_vec, chan_vec);
134 index_vec = lp_build_mul(uint_bld, index_vec, length_vec);
135
136 if (need_perelement_offset) {
137 LLVMValueRef pixel_offsets;
138 unsigned i;
139 /* build pixel offset vector: {0, 1, 2, 3, ...} */
140 pixel_offsets = uint_bld->undef;
141 for (i = 0; i < uint_bld->type.length; i++) {
142 LLVMValueRef ii = lp_build_const_int32(gallivm, i);
143 pixel_offsets = LLVMBuildInsertElement(gallivm->builder, pixel_offsets,
144 ii, ii, "");
145 }
146 index_vec = lp_build_add(uint_bld, index_vec, pixel_offsets);
147 }
148 return index_vec;
149 }
150
151 static LLVMValueRef
152 build_gather(struct lp_build_nir_context *bld_base,
153 struct lp_build_context *bld,
154 LLVMValueRef base_ptr,
155 LLVMValueRef indexes,
156 LLVMValueRef overflow_mask,
157 LLVMValueRef indexes2)
158 {
159 struct gallivm_state *gallivm = bld_base->base.gallivm;
160 LLVMBuilderRef builder = gallivm->builder;
161 struct lp_build_context *uint_bld = &bld_base->uint_bld;
162 LLVMValueRef res;
163 unsigned i;
164
165 if (indexes2)
166 res = LLVMGetUndef(LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), bld_base->base.type.length * 2));
167 else
168 res = bld->undef;
169 /*
170 * overflow_mask is a vector telling us which channels
171 * in the vector overflowed. We use the overflow behavior for
172 * constant buffers which is defined as:
173 * Out of bounds access to constant buffer returns 0 in all
174 * components. Out of bounds behavior is always with respect
175 * to the size of the buffer bound at that slot.
176 */
177
178 if (overflow_mask) {
179 /*
180 * We avoid per-element control flow here (also due to llvm going crazy,
181 * though I suspect it's better anyway since overflow is likely rare).
182 * Note that since we still fetch from buffers even if num_elements was
183 * zero (in this case we'll fetch from index zero) the jit func callers
184 * MUST provide valid fake constant buffers of size 4x32 (the values do
185 * not matter), otherwise we'd still need (not per element though)
186 * control flow.
187 */
188 indexes = lp_build_select(uint_bld, overflow_mask, uint_bld->zero, indexes);
189 if (indexes2)
190 indexes2 = lp_build_select(uint_bld, overflow_mask, uint_bld->zero, indexes2);
191 }
192
193 /*
194 * Loop over elements of index_vec, load scalar value, insert it into 'res'.
195 */
196 for (i = 0; i < bld->type.length * (indexes2 ? 2 : 1); i++) {
197 LLVMValueRef si, di;
198 LLVMValueRef index;
199 LLVMValueRef scalar_ptr, scalar;
200
201 di = lp_build_const_int32(gallivm, i);
202 if (indexes2)
203 si = lp_build_const_int32(gallivm, i >> 1);
204 else
205 si = di;
206
207 if (indexes2 && (i & 1)) {
208 index = LLVMBuildExtractElement(builder,
209 indexes2, si, "");
210 } else {
211 index = LLVMBuildExtractElement(builder,
212 indexes, si, "");
213 }
214 scalar_ptr = LLVMBuildGEP(builder, base_ptr,
215 &index, 1, "gather_ptr");
216 scalar = LLVMBuildLoad(builder, scalar_ptr, "");
217
218 res = LLVMBuildInsertElement(builder, res, scalar, di, "");
219 }
220
221 if (overflow_mask) {
222 if (indexes2) {
223 res = LLVMBuildBitCast(builder, res, bld_base->dbl_bld.vec_type, "");
224 overflow_mask = LLVMBuildSExt(builder, overflow_mask,
225 bld_base->dbl_bld.int_vec_type, "");
226 res = lp_build_select(&bld_base->dbl_bld, overflow_mask,
227 bld_base->dbl_bld.zero, res);
228 } else
229 res = lp_build_select(bld, overflow_mask, bld->zero, res);
230 }
231
232 return res;
233 }
234
235 /**
236 * Scatter/store vector.
237 */
238 static void
239 emit_mask_scatter(struct lp_build_nir_soa_context *bld,
240 LLVMValueRef base_ptr,
241 LLVMValueRef indexes,
242 LLVMValueRef values,
243 struct lp_exec_mask *mask)
244 {
245 struct gallivm_state *gallivm = bld->bld_base.base.gallivm;
246 LLVMBuilderRef builder = gallivm->builder;
247 unsigned i;
248 LLVMValueRef pred = mask->has_mask ? mask->exec_mask : NULL;
249
250 /*
251 * Loop over elements of index_vec, store scalar value.
252 */
253 for (i = 0; i < bld->bld_base.base.type.length; i++) {
254 LLVMValueRef ii = lp_build_const_int32(gallivm, i);
255 LLVMValueRef index = LLVMBuildExtractElement(builder, indexes, ii, "");
256 LLVMValueRef scalar_ptr = LLVMBuildGEP(builder, base_ptr, &index, 1, "scatter_ptr");
257 LLVMValueRef val = LLVMBuildExtractElement(builder, values, ii, "scatter_val");
258 LLVMValueRef scalar_pred = pred ?
259 LLVMBuildExtractElement(builder, pred, ii, "scatter_pred") : NULL;
260
261 if (0)
262 lp_build_printf(gallivm, "scatter %d: val %f at %d %p\n",
263 ii, val, index, scalar_ptr);
264
265 if (scalar_pred) {
266 LLVMValueRef real_val, dst_val;
267 dst_val = LLVMBuildLoad(builder, scalar_ptr, "");
268 real_val = lp_build_select(&bld->uint_elem_bld, scalar_pred, val, dst_val);
269 LLVMBuildStore(builder, real_val, scalar_ptr);
270 }
271 else {
272 LLVMBuildStore(builder, val, scalar_ptr);
273 }
274 }
275 }
276
277 static void emit_load_var(struct lp_build_nir_context *bld_base,
278 nir_variable_mode deref_mode,
279 unsigned num_components,
280 unsigned bit_size,
281 nir_variable *var,
282 unsigned vertex_index,
283 unsigned const_index,
284 LLVMValueRef indir_index,
285 LLVMValueRef result[4])
286 {
287 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
288 struct gallivm_state *gallivm = bld_base->base.gallivm;
289 int dmul = bit_size == 64 ? 2 : 1;
290 switch (deref_mode) {
291 case nir_var_shader_in: {
292 for (unsigned i = 0; i < num_components; i++) {
293 int idx = (i * dmul) + var->data.location_frac;
294 if (bld->gs_iface) {
295 LLVMValueRef vertex_index_val = lp_build_const_int32(gallivm, vertex_index);
296 LLVMValueRef attrib_index_val = lp_build_const_int32(gallivm, const_index + var->data.driver_location);
297 LLVMValueRef swizzle_index_val = lp_build_const_int32(gallivm, idx);
298 LLVMValueRef result2;
299 result[i] = bld->gs_iface->fetch_input(bld->gs_iface, &bld_base->base,
300 false, vertex_index_val, 0, attrib_index_val, swizzle_index_val);
301 if (bit_size == 64) {
302 LLVMValueRef swizzle_index_val = lp_build_const_int32(gallivm, idx + 1);
303 result2 = bld->gs_iface->fetch_input(bld->gs_iface, &bld_base->base,
304 false, vertex_index_val, 0, attrib_index_val, swizzle_index_val);
305 result[i] = emit_fetch_64bit(bld_base, result[i], result2);
306 }
307 } else {
308 if (indir_index) {
309 LLVMValueRef attrib_index_val = lp_build_add(&bld_base->uint_bld, indir_index, lp_build_const_int_vec(gallivm, bld_base->uint_bld.type, var->data.driver_location));
310 LLVMValueRef index_vec = get_soa_array_offsets(&bld_base->uint_bld,
311 attrib_index_val, 4, idx,
312 TRUE);
313 LLVMValueRef index_vec2 = NULL;
314 LLVMTypeRef fptr_type;
315 LLVMValueRef inputs_array;
316 fptr_type = LLVMPointerType(LLVMFloatTypeInContext(gallivm->context), 0);
317 inputs_array = LLVMBuildBitCast(gallivm->builder, bld->inputs_array, fptr_type, "");
318
319 if (bit_size == 64)
320 index_vec2 = get_soa_array_offsets(&bld_base->uint_bld,
321 indir_index, 4, idx + 1, TRUE);
322
323 /* Gather values from the input register array */
324 result[i] = build_gather(bld_base, &bld_base->base, inputs_array, index_vec, NULL, index_vec2);
325 } else {
326 if (bld->indirects & nir_var_shader_in) {
327 LLVMValueRef lindex = lp_build_const_int32(gallivm,
328 var->data.driver_location * 4 + idx);
329 LLVMValueRef input_ptr = lp_build_pointer_get(gallivm->builder,
330 bld->inputs_array, lindex);
331 if (bit_size == 64) {
332 LLVMValueRef lindex2 = lp_build_const_int32(gallivm,
333 var->data.driver_location * 4 + (idx + 1));
334 LLVMValueRef input_ptr2 = lp_build_pointer_get(gallivm->builder,
335 bld->inputs_array, lindex2);
336 result[i] = emit_fetch_64bit(bld_base, input_ptr, input_ptr2);
337 } else {
338 result[i] = input_ptr;
339 }
340 } else {
341 if (bit_size == 64) {
342 LLVMValueRef tmp[2];
343 tmp[0] = bld->inputs[var->data.driver_location + const_index][idx];
344 tmp[1] = bld->inputs[var->data.driver_location + const_index][idx + 1];
345 result[i] = emit_fetch_64bit(bld_base, tmp[0], tmp[1]);
346 } else {
347 result[i] = bld->inputs[var->data.driver_location + const_index][idx];
348 }
349 }
350 }
351 }
352 }
353 }
354 default:
355 break;
356 }
357 }
358
359 static void emit_store_chan(struct lp_build_nir_context *bld_base,
360 nir_variable_mode deref_mode,
361 unsigned bit_size,
362 unsigned location, unsigned comp,
363 unsigned chan,
364 LLVMValueRef dst)
365 {
366 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
367 LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder;
368 struct lp_build_context *float_bld = &bld_base->base;
369
370 if (bit_size == 64) {
371 chan *= 2;
372 chan += comp;
373 if (chan >= 4) {
374 chan -= 4;
375 location++;
376 }
377 emit_store_64bit_chan(bld_base, bld->outputs[location][chan],
378 bld->outputs[location][chan + 1], dst);
379 } else {
380 dst = LLVMBuildBitCast(builder, dst, float_bld->vec_type, "");
381 lp_exec_mask_store(&bld->exec_mask, float_bld, dst,
382 bld->outputs[location][chan + comp]);
383 }
384 }
385
386 static void emit_store_var(struct lp_build_nir_context *bld_base,
387 nir_variable_mode deref_mode,
388 unsigned bit_size,
389 unsigned num_components,
390 unsigned writemask,
391 unsigned const_index,
392 nir_variable *var, LLVMValueRef dst)
393 {
394 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
395 LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder;
396 switch (deref_mode) {
397 case nir_var_shader_out: {
398 unsigned location = var->data.driver_location + const_index;
399 unsigned comp = var->data.location_frac;
400 if (bld_base->shader->info.stage == MESA_SHADER_FRAGMENT) {
401 if (var->data.location == FRAG_RESULT_STENCIL)
402 comp = 1;
403 else if (var->data.location == FRAG_RESULT_DEPTH)
404 comp = 2;
405 }
406 for (unsigned chan = 0; chan < num_components; chan++) {
407 if (writemask & (1u << chan)) {
408 LLVMValueRef chan_val = (num_components == 1) ? dst : LLVMBuildExtractValue(builder, dst, chan, "");
409 emit_store_chan(bld_base, deref_mode, bit_size, location, comp, chan, chan_val);
410 }
411 }
412 break;
413 }
414 default:
415 break;
416 }
417 }
418
419 static LLVMValueRef emit_load_reg(struct lp_build_nir_context *bld_base,
420 struct lp_build_context *reg_bld,
421 const nir_reg_src *reg,
422 LLVMValueRef indir_src,
423 LLVMValueRef reg_storage)
424 {
425 struct gallivm_state *gallivm = bld_base->base.gallivm;
426 LLVMBuilderRef builder = gallivm->builder;
427 int nc = reg->reg->num_components;
428 LLVMValueRef vals[4];
429 struct lp_build_context *uint_bld = &bld_base->uint_bld;
430 if (reg->reg->num_array_elems) {
431 LLVMValueRef indirect_val = lp_build_const_int_vec(gallivm, uint_bld->type, reg->base_offset);
432 if (reg->indirect) {
433 LLVMValueRef max_index = lp_build_const_int_vec(gallivm, uint_bld->type, reg->reg->num_array_elems - 1);
434 indirect_val = LLVMBuildAdd(builder, indirect_val, indir_src, "");
435 indirect_val = lp_build_min(uint_bld, indirect_val, max_index);
436 }
437 reg_storage = LLVMBuildBitCast(builder, reg_storage, LLVMPointerType(reg_bld->elem_type, 0), "");
438 for (unsigned i = 0; i < nc; i++) {
439 LLVMValueRef indirect_offset = get_soa_array_offsets(uint_bld, indirect_val, nc, i, TRUE);
440 vals[i] = build_gather(bld_base, reg_bld, reg_storage, indirect_offset, NULL, NULL);
441 }
442 } else {
443 for (unsigned i = 0; i < nc; i++) {
444 LLVMValueRef this_storage = nc == 1 ? reg_storage : lp_build_array_get_ptr(gallivm, reg_storage,
445 lp_build_const_int32(gallivm, i));
446 vals[i] = LLVMBuildLoad(builder, this_storage, "");
447 }
448 }
449 return nc == 1 ? vals[0] : lp_nir_array_build_gather_values(builder, vals, nc);
450 }
451
452 static void emit_store_reg(struct lp_build_nir_context *bld_base,
453 struct lp_build_context *reg_bld,
454 const nir_reg_dest *reg,
455 unsigned writemask,
456 LLVMValueRef indir_src,
457 LLVMValueRef reg_storage,
458 LLVMValueRef dst[4])
459 {
460 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
461 struct gallivm_state *gallivm = bld_base->base.gallivm;
462 LLVMBuilderRef builder = gallivm->builder;
463 struct lp_build_context *uint_bld = &bld_base->uint_bld;
464 int nc = reg->reg->num_components;
465 if (reg->reg->num_array_elems > 0) {
466 LLVMValueRef indirect_val = lp_build_const_int_vec(gallivm, uint_bld->type, reg->base_offset);
467 if (reg->indirect) {
468 LLVMValueRef max_index = lp_build_const_int_vec(gallivm, uint_bld->type, reg->reg->num_array_elems - 1);
469 indirect_val = LLVMBuildAdd(builder, indirect_val, indir_src, "");
470 indirect_val = lp_build_min(uint_bld, indirect_val, max_index);
471 }
472 reg_storage = LLVMBuildBitCast(builder, reg_storage, LLVMPointerType(reg_bld->elem_type, 0), "");
473 for (unsigned i = 0; i < nc; i++) {
474 if (!(writemask & (1 << i)))
475 continue;
476 LLVMValueRef indirect_offset = get_soa_array_offsets(uint_bld, indirect_val, nc, i, TRUE);
477 dst[i] = LLVMBuildBitCast(builder, dst[i], reg_bld->vec_type, "");
478 emit_mask_scatter(bld, reg_storage, indirect_offset, dst[i], &bld->exec_mask);
479 }
480 return;
481 }
482
483 for (unsigned i = 0; i < nc; i++) {
484 LLVMValueRef this_storage = nc == 1 ? reg_storage : lp_build_array_get_ptr(gallivm, reg_storage,
485 lp_build_const_int32(gallivm, i));
486 dst[i] = LLVMBuildBitCast(builder, dst[i], reg_bld->vec_type, "");
487 lp_exec_mask_store(&bld->exec_mask, reg_bld, dst[i], this_storage);
488 }
489 }
490
491 static void emit_load_ubo(struct lp_build_nir_context *bld_base,
492 unsigned nc,
493 unsigned bit_size,
494 bool offset_is_uniform,
495 LLVMValueRef index,
496 LLVMValueRef offset,
497 LLVMValueRef result[4])
498 {
499 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
500 struct gallivm_state *gallivm = bld_base->base.gallivm;
501 LLVMBuilderRef builder = gallivm->builder;
502 struct lp_build_context *uint_bld = &bld_base->uint_bld;
503 struct lp_build_context *bld_broad = bit_size == 64 ? &bld_base->dbl_bld : &bld_base->base;
504 LLVMValueRef consts_ptr = lp_build_array_get(gallivm, bld->consts_ptr, index);
505 unsigned size_shift = 0;
506 if (bit_size == 32)
507 size_shift = 2;
508 else if (bit_size == 64)
509 size_shift = 3;
510 if (size_shift)
511 offset = lp_build_shr(uint_bld, offset, lp_build_const_int_vec(gallivm, uint_bld->type, size_shift));
512 if (bit_size == 64) {
513 LLVMTypeRef dptr_type = LLVMPointerType(bld_base->dbl_bld.elem_type, 0);
514 consts_ptr = LLVMBuildBitCast(builder, consts_ptr, dptr_type, "");
515 }
516
517 if (offset_is_uniform) {
518 offset = LLVMBuildExtractElement(builder, offset, lp_build_const_int32(gallivm, 0), "");
519
520 for (unsigned c = 0; c < nc; c++) {
521 LLVMValueRef this_offset = LLVMBuildAdd(builder, offset, lp_build_const_int32(gallivm, c), "");
522
523 LLVMValueRef scalar = lp_build_pointer_get(builder, consts_ptr, this_offset);
524 result[c] = lp_build_broadcast_scalar(bld_broad, scalar);
525 }
526 } else {
527 LLVMValueRef overflow_mask;
528 LLVMValueRef num_consts = lp_build_array_get(gallivm, bld->const_sizes_ptr, index);
529
530 num_consts = LLVMBuildShl(gallivm->builder, num_consts, lp_build_const_int32(gallivm, 4), "");
531 num_consts = lp_build_broadcast_scalar(uint_bld, num_consts);
532 for (unsigned c = 0; c < nc; c++) {
533 LLVMValueRef this_offset = lp_build_add(uint_bld, offset, lp_build_const_int_vec(gallivm, uint_bld->type, c));
534 overflow_mask = lp_build_compare(gallivm, uint_bld->type, PIPE_FUNC_GEQUAL,
535 this_offset, num_consts);
536
537 result[c] = build_gather(bld_base, bld_broad, consts_ptr, this_offset, overflow_mask, NULL);
538 }
539 }
540 }
541
542
543 static void emit_load_mem(struct lp_build_nir_context *bld_base,
544 unsigned nc,
545 unsigned bit_size,
546 LLVMValueRef index,
547 LLVMValueRef offset,
548 LLVMValueRef outval[4])
549 {
550 struct gallivm_state *gallivm = bld_base->base.gallivm;
551 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
552 LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder;
553 LLVMValueRef ssbo_ptr = NULL;
554 struct lp_build_context *uint_bld = &bld_base->uint_bld;
555 struct lp_build_context *uint64_bld = &bld_base->uint64_bld;
556 LLVMValueRef ssbo_limit = NULL;
557
558 if (index) {
559 LLVMValueRef ssbo_size_ptr = lp_build_array_get(gallivm, bld->ssbo_sizes_ptr, LLVMBuildExtractElement(builder, index, lp_build_const_int32(gallivm, 0), ""));
560 ssbo_limit = LLVMBuildAShr(gallivm->builder, ssbo_size_ptr, lp_build_const_int32(gallivm, bit_size == 64 ? 3 : 2), "");
561 ssbo_limit = lp_build_broadcast_scalar(uint_bld, ssbo_limit);
562
563 ssbo_ptr = lp_build_array_get(gallivm, bld->ssbo_ptr, LLVMBuildExtractElement(builder, index, lp_build_const_int32(gallivm, 0), ""));
564 } else
565 ssbo_ptr = bld->shared_ptr;
566
567 offset = LLVMBuildAShr(gallivm->builder, offset, lp_build_const_int_vec(gallivm, uint_bld->type, bit_size == 64 ? 3 : 2), "");
568 for (unsigned c = 0; c < nc; c++) {
569 LLVMValueRef loop_index = lp_build_add(uint_bld, offset, lp_build_const_int_vec(gallivm, uint_bld->type, c));
570 LLVMValueRef exec_mask = mask_vec(bld_base);
571
572 if (ssbo_limit) {
573 LLVMValueRef ssbo_oob_cmp = lp_build_cmp(uint_bld, PIPE_FUNC_LESS, loop_index, ssbo_limit);
574 exec_mask = LLVMBuildAnd(builder, exec_mask, ssbo_oob_cmp, "");
575 }
576
577 LLVMValueRef result = lp_build_alloca(gallivm, bit_size == 64 ? uint64_bld->vec_type : uint_bld->vec_type, "");
578 struct lp_build_loop_state loop_state;
579 lp_build_loop_begin(&loop_state, gallivm, lp_build_const_int32(gallivm, 0));
580
581 struct lp_build_if_state ifthen;
582 LLVMValueRef cond, temp_res;
583
584 loop_index = LLVMBuildExtractElement(gallivm->builder, loop_index,
585 loop_state.counter, "");
586
587 cond = LLVMBuildICmp(gallivm->builder, LLVMIntNE, exec_mask, uint_bld->zero, "");
588 cond = LLVMBuildExtractElement(gallivm->builder, cond, loop_state.counter, "");
589
590 lp_build_if(&ifthen, gallivm, cond);
591 LLVMValueRef scalar;
592 if (bit_size == 64) {
593 LLVMValueRef ssbo_ptr2 = LLVMBuildBitCast(builder, ssbo_ptr, LLVMPointerType(uint64_bld->elem_type, 0), "");
594 scalar = lp_build_pointer_get(builder, ssbo_ptr2, loop_index);
595 } else
596 scalar = lp_build_pointer_get(builder, ssbo_ptr, loop_index);
597
598 temp_res = LLVMBuildLoad(builder, result, "");
599 temp_res = LLVMBuildInsertElement(builder, temp_res, scalar, loop_state.counter, "");
600 LLVMBuildStore(builder, temp_res, result);
601 lp_build_else(&ifthen);
602 temp_res = LLVMBuildLoad(builder, result, "");
603 LLVMValueRef zero;
604 if (bit_size == 64)
605 zero = LLVMConstInt(LLVMInt64TypeInContext(gallivm->context), 0, 0);
606 else
607 zero = lp_build_const_int32(gallivm, 0);
608 temp_res = LLVMBuildInsertElement(builder, temp_res, zero, loop_state.counter, "");
609 LLVMBuildStore(builder, temp_res, result);
610 lp_build_endif(&ifthen);
611 lp_build_loop_end_cond(&loop_state, lp_build_const_int32(gallivm, uint_bld->type.length),
612 NULL, LLVMIntUGE);
613 outval[c] = LLVMBuildLoad(gallivm->builder, result, "");
614 }
615 }
616
617 static void emit_store_mem(struct lp_build_nir_context *bld_base,
618 unsigned writemask,
619 unsigned nc,
620 unsigned bit_size,
621 LLVMValueRef index,
622 LLVMValueRef offset,
623 LLVMValueRef dst)
624 {
625 struct gallivm_state *gallivm = bld_base->base.gallivm;
626 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
627 LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder;
628 LLVMValueRef ssbo_ptr;
629 struct lp_build_context *uint_bld = &bld_base->uint_bld;
630 LLVMValueRef ssbo_limit = NULL;
631
632 if (index) {
633 LLVMValueRef ssbo_size_ptr = lp_build_array_get(gallivm, bld->ssbo_sizes_ptr, LLVMBuildExtractElement(builder, index, lp_build_const_int32(gallivm, 0), ""));
634 ssbo_limit = LLVMBuildAShr(gallivm->builder, ssbo_size_ptr, lp_build_const_int32(gallivm, bit_size == 64 ? 3 : 2), "");
635 ssbo_limit = lp_build_broadcast_scalar(uint_bld, ssbo_limit);
636 ssbo_ptr = lp_build_array_get(gallivm, bld->ssbo_ptr, LLVMBuildExtractElement(builder, index, lp_build_const_int32(gallivm, 0), ""));
637 } else
638 ssbo_ptr = bld->shared_ptr;
639
640 offset = lp_build_shr_imm(uint_bld, offset, bit_size == 64 ? 3 : 2);
641 for (unsigned c = 0; c < nc; c++) {
642 if (!(writemask & (1u << c)))
643 continue;
644 LLVMValueRef loop_index = lp_build_add(uint_bld, offset, lp_build_const_int_vec(gallivm, uint_bld->type, c));
645 LLVMValueRef val = (nc == 1) ? dst : LLVMBuildExtractValue(builder, dst, c, "");
646
647 LLVMValueRef exec_mask = mask_vec(bld_base);
648 if (ssbo_limit) {
649 LLVMValueRef ssbo_oob_cmp = lp_build_cmp(uint_bld, PIPE_FUNC_LESS, loop_index, ssbo_limit);
650 exec_mask = LLVMBuildAnd(builder, exec_mask, ssbo_oob_cmp, "");
651 }
652
653 struct lp_build_loop_state loop_state;
654 lp_build_loop_begin(&loop_state, gallivm, lp_build_const_int32(gallivm, 0));
655 LLVMValueRef value_ptr = LLVMBuildExtractElement(gallivm->builder, val,
656 loop_state.counter, "");
657 if (bit_size == 64)
658 value_ptr = LLVMBuildBitCast(gallivm->builder, value_ptr, bld_base->uint64_bld.elem_type, "");
659 else
660 value_ptr = LLVMBuildBitCast(gallivm->builder, value_ptr, uint_bld->elem_type, "");
661 struct lp_build_if_state ifthen;
662 LLVMValueRef cond;
663
664 loop_index = LLVMBuildExtractElement(gallivm->builder, loop_index,
665 loop_state.counter, "");
666 cond = LLVMBuildICmp(gallivm->builder, LLVMIntNE, exec_mask, uint_bld->zero, "");
667 cond = LLVMBuildExtractElement(gallivm->builder, cond, loop_state.counter, "");
668 lp_build_if(&ifthen, gallivm, cond);
669 if (bit_size == 64) {
670 LLVMValueRef ssbo_ptr2 = LLVMBuildBitCast(builder, ssbo_ptr, LLVMPointerType(bld_base->uint64_bld.elem_type, 0), "");
671 lp_build_pointer_set(builder, ssbo_ptr2, loop_index, value_ptr);
672 } else
673 lp_build_pointer_set(builder, ssbo_ptr, loop_index, value_ptr);
674 lp_build_endif(&ifthen);
675 lp_build_loop_end_cond(&loop_state, lp_build_const_int32(gallivm, uint_bld->type.length),
676 NULL, LLVMIntUGE);
677 }
678 }
679
680 static void emit_atomic_mem(struct lp_build_nir_context *bld_base,
681 nir_intrinsic_op nir_op,
682 LLVMValueRef index, LLVMValueRef offset,
683 LLVMValueRef val, LLVMValueRef val2,
684 LLVMValueRef *result)
685 {
686 struct gallivm_state *gallivm = bld_base->base.gallivm;
687 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
688 LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder;
689 LLVMValueRef ssbo_ptr;
690 struct lp_build_context *uint_bld = &bld_base->uint_bld;
691 LLVMAtomicRMWBinOp op;
692 LLVMValueRef ssbo_limit = NULL;
693
694 if (index) {
695 LLVMValueRef ssbo_size_ptr = lp_build_array_get(gallivm, bld->ssbo_sizes_ptr, LLVMBuildExtractElement(builder, index, lp_build_const_int32(gallivm, 0), ""));
696 ssbo_limit = LLVMBuildAShr(gallivm->builder, ssbo_size_ptr, lp_build_const_int32(gallivm, 2), "");
697 ssbo_limit = lp_build_broadcast_scalar(uint_bld, ssbo_limit);
698 ssbo_ptr = lp_build_array_get(gallivm, bld->ssbo_ptr, LLVMBuildExtractElement(builder, index, lp_build_const_int32(gallivm, 0), ""));
699 } else
700 ssbo_ptr = bld->shared_ptr;
701
702 switch (nir_op) {
703 case nir_intrinsic_shared_atomic_add:
704 case nir_intrinsic_ssbo_atomic_add:
705 op = LLVMAtomicRMWBinOpAdd;
706 break;
707 case nir_intrinsic_shared_atomic_exchange:
708 case nir_intrinsic_ssbo_atomic_exchange:
709 op = LLVMAtomicRMWBinOpXchg;
710 break;
711 case nir_intrinsic_shared_atomic_and:
712 case nir_intrinsic_ssbo_atomic_and:
713 op = LLVMAtomicRMWBinOpAnd;
714 break;
715 case nir_intrinsic_shared_atomic_or:
716 case nir_intrinsic_ssbo_atomic_or:
717 op = LLVMAtomicRMWBinOpOr;
718 break;
719 case nir_intrinsic_shared_atomic_xor:
720 case nir_intrinsic_ssbo_atomic_xor:
721 op = LLVMAtomicRMWBinOpXor;
722 break;
723 case nir_intrinsic_shared_atomic_umin:
724 case nir_intrinsic_ssbo_atomic_umin:
725 op = LLVMAtomicRMWBinOpUMin;
726 break;
727 case nir_intrinsic_shared_atomic_umax:
728 case nir_intrinsic_ssbo_atomic_umax:
729 op = LLVMAtomicRMWBinOpUMax;
730 break;
731 case nir_intrinsic_ssbo_atomic_imin:
732 case nir_intrinsic_shared_atomic_imin:
733 op = LLVMAtomicRMWBinOpMin;
734 break;
735 case nir_intrinsic_ssbo_atomic_imax:
736 case nir_intrinsic_shared_atomic_imax:
737 op = LLVMAtomicRMWBinOpMax;
738 break;
739 default:
740 break;
741 }
742
743 offset = lp_build_shr_imm(uint_bld, offset, 2);
744 LLVMValueRef atom_res = lp_build_alloca(gallivm,
745 uint_bld->vec_type, "");
746
747 LLVMValueRef exec_mask = mask_vec(bld_base);
748 if (ssbo_limit) {
749 LLVMValueRef ssbo_oob_cmp = lp_build_cmp(uint_bld, PIPE_FUNC_LESS, offset, ssbo_limit);
750 exec_mask = LLVMBuildAnd(builder, exec_mask, ssbo_oob_cmp, "");
751 }
752
753 struct lp_build_loop_state loop_state;
754 lp_build_loop_begin(&loop_state, gallivm, lp_build_const_int32(gallivm, 0));
755
756 LLVMValueRef value_ptr = LLVMBuildExtractElement(gallivm->builder, val,
757 loop_state.counter, "");
758 value_ptr = LLVMBuildBitCast(gallivm->builder, value_ptr, uint_bld->elem_type, "");
759
760 offset = LLVMBuildExtractElement(gallivm->builder, offset,
761 loop_state.counter, "");
762
763 LLVMValueRef scalar_ptr = LLVMBuildGEP(builder, ssbo_ptr,
764 &offset, 1, "");
765
766 struct lp_build_if_state ifthen;
767 LLVMValueRef cond, temp_res;
768 LLVMValueRef scalar;
769 cond = LLVMBuildICmp(gallivm->builder, LLVMIntNE, exec_mask, uint_bld->zero, "");
770 cond = LLVMBuildExtractElement(gallivm->builder, cond, loop_state.counter, "");
771 lp_build_if(&ifthen, gallivm, cond);
772
773 if (nir_op == nir_intrinsic_ssbo_atomic_comp_swap || nir_op == nir_intrinsic_shared_atomic_comp_swap) {
774 LLVMValueRef cas_src_ptr = LLVMBuildExtractElement(gallivm->builder, val2,
775 loop_state.counter, "");
776 cas_src_ptr = LLVMBuildBitCast(gallivm->builder, cas_src_ptr, uint_bld->elem_type, "");
777 scalar = LLVMBuildAtomicCmpXchg(builder, scalar_ptr, value_ptr,
778 cas_src_ptr,
779 LLVMAtomicOrderingSequentiallyConsistent,
780 LLVMAtomicOrderingSequentiallyConsistent,
781 false);
782 scalar = LLVMBuildExtractValue(gallivm->builder, scalar, 0, "");
783 } else {
784 scalar = LLVMBuildAtomicRMW(builder, op,
785 scalar_ptr, value_ptr,
786 LLVMAtomicOrderingSequentiallyConsistent,
787 false);
788 }
789 temp_res = LLVMBuildLoad(builder, atom_res, "");
790 temp_res = LLVMBuildInsertElement(builder, temp_res, scalar, loop_state.counter, "");
791 LLVMBuildStore(builder, temp_res, atom_res);
792 lp_build_else(&ifthen);
793 temp_res = LLVMBuildLoad(builder, atom_res, "");
794 temp_res = LLVMBuildInsertElement(builder, temp_res, lp_build_const_int32(gallivm, 0), loop_state.counter, "");
795 LLVMBuildStore(builder, temp_res, atom_res);
796 lp_build_endif(&ifthen);
797
798 lp_build_loop_end_cond(&loop_state, lp_build_const_int32(gallivm, uint_bld->type.length),
799 NULL, LLVMIntUGE);
800 *result = LLVMBuildLoad(builder, atom_res, "");
801 }
802
803 static void emit_barrier(struct lp_build_nir_context *bld_base)
804 {
805 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
806 struct gallivm_state * gallivm = bld_base->base.gallivm;
807
808 LLVMBasicBlockRef resume = lp_build_insert_new_block(gallivm, "resume");
809
810 lp_build_coro_suspend_switch(gallivm, bld->coro, resume, false);
811 LLVMPositionBuilderAtEnd(gallivm->builder, resume);
812 }
813
814 static LLVMValueRef emit_get_buffer_size(struct lp_build_nir_context *bld_base,
815 LLVMValueRef index)
816 {
817 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
818 LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder;
819 struct lp_build_context *bld_broad = &bld_base->uint_bld;
820 LLVMValueRef size_ptr = lp_build_array_get(bld_base->base.gallivm, bld->ssbo_sizes_ptr, LLVMBuildExtractElement(builder, index, bld_broad->zero, ""));
821 return lp_build_broadcast_scalar(bld_broad, size_ptr);
822 }
823
824 static void emit_image_op(struct lp_build_nir_context *bld_base,
825 struct lp_img_params *params)
826 {
827 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
828 params->type = bld_base->base.type;
829 params->context_ptr = bld->context_ptr;
830 params->thread_data_ptr = bld->thread_data_ptr;
831 params->exec_mask = mask_vec(bld_base);
832 bld->image->emit_op(bld->image,
833 bld->bld_base.base.gallivm,
834 params);
835
836 }
837
838 static void emit_image_size(struct lp_build_nir_context *bld_base,
839 struct lp_sampler_size_query_params *params)
840 {
841 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
842
843 params->int_type = bld_base->int_bld.type;
844 params->context_ptr = bld->context_ptr;
845
846 bld->image->emit_size_query(bld->image,
847 bld->bld_base.base.gallivm,
848 params);
849
850 }
851
852 static void init_var_slots(struct lp_build_nir_context *bld_base,
853 nir_variable *var, unsigned sc)
854 {
855 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
856 unsigned slots = glsl_count_attribute_slots(var->type, false) * 4;
857
858 for (unsigned comp = sc; comp < slots + sc; comp++) {
859 unsigned this_loc = var->data.driver_location + (comp / 4);
860 unsigned this_chan = comp % 4;
861
862 if (!bld->outputs[this_loc][this_chan])
863 bld->outputs[this_loc][this_chan] = lp_build_alloca(bld_base->base.gallivm,
864 bld_base->base.vec_type, "output");
865 }
866 }
867
868 static void emit_var_decl(struct lp_build_nir_context *bld_base,
869 nir_variable *var)
870 {
871 unsigned sc = var->data.location_frac;
872 switch (var->data.mode) {
873 case nir_var_shader_out: {
874 if (bld_base->shader->info.stage == MESA_SHADER_FRAGMENT) {
875 if (var->data.location == FRAG_RESULT_STENCIL)
876 sc = 1;
877 else if (var->data.location == FRAG_RESULT_DEPTH)
878 sc = 2;
879 }
880 init_var_slots(bld_base, var, sc);
881 break;
882 }
883 default:
884 break;
885 }
886 }
887
888 static void emit_tex(struct lp_build_nir_context *bld_base,
889 struct lp_sampler_params *params)
890 {
891 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
892
893 params->type = bld_base->base.type;
894 params->context_ptr = bld->context_ptr;
895 params->thread_data_ptr = bld->thread_data_ptr;
896
897 bld->sampler->emit_tex_sample(bld->sampler,
898 bld->bld_base.base.gallivm,
899 params);
900 }
901
902 static void emit_tex_size(struct lp_build_nir_context *bld_base,
903 struct lp_sampler_size_query_params *params)
904 {
905 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
906
907 params->int_type = bld_base->int_bld.type;
908 params->context_ptr = bld->context_ptr;
909
910 bld->sampler->emit_size_query(bld->sampler,
911 bld->bld_base.base.gallivm,
912 params);
913 }
914
915 static void emit_sysval_intrin(struct lp_build_nir_context *bld_base,
916 nir_intrinsic_instr *instr,
917 LLVMValueRef result[4])
918 {
919 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
920 struct gallivm_state *gallivm = bld_base->base.gallivm;
921 switch (instr->intrinsic) {
922 case nir_intrinsic_load_instance_id:
923 result[0] = lp_build_broadcast_scalar(&bld_base->uint_bld, bld->system_values.instance_id);
924 break;
925 case nir_intrinsic_load_vertex_id:
926 result[0] = bld->system_values.vertex_id;
927 break;
928 case nir_intrinsic_load_primitive_id:
929 result[0] = bld->system_values.prim_id;
930 break;
931 case nir_intrinsic_load_work_group_id:
932 for (unsigned i = 0; i < 3; i++)
933 result[i] = lp_build_broadcast_scalar(&bld_base->uint_bld, LLVMBuildExtractElement(gallivm->builder, bld->system_values.block_id, lp_build_const_int32(gallivm, i), ""));
934 break;
935 case nir_intrinsic_load_local_invocation_id:
936 for (unsigned i = 0; i < 3; i++)
937 result[i] = LLVMBuildExtractValue(gallivm->builder, bld->system_values.thread_id, i, "");
938 break;
939 case nir_intrinsic_load_num_work_groups:
940 for (unsigned i = 0; i < 3; i++)
941 result[i] = lp_build_broadcast_scalar(&bld_base->uint_bld, LLVMBuildExtractElement(gallivm->builder, bld->system_values.grid_size, lp_build_const_int32(gallivm, i), ""));
942 break;
943 case nir_intrinsic_load_invocation_id:
944 result[0] = lp_build_broadcast_scalar(&bld_base->uint_bld, bld->system_values.invocation_id);
945 break;
946 default:
947 break;
948 }
949 }
950
951 static void bgnloop(struct lp_build_nir_context *bld_base)
952 {
953 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
954 lp_exec_bgnloop(&bld->exec_mask, true);
955 }
956
957 static void endloop(struct lp_build_nir_context *bld_base)
958 {
959 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
960 lp_exec_endloop(bld_base->base.gallivm, &bld->exec_mask);
961 }
962
963 static void if_cond(struct lp_build_nir_context *bld_base, LLVMValueRef cond)
964 {
965 LLVMBuilderRef builder = bld_base->base.gallivm->builder;
966 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
967 lp_exec_mask_cond_push(&bld->exec_mask, LLVMBuildBitCast(builder, cond, bld_base->base.int_vec_type, ""));
968 }
969
970 static void else_stmt(struct lp_build_nir_context *bld_base)
971 {
972 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
973 lp_exec_mask_cond_invert(&bld->exec_mask);
974 }
975
976 static void endif_stmt(struct lp_build_nir_context *bld_base)
977 {
978 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
979 lp_exec_mask_cond_pop(&bld->exec_mask);
980 }
981
982 static void break_stmt(struct lp_build_nir_context *bld_base)
983 {
984 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
985
986 lp_exec_break(&bld->exec_mask, NULL, false);
987 }
988
989 static void continue_stmt(struct lp_build_nir_context *bld_base)
990 {
991 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
992 lp_exec_continue(&bld->exec_mask);
993 }
994
995 static void discard(struct lp_build_nir_context *bld_base, LLVMValueRef cond)
996 {
997 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
998 LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder;
999 LLVMValueRef mask;
1000
1001 if (!cond) {
1002 if (bld->exec_mask.has_mask) {
1003 mask = LLVMBuildNot(builder, bld->exec_mask.exec_mask, "kilp");
1004 } else {
1005 mask = LLVMConstNull(bld->bld_base.base.int_vec_type);
1006 }
1007 } else {
1008 mask = LLVMBuildNot(builder, cond, "");
1009 if (bld->exec_mask.has_mask) {
1010 LLVMValueRef invmask;
1011 invmask = LLVMBuildNot(builder, bld->exec_mask.exec_mask, "kilp");
1012 mask = LLVMBuildOr(builder, mask, invmask, "");
1013 }
1014 }
1015 lp_build_mask_update(bld->mask, mask);
1016 }
1017
1018 static void
1019 increment_vec_ptr_by_mask(struct lp_build_nir_context * bld_base,
1020 LLVMValueRef ptr,
1021 LLVMValueRef mask)
1022 {
1023 LLVMBuilderRef builder = bld_base->base.gallivm->builder;
1024 LLVMValueRef current_vec = LLVMBuildLoad(builder, ptr, "");
1025
1026 current_vec = LLVMBuildSub(builder, current_vec, mask, "");
1027
1028 LLVMBuildStore(builder, current_vec, ptr);
1029 }
1030
1031 static void
1032 clear_uint_vec_ptr_from_mask(struct lp_build_nir_context * bld_base,
1033 LLVMValueRef ptr,
1034 LLVMValueRef mask)
1035 {
1036 LLVMBuilderRef builder = bld_base->base.gallivm->builder;
1037 LLVMValueRef current_vec = LLVMBuildLoad(builder, ptr, "");
1038
1039 current_vec = lp_build_select(&bld_base->uint_bld,
1040 mask,
1041 bld_base->uint_bld.zero,
1042 current_vec);
1043
1044 LLVMBuildStore(builder, current_vec, ptr);
1045 }
1046
1047 static LLVMValueRef
1048 clamp_mask_to_max_output_vertices(struct lp_build_nir_soa_context * bld,
1049 LLVMValueRef current_mask_vec,
1050 LLVMValueRef total_emitted_vertices_vec)
1051 {
1052 LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder;
1053 struct lp_build_context *int_bld = &bld->bld_base.int_bld;
1054 LLVMValueRef max_mask = lp_build_cmp(int_bld, PIPE_FUNC_LESS,
1055 total_emitted_vertices_vec,
1056 bld->max_output_vertices_vec);
1057
1058 return LLVMBuildAnd(builder, current_mask_vec, max_mask, "");
1059 }
1060
1061 static void emit_vertex(struct lp_build_nir_context *bld_base, uint32_t stream_id)
1062 {
1063 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
1064 LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder;
1065
1066 assert(bld->gs_iface->emit_vertex);
1067 LLVMValueRef total_emitted_vertices_vec =
1068 LLVMBuildLoad(builder, bld->total_emitted_vertices_vec_ptr, "");
1069 LLVMValueRef mask = mask_vec(bld_base);
1070 mask = clamp_mask_to_max_output_vertices(bld, mask,
1071 total_emitted_vertices_vec);
1072 bld->gs_iface->emit_vertex(bld->gs_iface, &bld->bld_base.base,
1073 bld->outputs,
1074 total_emitted_vertices_vec,
1075 lp_build_const_int_vec(bld->bld_base.base.gallivm, bld->bld_base.base.type, stream_id));
1076
1077 increment_vec_ptr_by_mask(bld_base, bld->emitted_vertices_vec_ptr,
1078 mask);
1079 increment_vec_ptr_by_mask(bld_base, bld->total_emitted_vertices_vec_ptr,
1080 mask);
1081 }
1082
1083 static void
1084 end_primitive_masked(struct lp_build_nir_context * bld_base,
1085 LLVMValueRef mask)
1086 {
1087 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
1088 LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder;
1089
1090 struct lp_build_context *uint_bld = &bld_base->uint_bld;
1091 LLVMValueRef emitted_vertices_vec =
1092 LLVMBuildLoad(builder, bld->emitted_vertices_vec_ptr, "");
1093 LLVMValueRef emitted_prims_vec =
1094 LLVMBuildLoad(builder, bld->emitted_prims_vec_ptr, "");
1095 LLVMValueRef total_emitted_vertices_vec =
1096 LLVMBuildLoad(builder, bld->total_emitted_vertices_vec_ptr, "");
1097
1098 LLVMValueRef emitted_mask = lp_build_cmp(uint_bld,
1099 PIPE_FUNC_NOTEQUAL,
1100 emitted_vertices_vec,
1101 uint_bld->zero);
1102 mask = LLVMBuildAnd(builder, mask, emitted_mask, "");
1103 bld->gs_iface->end_primitive(bld->gs_iface, &bld->bld_base.base,
1104 total_emitted_vertices_vec,
1105 emitted_vertices_vec, emitted_prims_vec, mask_vec(bld_base));
1106 increment_vec_ptr_by_mask(bld_base, bld->emitted_prims_vec_ptr,
1107 mask);
1108 clear_uint_vec_ptr_from_mask(bld_base, bld->emitted_vertices_vec_ptr,
1109 mask);
1110 }
1111
1112 static void end_primitive(struct lp_build_nir_context *bld_base, uint32_t stream_id)
1113 {
1114 struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base;
1115
1116 assert(bld->gs_iface->end_primitive);
1117
1118 LLVMValueRef mask = mask_vec(bld_base);
1119 end_primitive_masked(bld_base, mask);
1120 }
1121
1122 static void
1123 emit_prologue(struct lp_build_nir_soa_context *bld)
1124 {
1125 struct gallivm_state * gallivm = bld->bld_base.base.gallivm;
1126 if (bld->indirects & nir_var_shader_in && !bld->gs_iface) {
1127 uint32_t num_inputs = util_bitcount64(bld->bld_base.shader->info.inputs_read);
1128 unsigned index, chan;
1129 LLVMTypeRef vec_type = bld->bld_base.base.vec_type;
1130 LLVMValueRef array_size = lp_build_const_int32(gallivm, num_inputs * 4);
1131 bld->inputs_array = lp_build_array_alloca(gallivm,
1132 vec_type, array_size,
1133 "input_array");
1134
1135 for (index = 0; index < num_inputs; ++index) {
1136 for (chan = 0; chan < TGSI_NUM_CHANNELS; ++chan) {
1137 LLVMValueRef lindex =
1138 lp_build_const_int32(gallivm, index * 4 + chan);
1139 LLVMValueRef input_ptr =
1140 LLVMBuildGEP(gallivm->builder, bld->inputs_array,
1141 &lindex, 1, "");
1142 LLVMValueRef value = bld->inputs[index][chan];
1143 if (value)
1144 LLVMBuildStore(gallivm->builder, value, input_ptr);
1145 }
1146 }
1147 }
1148 }
1149
1150 void lp_build_nir_soa(struct gallivm_state *gallivm,
1151 struct nir_shader *shader,
1152 const struct lp_build_tgsi_params *params,
1153 LLVMValueRef (*outputs)[4])
1154 {
1155 struct lp_build_nir_soa_context bld;
1156 struct lp_type type = params->type;
1157 struct lp_type res_type;
1158
1159 assert(type.length <= LP_MAX_VECTOR_LENGTH);
1160 memset(&res_type, 0, sizeof res_type);
1161 res_type.width = type.width;
1162 res_type.length = type.length;
1163 res_type.sign = 1;
1164
1165 /* Setup build context */
1166 memset(&bld, 0, sizeof bld);
1167 lp_build_context_init(&bld.bld_base.base, gallivm, type);
1168 lp_build_context_init(&bld.bld_base.uint_bld, gallivm, lp_uint_type(type));
1169 lp_build_context_init(&bld.bld_base.int_bld, gallivm, lp_int_type(type));
1170 lp_build_context_init(&bld.elem_bld, gallivm, lp_elem_type(type));
1171 lp_build_context_init(&bld.uint_elem_bld, gallivm, lp_elem_type(lp_uint_type(type)));
1172 {
1173 struct lp_type dbl_type;
1174 dbl_type = type;
1175 dbl_type.width *= 2;
1176 lp_build_context_init(&bld.bld_base.dbl_bld, gallivm, dbl_type);
1177 }
1178 {
1179 struct lp_type uint64_type;
1180 uint64_type = lp_uint_type(type);
1181 uint64_type.width *= 2;
1182 lp_build_context_init(&bld.bld_base.uint64_bld, gallivm, uint64_type);
1183 }
1184 {
1185 struct lp_type int64_type;
1186 int64_type = lp_int_type(type);
1187 int64_type.width *= 2;
1188 lp_build_context_init(&bld.bld_base.int64_bld, gallivm, int64_type);
1189 }
1190 bld.bld_base.load_var = emit_load_var;
1191 bld.bld_base.store_var = emit_store_var;
1192 bld.bld_base.load_reg = emit_load_reg;
1193 bld.bld_base.store_reg = emit_store_reg;
1194 bld.bld_base.emit_var_decl = emit_var_decl;
1195 bld.bld_base.load_ubo = emit_load_ubo;
1196 bld.bld_base.tex = emit_tex;
1197 bld.bld_base.tex_size = emit_tex_size;
1198 bld.bld_base.bgnloop = bgnloop;
1199 bld.bld_base.endloop = endloop;
1200 bld.bld_base.if_cond = if_cond;
1201 bld.bld_base.else_stmt = else_stmt;
1202 bld.bld_base.endif_stmt = endif_stmt;
1203 bld.bld_base.break_stmt = break_stmt;
1204 bld.bld_base.continue_stmt = continue_stmt;
1205 bld.bld_base.sysval_intrin = emit_sysval_intrin;
1206 bld.bld_base.discard = discard;
1207 bld.bld_base.emit_vertex = emit_vertex;
1208 bld.bld_base.end_primitive = end_primitive;
1209 bld.bld_base.load_mem = emit_load_mem;
1210 bld.bld_base.store_mem = emit_store_mem;
1211 bld.bld_base.get_buffer_size = emit_get_buffer_size;
1212 bld.bld_base.atomic_mem = emit_atomic_mem;
1213 bld.bld_base.barrier = emit_barrier;
1214 bld.bld_base.image_op = emit_image_op;
1215 bld.bld_base.image_size = emit_image_size;
1216
1217 bld.mask = params->mask;
1218 bld.inputs = params->inputs;
1219 bld.outputs = outputs;
1220 bld.consts_ptr = params->consts_ptr;
1221 bld.const_sizes_ptr = params->const_sizes_ptr;
1222 bld.ssbo_ptr = params->ssbo_ptr;
1223 bld.ssbo_sizes_ptr = params->ssbo_sizes_ptr;
1224 bld.sampler = params->sampler;
1225 // bld.bld_base.info = params->info;
1226
1227 bld.context_ptr = params->context_ptr;
1228 bld.thread_data_ptr = params->thread_data_ptr;
1229 bld.image = params->image;
1230 bld.shared_ptr = params->shared_ptr;
1231 bld.coro = params->coro;
1232
1233 bld.indirects = 0;
1234 if (params->info->indirect_files & (1 << TGSI_FILE_INPUT))
1235 bld.indirects |= nir_var_shader_in;
1236
1237 bld.gs_iface = params->gs_iface;
1238 if (bld.gs_iface) {
1239 struct lp_build_context *uint_bld = &bld.bld_base.uint_bld;
1240
1241 bld.max_output_vertices_vec = lp_build_const_int_vec(gallivm, bld.bld_base.int_bld.type,
1242 shader->info.gs.vertices_out);
1243 bld.emitted_prims_vec_ptr =
1244 lp_build_alloca(gallivm, uint_bld->vec_type, "emitted_prims_ptr");
1245 bld.emitted_vertices_vec_ptr =
1246 lp_build_alloca(gallivm, uint_bld->vec_type, "emitted_vertices_ptr");
1247 bld.total_emitted_vertices_vec_ptr =
1248 lp_build_alloca(gallivm, uint_bld->vec_type, "total_emitted_vertices_ptr");
1249 }
1250 lp_exec_mask_init(&bld.exec_mask, &bld.bld_base.int_bld);
1251
1252 bld.system_values = *params->system_values;
1253
1254 bld.bld_base.shader = shader;
1255
1256 emit_prologue(&bld);
1257 lp_build_nir_llvm(&bld.bld_base, shader);
1258
1259 if (bld.gs_iface) {
1260 LLVMBuilderRef builder = bld.bld_base.base.gallivm->builder;
1261 LLVMValueRef total_emitted_vertices_vec;
1262 LLVMValueRef emitted_prims_vec;
1263 end_primitive_masked(&bld.bld_base, lp_build_mask_value(bld.mask));
1264 total_emitted_vertices_vec =
1265 LLVMBuildLoad(builder, bld.total_emitted_vertices_vec_ptr, "");
1266 emitted_prims_vec =
1267 LLVMBuildLoad(builder, bld.emitted_prims_vec_ptr, "");
1268
1269 bld.gs_iface->gs_epilogue(bld.gs_iface,
1270 total_emitted_vertices_vec,
1271 emitted_prims_vec);
1272 }
1273 lp_exec_mask_fini(&bld.exec_mask);
1274 }