i965/vec4: remove setting default LOD in the backend
[mesa.git] / src / intel / compiler / brw_vec4_nir.cpp
1 /*
2 * Copyright © 2015 Intel Corporation
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 "brw_nir.h"
25 #include "brw_vec4.h"
26 #include "brw_vec4_builder.h"
27 #include "brw_vec4_surface_builder.h"
28
29 using namespace brw;
30 using namespace brw::surface_access;
31
32 namespace brw {
33
34 void
35 vec4_visitor::emit_nir_code()
36 {
37 if (nir->num_uniforms > 0)
38 nir_setup_uniforms();
39
40 /* get the main function and emit it */
41 nir_foreach_function(function, nir) {
42 assert(strcmp(function->name, "main") == 0);
43 assert(function->impl);
44 nir_emit_impl(function->impl);
45 }
46 }
47
48 void
49 vec4_visitor::nir_setup_uniforms()
50 {
51 uniforms = nir->num_uniforms / 16;
52 }
53
54 void
55 vec4_visitor::nir_emit_impl(nir_function_impl *impl)
56 {
57 nir_locals = ralloc_array(mem_ctx, dst_reg, impl->reg_alloc);
58 for (unsigned i = 0; i < impl->reg_alloc; i++) {
59 nir_locals[i] = dst_reg();
60 }
61
62 foreach_list_typed(nir_register, reg, node, &impl->registers) {
63 unsigned array_elems =
64 reg->num_array_elems == 0 ? 1 : reg->num_array_elems;
65 const unsigned num_regs = array_elems * DIV_ROUND_UP(reg->bit_size, 32);
66 nir_locals[reg->index] = dst_reg(VGRF, alloc.allocate(num_regs));
67
68 if (reg->bit_size == 64)
69 nir_locals[reg->index].type = BRW_REGISTER_TYPE_DF;
70 }
71
72 nir_ssa_values = ralloc_array(mem_ctx, dst_reg, impl->ssa_alloc);
73
74 nir_emit_cf_list(&impl->body);
75 }
76
77 void
78 vec4_visitor::nir_emit_cf_list(exec_list *list)
79 {
80 exec_list_validate(list);
81 foreach_list_typed(nir_cf_node, node, node, list) {
82 switch (node->type) {
83 case nir_cf_node_if:
84 nir_emit_if(nir_cf_node_as_if(node));
85 break;
86
87 case nir_cf_node_loop:
88 nir_emit_loop(nir_cf_node_as_loop(node));
89 break;
90
91 case nir_cf_node_block:
92 nir_emit_block(nir_cf_node_as_block(node));
93 break;
94
95 default:
96 unreachable("Invalid CFG node block");
97 }
98 }
99 }
100
101 void
102 vec4_visitor::nir_emit_if(nir_if *if_stmt)
103 {
104 /* First, put the condition in f0 */
105 src_reg condition = get_nir_src(if_stmt->condition, BRW_REGISTER_TYPE_D, 1);
106 vec4_instruction *inst = emit(MOV(dst_null_d(), condition));
107 inst->conditional_mod = BRW_CONDITIONAL_NZ;
108
109 /* We can just predicate based on the X channel, as the condition only
110 * goes on its own line */
111 emit(IF(BRW_PREDICATE_ALIGN16_REPLICATE_X));
112
113 nir_emit_cf_list(&if_stmt->then_list);
114
115 /* note: if the else is empty, dead CF elimination will remove it */
116 emit(BRW_OPCODE_ELSE);
117
118 nir_emit_cf_list(&if_stmt->else_list);
119
120 emit(BRW_OPCODE_ENDIF);
121 }
122
123 void
124 vec4_visitor::nir_emit_loop(nir_loop *loop)
125 {
126 emit(BRW_OPCODE_DO);
127
128 nir_emit_cf_list(&loop->body);
129
130 emit(BRW_OPCODE_WHILE);
131 }
132
133 void
134 vec4_visitor::nir_emit_block(nir_block *block)
135 {
136 nir_foreach_instr(instr, block) {
137 nir_emit_instr(instr);
138 }
139 }
140
141 void
142 vec4_visitor::nir_emit_instr(nir_instr *instr)
143 {
144 base_ir = instr;
145
146 switch (instr->type) {
147 case nir_instr_type_load_const:
148 nir_emit_load_const(nir_instr_as_load_const(instr));
149 break;
150
151 case nir_instr_type_intrinsic:
152 nir_emit_intrinsic(nir_instr_as_intrinsic(instr));
153 break;
154
155 case nir_instr_type_alu:
156 nir_emit_alu(nir_instr_as_alu(instr));
157 break;
158
159 case nir_instr_type_jump:
160 nir_emit_jump(nir_instr_as_jump(instr));
161 break;
162
163 case nir_instr_type_tex:
164 nir_emit_texture(nir_instr_as_tex(instr));
165 break;
166
167 case nir_instr_type_ssa_undef:
168 nir_emit_undef(nir_instr_as_ssa_undef(instr));
169 break;
170
171 default:
172 fprintf(stderr, "VS instruction not yet implemented by NIR->vec4\n");
173 break;
174 }
175 }
176
177 static dst_reg
178 dst_reg_for_nir_reg(vec4_visitor *v, nir_register *nir_reg,
179 unsigned base_offset, nir_src *indirect)
180 {
181 dst_reg reg;
182
183 reg = v->nir_locals[nir_reg->index];
184 if (nir_reg->bit_size == 64)
185 reg.type = BRW_REGISTER_TYPE_DF;
186 reg = offset(reg, 8, base_offset);
187 if (indirect) {
188 reg.reladdr =
189 new(v->mem_ctx) src_reg(v->get_nir_src(*indirect,
190 BRW_REGISTER_TYPE_D,
191 1));
192 }
193 return reg;
194 }
195
196 dst_reg
197 vec4_visitor::get_nir_dest(const nir_dest &dest)
198 {
199 if (dest.is_ssa) {
200 dst_reg dst =
201 dst_reg(VGRF, alloc.allocate(DIV_ROUND_UP(dest.ssa.bit_size, 32)));
202 if (dest.ssa.bit_size == 64)
203 dst.type = BRW_REGISTER_TYPE_DF;
204 nir_ssa_values[dest.ssa.index] = dst;
205 return dst;
206 } else {
207 return dst_reg_for_nir_reg(this, dest.reg.reg, dest.reg.base_offset,
208 dest.reg.indirect);
209 }
210 }
211
212 dst_reg
213 vec4_visitor::get_nir_dest(const nir_dest &dest, enum brw_reg_type type)
214 {
215 return retype(get_nir_dest(dest), type);
216 }
217
218 dst_reg
219 vec4_visitor::get_nir_dest(const nir_dest &dest, nir_alu_type type)
220 {
221 return get_nir_dest(dest, brw_type_for_nir_type(devinfo, type));
222 }
223
224 src_reg
225 vec4_visitor::get_nir_src(const nir_src &src, enum brw_reg_type type,
226 unsigned num_components)
227 {
228 dst_reg reg;
229
230 if (src.is_ssa) {
231 assert(src.ssa != NULL);
232 reg = nir_ssa_values[src.ssa->index];
233 }
234 else {
235 reg = dst_reg_for_nir_reg(this, src.reg.reg, src.reg.base_offset,
236 src.reg.indirect);
237 }
238
239 reg = retype(reg, type);
240
241 src_reg reg_as_src = src_reg(reg);
242 reg_as_src.swizzle = brw_swizzle_for_size(num_components);
243 return reg_as_src;
244 }
245
246 src_reg
247 vec4_visitor::get_nir_src(const nir_src &src, nir_alu_type type,
248 unsigned num_components)
249 {
250 return get_nir_src(src, brw_type_for_nir_type(devinfo, type),
251 num_components);
252 }
253
254 src_reg
255 vec4_visitor::get_nir_src(const nir_src &src, unsigned num_components)
256 {
257 /* if type is not specified, default to signed int */
258 return get_nir_src(src, nir_type_int32, num_components);
259 }
260
261 src_reg
262 vec4_visitor::get_indirect_offset(nir_intrinsic_instr *instr)
263 {
264 nir_src *offset_src = nir_get_io_offset_src(instr);
265 nir_const_value *const_value = nir_src_as_const_value(*offset_src);
266
267 if (const_value) {
268 /* The only constant offset we should find is 0. brw_nir.c's
269 * add_const_offset_to_base() will fold other constant offsets
270 * into instr->const_index[0].
271 */
272 assert(const_value->u32[0] == 0);
273 return src_reg();
274 }
275
276 return get_nir_src(*offset_src, BRW_REGISTER_TYPE_UD, 1);
277 }
278
279 static src_reg
280 setup_imm_df(const vec4_builder &bld, double v)
281 {
282 const gen_device_info *devinfo = bld.shader->devinfo;
283 assert(devinfo->gen >= 7);
284
285 if (devinfo->gen >= 8)
286 return brw_imm_df(v);
287
288 /* gen7.5 does not support DF immediates straighforward but the DIM
289 * instruction allows to set the 64-bit immediate value.
290 */
291 if (devinfo->is_haswell) {
292 const vec4_builder ubld = bld.exec_all();
293 const dst_reg dst = bld.vgrf(BRW_REGISTER_TYPE_DF);
294 ubld.DIM(dst, brw_imm_df(v));
295 return swizzle(src_reg(dst), BRW_SWIZZLE_XXXX);
296 }
297
298 /* gen7 does not support DF immediates */
299 union {
300 double d;
301 struct {
302 uint32_t i1;
303 uint32_t i2;
304 };
305 } di;
306
307 di.d = v;
308
309 /* Write the low 32-bit of the constant to the X:UD channel and the
310 * high 32-bit to the Y:UD channel to build the constant in a VGRF.
311 * We have to do this twice (offset 0 and offset 1), since a DF VGRF takes
312 * two SIMD8 registers in SIMD4x2 execution. Finally, return a swizzle
313 * XXXX so any access to the VGRF only reads the constant data in these
314 * channels.
315 */
316 const dst_reg tmp = bld.vgrf(BRW_REGISTER_TYPE_UD, 2);
317 for (unsigned n = 0; n < 2; n++) {
318 const vec4_builder ubld = bld.exec_all().group(4, n);
319 ubld.MOV(writemask(offset(tmp, 8, n), WRITEMASK_X), brw_imm_ud(di.i1));
320 ubld.MOV(writemask(offset(tmp, 8, n), WRITEMASK_Y), brw_imm_ud(di.i2));
321 }
322
323 return swizzle(src_reg(retype(tmp, BRW_REGISTER_TYPE_DF)), BRW_SWIZZLE_XXXX);
324 }
325
326 void
327 vec4_visitor::nir_emit_load_const(nir_load_const_instr *instr)
328 {
329 dst_reg reg;
330
331 if (instr->def.bit_size == 64) {
332 reg = dst_reg(VGRF, alloc.allocate(2));
333 reg.type = BRW_REGISTER_TYPE_DF;
334 } else {
335 reg = dst_reg(VGRF, alloc.allocate(1));
336 reg.type = BRW_REGISTER_TYPE_D;
337 }
338
339 const vec4_builder ibld = vec4_builder(this).at_end();
340 unsigned remaining = brw_writemask_for_size(instr->def.num_components);
341
342 /* @FIXME: consider emitting vector operations to save some MOVs in
343 * cases where the components are representable in 8 bits.
344 * For now, we emit a MOV for each distinct value.
345 */
346 for (unsigned i = 0; i < instr->def.num_components; i++) {
347 unsigned writemask = 1 << i;
348
349 if ((remaining & writemask) == 0)
350 continue;
351
352 for (unsigned j = i; j < instr->def.num_components; j++) {
353 if ((instr->def.bit_size == 32 &&
354 instr->value.u32[i] == instr->value.u32[j]) ||
355 (instr->def.bit_size == 64 &&
356 instr->value.f64[i] == instr->value.f64[j])) {
357 writemask |= 1 << j;
358 }
359 }
360
361 reg.writemask = writemask;
362 if (instr->def.bit_size == 64) {
363 emit(MOV(reg, setup_imm_df(ibld, instr->value.f64[i])));
364 } else {
365 emit(MOV(reg, brw_imm_d(instr->value.i32[i])));
366 }
367
368 remaining &= ~writemask;
369 }
370
371 /* Set final writemask */
372 reg.writemask = brw_writemask_for_size(instr->def.num_components);
373
374 nir_ssa_values[instr->def.index] = reg;
375 }
376
377 void
378 vec4_visitor::nir_emit_intrinsic(nir_intrinsic_instr *instr)
379 {
380 dst_reg dest;
381 src_reg src;
382
383 switch (instr->intrinsic) {
384
385 case nir_intrinsic_load_input: {
386 nir_const_value *const_offset = nir_src_as_const_value(instr->src[0]);
387
388 /* We set EmitNoIndirectInput for VS */
389 assert(const_offset);
390
391 dest = get_nir_dest(instr->dest);
392 dest.writemask = brw_writemask_for_size(instr->num_components);
393
394 src = src_reg(ATTR, instr->const_index[0] + const_offset->u32[0],
395 glsl_type::uvec4_type);
396 src = retype(src, dest.type);
397
398 bool is_64bit = nir_dest_bit_size(instr->dest) == 64;
399 if (is_64bit) {
400 dst_reg tmp = dst_reg(this, glsl_type::dvec4_type);
401 src.swizzle = BRW_SWIZZLE_XYZW;
402 shuffle_64bit_data(tmp, src, false);
403 emit(MOV(dest, src_reg(tmp)));
404 } else {
405 /* Swizzle source based on component layout qualifier */
406 src.swizzle = BRW_SWZ_COMP_INPUT(nir_intrinsic_component(instr));
407 emit(MOV(dest, src));
408 }
409 break;
410 }
411
412 case nir_intrinsic_store_output: {
413 nir_const_value *const_offset = nir_src_as_const_value(instr->src[1]);
414 assert(const_offset);
415
416 int varying = instr->const_index[0] + const_offset->u32[0];
417
418 bool is_64bit = nir_src_bit_size(instr->src[0]) == 64;
419 if (is_64bit) {
420 src_reg data;
421 src = get_nir_src(instr->src[0], BRW_REGISTER_TYPE_DF,
422 instr->num_components);
423 data = src_reg(this, glsl_type::dvec4_type);
424 shuffle_64bit_data(dst_reg(data), src, true);
425 src = retype(data, BRW_REGISTER_TYPE_F);
426 } else {
427 src = get_nir_src(instr->src[0], BRW_REGISTER_TYPE_F,
428 instr->num_components);
429 }
430
431 unsigned c = nir_intrinsic_component(instr);
432 output_reg[varying][c] = dst_reg(src);
433 output_num_components[varying][c] = instr->num_components;
434
435 unsigned num_components = instr->num_components;
436 if (is_64bit)
437 num_components *= 2;
438
439 output_reg[varying][c] = dst_reg(src);
440 output_num_components[varying][c] = MIN2(4, num_components);
441
442 if (is_64bit && num_components > 4) {
443 assert(num_components <= 8);
444 output_reg[varying + 1][c] = byte_offset(dst_reg(src), REG_SIZE);
445 output_num_components[varying + 1][c] = num_components - 4;
446 }
447 break;
448 }
449
450 case nir_intrinsic_get_buffer_size: {
451 nir_const_value *const_uniform_block = nir_src_as_const_value(instr->src[0]);
452 unsigned ssbo_index = const_uniform_block ? const_uniform_block->u32[0] : 0;
453
454 const unsigned index =
455 prog_data->base.binding_table.ssbo_start + ssbo_index;
456 dst_reg result_dst = get_nir_dest(instr->dest);
457 vec4_instruction *inst = new(mem_ctx)
458 vec4_instruction(VS_OPCODE_GET_BUFFER_SIZE, result_dst);
459
460 inst->base_mrf = 2;
461 inst->mlen = 1; /* always at least one */
462 inst->src[1] = brw_imm_ud(index);
463
464 /* MRF for the first parameter */
465 src_reg lod = brw_imm_d(0);
466 int param_base = inst->base_mrf;
467 int writemask = WRITEMASK_X;
468 emit(MOV(dst_reg(MRF, param_base, glsl_type::int_type, writemask), lod));
469
470 emit(inst);
471
472 brw_mark_surface_used(&prog_data->base, index);
473 break;
474 }
475
476 case nir_intrinsic_store_ssbo: {
477 assert(devinfo->gen >= 7);
478
479 /* Block index */
480 src_reg surf_index;
481 nir_const_value *const_uniform_block =
482 nir_src_as_const_value(instr->src[1]);
483 if (const_uniform_block) {
484 unsigned index = prog_data->base.binding_table.ssbo_start +
485 const_uniform_block->u32[0];
486 surf_index = brw_imm_ud(index);
487 brw_mark_surface_used(&prog_data->base, index);
488 } else {
489 surf_index = src_reg(this, glsl_type::uint_type);
490 emit(ADD(dst_reg(surf_index), get_nir_src(instr->src[1], 1),
491 brw_imm_ud(prog_data->base.binding_table.ssbo_start)));
492 surf_index = emit_uniformize(surf_index);
493
494 brw_mark_surface_used(&prog_data->base,
495 prog_data->base.binding_table.ssbo_start +
496 nir->info.num_ssbos - 1);
497 }
498
499 /* Offset */
500 src_reg offset_reg;
501 nir_const_value *const_offset = nir_src_as_const_value(instr->src[2]);
502 if (const_offset) {
503 offset_reg = brw_imm_ud(const_offset->u32[0]);
504 } else {
505 offset_reg = get_nir_src(instr->src[2], 1);
506 }
507
508 /* Value */
509 src_reg val_reg = get_nir_src(instr->src[0], BRW_REGISTER_TYPE_F, 4);
510
511 /* Writemask */
512 unsigned write_mask = instr->const_index[0];
513
514 /* IvyBridge does not have a native SIMD4x2 untyped write message so untyped
515 * writes will use SIMD8 mode. In order to hide this and keep symmetry across
516 * typed and untyped messages and across hardware platforms, the
517 * current implementation of the untyped messages will transparently convert
518 * the SIMD4x2 payload into an equivalent SIMD8 payload by transposing it
519 * and enabling only channel X on the SEND instruction.
520 *
521 * The above, works well for full vector writes, but not for partial writes
522 * where we want to write some channels and not others, like when we have
523 * code such as v.xyw = vec3(1,2,4). Because the untyped write messages are
524 * quite restrictive with regards to the channel enables we can configure in
525 * the message descriptor (not all combinations are allowed) we cannot simply
526 * implement these scenarios with a single message while keeping the
527 * aforementioned symmetry in the implementation. For now we de decided that
528 * it is better to keep the symmetry to reduce complexity, so in situations
529 * such as the one described we end up emitting two untyped write messages
530 * (one for xy and another for w).
531 *
532 * The code below packs consecutive channels into a single write message,
533 * detects gaps in the vector write and if needed, sends a second message
534 * with the remaining channels. If in the future we decide that we want to
535 * emit a single message at the expense of losing the symmetry in the
536 * implementation we can:
537 *
538 * 1) For IvyBridge: Only use the red channel of the untyped write SIMD8
539 * message payload. In this mode we can write up to 8 offsets and dwords
540 * to the red channel only (for the two vec4s in the SIMD4x2 execution)
541 * and select which of the 8 channels carry data to write by setting the
542 * appropriate writemask in the dst register of the SEND instruction.
543 * It would require to write a new generator opcode specifically for
544 * IvyBridge since we would need to prepare a SIMD8 payload that could
545 * use any channel, not just X.
546 *
547 * 2) For Haswell+: Simply send a single write message but set the writemask
548 * on the dst of the SEND instruction to select the channels we want to
549 * write. It would require to modify the current messages to receive
550 * and honor the writemask provided.
551 */
552 const vec4_builder bld = vec4_builder(this).at_end()
553 .annotate(current_annotation, base_ir);
554
555 unsigned type_slots = nir_src_bit_size(instr->src[0]) / 32;
556 if (type_slots == 2) {
557 dst_reg tmp = dst_reg(this, glsl_type::dvec4_type);
558 shuffle_64bit_data(tmp, retype(val_reg, tmp.type), true);
559 val_reg = src_reg(retype(tmp, BRW_REGISTER_TYPE_F));
560 }
561
562 uint8_t swizzle[4] = { 0, 0, 0, 0};
563 int num_channels = 0;
564 unsigned skipped_channels = 0;
565 int num_components = instr->num_components;
566 for (int i = 0; i < num_components; i++) {
567 /* Read components Z/W of a dvec from the appropriate place. We will
568 * also have to adjust the swizzle (we do that with the '% 4' below)
569 */
570 if (i == 2 && type_slots == 2)
571 val_reg = byte_offset(val_reg, REG_SIZE);
572
573 /* Check if this channel needs to be written. If so, record the
574 * channel we need to take the data from in the swizzle array
575 */
576 int component_mask = 1 << i;
577 int write_test = write_mask & component_mask;
578 if (write_test) {
579 /* If we are writing doubles we have to write 2 channels worth of
580 * of data (64 bits) for each double component.
581 */
582 swizzle[num_channels++] = (i * type_slots) % 4;
583 if (type_slots == 2)
584 swizzle[num_channels++] = (i * type_slots + 1) % 4;
585 }
586
587 /* If we don't have to write this channel it means we have a gap in the
588 * vector, so write the channels we accumulated until now, if any. Do
589 * the same if this was the last component in the vector, if we have
590 * enough channels for a full vec4 write or if we have processed
591 * components XY of a dvec (since components ZW are not in the same
592 * SIMD register)
593 */
594 if (!write_test || i == num_components - 1 || num_channels == 4 ||
595 (i == 1 && type_slots == 2)) {
596 if (num_channels > 0) {
597 /* We have channels to write, so update the offset we need to
598 * write at to skip the channels we skipped, if any.
599 */
600 if (skipped_channels > 0) {
601 if (offset_reg.file == IMM) {
602 offset_reg.ud += 4 * skipped_channels;
603 } else {
604 emit(ADD(dst_reg(offset_reg), offset_reg,
605 brw_imm_ud(4 * skipped_channels)));
606 }
607 }
608
609 /* Swizzle the data register so we take the data from the channels
610 * we need to write and send the write message. This will write
611 * num_channels consecutive dwords starting at offset.
612 */
613 val_reg.swizzle =
614 BRW_SWIZZLE4(swizzle[0], swizzle[1], swizzle[2], swizzle[3]);
615 emit_untyped_write(bld, surf_index, offset_reg, val_reg,
616 1 /* dims */, num_channels /* size */,
617 BRW_PREDICATE_NONE);
618
619 /* If we have to do a second write we will have to update the
620 * offset so that we jump over the channels we have just written
621 * now.
622 */
623 skipped_channels = num_channels;
624
625 /* Restart the count for the next write message */
626 num_channels = 0;
627 }
628
629 /* If we didn't write the channel, increase skipped count */
630 if (!write_test)
631 skipped_channels += type_slots;
632 }
633 }
634
635 break;
636 }
637
638 case nir_intrinsic_load_ssbo: {
639 assert(devinfo->gen >= 7);
640
641 nir_const_value *const_uniform_block =
642 nir_src_as_const_value(instr->src[0]);
643
644 src_reg surf_index;
645 if (const_uniform_block) {
646 unsigned index = prog_data->base.binding_table.ssbo_start +
647 const_uniform_block->u32[0];
648 surf_index = brw_imm_ud(index);
649
650 brw_mark_surface_used(&prog_data->base, index);
651 } else {
652 surf_index = src_reg(this, glsl_type::uint_type);
653 emit(ADD(dst_reg(surf_index), get_nir_src(instr->src[0], 1),
654 brw_imm_ud(prog_data->base.binding_table.ssbo_start)));
655 surf_index = emit_uniformize(surf_index);
656
657 /* Assume this may touch any UBO. It would be nice to provide
658 * a tighter bound, but the array information is already lowered away.
659 */
660 brw_mark_surface_used(&prog_data->base,
661 prog_data->base.binding_table.ssbo_start +
662 nir->info.num_ssbos - 1);
663 }
664
665 src_reg offset_reg;
666 nir_const_value *const_offset = nir_src_as_const_value(instr->src[1]);
667 if (const_offset) {
668 offset_reg = brw_imm_ud(const_offset->u32[0]);
669 } else {
670 offset_reg = get_nir_src(instr->src[1], 1);
671 }
672
673 /* Read the vector */
674 const vec4_builder bld = vec4_builder(this).at_end()
675 .annotate(current_annotation, base_ir);
676
677 src_reg read_result;
678 dst_reg dest = get_nir_dest(instr->dest);
679 if (type_sz(dest.type) < 8) {
680 read_result = emit_untyped_read(bld, surf_index, offset_reg,
681 1 /* dims */, 4 /* size*/,
682 BRW_PREDICATE_NONE);
683 } else {
684 src_reg shuffled = src_reg(this, glsl_type::dvec4_type);
685
686 src_reg temp;
687 temp = emit_untyped_read(bld, surf_index, offset_reg,
688 1 /* dims */, 4 /* size*/,
689 BRW_PREDICATE_NONE);
690 emit(MOV(dst_reg(retype(shuffled, temp.type)), temp));
691
692 if (offset_reg.file == IMM)
693 offset_reg.ud += 16;
694 else
695 emit(ADD(dst_reg(offset_reg), offset_reg, brw_imm_ud(16)));
696
697 temp = emit_untyped_read(bld, surf_index, offset_reg,
698 1 /* dims */, 4 /* size*/,
699 BRW_PREDICATE_NONE);
700 emit(MOV(dst_reg(retype(byte_offset(shuffled, REG_SIZE), temp.type)),
701 temp));
702
703 read_result = src_reg(this, glsl_type::dvec4_type);
704 shuffle_64bit_data(dst_reg(read_result), shuffled, false);
705 }
706
707 read_result.type = dest.type;
708 read_result.swizzle = brw_swizzle_for_size(instr->num_components);
709 emit(MOV(dest, read_result));
710 break;
711 }
712
713 case nir_intrinsic_ssbo_atomic_add:
714 nir_emit_ssbo_atomic(BRW_AOP_ADD, instr);
715 break;
716 case nir_intrinsic_ssbo_atomic_imin:
717 nir_emit_ssbo_atomic(BRW_AOP_IMIN, instr);
718 break;
719 case nir_intrinsic_ssbo_atomic_umin:
720 nir_emit_ssbo_atomic(BRW_AOP_UMIN, instr);
721 break;
722 case nir_intrinsic_ssbo_atomic_imax:
723 nir_emit_ssbo_atomic(BRW_AOP_IMAX, instr);
724 break;
725 case nir_intrinsic_ssbo_atomic_umax:
726 nir_emit_ssbo_atomic(BRW_AOP_UMAX, instr);
727 break;
728 case nir_intrinsic_ssbo_atomic_and:
729 nir_emit_ssbo_atomic(BRW_AOP_AND, instr);
730 break;
731 case nir_intrinsic_ssbo_atomic_or:
732 nir_emit_ssbo_atomic(BRW_AOP_OR, instr);
733 break;
734 case nir_intrinsic_ssbo_atomic_xor:
735 nir_emit_ssbo_atomic(BRW_AOP_XOR, instr);
736 break;
737 case nir_intrinsic_ssbo_atomic_exchange:
738 nir_emit_ssbo_atomic(BRW_AOP_MOV, instr);
739 break;
740 case nir_intrinsic_ssbo_atomic_comp_swap:
741 nir_emit_ssbo_atomic(BRW_AOP_CMPWR, instr);
742 break;
743
744 case nir_intrinsic_load_vertex_id:
745 unreachable("should be lowered by lower_vertex_id()");
746
747 case nir_intrinsic_load_vertex_id_zero_base:
748 case nir_intrinsic_load_base_vertex:
749 case nir_intrinsic_load_instance_id:
750 case nir_intrinsic_load_base_instance:
751 case nir_intrinsic_load_draw_id:
752 case nir_intrinsic_load_invocation_id:
753 unreachable("should be lowered by brw_nir_lower_vs_inputs()");
754
755 case nir_intrinsic_load_uniform: {
756 /* Offsets are in bytes but they should always be multiples of 4 */
757 assert(nir_intrinsic_base(instr) % 4 == 0);
758
759 dest = get_nir_dest(instr->dest);
760
761 src = src_reg(dst_reg(UNIFORM, nir_intrinsic_base(instr) / 16));
762 src.type = dest.type;
763
764 /* Uniforms don't actually have to be vec4 aligned. In the case that
765 * it isn't, we have to use a swizzle to shift things around. They
766 * do still have the std140 alignment requirement that vec2's have to
767 * be vec2-aligned and vec3's and vec4's have to be vec4-aligned.
768 *
769 * The swizzle also works in the indirect case as the generator adds
770 * the swizzle to the offset for us.
771 */
772 const int type_size = type_sz(src.type);
773 unsigned shift = (nir_intrinsic_base(instr) % 16) / type_size;
774 assert(shift + instr->num_components <= 4);
775
776 nir_const_value *const_offset = nir_src_as_const_value(instr->src[0]);
777 if (const_offset) {
778 /* Offsets are in bytes but they should always be multiples of 4 */
779 assert(const_offset->u32[0] % 4 == 0);
780
781 src.swizzle = brw_swizzle_for_size(instr->num_components);
782 dest.writemask = brw_writemask_for_size(instr->num_components);
783 unsigned offset = const_offset->u32[0] + shift * type_size;
784 src.offset = ROUND_DOWN_TO(offset, 16);
785 shift = (offset % 16) / type_size;
786 assert(shift + instr->num_components <= 4);
787 src.swizzle += BRW_SWIZZLE4(shift, shift, shift, shift);
788
789 emit(MOV(dest, src));
790 } else {
791 /* Uniform arrays are vec4 aligned, because of std140 alignment
792 * rules.
793 */
794 assert(shift == 0);
795
796 src_reg indirect = get_nir_src(instr->src[0], BRW_REGISTER_TYPE_UD, 1);
797
798 /* MOV_INDIRECT is going to stomp the whole thing anyway */
799 dest.writemask = WRITEMASK_XYZW;
800
801 emit(SHADER_OPCODE_MOV_INDIRECT, dest, src,
802 indirect, brw_imm_ud(instr->const_index[1]));
803 }
804 break;
805 }
806
807 case nir_intrinsic_atomic_counter_inc:
808 case nir_intrinsic_atomic_counter_dec:
809 case nir_intrinsic_atomic_counter_read:
810 case nir_intrinsic_atomic_counter_add:
811 case nir_intrinsic_atomic_counter_min:
812 case nir_intrinsic_atomic_counter_max:
813 case nir_intrinsic_atomic_counter_and:
814 case nir_intrinsic_atomic_counter_or:
815 case nir_intrinsic_atomic_counter_xor:
816 case nir_intrinsic_atomic_counter_exchange:
817 case nir_intrinsic_atomic_counter_comp_swap: {
818 unsigned surf_index = prog_data->base.binding_table.abo_start +
819 (unsigned) instr->const_index[0];
820 const vec4_builder bld =
821 vec4_builder(this).at_end().annotate(current_annotation, base_ir);
822
823 /* Get some metadata from the image intrinsic. */
824 const nir_intrinsic_info *info = &nir_intrinsic_infos[instr->intrinsic];
825
826 /* Get the arguments of the atomic intrinsic. */
827 src_reg offset = get_nir_src(instr->src[0], nir_type_int32,
828 instr->num_components);
829 const src_reg surface = brw_imm_ud(surf_index);
830 const src_reg src0 = (info->num_srcs >= 2
831 ? get_nir_src(instr->src[1]) : src_reg());
832 const src_reg src1 = (info->num_srcs >= 3
833 ? get_nir_src(instr->src[2]) : src_reg());
834
835 src_reg tmp;
836
837 dest = get_nir_dest(instr->dest);
838
839 if (instr->intrinsic == nir_intrinsic_atomic_counter_read) {
840 tmp = emit_untyped_read(bld, surface, offset, 1, 1);
841 } else {
842 tmp = emit_untyped_atomic(bld, surface, offset,
843 src0, src1,
844 1, 1,
845 get_atomic_counter_op(instr->intrinsic));
846 }
847
848 bld.MOV(retype(dest, tmp.type), tmp);
849 brw_mark_surface_used(stage_prog_data, surf_index);
850 break;
851 }
852
853 case nir_intrinsic_load_ubo: {
854 nir_const_value *const_block_index = nir_src_as_const_value(instr->src[0]);
855 src_reg surf_index;
856
857 dest = get_nir_dest(instr->dest);
858
859 if (const_block_index) {
860 /* The block index is a constant, so just emit the binding table entry
861 * as an immediate.
862 */
863 const unsigned index = prog_data->base.binding_table.ubo_start +
864 const_block_index->u32[0];
865 surf_index = brw_imm_ud(index);
866 brw_mark_surface_used(&prog_data->base, index);
867 } else {
868 /* The block index is not a constant. Evaluate the index expression
869 * per-channel and add the base UBO index; we have to select a value
870 * from any live channel.
871 */
872 surf_index = src_reg(this, glsl_type::uint_type);
873 emit(ADD(dst_reg(surf_index), get_nir_src(instr->src[0], nir_type_int32,
874 instr->num_components),
875 brw_imm_ud(prog_data->base.binding_table.ubo_start)));
876 surf_index = emit_uniformize(surf_index);
877
878 /* Assume this may touch any UBO. It would be nice to provide
879 * a tighter bound, but the array information is already lowered away.
880 */
881 brw_mark_surface_used(&prog_data->base,
882 prog_data->base.binding_table.ubo_start +
883 nir->info.num_ubos - 1);
884 }
885
886 src_reg offset_reg;
887 nir_const_value *const_offset = nir_src_as_const_value(instr->src[1]);
888 if (const_offset) {
889 offset_reg = brw_imm_ud(const_offset->u32[0] & ~15);
890 } else {
891 offset_reg = get_nir_src(instr->src[1], nir_type_uint32, 1);
892 }
893
894 src_reg packed_consts;
895 if (nir_dest_bit_size(instr->dest) == 32) {
896 packed_consts = src_reg(this, glsl_type::vec4_type);
897 emit_pull_constant_load_reg(dst_reg(packed_consts),
898 surf_index,
899 offset_reg,
900 NULL, NULL /* before_block/inst */);
901 } else {
902 src_reg temp = src_reg(this, glsl_type::dvec4_type);
903 src_reg temp_float = retype(temp, BRW_REGISTER_TYPE_F);
904
905 emit_pull_constant_load_reg(dst_reg(temp_float),
906 surf_index, offset_reg, NULL, NULL);
907 if (offset_reg.file == IMM)
908 offset_reg.ud += 16;
909 else
910 emit(ADD(dst_reg(offset_reg), offset_reg, brw_imm_ud(16u)));
911 emit_pull_constant_load_reg(dst_reg(byte_offset(temp_float, REG_SIZE)),
912 surf_index, offset_reg, NULL, NULL);
913
914 packed_consts = src_reg(this, glsl_type::dvec4_type);
915 shuffle_64bit_data(dst_reg(packed_consts), temp, false);
916 }
917
918 packed_consts.swizzle = brw_swizzle_for_size(instr->num_components);
919 if (const_offset) {
920 unsigned type_size = type_sz(dest.type);
921 packed_consts.swizzle +=
922 BRW_SWIZZLE4(const_offset->u32[0] % 16 / type_size,
923 const_offset->u32[0] % 16 / type_size,
924 const_offset->u32[0] % 16 / type_size,
925 const_offset->u32[0] % 16 / type_size);
926 }
927
928 emit(MOV(dest, retype(packed_consts, dest.type)));
929
930 break;
931 }
932
933 case nir_intrinsic_memory_barrier: {
934 const vec4_builder bld =
935 vec4_builder(this).at_end().annotate(current_annotation, base_ir);
936 const dst_reg tmp = bld.vgrf(BRW_REGISTER_TYPE_UD, 2);
937 bld.emit(SHADER_OPCODE_MEMORY_FENCE, tmp)
938 ->size_written = 2 * REG_SIZE;
939 break;
940 }
941
942 case nir_intrinsic_shader_clock: {
943 /* We cannot do anything if there is an event, so ignore it for now */
944 const src_reg shader_clock = get_timestamp();
945 const enum brw_reg_type type = brw_type_for_base_type(glsl_type::uvec2_type);
946
947 dest = get_nir_dest(instr->dest, type);
948 emit(MOV(dest, shader_clock));
949 break;
950 }
951
952 default:
953 unreachable("Unknown intrinsic");
954 }
955 }
956
957 void
958 vec4_visitor::nir_emit_ssbo_atomic(int op, nir_intrinsic_instr *instr)
959 {
960 dst_reg dest;
961 if (nir_intrinsic_infos[instr->intrinsic].has_dest)
962 dest = get_nir_dest(instr->dest);
963
964 src_reg surface;
965 nir_const_value *const_surface = nir_src_as_const_value(instr->src[0]);
966 if (const_surface) {
967 unsigned surf_index = prog_data->base.binding_table.ssbo_start +
968 const_surface->u32[0];
969 surface = brw_imm_ud(surf_index);
970 brw_mark_surface_used(&prog_data->base, surf_index);
971 } else {
972 surface = src_reg(this, glsl_type::uint_type);
973 emit(ADD(dst_reg(surface), get_nir_src(instr->src[0]),
974 brw_imm_ud(prog_data->base.binding_table.ssbo_start)));
975
976 /* Assume this may touch any UBO. This is the same we do for other
977 * UBO/SSBO accesses with non-constant surface.
978 */
979 brw_mark_surface_used(&prog_data->base,
980 prog_data->base.binding_table.ssbo_start +
981 nir->info.num_ssbos - 1);
982 }
983
984 src_reg offset = get_nir_src(instr->src[1], 1);
985 src_reg data1 = get_nir_src(instr->src[2], 1);
986 src_reg data2;
987 if (op == BRW_AOP_CMPWR)
988 data2 = get_nir_src(instr->src[3], 1);
989
990 /* Emit the actual atomic operation operation */
991 const vec4_builder bld =
992 vec4_builder(this).at_end().annotate(current_annotation, base_ir);
993
994 src_reg atomic_result = emit_untyped_atomic(bld, surface, offset,
995 data1, data2,
996 1 /* dims */, 1 /* rsize */,
997 op,
998 BRW_PREDICATE_NONE);
999 dest.type = atomic_result.type;
1000 bld.MOV(dest, atomic_result);
1001 }
1002
1003 static unsigned
1004 brw_swizzle_for_nir_swizzle(uint8_t swizzle[4])
1005 {
1006 return BRW_SWIZZLE4(swizzle[0], swizzle[1], swizzle[2], swizzle[3]);
1007 }
1008
1009 static enum brw_conditional_mod
1010 brw_conditional_for_nir_comparison(nir_op op)
1011 {
1012 switch (op) {
1013 case nir_op_flt:
1014 case nir_op_ilt:
1015 case nir_op_ult:
1016 return BRW_CONDITIONAL_L;
1017
1018 case nir_op_fge:
1019 case nir_op_ige:
1020 case nir_op_uge:
1021 return BRW_CONDITIONAL_GE;
1022
1023 case nir_op_feq:
1024 case nir_op_ieq:
1025 case nir_op_ball_fequal2:
1026 case nir_op_ball_iequal2:
1027 case nir_op_ball_fequal3:
1028 case nir_op_ball_iequal3:
1029 case nir_op_ball_fequal4:
1030 case nir_op_ball_iequal4:
1031 return BRW_CONDITIONAL_Z;
1032
1033 case nir_op_fne:
1034 case nir_op_ine:
1035 case nir_op_bany_fnequal2:
1036 case nir_op_bany_inequal2:
1037 case nir_op_bany_fnequal3:
1038 case nir_op_bany_inequal3:
1039 case nir_op_bany_fnequal4:
1040 case nir_op_bany_inequal4:
1041 return BRW_CONDITIONAL_NZ;
1042
1043 default:
1044 unreachable("not reached: bad operation for comparison");
1045 }
1046 }
1047
1048 bool
1049 vec4_visitor::optimize_predicate(nir_alu_instr *instr,
1050 enum brw_predicate *predicate)
1051 {
1052 if (!instr->src[0].src.is_ssa ||
1053 instr->src[0].src.ssa->parent_instr->type != nir_instr_type_alu)
1054 return false;
1055
1056 nir_alu_instr *cmp_instr =
1057 nir_instr_as_alu(instr->src[0].src.ssa->parent_instr);
1058
1059 switch (cmp_instr->op) {
1060 case nir_op_bany_fnequal2:
1061 case nir_op_bany_inequal2:
1062 case nir_op_bany_fnequal3:
1063 case nir_op_bany_inequal3:
1064 case nir_op_bany_fnequal4:
1065 case nir_op_bany_inequal4:
1066 *predicate = BRW_PREDICATE_ALIGN16_ANY4H;
1067 break;
1068 case nir_op_ball_fequal2:
1069 case nir_op_ball_iequal2:
1070 case nir_op_ball_fequal3:
1071 case nir_op_ball_iequal3:
1072 case nir_op_ball_fequal4:
1073 case nir_op_ball_iequal4:
1074 *predicate = BRW_PREDICATE_ALIGN16_ALL4H;
1075 break;
1076 default:
1077 return false;
1078 }
1079
1080 unsigned size_swizzle =
1081 brw_swizzle_for_size(nir_op_infos[cmp_instr->op].input_sizes[0]);
1082
1083 src_reg op[2];
1084 assert(nir_op_infos[cmp_instr->op].num_inputs == 2);
1085 for (unsigned i = 0; i < 2; i++) {
1086 nir_alu_type type = nir_op_infos[cmp_instr->op].input_types[i];
1087 unsigned bit_size = nir_src_bit_size(cmp_instr->src[i].src);
1088 type = (nir_alu_type) (((unsigned) type) | bit_size);
1089 op[i] = get_nir_src(cmp_instr->src[i].src, type, 4);
1090 unsigned base_swizzle =
1091 brw_swizzle_for_nir_swizzle(cmp_instr->src[i].swizzle);
1092 op[i].swizzle = brw_compose_swizzle(size_swizzle, base_swizzle);
1093 op[i].abs = cmp_instr->src[i].abs;
1094 op[i].negate = cmp_instr->src[i].negate;
1095 }
1096
1097 emit(CMP(dst_null_d(), op[0], op[1],
1098 brw_conditional_for_nir_comparison(cmp_instr->op)));
1099
1100 return true;
1101 }
1102
1103 static void
1104 emit_find_msb_using_lzd(const vec4_builder &bld,
1105 const dst_reg &dst,
1106 const src_reg &src,
1107 bool is_signed)
1108 {
1109 vec4_instruction *inst;
1110 src_reg temp = src;
1111
1112 if (is_signed) {
1113 /* LZD of an absolute value source almost always does the right
1114 * thing. There are two problem values:
1115 *
1116 * * 0x80000000. Since abs(0x80000000) == 0x80000000, LZD returns
1117 * 0. However, findMSB(int(0x80000000)) == 30.
1118 *
1119 * * 0xffffffff. Since abs(0xffffffff) == 1, LZD returns
1120 * 31. Section 8.8 (Integer Functions) of the GLSL 4.50 spec says:
1121 *
1122 * For a value of zero or negative one, -1 will be returned.
1123 *
1124 * * Negative powers of two. LZD(abs(-(1<<x))) returns x, but
1125 * findMSB(-(1<<x)) should return x-1.
1126 *
1127 * For all negative number cases, including 0x80000000 and
1128 * 0xffffffff, the correct value is obtained from LZD if instead of
1129 * negating the (already negative) value the logical-not is used. A
1130 * conditonal logical-not can be achieved in two instructions.
1131 */
1132 temp = src_reg(bld.vgrf(BRW_REGISTER_TYPE_D));
1133
1134 bld.ASR(dst_reg(temp), src, brw_imm_d(31));
1135 bld.XOR(dst_reg(temp), temp, src);
1136 }
1137
1138 bld.LZD(retype(dst, BRW_REGISTER_TYPE_UD),
1139 retype(temp, BRW_REGISTER_TYPE_UD));
1140
1141 /* LZD counts from the MSB side, while GLSL's findMSB() wants the count
1142 * from the LSB side. Subtract the result from 31 to convert the MSB count
1143 * into an LSB count. If no bits are set, LZD will return 32. 31-32 = -1,
1144 * which is exactly what findMSB() is supposed to return.
1145 */
1146 inst = bld.ADD(dst, retype(src_reg(dst), BRW_REGISTER_TYPE_D),
1147 brw_imm_d(31));
1148 inst->src[0].negate = true;
1149 }
1150
1151 void
1152 vec4_visitor::emit_conversion_from_double(dst_reg dst, src_reg src,
1153 bool saturate)
1154 {
1155 /* BDW PRM vol 15 - workarounds:
1156 * DF->f format conversion for Align16 has wrong emask calculation when
1157 * source is immediate.
1158 */
1159 if (devinfo->gen == 8 && dst.type == BRW_REGISTER_TYPE_F &&
1160 src.file == BRW_IMMEDIATE_VALUE) {
1161 vec4_instruction *inst = emit(MOV(dst, brw_imm_f(src.df)));
1162 inst->saturate = saturate;
1163 return;
1164 }
1165
1166 enum opcode op;
1167 switch (dst.type) {
1168 case BRW_REGISTER_TYPE_D:
1169 op = VEC4_OPCODE_DOUBLE_TO_D32;
1170 break;
1171 case BRW_REGISTER_TYPE_UD:
1172 op = VEC4_OPCODE_DOUBLE_TO_U32;
1173 break;
1174 case BRW_REGISTER_TYPE_F:
1175 op = VEC4_OPCODE_DOUBLE_TO_F32;
1176 break;
1177 default:
1178 unreachable("Unknown conversion");
1179 }
1180
1181 dst_reg temp = dst_reg(this, glsl_type::dvec4_type);
1182 emit(MOV(temp, src));
1183 dst_reg temp2 = dst_reg(this, glsl_type::dvec4_type);
1184 emit(op, temp2, src_reg(temp));
1185
1186 emit(VEC4_OPCODE_PICK_LOW_32BIT, retype(temp2, dst.type), src_reg(temp2));
1187 vec4_instruction *inst = emit(MOV(dst, src_reg(retype(temp2, dst.type))));
1188 inst->saturate = saturate;
1189 }
1190
1191 void
1192 vec4_visitor::emit_conversion_to_double(dst_reg dst, src_reg src,
1193 bool saturate)
1194 {
1195 dst_reg tmp_dst = dst_reg(src_reg(this, glsl_type::dvec4_type));
1196 src_reg tmp_src = retype(src_reg(this, glsl_type::vec4_type), src.type);
1197 emit(MOV(dst_reg(tmp_src), src));
1198 emit(VEC4_OPCODE_TO_DOUBLE, tmp_dst, tmp_src);
1199 vec4_instruction *inst = emit(MOV(dst, src_reg(tmp_dst)));
1200 inst->saturate = saturate;
1201 }
1202
1203 void
1204 vec4_visitor::nir_emit_alu(nir_alu_instr *instr)
1205 {
1206 vec4_instruction *inst;
1207
1208 nir_alu_type dst_type = (nir_alu_type) (nir_op_infos[instr->op].output_type |
1209 nir_dest_bit_size(instr->dest.dest));
1210 dst_reg dst = get_nir_dest(instr->dest.dest, dst_type);
1211 dst.writemask = instr->dest.write_mask;
1212
1213 src_reg op[4];
1214 for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++) {
1215 nir_alu_type src_type = (nir_alu_type)
1216 (nir_op_infos[instr->op].input_types[i] |
1217 nir_src_bit_size(instr->src[i].src));
1218 op[i] = get_nir_src(instr->src[i].src, src_type, 4);
1219 op[i].swizzle = brw_swizzle_for_nir_swizzle(instr->src[i].swizzle);
1220 op[i].abs = instr->src[i].abs;
1221 op[i].negate = instr->src[i].negate;
1222 }
1223
1224 switch (instr->op) {
1225 case nir_op_imov:
1226 case nir_op_fmov:
1227 inst = emit(MOV(dst, op[0]));
1228 inst->saturate = instr->dest.saturate;
1229 break;
1230
1231 case nir_op_vec2:
1232 case nir_op_vec3:
1233 case nir_op_vec4:
1234 unreachable("not reached: should be handled by lower_vec_to_movs()");
1235
1236 case nir_op_i2f32:
1237 case nir_op_u2f32:
1238 inst = emit(MOV(dst, op[0]));
1239 inst->saturate = instr->dest.saturate;
1240 break;
1241
1242 case nir_op_f2f32:
1243 case nir_op_f2i32:
1244 case nir_op_f2u32:
1245 if (nir_src_bit_size(instr->src[0].src) == 64)
1246 emit_conversion_from_double(dst, op[0], instr->dest.saturate);
1247 else
1248 inst = emit(MOV(dst, op[0]));
1249 break;
1250
1251 case nir_op_f2f64:
1252 case nir_op_i2f64:
1253 case nir_op_u2f64:
1254 emit_conversion_to_double(dst, op[0], instr->dest.saturate);
1255 break;
1256
1257 case nir_op_iadd:
1258 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1259 /* fall through */
1260 case nir_op_fadd:
1261 inst = emit(ADD(dst, op[0], op[1]));
1262 inst->saturate = instr->dest.saturate;
1263 break;
1264
1265 case nir_op_fmul:
1266 inst = emit(MUL(dst, op[0], op[1]));
1267 inst->saturate = instr->dest.saturate;
1268 break;
1269
1270 case nir_op_imul: {
1271 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1272 if (devinfo->gen < 8) {
1273 nir_const_value *value0 = nir_src_as_const_value(instr->src[0].src);
1274 nir_const_value *value1 = nir_src_as_const_value(instr->src[1].src);
1275
1276 /* For integer multiplication, the MUL uses the low 16 bits of one of
1277 * the operands (src0 through SNB, src1 on IVB and later). The MACH
1278 * accumulates in the contribution of the upper 16 bits of that
1279 * operand. If we can determine that one of the args is in the low
1280 * 16 bits, though, we can just emit a single MUL.
1281 */
1282 if (value0 && value0->u32[0] < (1 << 16)) {
1283 if (devinfo->gen < 7)
1284 emit(MUL(dst, op[0], op[1]));
1285 else
1286 emit(MUL(dst, op[1], op[0]));
1287 } else if (value1 && value1->u32[0] < (1 << 16)) {
1288 if (devinfo->gen < 7)
1289 emit(MUL(dst, op[1], op[0]));
1290 else
1291 emit(MUL(dst, op[0], op[1]));
1292 } else {
1293 struct brw_reg acc = retype(brw_acc_reg(8), dst.type);
1294
1295 emit(MUL(acc, op[0], op[1]));
1296 emit(MACH(dst_null_d(), op[0], op[1]));
1297 emit(MOV(dst, src_reg(acc)));
1298 }
1299 } else {
1300 emit(MUL(dst, op[0], op[1]));
1301 }
1302 break;
1303 }
1304
1305 case nir_op_imul_high:
1306 case nir_op_umul_high: {
1307 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1308 struct brw_reg acc = retype(brw_acc_reg(8), dst.type);
1309
1310 if (devinfo->gen >= 8)
1311 emit(MUL(acc, op[0], retype(op[1], BRW_REGISTER_TYPE_UW)));
1312 else
1313 emit(MUL(acc, op[0], op[1]));
1314
1315 emit(MACH(dst, op[0], op[1]));
1316 break;
1317 }
1318
1319 case nir_op_frcp:
1320 inst = emit_math(SHADER_OPCODE_RCP, dst, op[0]);
1321 inst->saturate = instr->dest.saturate;
1322 break;
1323
1324 case nir_op_fexp2:
1325 inst = emit_math(SHADER_OPCODE_EXP2, dst, op[0]);
1326 inst->saturate = instr->dest.saturate;
1327 break;
1328
1329 case nir_op_flog2:
1330 inst = emit_math(SHADER_OPCODE_LOG2, dst, op[0]);
1331 inst->saturate = instr->dest.saturate;
1332 break;
1333
1334 case nir_op_fsin:
1335 inst = emit_math(SHADER_OPCODE_SIN, dst, op[0]);
1336 inst->saturate = instr->dest.saturate;
1337 break;
1338
1339 case nir_op_fcos:
1340 inst = emit_math(SHADER_OPCODE_COS, dst, op[0]);
1341 inst->saturate = instr->dest.saturate;
1342 break;
1343
1344 case nir_op_idiv:
1345 case nir_op_udiv:
1346 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1347 emit_math(SHADER_OPCODE_INT_QUOTIENT, dst, op[0], op[1]);
1348 break;
1349
1350 case nir_op_umod:
1351 case nir_op_irem:
1352 /* According to the sign table for INT DIV in the Ivy Bridge PRM, it
1353 * appears that our hardware just does the right thing for signed
1354 * remainder.
1355 */
1356 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1357 emit_math(SHADER_OPCODE_INT_REMAINDER, dst, op[0], op[1]);
1358 break;
1359
1360 case nir_op_imod: {
1361 /* Get a regular C-style remainder. If a % b == 0, set the predicate. */
1362 inst = emit_math(SHADER_OPCODE_INT_REMAINDER, dst, op[0], op[1]);
1363
1364 /* Math instructions don't support conditional mod */
1365 inst = emit(MOV(dst_null_d(), src_reg(dst)));
1366 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1367
1368 /* Now, we need to determine if signs of the sources are different.
1369 * When we XOR the sources, the top bit is 0 if they are the same and 1
1370 * if they are different. We can then use a conditional modifier to
1371 * turn that into a predicate. This leads us to an XOR.l instruction.
1372 *
1373 * Technically, according to the PRM, you're not allowed to use .l on a
1374 * XOR instruction. However, emperical experiments and Curro's reading
1375 * of the simulator source both indicate that it's safe.
1376 */
1377 src_reg tmp = src_reg(this, glsl_type::ivec4_type);
1378 inst = emit(XOR(dst_reg(tmp), op[0], op[1]));
1379 inst->predicate = BRW_PREDICATE_NORMAL;
1380 inst->conditional_mod = BRW_CONDITIONAL_L;
1381
1382 /* If the result of the initial remainder operation is non-zero and the
1383 * two sources have different signs, add in a copy of op[1] to get the
1384 * final integer modulus value.
1385 */
1386 inst = emit(ADD(dst, src_reg(dst), op[1]));
1387 inst->predicate = BRW_PREDICATE_NORMAL;
1388 break;
1389 }
1390
1391 case nir_op_ldexp:
1392 unreachable("not reached: should be handled by ldexp_to_arith()");
1393
1394 case nir_op_fsqrt:
1395 inst = emit_math(SHADER_OPCODE_SQRT, dst, op[0]);
1396 inst->saturate = instr->dest.saturate;
1397 break;
1398
1399 case nir_op_frsq:
1400 inst = emit_math(SHADER_OPCODE_RSQ, dst, op[0]);
1401 inst->saturate = instr->dest.saturate;
1402 break;
1403
1404 case nir_op_fpow:
1405 inst = emit_math(SHADER_OPCODE_POW, dst, op[0], op[1]);
1406 inst->saturate = instr->dest.saturate;
1407 break;
1408
1409 case nir_op_uadd_carry: {
1410 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1411 struct brw_reg acc = retype(brw_acc_reg(8), BRW_REGISTER_TYPE_UD);
1412
1413 emit(ADDC(dst_null_ud(), op[0], op[1]));
1414 emit(MOV(dst, src_reg(acc)));
1415 break;
1416 }
1417
1418 case nir_op_usub_borrow: {
1419 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1420 struct brw_reg acc = retype(brw_acc_reg(8), BRW_REGISTER_TYPE_UD);
1421
1422 emit(SUBB(dst_null_ud(), op[0], op[1]));
1423 emit(MOV(dst, src_reg(acc)));
1424 break;
1425 }
1426
1427 case nir_op_ftrunc:
1428 inst = emit(RNDZ(dst, op[0]));
1429 inst->saturate = instr->dest.saturate;
1430 break;
1431
1432 case nir_op_fceil: {
1433 src_reg tmp = src_reg(this, glsl_type::float_type);
1434 tmp.swizzle =
1435 brw_swizzle_for_size(instr->src[0].src.is_ssa ?
1436 instr->src[0].src.ssa->num_components :
1437 instr->src[0].src.reg.reg->num_components);
1438
1439 op[0].negate = !op[0].negate;
1440 emit(RNDD(dst_reg(tmp), op[0]));
1441 tmp.negate = true;
1442 inst = emit(MOV(dst, tmp));
1443 inst->saturate = instr->dest.saturate;
1444 break;
1445 }
1446
1447 case nir_op_ffloor:
1448 inst = emit(RNDD(dst, op[0]));
1449 inst->saturate = instr->dest.saturate;
1450 break;
1451
1452 case nir_op_ffract:
1453 inst = emit(FRC(dst, op[0]));
1454 inst->saturate = instr->dest.saturate;
1455 break;
1456
1457 case nir_op_fround_even:
1458 inst = emit(RNDE(dst, op[0]));
1459 inst->saturate = instr->dest.saturate;
1460 break;
1461
1462 case nir_op_fquantize2f16: {
1463 /* See also vec4_visitor::emit_pack_half_2x16() */
1464 src_reg tmp16 = src_reg(this, glsl_type::uvec4_type);
1465 src_reg tmp32 = src_reg(this, glsl_type::vec4_type);
1466 src_reg zero = src_reg(this, glsl_type::vec4_type);
1467
1468 /* Check for denormal */
1469 src_reg abs_src0 = op[0];
1470 abs_src0.abs = true;
1471 emit(CMP(dst_null_f(), abs_src0, brw_imm_f(ldexpf(1.0, -14)),
1472 BRW_CONDITIONAL_L));
1473 /* Get the appropriately signed zero */
1474 emit(AND(retype(dst_reg(zero), BRW_REGISTER_TYPE_UD),
1475 retype(op[0], BRW_REGISTER_TYPE_UD),
1476 brw_imm_ud(0x80000000)));
1477 /* Do the actual F32 -> F16 -> F32 conversion */
1478 emit(F32TO16(dst_reg(tmp16), op[0]));
1479 emit(F16TO32(dst_reg(tmp32), tmp16));
1480 /* Select that or zero based on normal status */
1481 inst = emit(BRW_OPCODE_SEL, dst, zero, tmp32);
1482 inst->predicate = BRW_PREDICATE_NORMAL;
1483 inst->saturate = instr->dest.saturate;
1484 break;
1485 }
1486
1487 case nir_op_imin:
1488 case nir_op_umin:
1489 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1490 /* fall through */
1491 case nir_op_fmin:
1492 inst = emit_minmax(BRW_CONDITIONAL_L, dst, op[0], op[1]);
1493 inst->saturate = instr->dest.saturate;
1494 break;
1495
1496 case nir_op_imax:
1497 case nir_op_umax:
1498 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1499 /* fall through */
1500 case nir_op_fmax:
1501 inst = emit_minmax(BRW_CONDITIONAL_GE, dst, op[0], op[1]);
1502 inst->saturate = instr->dest.saturate;
1503 break;
1504
1505 case nir_op_fddx:
1506 case nir_op_fddx_coarse:
1507 case nir_op_fddx_fine:
1508 case nir_op_fddy:
1509 case nir_op_fddy_coarse:
1510 case nir_op_fddy_fine:
1511 unreachable("derivatives are not valid in vertex shaders");
1512
1513 case nir_op_ilt:
1514 case nir_op_ult:
1515 case nir_op_ige:
1516 case nir_op_uge:
1517 case nir_op_ieq:
1518 case nir_op_ine:
1519 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1520 /* Fallthrough */
1521 case nir_op_flt:
1522 case nir_op_fge:
1523 case nir_op_feq:
1524 case nir_op_fne: {
1525 enum brw_conditional_mod conditional_mod =
1526 brw_conditional_for_nir_comparison(instr->op);
1527
1528 if (nir_src_bit_size(instr->src[0].src) < 64) {
1529 emit(CMP(dst, op[0], op[1], conditional_mod));
1530 } else {
1531 /* Produce a 32-bit boolean result from the DF comparison by selecting
1532 * only the low 32-bit in each DF produced. Do this in a temporary
1533 * so we can then move from there to the result using align16 again
1534 * to honor the original writemask.
1535 */
1536 dst_reg temp = dst_reg(this, glsl_type::dvec4_type);
1537 emit(CMP(temp, op[0], op[1], conditional_mod));
1538 dst_reg result = dst_reg(this, glsl_type::bvec4_type);
1539 emit(VEC4_OPCODE_PICK_LOW_32BIT, result, src_reg(temp));
1540 emit(MOV(dst, src_reg(result)));
1541 }
1542 break;
1543 }
1544
1545 case nir_op_ball_iequal2:
1546 case nir_op_ball_iequal3:
1547 case nir_op_ball_iequal4:
1548 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1549 /* Fallthrough */
1550 case nir_op_ball_fequal2:
1551 case nir_op_ball_fequal3:
1552 case nir_op_ball_fequal4: {
1553 unsigned swiz =
1554 brw_swizzle_for_size(nir_op_infos[instr->op].input_sizes[0]);
1555
1556 emit(CMP(dst_null_d(), swizzle(op[0], swiz), swizzle(op[1], swiz),
1557 brw_conditional_for_nir_comparison(instr->op)));
1558 emit(MOV(dst, brw_imm_d(0)));
1559 inst = emit(MOV(dst, brw_imm_d(~0)));
1560 inst->predicate = BRW_PREDICATE_ALIGN16_ALL4H;
1561 break;
1562 }
1563
1564 case nir_op_bany_inequal2:
1565 case nir_op_bany_inequal3:
1566 case nir_op_bany_inequal4:
1567 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1568 /* Fallthrough */
1569 case nir_op_bany_fnequal2:
1570 case nir_op_bany_fnequal3:
1571 case nir_op_bany_fnequal4: {
1572 unsigned swiz =
1573 brw_swizzle_for_size(nir_op_infos[instr->op].input_sizes[0]);
1574
1575 emit(CMP(dst_null_d(), swizzle(op[0], swiz), swizzle(op[1], swiz),
1576 brw_conditional_for_nir_comparison(instr->op)));
1577
1578 emit(MOV(dst, brw_imm_d(0)));
1579 inst = emit(MOV(dst, brw_imm_d(~0)));
1580 inst->predicate = BRW_PREDICATE_ALIGN16_ANY4H;
1581 break;
1582 }
1583
1584 case nir_op_inot:
1585 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1586 if (devinfo->gen >= 8) {
1587 op[0] = resolve_source_modifiers(op[0]);
1588 }
1589 emit(NOT(dst, op[0]));
1590 break;
1591
1592 case nir_op_ixor:
1593 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1594 if (devinfo->gen >= 8) {
1595 op[0] = resolve_source_modifiers(op[0]);
1596 op[1] = resolve_source_modifiers(op[1]);
1597 }
1598 emit(XOR(dst, op[0], op[1]));
1599 break;
1600
1601 case nir_op_ior:
1602 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1603 if (devinfo->gen >= 8) {
1604 op[0] = resolve_source_modifiers(op[0]);
1605 op[1] = resolve_source_modifiers(op[1]);
1606 }
1607 emit(OR(dst, op[0], op[1]));
1608 break;
1609
1610 case nir_op_iand:
1611 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1612 if (devinfo->gen >= 8) {
1613 op[0] = resolve_source_modifiers(op[0]);
1614 op[1] = resolve_source_modifiers(op[1]);
1615 }
1616 emit(AND(dst, op[0], op[1]));
1617 break;
1618
1619 case nir_op_b2i:
1620 case nir_op_b2f:
1621 emit(MOV(dst, negate(op[0])));
1622 break;
1623
1624 case nir_op_f2b:
1625 if (nir_src_bit_size(instr->src[0].src) == 64) {
1626 /* We use a MOV with conditional_mod to check if the provided value is
1627 * 0.0. We want this to flush denormalized numbers to zero, so we set a
1628 * source modifier on the source operand to trigger this, as source
1629 * modifiers don't affect the result of the testing against 0.0.
1630 */
1631 src_reg value = op[0];
1632 value.abs = true;
1633 vec4_instruction *inst = emit(MOV(dst_null_df(), value));
1634 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1635
1636 src_reg one = src_reg(this, glsl_type::ivec4_type);
1637 emit(MOV(dst_reg(one), brw_imm_d(~0)));
1638 inst = emit(BRW_OPCODE_SEL, dst, one, brw_imm_d(0));
1639 inst->predicate = BRW_PREDICATE_NORMAL;
1640 } else {
1641 emit(CMP(dst, op[0], brw_imm_f(0.0f), BRW_CONDITIONAL_NZ));
1642 }
1643 break;
1644
1645 case nir_op_i2b:
1646 emit(CMP(dst, op[0], brw_imm_d(0), BRW_CONDITIONAL_NZ));
1647 break;
1648
1649 case nir_op_fnoise1_1:
1650 case nir_op_fnoise1_2:
1651 case nir_op_fnoise1_3:
1652 case nir_op_fnoise1_4:
1653 case nir_op_fnoise2_1:
1654 case nir_op_fnoise2_2:
1655 case nir_op_fnoise2_3:
1656 case nir_op_fnoise2_4:
1657 case nir_op_fnoise3_1:
1658 case nir_op_fnoise3_2:
1659 case nir_op_fnoise3_3:
1660 case nir_op_fnoise3_4:
1661 case nir_op_fnoise4_1:
1662 case nir_op_fnoise4_2:
1663 case nir_op_fnoise4_3:
1664 case nir_op_fnoise4_4:
1665 unreachable("not reached: should be handled by lower_noise");
1666
1667 case nir_op_unpack_half_2x16_split_x:
1668 case nir_op_unpack_half_2x16_split_y:
1669 case nir_op_pack_half_2x16_split:
1670 unreachable("not reached: should not occur in vertex shader");
1671
1672 case nir_op_unpack_snorm_2x16:
1673 case nir_op_unpack_unorm_2x16:
1674 case nir_op_pack_snorm_2x16:
1675 case nir_op_pack_unorm_2x16:
1676 unreachable("not reached: should be handled by lower_packing_builtins");
1677
1678 case nir_op_pack_uvec4_to_uint:
1679 unreachable("not reached");
1680
1681 case nir_op_pack_uvec2_to_uint: {
1682 dst_reg tmp1 = dst_reg(this, glsl_type::uint_type);
1683 tmp1.writemask = WRITEMASK_X;
1684 op[0].swizzle = BRW_SWIZZLE_YYYY;
1685 emit(SHL(tmp1, op[0], src_reg(brw_imm_ud(16u))));
1686
1687 dst_reg tmp2 = dst_reg(this, glsl_type::uint_type);
1688 tmp2.writemask = WRITEMASK_X;
1689 op[0].swizzle = BRW_SWIZZLE_XXXX;
1690 emit(AND(tmp2, op[0], src_reg(brw_imm_ud(0xffffu))));
1691
1692 emit(OR(dst, src_reg(tmp1), src_reg(tmp2)));
1693 break;
1694 }
1695
1696 case nir_op_pack_64_2x32_split: {
1697 dst_reg result = dst_reg(this, glsl_type::dvec4_type);
1698 dst_reg tmp = dst_reg(this, glsl_type::uvec4_type);
1699 emit(MOV(tmp, retype(op[0], BRW_REGISTER_TYPE_UD)));
1700 emit(VEC4_OPCODE_SET_LOW_32BIT, result, src_reg(tmp));
1701 emit(MOV(tmp, retype(op[1], BRW_REGISTER_TYPE_UD)));
1702 emit(VEC4_OPCODE_SET_HIGH_32BIT, result, src_reg(tmp));
1703 emit(MOV(dst, src_reg(result)));
1704 break;
1705 }
1706
1707 case nir_op_unpack_64_2x32_split_x:
1708 case nir_op_unpack_64_2x32_split_y: {
1709 enum opcode oper = (instr->op == nir_op_unpack_64_2x32_split_x) ?
1710 VEC4_OPCODE_PICK_LOW_32BIT : VEC4_OPCODE_PICK_HIGH_32BIT;
1711 dst_reg tmp = dst_reg(this, glsl_type::dvec4_type);
1712 emit(MOV(tmp, op[0]));
1713 dst_reg tmp2 = dst_reg(this, glsl_type::uvec4_type);
1714 emit(oper, tmp2, src_reg(tmp));
1715 emit(MOV(dst, src_reg(tmp2)));
1716 break;
1717 }
1718
1719 case nir_op_unpack_half_2x16:
1720 /* As NIR does not guarantee that we have a correct swizzle outside the
1721 * boundaries of a vector, and the implementation of emit_unpack_half_2x16
1722 * uses the source operand in an operation with WRITEMASK_Y while our
1723 * source operand has only size 1, it accessed incorrect data producing
1724 * regressions in Piglit. We repeat the swizzle of the first component on the
1725 * rest of components to avoid regressions. In the vec4_visitor IR code path
1726 * this is not needed because the operand has already the correct swizzle.
1727 */
1728 op[0].swizzle = brw_compose_swizzle(BRW_SWIZZLE_XXXX, op[0].swizzle);
1729 emit_unpack_half_2x16(dst, op[0]);
1730 break;
1731
1732 case nir_op_pack_half_2x16:
1733 emit_pack_half_2x16(dst, op[0]);
1734 break;
1735
1736 case nir_op_unpack_unorm_4x8:
1737 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1738 emit_unpack_unorm_4x8(dst, op[0]);
1739 break;
1740
1741 case nir_op_pack_unorm_4x8:
1742 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1743 emit_pack_unorm_4x8(dst, op[0]);
1744 break;
1745
1746 case nir_op_unpack_snorm_4x8:
1747 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1748 emit_unpack_snorm_4x8(dst, op[0]);
1749 break;
1750
1751 case nir_op_pack_snorm_4x8:
1752 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1753 emit_pack_snorm_4x8(dst, op[0]);
1754 break;
1755
1756 case nir_op_bitfield_reverse:
1757 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1758 emit(BFREV(dst, op[0]));
1759 break;
1760
1761 case nir_op_bit_count:
1762 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1763 emit(CBIT(dst, op[0]));
1764 break;
1765
1766 case nir_op_ufind_msb:
1767 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1768 emit_find_msb_using_lzd(vec4_builder(this).at_end(), dst, op[0], false);
1769 break;
1770
1771 case nir_op_ifind_msb: {
1772 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1773 vec4_builder bld = vec4_builder(this).at_end();
1774 src_reg src(dst);
1775
1776 if (devinfo->gen < 7) {
1777 emit_find_msb_using_lzd(bld, dst, op[0], true);
1778 } else {
1779 emit(FBH(retype(dst, BRW_REGISTER_TYPE_UD), op[0]));
1780
1781 /* FBH counts from the MSB side, while GLSL's findMSB() wants the
1782 * count from the LSB side. If FBH didn't return an error
1783 * (0xFFFFFFFF), then subtract the result from 31 to convert the MSB
1784 * count into an LSB count.
1785 */
1786 bld.CMP(dst_null_d(), src, brw_imm_d(-1), BRW_CONDITIONAL_NZ);
1787
1788 inst = bld.ADD(dst, src, brw_imm_d(31));
1789 inst->predicate = BRW_PREDICATE_NORMAL;
1790 inst->src[0].negate = true;
1791 }
1792 break;
1793 }
1794
1795 case nir_op_find_lsb: {
1796 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1797 vec4_builder bld = vec4_builder(this).at_end();
1798
1799 if (devinfo->gen < 7) {
1800 dst_reg temp = bld.vgrf(BRW_REGISTER_TYPE_D);
1801
1802 /* (x & -x) generates a value that consists of only the LSB of x.
1803 * For all powers of 2, findMSB(y) == findLSB(y).
1804 */
1805 src_reg src = src_reg(retype(op[0], BRW_REGISTER_TYPE_D));
1806 src_reg negated_src = src;
1807
1808 /* One must be negated, and the other must be non-negated. It
1809 * doesn't matter which is which.
1810 */
1811 negated_src.negate = true;
1812 src.negate = false;
1813
1814 bld.AND(temp, src, negated_src);
1815 emit_find_msb_using_lzd(bld, dst, src_reg(temp), false);
1816 } else {
1817 bld.FBL(dst, op[0]);
1818 }
1819 break;
1820 }
1821
1822 case nir_op_ubitfield_extract:
1823 case nir_op_ibitfield_extract:
1824 unreachable("should have been lowered");
1825 case nir_op_ubfe:
1826 case nir_op_ibfe:
1827 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1828 op[0] = fix_3src_operand(op[0]);
1829 op[1] = fix_3src_operand(op[1]);
1830 op[2] = fix_3src_operand(op[2]);
1831
1832 emit(BFE(dst, op[2], op[1], op[0]));
1833 break;
1834
1835 case nir_op_bfm:
1836 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1837 emit(BFI1(dst, op[0], op[1]));
1838 break;
1839
1840 case nir_op_bfi:
1841 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1842 op[0] = fix_3src_operand(op[0]);
1843 op[1] = fix_3src_operand(op[1]);
1844 op[2] = fix_3src_operand(op[2]);
1845
1846 emit(BFI2(dst, op[0], op[1], op[2]));
1847 break;
1848
1849 case nir_op_bitfield_insert:
1850 unreachable("not reached: should have been lowered");
1851
1852 case nir_op_fsign:
1853 if (type_sz(op[0].type) < 8) {
1854 /* AND(val, 0x80000000) gives the sign bit.
1855 *
1856 * Predicated OR ORs 1.0 (0x3f800000) with the sign bit if val is not
1857 * zero.
1858 */
1859 emit(CMP(dst_null_f(), op[0], brw_imm_f(0.0f), BRW_CONDITIONAL_NZ));
1860
1861 op[0].type = BRW_REGISTER_TYPE_UD;
1862 dst.type = BRW_REGISTER_TYPE_UD;
1863 emit(AND(dst, op[0], brw_imm_ud(0x80000000u)));
1864
1865 inst = emit(OR(dst, src_reg(dst), brw_imm_ud(0x3f800000u)));
1866 inst->predicate = BRW_PREDICATE_NORMAL;
1867 dst.type = BRW_REGISTER_TYPE_F;
1868
1869 if (instr->dest.saturate) {
1870 inst = emit(MOV(dst, src_reg(dst)));
1871 inst->saturate = true;
1872 }
1873 } else {
1874 /* For doubles we do the same but we need to consider:
1875 *
1876 * - We use a MOV with conditional_mod instead of a CMP so that we can
1877 * skip loading a 0.0 immediate. We use a source modifier on the
1878 * source of the MOV so that we flush denormalized values to 0.
1879 * Since we want to compare against 0, this won't alter the result.
1880 * - We need to extract the high 32-bit of each DF where the sign
1881 * is stored.
1882 * - We need to produce a DF result.
1883 */
1884
1885 /* Check for zero */
1886 src_reg value = op[0];
1887 value.abs = true;
1888 inst = emit(MOV(dst_null_df(), value));
1889 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1890
1891 /* AND each high 32-bit channel with 0x80000000u */
1892 dst_reg tmp = dst_reg(this, glsl_type::uvec4_type);
1893 emit(VEC4_OPCODE_PICK_HIGH_32BIT, tmp, op[0]);
1894 emit(AND(tmp, src_reg(tmp), brw_imm_ud(0x80000000u)));
1895
1896 /* Add 1.0 to each channel, predicated to skip the cases where the
1897 * channel's value was 0
1898 */
1899 inst = emit(OR(tmp, src_reg(tmp), brw_imm_ud(0x3f800000u)));
1900 inst->predicate = BRW_PREDICATE_NORMAL;
1901
1902 /* Now convert the result from float to double */
1903 emit_conversion_to_double(dst, retype(src_reg(tmp),
1904 BRW_REGISTER_TYPE_F),
1905 instr->dest.saturate);
1906 }
1907 break;
1908
1909 case nir_op_isign:
1910 /* ASR(val, 31) -> negative val generates 0xffffffff (signed -1).
1911 * -> non-negative val generates 0x00000000.
1912 * Predicated OR sets 1 if val is positive.
1913 */
1914 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1915 emit(CMP(dst_null_d(), op[0], brw_imm_d(0), BRW_CONDITIONAL_G));
1916 emit(ASR(dst, op[0], brw_imm_d(31)));
1917 inst = emit(OR(dst, src_reg(dst), brw_imm_d(1)));
1918 inst->predicate = BRW_PREDICATE_NORMAL;
1919 break;
1920
1921 case nir_op_ishl:
1922 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1923 emit(SHL(dst, op[0], op[1]));
1924 break;
1925
1926 case nir_op_ishr:
1927 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1928 emit(ASR(dst, op[0], op[1]));
1929 break;
1930
1931 case nir_op_ushr:
1932 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1933 emit(SHR(dst, op[0], op[1]));
1934 break;
1935
1936 case nir_op_ffma:
1937 if (type_sz(dst.type) == 8) {
1938 dst_reg mul_dst = dst_reg(this, glsl_type::dvec4_type);
1939 emit(MUL(mul_dst, op[1], op[0]));
1940 inst = emit(ADD(dst, src_reg(mul_dst), op[2]));
1941 inst->saturate = instr->dest.saturate;
1942 } else {
1943 op[0] = fix_3src_operand(op[0]);
1944 op[1] = fix_3src_operand(op[1]);
1945 op[2] = fix_3src_operand(op[2]);
1946
1947 inst = emit(MAD(dst, op[2], op[1], op[0]));
1948 inst->saturate = instr->dest.saturate;
1949 }
1950 break;
1951
1952 case nir_op_flrp:
1953 inst = emit_lrp(dst, op[0], op[1], op[2]);
1954 inst->saturate = instr->dest.saturate;
1955 break;
1956
1957 case nir_op_bcsel:
1958 enum brw_predicate predicate;
1959 if (!optimize_predicate(instr, &predicate)) {
1960 emit(CMP(dst_null_d(), op[0], brw_imm_d(0), BRW_CONDITIONAL_NZ));
1961 switch (dst.writemask) {
1962 case WRITEMASK_X:
1963 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_X;
1964 break;
1965 case WRITEMASK_Y:
1966 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_Y;
1967 break;
1968 case WRITEMASK_Z:
1969 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_Z;
1970 break;
1971 case WRITEMASK_W:
1972 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_W;
1973 break;
1974 default:
1975 predicate = BRW_PREDICATE_NORMAL;
1976 break;
1977 }
1978 }
1979 inst = emit(BRW_OPCODE_SEL, dst, op[1], op[2]);
1980 inst->predicate = predicate;
1981 break;
1982
1983 case nir_op_fdot_replicated2:
1984 inst = emit(BRW_OPCODE_DP2, dst, op[0], op[1]);
1985 inst->saturate = instr->dest.saturate;
1986 break;
1987
1988 case nir_op_fdot_replicated3:
1989 inst = emit(BRW_OPCODE_DP3, dst, op[0], op[1]);
1990 inst->saturate = instr->dest.saturate;
1991 break;
1992
1993 case nir_op_fdot_replicated4:
1994 inst = emit(BRW_OPCODE_DP4, dst, op[0], op[1]);
1995 inst->saturate = instr->dest.saturate;
1996 break;
1997
1998 case nir_op_fdph_replicated:
1999 inst = emit(BRW_OPCODE_DPH, dst, op[0], op[1]);
2000 inst->saturate = instr->dest.saturate;
2001 break;
2002
2003 case nir_op_iabs:
2004 case nir_op_ineg:
2005 assert(nir_dest_bit_size(instr->dest.dest) < 64);
2006 /* fall through */
2007 case nir_op_fabs:
2008 case nir_op_fneg:
2009 case nir_op_fsat:
2010 unreachable("not reached: should be lowered by lower_source mods");
2011
2012 case nir_op_fdiv:
2013 unreachable("not reached: should be lowered by DIV_TO_MUL_RCP in the compiler");
2014
2015 case nir_op_fmod:
2016 unreachable("not reached: should be lowered by MOD_TO_FLOOR in the compiler");
2017
2018 case nir_op_fsub:
2019 case nir_op_isub:
2020 unreachable("not reached: should be handled by ir_sub_to_add_neg");
2021
2022 default:
2023 unreachable("Unimplemented ALU operation");
2024 }
2025
2026 /* If we need to do a boolean resolve, replace the result with -(x & 1)
2027 * to sign extend the low bit to 0/~0
2028 */
2029 if (devinfo->gen <= 5 &&
2030 (instr->instr.pass_flags & BRW_NIR_BOOLEAN_MASK) ==
2031 BRW_NIR_BOOLEAN_NEEDS_RESOLVE) {
2032 dst_reg masked = dst_reg(this, glsl_type::int_type);
2033 masked.writemask = dst.writemask;
2034 emit(AND(masked, src_reg(dst), brw_imm_d(1)));
2035 src_reg masked_neg = src_reg(masked);
2036 masked_neg.negate = true;
2037 emit(MOV(retype(dst, BRW_REGISTER_TYPE_D), masked_neg));
2038 }
2039 }
2040
2041 void
2042 vec4_visitor::nir_emit_jump(nir_jump_instr *instr)
2043 {
2044 switch (instr->type) {
2045 case nir_jump_break:
2046 emit(BRW_OPCODE_BREAK);
2047 break;
2048
2049 case nir_jump_continue:
2050 emit(BRW_OPCODE_CONTINUE);
2051 break;
2052
2053 case nir_jump_return:
2054 /* fall through */
2055 default:
2056 unreachable("unknown jump");
2057 }
2058 }
2059
2060 static enum ir_texture_opcode
2061 ir_texture_opcode_for_nir_texop(nir_texop texop)
2062 {
2063 enum ir_texture_opcode op;
2064
2065 switch (texop) {
2066 case nir_texop_lod: op = ir_lod; break;
2067 case nir_texop_query_levels: op = ir_query_levels; break;
2068 case nir_texop_texture_samples: op = ir_texture_samples; break;
2069 case nir_texop_tex: op = ir_tex; break;
2070 case nir_texop_tg4: op = ir_tg4; break;
2071 case nir_texop_txb: op = ir_txb; break;
2072 case nir_texop_txd: op = ir_txd; break;
2073 case nir_texop_txf: op = ir_txf; break;
2074 case nir_texop_txf_ms: op = ir_txf_ms; break;
2075 case nir_texop_txl: op = ir_txl; break;
2076 case nir_texop_txs: op = ir_txs; break;
2077 case nir_texop_samples_identical: op = ir_samples_identical; break;
2078 default:
2079 unreachable("unknown texture opcode");
2080 }
2081
2082 return op;
2083 }
2084
2085 static const glsl_type *
2086 glsl_type_for_nir_alu_type(nir_alu_type alu_type,
2087 unsigned components)
2088 {
2089 return glsl_type::get_instance(brw_glsl_base_type_for_nir_type(alu_type),
2090 components, 1);
2091 }
2092
2093 void
2094 vec4_visitor::nir_emit_texture(nir_tex_instr *instr)
2095 {
2096 unsigned texture = instr->texture_index;
2097 unsigned sampler = instr->sampler_index;
2098 src_reg texture_reg = brw_imm_ud(texture);
2099 src_reg sampler_reg = brw_imm_ud(sampler);
2100 src_reg coordinate;
2101 const glsl_type *coord_type = NULL;
2102 src_reg shadow_comparator;
2103 src_reg offset_value;
2104 src_reg lod, lod2;
2105 src_reg sample_index;
2106 src_reg mcs;
2107
2108 const glsl_type *dest_type =
2109 glsl_type_for_nir_alu_type(instr->dest_type,
2110 nir_tex_instr_dest_size(instr));
2111 dst_reg dest = get_nir_dest(instr->dest, instr->dest_type);
2112
2113 /* The hardware requires a LOD for buffer textures */
2114 if (instr->sampler_dim == GLSL_SAMPLER_DIM_BUF)
2115 lod = brw_imm_d(0);
2116
2117 /* Load the texture operation sources */
2118 uint32_t constant_offset = 0;
2119 for (unsigned i = 0; i < instr->num_srcs; i++) {
2120 switch (instr->src[i].src_type) {
2121 case nir_tex_src_comparator:
2122 shadow_comparator = get_nir_src(instr->src[i].src,
2123 BRW_REGISTER_TYPE_F, 1);
2124 break;
2125
2126 case nir_tex_src_coord: {
2127 unsigned src_size = nir_tex_instr_src_size(instr, i);
2128
2129 switch (instr->op) {
2130 case nir_texop_txf:
2131 case nir_texop_txf_ms:
2132 case nir_texop_samples_identical:
2133 coordinate = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D,
2134 src_size);
2135 coord_type = glsl_type::ivec(src_size);
2136 break;
2137
2138 default:
2139 coordinate = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_F,
2140 src_size);
2141 coord_type = glsl_type::vec(src_size);
2142 break;
2143 }
2144 break;
2145 }
2146
2147 case nir_tex_src_ddx:
2148 lod = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_F,
2149 nir_tex_instr_src_size(instr, i));
2150 break;
2151
2152 case nir_tex_src_ddy:
2153 lod2 = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_F,
2154 nir_tex_instr_src_size(instr, i));
2155 break;
2156
2157 case nir_tex_src_lod:
2158 switch (instr->op) {
2159 case nir_texop_txs:
2160 case nir_texop_txf:
2161 lod = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D, 1);
2162 break;
2163
2164 default:
2165 lod = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_F, 1);
2166 break;
2167 }
2168 break;
2169
2170 case nir_tex_src_ms_index: {
2171 sample_index = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D, 1);
2172 break;
2173 }
2174
2175 case nir_tex_src_offset: {
2176 nir_const_value *const_offset =
2177 nir_src_as_const_value(instr->src[i].src);
2178 if (!const_offset ||
2179 !brw_texture_offset(const_offset->i32,
2180 nir_tex_instr_src_size(instr, i),
2181 &constant_offset)) {
2182 offset_value =
2183 get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D, 2);
2184 }
2185 break;
2186 }
2187
2188 case nir_tex_src_texture_offset: {
2189 /* The highest texture which may be used by this operation is
2190 * the last element of the array. Mark it here, because the generator
2191 * doesn't have enough information to determine the bound.
2192 */
2193 uint32_t array_size = instr->texture_array_size;
2194 uint32_t max_used = texture + array_size - 1;
2195 if (instr->op == nir_texop_tg4) {
2196 max_used += prog_data->base.binding_table.gather_texture_start;
2197 } else {
2198 max_used += prog_data->base.binding_table.texture_start;
2199 }
2200
2201 brw_mark_surface_used(&prog_data->base, max_used);
2202
2203 /* Emit code to evaluate the actual indexing expression */
2204 src_reg src = get_nir_src(instr->src[i].src, 1);
2205 src_reg temp(this, glsl_type::uint_type);
2206 emit(ADD(dst_reg(temp), src, brw_imm_ud(texture)));
2207 texture_reg = emit_uniformize(temp);
2208 break;
2209 }
2210
2211 case nir_tex_src_sampler_offset: {
2212 /* Emit code to evaluate the actual indexing expression */
2213 src_reg src = get_nir_src(instr->src[i].src, 1);
2214 src_reg temp(this, glsl_type::uint_type);
2215 emit(ADD(dst_reg(temp), src, brw_imm_ud(sampler)));
2216 sampler_reg = emit_uniformize(temp);
2217 break;
2218 }
2219
2220 case nir_tex_src_projector:
2221 unreachable("Should be lowered by do_lower_texture_projection");
2222
2223 case nir_tex_src_bias:
2224 unreachable("LOD bias is not valid for vertex shaders.\n");
2225
2226 default:
2227 unreachable("unknown texture source");
2228 }
2229 }
2230
2231 if (instr->op == nir_texop_txf_ms ||
2232 instr->op == nir_texop_samples_identical) {
2233 assert(coord_type != NULL);
2234 if (devinfo->gen >= 7 &&
2235 key_tex->compressed_multisample_layout_mask & (1 << texture)) {
2236 mcs = emit_mcs_fetch(coord_type, coordinate, texture_reg);
2237 } else {
2238 mcs = brw_imm_ud(0u);
2239 }
2240 }
2241
2242 /* Stuff the channel select bits in the top of the texture offset */
2243 if (instr->op == nir_texop_tg4) {
2244 if (instr->component == 1 &&
2245 (key_tex->gather_channel_quirk_mask & (1 << texture))) {
2246 /* gather4 sampler is broken for green channel on RG32F --
2247 * we must ask for blue instead.
2248 */
2249 constant_offset |= 2 << 16;
2250 } else {
2251 constant_offset |= instr->component << 16;
2252 }
2253 }
2254
2255 ir_texture_opcode op = ir_texture_opcode_for_nir_texop(instr->op);
2256
2257 emit_texture(op, dest, dest_type, coordinate, instr->coord_components,
2258 shadow_comparator,
2259 lod, lod2, sample_index,
2260 constant_offset, offset_value, mcs,
2261 texture, texture_reg, sampler_reg);
2262 }
2263
2264 void
2265 vec4_visitor::nir_emit_undef(nir_ssa_undef_instr *instr)
2266 {
2267 nir_ssa_values[instr->def.index] =
2268 dst_reg(VGRF, alloc.allocate(DIV_ROUND_UP(instr->def.bit_size, 32)));
2269 }
2270
2271 /* SIMD4x2 64bit data is stored in register space like this:
2272 *
2273 * r0.0:DF x0 y0 z0 w0
2274 * r1.0:DF x1 y1 z1 w1
2275 *
2276 * When we need to write data such as this to memory using 32-bit write
2277 * messages we need to shuffle it in this fashion:
2278 *
2279 * r0.0:DF x0 y0 x1 y1 (to be written at base offset)
2280 * r0.0:DF z0 w0 z1 w1 (to be written at base offset + 16)
2281 *
2282 * We need to do the inverse operation when we read using 32-bit messages,
2283 * which we can do by applying the same exact shuffling on the 64-bit data
2284 * read, only that because the data for each vertex is positioned differently
2285 * we need to apply different channel enables.
2286 *
2287 * This function takes 64bit data and shuffles it as explained above.
2288 *
2289 * The @for_write parameter is used to specify if the shuffling is being done
2290 * for proper SIMD4x2 64-bit data that needs to be shuffled prior to a 32-bit
2291 * write message (for_write = true), or instead we are doing the inverse
2292 * operation and we have just read 64-bit data using a 32-bit messages that we
2293 * need to shuffle to create valid SIMD4x2 64-bit data (for_write = false).
2294 *
2295 * If @block and @ref are non-NULL, then the shuffling is done after @ref,
2296 * otherwise the instructions are emitted normally at the end. The function
2297 * returns the last instruction inserted.
2298 *
2299 * Notice that @src and @dst cannot be the same register.
2300 */
2301 vec4_instruction *
2302 vec4_visitor::shuffle_64bit_data(dst_reg dst, src_reg src, bool for_write,
2303 bblock_t *block, vec4_instruction *ref)
2304 {
2305 assert(type_sz(src.type) == 8);
2306 assert(type_sz(dst.type) == 8);
2307 assert(!regions_overlap(dst, 2 * REG_SIZE, src, 2 * REG_SIZE));
2308 assert(!ref == !block);
2309
2310 const vec4_builder bld = !ref ? vec4_builder(this).at_end() :
2311 vec4_builder(this).at(block, ref->next);
2312
2313 /* Resolve swizzle in src */
2314 vec4_instruction *inst;
2315 if (src.swizzle != BRW_SWIZZLE_XYZW) {
2316 dst_reg data = dst_reg(this, glsl_type::dvec4_type);
2317 inst = bld.MOV(data, src);
2318 src = src_reg(data);
2319 }
2320
2321 /* dst+0.XY = src+0.XY */
2322 inst = bld.group(4, 0).MOV(writemask(dst, WRITEMASK_XY), src);
2323
2324 /* dst+0.ZW = src+1.XY */
2325 inst = bld.group(4, for_write ? 1 : 0)
2326 .MOV(writemask(dst, WRITEMASK_ZW),
2327 swizzle(byte_offset(src, REG_SIZE), BRW_SWIZZLE_XYXY));
2328
2329 /* dst+1.XY = src+0.ZW */
2330 inst = bld.group(4, for_write ? 0 : 1)
2331 .MOV(writemask(byte_offset(dst, REG_SIZE), WRITEMASK_XY),
2332 swizzle(src, BRW_SWIZZLE_ZWZW));
2333
2334 /* dst+1.ZW = src+1.ZW */
2335 inst = bld.group(4, 1)
2336 .MOV(writemask(byte_offset(dst, REG_SIZE), WRITEMASK_ZW),
2337 byte_offset(src, REG_SIZE));
2338
2339 return inst;
2340 }
2341
2342 }