i965: Use nir_lower_atomics_to_ssbos and delete ABO compiler code.
[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_load_ubo: {
808 nir_const_value *const_block_index = nir_src_as_const_value(instr->src[0]);
809 src_reg surf_index;
810
811 dest = get_nir_dest(instr->dest);
812
813 if (const_block_index) {
814 /* The block index is a constant, so just emit the binding table entry
815 * as an immediate.
816 */
817 const unsigned index = prog_data->base.binding_table.ubo_start +
818 const_block_index->u32[0];
819 surf_index = brw_imm_ud(index);
820 brw_mark_surface_used(&prog_data->base, index);
821 } else {
822 /* The block index is not a constant. Evaluate the index expression
823 * per-channel and add the base UBO index; we have to select a value
824 * from any live channel.
825 */
826 surf_index = src_reg(this, glsl_type::uint_type);
827 emit(ADD(dst_reg(surf_index), get_nir_src(instr->src[0], nir_type_int32,
828 instr->num_components),
829 brw_imm_ud(prog_data->base.binding_table.ubo_start)));
830 surf_index = emit_uniformize(surf_index);
831
832 /* Assume this may touch any UBO. It would be nice to provide
833 * a tighter bound, but the array information is already lowered away.
834 */
835 brw_mark_surface_used(&prog_data->base,
836 prog_data->base.binding_table.ubo_start +
837 nir->info.num_ubos - 1);
838 }
839
840 src_reg offset_reg;
841 nir_const_value *const_offset = nir_src_as_const_value(instr->src[1]);
842 if (const_offset) {
843 offset_reg = brw_imm_ud(const_offset->u32[0] & ~15);
844 } else {
845 offset_reg = get_nir_src(instr->src[1], nir_type_uint32, 1);
846 }
847
848 src_reg packed_consts;
849 if (nir_dest_bit_size(instr->dest) == 32) {
850 packed_consts = src_reg(this, glsl_type::vec4_type);
851 emit_pull_constant_load_reg(dst_reg(packed_consts),
852 surf_index,
853 offset_reg,
854 NULL, NULL /* before_block/inst */);
855 } else {
856 src_reg temp = src_reg(this, glsl_type::dvec4_type);
857 src_reg temp_float = retype(temp, BRW_REGISTER_TYPE_F);
858
859 emit_pull_constant_load_reg(dst_reg(temp_float),
860 surf_index, offset_reg, NULL, NULL);
861 if (offset_reg.file == IMM)
862 offset_reg.ud += 16;
863 else
864 emit(ADD(dst_reg(offset_reg), offset_reg, brw_imm_ud(16u)));
865 emit_pull_constant_load_reg(dst_reg(byte_offset(temp_float, REG_SIZE)),
866 surf_index, offset_reg, NULL, NULL);
867
868 packed_consts = src_reg(this, glsl_type::dvec4_type);
869 shuffle_64bit_data(dst_reg(packed_consts), temp, false);
870 }
871
872 packed_consts.swizzle = brw_swizzle_for_size(instr->num_components);
873 if (const_offset) {
874 unsigned type_size = type_sz(dest.type);
875 packed_consts.swizzle +=
876 BRW_SWIZZLE4(const_offset->u32[0] % 16 / type_size,
877 const_offset->u32[0] % 16 / type_size,
878 const_offset->u32[0] % 16 / type_size,
879 const_offset->u32[0] % 16 / type_size);
880 }
881
882 emit(MOV(dest, retype(packed_consts, dest.type)));
883
884 break;
885 }
886
887 case nir_intrinsic_memory_barrier: {
888 const vec4_builder bld =
889 vec4_builder(this).at_end().annotate(current_annotation, base_ir);
890 const dst_reg tmp = bld.vgrf(BRW_REGISTER_TYPE_UD, 2);
891 bld.emit(SHADER_OPCODE_MEMORY_FENCE, tmp)
892 ->size_written = 2 * REG_SIZE;
893 break;
894 }
895
896 case nir_intrinsic_shader_clock: {
897 /* We cannot do anything if there is an event, so ignore it for now */
898 const src_reg shader_clock = get_timestamp();
899 const enum brw_reg_type type = brw_type_for_base_type(glsl_type::uvec2_type);
900
901 dest = get_nir_dest(instr->dest, type);
902 emit(MOV(dest, shader_clock));
903 break;
904 }
905
906 default:
907 unreachable("Unknown intrinsic");
908 }
909 }
910
911 void
912 vec4_visitor::nir_emit_ssbo_atomic(int op, nir_intrinsic_instr *instr)
913 {
914 dst_reg dest;
915 if (nir_intrinsic_infos[instr->intrinsic].has_dest)
916 dest = get_nir_dest(instr->dest);
917
918 src_reg surface;
919 nir_const_value *const_surface = nir_src_as_const_value(instr->src[0]);
920 if (const_surface) {
921 unsigned surf_index = prog_data->base.binding_table.ssbo_start +
922 const_surface->u32[0];
923 surface = brw_imm_ud(surf_index);
924 brw_mark_surface_used(&prog_data->base, surf_index);
925 } else {
926 surface = src_reg(this, glsl_type::uint_type);
927 emit(ADD(dst_reg(surface), get_nir_src(instr->src[0]),
928 brw_imm_ud(prog_data->base.binding_table.ssbo_start)));
929
930 /* Assume this may touch any UBO. This is the same we do for other
931 * UBO/SSBO accesses with non-constant surface.
932 */
933 brw_mark_surface_used(&prog_data->base,
934 prog_data->base.binding_table.ssbo_start +
935 nir->info.num_ssbos - 1);
936 }
937
938 src_reg offset = get_nir_src(instr->src[1], 1);
939 src_reg data1 = get_nir_src(instr->src[2], 1);
940 src_reg data2;
941 if (op == BRW_AOP_CMPWR)
942 data2 = get_nir_src(instr->src[3], 1);
943
944 /* Emit the actual atomic operation operation */
945 const vec4_builder bld =
946 vec4_builder(this).at_end().annotate(current_annotation, base_ir);
947
948 src_reg atomic_result = emit_untyped_atomic(bld, surface, offset,
949 data1, data2,
950 1 /* dims */, 1 /* rsize */,
951 op,
952 BRW_PREDICATE_NONE);
953 dest.type = atomic_result.type;
954 bld.MOV(dest, atomic_result);
955 }
956
957 static unsigned
958 brw_swizzle_for_nir_swizzle(uint8_t swizzle[4])
959 {
960 return BRW_SWIZZLE4(swizzle[0], swizzle[1], swizzle[2], swizzle[3]);
961 }
962
963 static enum brw_conditional_mod
964 brw_conditional_for_nir_comparison(nir_op op)
965 {
966 switch (op) {
967 case nir_op_flt:
968 case nir_op_ilt:
969 case nir_op_ult:
970 return BRW_CONDITIONAL_L;
971
972 case nir_op_fge:
973 case nir_op_ige:
974 case nir_op_uge:
975 return BRW_CONDITIONAL_GE;
976
977 case nir_op_feq:
978 case nir_op_ieq:
979 case nir_op_ball_fequal2:
980 case nir_op_ball_iequal2:
981 case nir_op_ball_fequal3:
982 case nir_op_ball_iequal3:
983 case nir_op_ball_fequal4:
984 case nir_op_ball_iequal4:
985 return BRW_CONDITIONAL_Z;
986
987 case nir_op_fne:
988 case nir_op_ine:
989 case nir_op_bany_fnequal2:
990 case nir_op_bany_inequal2:
991 case nir_op_bany_fnequal3:
992 case nir_op_bany_inequal3:
993 case nir_op_bany_fnequal4:
994 case nir_op_bany_inequal4:
995 return BRW_CONDITIONAL_NZ;
996
997 default:
998 unreachable("not reached: bad operation for comparison");
999 }
1000 }
1001
1002 bool
1003 vec4_visitor::optimize_predicate(nir_alu_instr *instr,
1004 enum brw_predicate *predicate)
1005 {
1006 if (!instr->src[0].src.is_ssa ||
1007 instr->src[0].src.ssa->parent_instr->type != nir_instr_type_alu)
1008 return false;
1009
1010 nir_alu_instr *cmp_instr =
1011 nir_instr_as_alu(instr->src[0].src.ssa->parent_instr);
1012
1013 switch (cmp_instr->op) {
1014 case nir_op_bany_fnequal2:
1015 case nir_op_bany_inequal2:
1016 case nir_op_bany_fnequal3:
1017 case nir_op_bany_inequal3:
1018 case nir_op_bany_fnequal4:
1019 case nir_op_bany_inequal4:
1020 *predicate = BRW_PREDICATE_ALIGN16_ANY4H;
1021 break;
1022 case nir_op_ball_fequal2:
1023 case nir_op_ball_iequal2:
1024 case nir_op_ball_fequal3:
1025 case nir_op_ball_iequal3:
1026 case nir_op_ball_fequal4:
1027 case nir_op_ball_iequal4:
1028 *predicate = BRW_PREDICATE_ALIGN16_ALL4H;
1029 break;
1030 default:
1031 return false;
1032 }
1033
1034 unsigned size_swizzle =
1035 brw_swizzle_for_size(nir_op_infos[cmp_instr->op].input_sizes[0]);
1036
1037 src_reg op[2];
1038 assert(nir_op_infos[cmp_instr->op].num_inputs == 2);
1039 for (unsigned i = 0; i < 2; i++) {
1040 nir_alu_type type = nir_op_infos[cmp_instr->op].input_types[i];
1041 unsigned bit_size = nir_src_bit_size(cmp_instr->src[i].src);
1042 type = (nir_alu_type) (((unsigned) type) | bit_size);
1043 op[i] = get_nir_src(cmp_instr->src[i].src, type, 4);
1044 unsigned base_swizzle =
1045 brw_swizzle_for_nir_swizzle(cmp_instr->src[i].swizzle);
1046 op[i].swizzle = brw_compose_swizzle(size_swizzle, base_swizzle);
1047 op[i].abs = cmp_instr->src[i].abs;
1048 op[i].negate = cmp_instr->src[i].negate;
1049 }
1050
1051 emit(CMP(dst_null_d(), op[0], op[1],
1052 brw_conditional_for_nir_comparison(cmp_instr->op)));
1053
1054 return true;
1055 }
1056
1057 static void
1058 emit_find_msb_using_lzd(const vec4_builder &bld,
1059 const dst_reg &dst,
1060 const src_reg &src,
1061 bool is_signed)
1062 {
1063 vec4_instruction *inst;
1064 src_reg temp = src;
1065
1066 if (is_signed) {
1067 /* LZD of an absolute value source almost always does the right
1068 * thing. There are two problem values:
1069 *
1070 * * 0x80000000. Since abs(0x80000000) == 0x80000000, LZD returns
1071 * 0. However, findMSB(int(0x80000000)) == 30.
1072 *
1073 * * 0xffffffff. Since abs(0xffffffff) == 1, LZD returns
1074 * 31. Section 8.8 (Integer Functions) of the GLSL 4.50 spec says:
1075 *
1076 * For a value of zero or negative one, -1 will be returned.
1077 *
1078 * * Negative powers of two. LZD(abs(-(1<<x))) returns x, but
1079 * findMSB(-(1<<x)) should return x-1.
1080 *
1081 * For all negative number cases, including 0x80000000 and
1082 * 0xffffffff, the correct value is obtained from LZD if instead of
1083 * negating the (already negative) value the logical-not is used. A
1084 * conditonal logical-not can be achieved in two instructions.
1085 */
1086 temp = src_reg(bld.vgrf(BRW_REGISTER_TYPE_D));
1087
1088 bld.ASR(dst_reg(temp), src, brw_imm_d(31));
1089 bld.XOR(dst_reg(temp), temp, src);
1090 }
1091
1092 bld.LZD(retype(dst, BRW_REGISTER_TYPE_UD),
1093 retype(temp, BRW_REGISTER_TYPE_UD));
1094
1095 /* LZD counts from the MSB side, while GLSL's findMSB() wants the count
1096 * from the LSB side. Subtract the result from 31 to convert the MSB count
1097 * into an LSB count. If no bits are set, LZD will return 32. 31-32 = -1,
1098 * which is exactly what findMSB() is supposed to return.
1099 */
1100 inst = bld.ADD(dst, retype(src_reg(dst), BRW_REGISTER_TYPE_D),
1101 brw_imm_d(31));
1102 inst->src[0].negate = true;
1103 }
1104
1105 void
1106 vec4_visitor::emit_conversion_from_double(dst_reg dst, src_reg src,
1107 bool saturate)
1108 {
1109 /* BDW PRM vol 15 - workarounds:
1110 * DF->f format conversion for Align16 has wrong emask calculation when
1111 * source is immediate.
1112 */
1113 if (devinfo->gen == 8 && dst.type == BRW_REGISTER_TYPE_F &&
1114 src.file == BRW_IMMEDIATE_VALUE) {
1115 vec4_instruction *inst = emit(MOV(dst, brw_imm_f(src.df)));
1116 inst->saturate = saturate;
1117 return;
1118 }
1119
1120 enum opcode op;
1121 switch (dst.type) {
1122 case BRW_REGISTER_TYPE_D:
1123 op = VEC4_OPCODE_DOUBLE_TO_D32;
1124 break;
1125 case BRW_REGISTER_TYPE_UD:
1126 op = VEC4_OPCODE_DOUBLE_TO_U32;
1127 break;
1128 case BRW_REGISTER_TYPE_F:
1129 op = VEC4_OPCODE_DOUBLE_TO_F32;
1130 break;
1131 default:
1132 unreachable("Unknown conversion");
1133 }
1134
1135 dst_reg temp = dst_reg(this, glsl_type::dvec4_type);
1136 emit(MOV(temp, src));
1137 dst_reg temp2 = dst_reg(this, glsl_type::dvec4_type);
1138 emit(op, temp2, src_reg(temp));
1139
1140 emit(VEC4_OPCODE_PICK_LOW_32BIT, retype(temp2, dst.type), src_reg(temp2));
1141 vec4_instruction *inst = emit(MOV(dst, src_reg(retype(temp2, dst.type))));
1142 inst->saturate = saturate;
1143 }
1144
1145 void
1146 vec4_visitor::emit_conversion_to_double(dst_reg dst, src_reg src,
1147 bool saturate)
1148 {
1149 dst_reg tmp_dst = dst_reg(src_reg(this, glsl_type::dvec4_type));
1150 src_reg tmp_src = retype(src_reg(this, glsl_type::vec4_type), src.type);
1151 emit(MOV(dst_reg(tmp_src), src));
1152 emit(VEC4_OPCODE_TO_DOUBLE, tmp_dst, tmp_src);
1153 vec4_instruction *inst = emit(MOV(dst, src_reg(tmp_dst)));
1154 inst->saturate = saturate;
1155 }
1156
1157 void
1158 vec4_visitor::nir_emit_alu(nir_alu_instr *instr)
1159 {
1160 vec4_instruction *inst;
1161
1162 nir_alu_type dst_type = (nir_alu_type) (nir_op_infos[instr->op].output_type |
1163 nir_dest_bit_size(instr->dest.dest));
1164 dst_reg dst = get_nir_dest(instr->dest.dest, dst_type);
1165 dst.writemask = instr->dest.write_mask;
1166
1167 src_reg op[4];
1168 for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++) {
1169 nir_alu_type src_type = (nir_alu_type)
1170 (nir_op_infos[instr->op].input_types[i] |
1171 nir_src_bit_size(instr->src[i].src));
1172 op[i] = get_nir_src(instr->src[i].src, src_type, 4);
1173 op[i].swizzle = brw_swizzle_for_nir_swizzle(instr->src[i].swizzle);
1174 op[i].abs = instr->src[i].abs;
1175 op[i].negate = instr->src[i].negate;
1176 }
1177
1178 switch (instr->op) {
1179 case nir_op_imov:
1180 case nir_op_fmov:
1181 inst = emit(MOV(dst, op[0]));
1182 inst->saturate = instr->dest.saturate;
1183 break;
1184
1185 case nir_op_vec2:
1186 case nir_op_vec3:
1187 case nir_op_vec4:
1188 unreachable("not reached: should be handled by lower_vec_to_movs()");
1189
1190 case nir_op_i2f32:
1191 case nir_op_u2f32:
1192 inst = emit(MOV(dst, op[0]));
1193 inst->saturate = instr->dest.saturate;
1194 break;
1195
1196 case nir_op_f2f32:
1197 case nir_op_f2i32:
1198 case nir_op_f2u32:
1199 if (nir_src_bit_size(instr->src[0].src) == 64)
1200 emit_conversion_from_double(dst, op[0], instr->dest.saturate);
1201 else
1202 inst = emit(MOV(dst, op[0]));
1203 break;
1204
1205 case nir_op_f2f64:
1206 case nir_op_i2f64:
1207 case nir_op_u2f64:
1208 emit_conversion_to_double(dst, op[0], instr->dest.saturate);
1209 break;
1210
1211 case nir_op_iadd:
1212 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1213 /* fall through */
1214 case nir_op_fadd:
1215 inst = emit(ADD(dst, op[0], op[1]));
1216 inst->saturate = instr->dest.saturate;
1217 break;
1218
1219 case nir_op_fmul:
1220 inst = emit(MUL(dst, op[0], op[1]));
1221 inst->saturate = instr->dest.saturate;
1222 break;
1223
1224 case nir_op_imul: {
1225 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1226 if (devinfo->gen < 8) {
1227 nir_const_value *value0 = nir_src_as_const_value(instr->src[0].src);
1228 nir_const_value *value1 = nir_src_as_const_value(instr->src[1].src);
1229
1230 /* For integer multiplication, the MUL uses the low 16 bits of one of
1231 * the operands (src0 through SNB, src1 on IVB and later). The MACH
1232 * accumulates in the contribution of the upper 16 bits of that
1233 * operand. If we can determine that one of the args is in the low
1234 * 16 bits, though, we can just emit a single MUL.
1235 */
1236 if (value0 && value0->u32[0] < (1 << 16)) {
1237 if (devinfo->gen < 7)
1238 emit(MUL(dst, op[0], op[1]));
1239 else
1240 emit(MUL(dst, op[1], op[0]));
1241 } else if (value1 && value1->u32[0] < (1 << 16)) {
1242 if (devinfo->gen < 7)
1243 emit(MUL(dst, op[1], op[0]));
1244 else
1245 emit(MUL(dst, op[0], op[1]));
1246 } else {
1247 struct brw_reg acc = retype(brw_acc_reg(8), dst.type);
1248
1249 emit(MUL(acc, op[0], op[1]));
1250 emit(MACH(dst_null_d(), op[0], op[1]));
1251 emit(MOV(dst, src_reg(acc)));
1252 }
1253 } else {
1254 emit(MUL(dst, op[0], op[1]));
1255 }
1256 break;
1257 }
1258
1259 case nir_op_imul_high:
1260 case nir_op_umul_high: {
1261 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1262 struct brw_reg acc = retype(brw_acc_reg(8), dst.type);
1263
1264 if (devinfo->gen >= 8)
1265 emit(MUL(acc, op[0], retype(op[1], BRW_REGISTER_TYPE_UW)));
1266 else
1267 emit(MUL(acc, op[0], op[1]));
1268
1269 emit(MACH(dst, op[0], op[1]));
1270 break;
1271 }
1272
1273 case nir_op_frcp:
1274 inst = emit_math(SHADER_OPCODE_RCP, dst, op[0]);
1275 inst->saturate = instr->dest.saturate;
1276 break;
1277
1278 case nir_op_fexp2:
1279 inst = emit_math(SHADER_OPCODE_EXP2, dst, op[0]);
1280 inst->saturate = instr->dest.saturate;
1281 break;
1282
1283 case nir_op_flog2:
1284 inst = emit_math(SHADER_OPCODE_LOG2, dst, op[0]);
1285 inst->saturate = instr->dest.saturate;
1286 break;
1287
1288 case nir_op_fsin:
1289 inst = emit_math(SHADER_OPCODE_SIN, dst, op[0]);
1290 inst->saturate = instr->dest.saturate;
1291 break;
1292
1293 case nir_op_fcos:
1294 inst = emit_math(SHADER_OPCODE_COS, dst, op[0]);
1295 inst->saturate = instr->dest.saturate;
1296 break;
1297
1298 case nir_op_idiv:
1299 case nir_op_udiv:
1300 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1301 emit_math(SHADER_OPCODE_INT_QUOTIENT, dst, op[0], op[1]);
1302 break;
1303
1304 case nir_op_umod:
1305 case nir_op_irem:
1306 /* According to the sign table for INT DIV in the Ivy Bridge PRM, it
1307 * appears that our hardware just does the right thing for signed
1308 * remainder.
1309 */
1310 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1311 emit_math(SHADER_OPCODE_INT_REMAINDER, dst, op[0], op[1]);
1312 break;
1313
1314 case nir_op_imod: {
1315 /* Get a regular C-style remainder. If a % b == 0, set the predicate. */
1316 inst = emit_math(SHADER_OPCODE_INT_REMAINDER, dst, op[0], op[1]);
1317
1318 /* Math instructions don't support conditional mod */
1319 inst = emit(MOV(dst_null_d(), src_reg(dst)));
1320 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1321
1322 /* Now, we need to determine if signs of the sources are different.
1323 * When we XOR the sources, the top bit is 0 if they are the same and 1
1324 * if they are different. We can then use a conditional modifier to
1325 * turn that into a predicate. This leads us to an XOR.l instruction.
1326 *
1327 * Technically, according to the PRM, you're not allowed to use .l on a
1328 * XOR instruction. However, emperical experiments and Curro's reading
1329 * of the simulator source both indicate that it's safe.
1330 */
1331 src_reg tmp = src_reg(this, glsl_type::ivec4_type);
1332 inst = emit(XOR(dst_reg(tmp), op[0], op[1]));
1333 inst->predicate = BRW_PREDICATE_NORMAL;
1334 inst->conditional_mod = BRW_CONDITIONAL_L;
1335
1336 /* If the result of the initial remainder operation is non-zero and the
1337 * two sources have different signs, add in a copy of op[1] to get the
1338 * final integer modulus value.
1339 */
1340 inst = emit(ADD(dst, src_reg(dst), op[1]));
1341 inst->predicate = BRW_PREDICATE_NORMAL;
1342 break;
1343 }
1344
1345 case nir_op_ldexp:
1346 unreachable("not reached: should be handled by ldexp_to_arith()");
1347
1348 case nir_op_fsqrt:
1349 inst = emit_math(SHADER_OPCODE_SQRT, dst, op[0]);
1350 inst->saturate = instr->dest.saturate;
1351 break;
1352
1353 case nir_op_frsq:
1354 inst = emit_math(SHADER_OPCODE_RSQ, dst, op[0]);
1355 inst->saturate = instr->dest.saturate;
1356 break;
1357
1358 case nir_op_fpow:
1359 inst = emit_math(SHADER_OPCODE_POW, dst, op[0], op[1]);
1360 inst->saturate = instr->dest.saturate;
1361 break;
1362
1363 case nir_op_uadd_carry: {
1364 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1365 struct brw_reg acc = retype(brw_acc_reg(8), BRW_REGISTER_TYPE_UD);
1366
1367 emit(ADDC(dst_null_ud(), op[0], op[1]));
1368 emit(MOV(dst, src_reg(acc)));
1369 break;
1370 }
1371
1372 case nir_op_usub_borrow: {
1373 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1374 struct brw_reg acc = retype(brw_acc_reg(8), BRW_REGISTER_TYPE_UD);
1375
1376 emit(SUBB(dst_null_ud(), op[0], op[1]));
1377 emit(MOV(dst, src_reg(acc)));
1378 break;
1379 }
1380
1381 case nir_op_ftrunc:
1382 inst = emit(RNDZ(dst, op[0]));
1383 inst->saturate = instr->dest.saturate;
1384 break;
1385
1386 case nir_op_fceil: {
1387 src_reg tmp = src_reg(this, glsl_type::float_type);
1388 tmp.swizzle =
1389 brw_swizzle_for_size(instr->src[0].src.is_ssa ?
1390 instr->src[0].src.ssa->num_components :
1391 instr->src[0].src.reg.reg->num_components);
1392
1393 op[0].negate = !op[0].negate;
1394 emit(RNDD(dst_reg(tmp), op[0]));
1395 tmp.negate = true;
1396 inst = emit(MOV(dst, tmp));
1397 inst->saturate = instr->dest.saturate;
1398 break;
1399 }
1400
1401 case nir_op_ffloor:
1402 inst = emit(RNDD(dst, op[0]));
1403 inst->saturate = instr->dest.saturate;
1404 break;
1405
1406 case nir_op_ffract:
1407 inst = emit(FRC(dst, op[0]));
1408 inst->saturate = instr->dest.saturate;
1409 break;
1410
1411 case nir_op_fround_even:
1412 inst = emit(RNDE(dst, op[0]));
1413 inst->saturate = instr->dest.saturate;
1414 break;
1415
1416 case nir_op_fquantize2f16: {
1417 /* See also vec4_visitor::emit_pack_half_2x16() */
1418 src_reg tmp16 = src_reg(this, glsl_type::uvec4_type);
1419 src_reg tmp32 = src_reg(this, glsl_type::vec4_type);
1420 src_reg zero = src_reg(this, glsl_type::vec4_type);
1421
1422 /* Check for denormal */
1423 src_reg abs_src0 = op[0];
1424 abs_src0.abs = true;
1425 emit(CMP(dst_null_f(), abs_src0, brw_imm_f(ldexpf(1.0, -14)),
1426 BRW_CONDITIONAL_L));
1427 /* Get the appropriately signed zero */
1428 emit(AND(retype(dst_reg(zero), BRW_REGISTER_TYPE_UD),
1429 retype(op[0], BRW_REGISTER_TYPE_UD),
1430 brw_imm_ud(0x80000000)));
1431 /* Do the actual F32 -> F16 -> F32 conversion */
1432 emit(F32TO16(dst_reg(tmp16), op[0]));
1433 emit(F16TO32(dst_reg(tmp32), tmp16));
1434 /* Select that or zero based on normal status */
1435 inst = emit(BRW_OPCODE_SEL, dst, zero, tmp32);
1436 inst->predicate = BRW_PREDICATE_NORMAL;
1437 inst->saturate = instr->dest.saturate;
1438 break;
1439 }
1440
1441 case nir_op_imin:
1442 case nir_op_umin:
1443 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1444 /* fall through */
1445 case nir_op_fmin:
1446 inst = emit_minmax(BRW_CONDITIONAL_L, dst, op[0], op[1]);
1447 inst->saturate = instr->dest.saturate;
1448 break;
1449
1450 case nir_op_imax:
1451 case nir_op_umax:
1452 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1453 /* fall through */
1454 case nir_op_fmax:
1455 inst = emit_minmax(BRW_CONDITIONAL_GE, dst, op[0], op[1]);
1456 inst->saturate = instr->dest.saturate;
1457 break;
1458
1459 case nir_op_fddx:
1460 case nir_op_fddx_coarse:
1461 case nir_op_fddx_fine:
1462 case nir_op_fddy:
1463 case nir_op_fddy_coarse:
1464 case nir_op_fddy_fine:
1465 unreachable("derivatives are not valid in vertex shaders");
1466
1467 case nir_op_ilt:
1468 case nir_op_ult:
1469 case nir_op_ige:
1470 case nir_op_uge:
1471 case nir_op_ieq:
1472 case nir_op_ine:
1473 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1474 /* Fallthrough */
1475 case nir_op_flt:
1476 case nir_op_fge:
1477 case nir_op_feq:
1478 case nir_op_fne: {
1479 enum brw_conditional_mod conditional_mod =
1480 brw_conditional_for_nir_comparison(instr->op);
1481
1482 if (nir_src_bit_size(instr->src[0].src) < 64) {
1483 emit(CMP(dst, op[0], op[1], conditional_mod));
1484 } else {
1485 /* Produce a 32-bit boolean result from the DF comparison by selecting
1486 * only the low 32-bit in each DF produced. Do this in a temporary
1487 * so we can then move from there to the result using align16 again
1488 * to honor the original writemask.
1489 */
1490 dst_reg temp = dst_reg(this, glsl_type::dvec4_type);
1491 emit(CMP(temp, op[0], op[1], conditional_mod));
1492 dst_reg result = dst_reg(this, glsl_type::bvec4_type);
1493 emit(VEC4_OPCODE_PICK_LOW_32BIT, result, src_reg(temp));
1494 emit(MOV(dst, src_reg(result)));
1495 }
1496 break;
1497 }
1498
1499 case nir_op_ball_iequal2:
1500 case nir_op_ball_iequal3:
1501 case nir_op_ball_iequal4:
1502 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1503 /* Fallthrough */
1504 case nir_op_ball_fequal2:
1505 case nir_op_ball_fequal3:
1506 case nir_op_ball_fequal4: {
1507 unsigned swiz =
1508 brw_swizzle_for_size(nir_op_infos[instr->op].input_sizes[0]);
1509
1510 emit(CMP(dst_null_d(), swizzle(op[0], swiz), swizzle(op[1], swiz),
1511 brw_conditional_for_nir_comparison(instr->op)));
1512 emit(MOV(dst, brw_imm_d(0)));
1513 inst = emit(MOV(dst, brw_imm_d(~0)));
1514 inst->predicate = BRW_PREDICATE_ALIGN16_ALL4H;
1515 break;
1516 }
1517
1518 case nir_op_bany_inequal2:
1519 case nir_op_bany_inequal3:
1520 case nir_op_bany_inequal4:
1521 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1522 /* Fallthrough */
1523 case nir_op_bany_fnequal2:
1524 case nir_op_bany_fnequal3:
1525 case nir_op_bany_fnequal4: {
1526 unsigned swiz =
1527 brw_swizzle_for_size(nir_op_infos[instr->op].input_sizes[0]);
1528
1529 emit(CMP(dst_null_d(), swizzle(op[0], swiz), swizzle(op[1], swiz),
1530 brw_conditional_for_nir_comparison(instr->op)));
1531
1532 emit(MOV(dst, brw_imm_d(0)));
1533 inst = emit(MOV(dst, brw_imm_d(~0)));
1534 inst->predicate = BRW_PREDICATE_ALIGN16_ANY4H;
1535 break;
1536 }
1537
1538 case nir_op_inot:
1539 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1540 if (devinfo->gen >= 8) {
1541 op[0] = resolve_source_modifiers(op[0]);
1542 }
1543 emit(NOT(dst, op[0]));
1544 break;
1545
1546 case nir_op_ixor:
1547 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1548 if (devinfo->gen >= 8) {
1549 op[0] = resolve_source_modifiers(op[0]);
1550 op[1] = resolve_source_modifiers(op[1]);
1551 }
1552 emit(XOR(dst, op[0], op[1]));
1553 break;
1554
1555 case nir_op_ior:
1556 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1557 if (devinfo->gen >= 8) {
1558 op[0] = resolve_source_modifiers(op[0]);
1559 op[1] = resolve_source_modifiers(op[1]);
1560 }
1561 emit(OR(dst, op[0], op[1]));
1562 break;
1563
1564 case nir_op_iand:
1565 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1566 if (devinfo->gen >= 8) {
1567 op[0] = resolve_source_modifiers(op[0]);
1568 op[1] = resolve_source_modifiers(op[1]);
1569 }
1570 emit(AND(dst, op[0], op[1]));
1571 break;
1572
1573 case nir_op_b2i:
1574 case nir_op_b2f:
1575 emit(MOV(dst, negate(op[0])));
1576 break;
1577
1578 case nir_op_f2b:
1579 if (nir_src_bit_size(instr->src[0].src) == 64) {
1580 /* We use a MOV with conditional_mod to check if the provided value is
1581 * 0.0. We want this to flush denormalized numbers to zero, so we set a
1582 * source modifier on the source operand to trigger this, as source
1583 * modifiers don't affect the result of the testing against 0.0.
1584 */
1585 src_reg value = op[0];
1586 value.abs = true;
1587 vec4_instruction *inst = emit(MOV(dst_null_df(), value));
1588 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1589
1590 src_reg one = src_reg(this, glsl_type::ivec4_type);
1591 emit(MOV(dst_reg(one), brw_imm_d(~0)));
1592 inst = emit(BRW_OPCODE_SEL, dst, one, brw_imm_d(0));
1593 inst->predicate = BRW_PREDICATE_NORMAL;
1594 } else {
1595 emit(CMP(dst, op[0], brw_imm_f(0.0f), BRW_CONDITIONAL_NZ));
1596 }
1597 break;
1598
1599 case nir_op_i2b:
1600 emit(CMP(dst, op[0], brw_imm_d(0), BRW_CONDITIONAL_NZ));
1601 break;
1602
1603 case nir_op_fnoise1_1:
1604 case nir_op_fnoise1_2:
1605 case nir_op_fnoise1_3:
1606 case nir_op_fnoise1_4:
1607 case nir_op_fnoise2_1:
1608 case nir_op_fnoise2_2:
1609 case nir_op_fnoise2_3:
1610 case nir_op_fnoise2_4:
1611 case nir_op_fnoise3_1:
1612 case nir_op_fnoise3_2:
1613 case nir_op_fnoise3_3:
1614 case nir_op_fnoise3_4:
1615 case nir_op_fnoise4_1:
1616 case nir_op_fnoise4_2:
1617 case nir_op_fnoise4_3:
1618 case nir_op_fnoise4_4:
1619 unreachable("not reached: should be handled by lower_noise");
1620
1621 case nir_op_unpack_half_2x16_split_x:
1622 case nir_op_unpack_half_2x16_split_y:
1623 case nir_op_pack_half_2x16_split:
1624 unreachable("not reached: should not occur in vertex shader");
1625
1626 case nir_op_unpack_snorm_2x16:
1627 case nir_op_unpack_unorm_2x16:
1628 case nir_op_pack_snorm_2x16:
1629 case nir_op_pack_unorm_2x16:
1630 unreachable("not reached: should be handled by lower_packing_builtins");
1631
1632 case nir_op_pack_uvec4_to_uint:
1633 unreachable("not reached");
1634
1635 case nir_op_pack_uvec2_to_uint: {
1636 dst_reg tmp1 = dst_reg(this, glsl_type::uint_type);
1637 tmp1.writemask = WRITEMASK_X;
1638 op[0].swizzle = BRW_SWIZZLE_YYYY;
1639 emit(SHL(tmp1, op[0], src_reg(brw_imm_ud(16u))));
1640
1641 dst_reg tmp2 = dst_reg(this, glsl_type::uint_type);
1642 tmp2.writemask = WRITEMASK_X;
1643 op[0].swizzle = BRW_SWIZZLE_XXXX;
1644 emit(AND(tmp2, op[0], src_reg(brw_imm_ud(0xffffu))));
1645
1646 emit(OR(dst, src_reg(tmp1), src_reg(tmp2)));
1647 break;
1648 }
1649
1650 case nir_op_pack_64_2x32_split: {
1651 dst_reg result = dst_reg(this, glsl_type::dvec4_type);
1652 dst_reg tmp = dst_reg(this, glsl_type::uvec4_type);
1653 emit(MOV(tmp, retype(op[0], BRW_REGISTER_TYPE_UD)));
1654 emit(VEC4_OPCODE_SET_LOW_32BIT, result, src_reg(tmp));
1655 emit(MOV(tmp, retype(op[1], BRW_REGISTER_TYPE_UD)));
1656 emit(VEC4_OPCODE_SET_HIGH_32BIT, result, src_reg(tmp));
1657 emit(MOV(dst, src_reg(result)));
1658 break;
1659 }
1660
1661 case nir_op_unpack_64_2x32_split_x:
1662 case nir_op_unpack_64_2x32_split_y: {
1663 enum opcode oper = (instr->op == nir_op_unpack_64_2x32_split_x) ?
1664 VEC4_OPCODE_PICK_LOW_32BIT : VEC4_OPCODE_PICK_HIGH_32BIT;
1665 dst_reg tmp = dst_reg(this, glsl_type::dvec4_type);
1666 emit(MOV(tmp, op[0]));
1667 dst_reg tmp2 = dst_reg(this, glsl_type::uvec4_type);
1668 emit(oper, tmp2, src_reg(tmp));
1669 emit(MOV(dst, src_reg(tmp2)));
1670 break;
1671 }
1672
1673 case nir_op_unpack_half_2x16:
1674 /* As NIR does not guarantee that we have a correct swizzle outside the
1675 * boundaries of a vector, and the implementation of emit_unpack_half_2x16
1676 * uses the source operand in an operation with WRITEMASK_Y while our
1677 * source operand has only size 1, it accessed incorrect data producing
1678 * regressions in Piglit. We repeat the swizzle of the first component on the
1679 * rest of components to avoid regressions. In the vec4_visitor IR code path
1680 * this is not needed because the operand has already the correct swizzle.
1681 */
1682 op[0].swizzle = brw_compose_swizzle(BRW_SWIZZLE_XXXX, op[0].swizzle);
1683 emit_unpack_half_2x16(dst, op[0]);
1684 break;
1685
1686 case nir_op_pack_half_2x16:
1687 emit_pack_half_2x16(dst, op[0]);
1688 break;
1689
1690 case nir_op_unpack_unorm_4x8:
1691 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1692 emit_unpack_unorm_4x8(dst, op[0]);
1693 break;
1694
1695 case nir_op_pack_unorm_4x8:
1696 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1697 emit_pack_unorm_4x8(dst, op[0]);
1698 break;
1699
1700 case nir_op_unpack_snorm_4x8:
1701 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1702 emit_unpack_snorm_4x8(dst, op[0]);
1703 break;
1704
1705 case nir_op_pack_snorm_4x8:
1706 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1707 emit_pack_snorm_4x8(dst, op[0]);
1708 break;
1709
1710 case nir_op_bitfield_reverse:
1711 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1712 emit(BFREV(dst, op[0]));
1713 break;
1714
1715 case nir_op_bit_count:
1716 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1717 emit(CBIT(dst, op[0]));
1718 break;
1719
1720 case nir_op_ufind_msb:
1721 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1722 emit_find_msb_using_lzd(vec4_builder(this).at_end(), dst, op[0], false);
1723 break;
1724
1725 case nir_op_ifind_msb: {
1726 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1727 vec4_builder bld = vec4_builder(this).at_end();
1728 src_reg src(dst);
1729
1730 if (devinfo->gen < 7) {
1731 emit_find_msb_using_lzd(bld, dst, op[0], true);
1732 } else {
1733 emit(FBH(retype(dst, BRW_REGISTER_TYPE_UD), op[0]));
1734
1735 /* FBH counts from the MSB side, while GLSL's findMSB() wants the
1736 * count from the LSB side. If FBH didn't return an error
1737 * (0xFFFFFFFF), then subtract the result from 31 to convert the MSB
1738 * count into an LSB count.
1739 */
1740 bld.CMP(dst_null_d(), src, brw_imm_d(-1), BRW_CONDITIONAL_NZ);
1741
1742 inst = bld.ADD(dst, src, brw_imm_d(31));
1743 inst->predicate = BRW_PREDICATE_NORMAL;
1744 inst->src[0].negate = true;
1745 }
1746 break;
1747 }
1748
1749 case nir_op_find_lsb: {
1750 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1751 vec4_builder bld = vec4_builder(this).at_end();
1752
1753 if (devinfo->gen < 7) {
1754 dst_reg temp = bld.vgrf(BRW_REGISTER_TYPE_D);
1755
1756 /* (x & -x) generates a value that consists of only the LSB of x.
1757 * For all powers of 2, findMSB(y) == findLSB(y).
1758 */
1759 src_reg src = src_reg(retype(op[0], BRW_REGISTER_TYPE_D));
1760 src_reg negated_src = src;
1761
1762 /* One must be negated, and the other must be non-negated. It
1763 * doesn't matter which is which.
1764 */
1765 negated_src.negate = true;
1766 src.negate = false;
1767
1768 bld.AND(temp, src, negated_src);
1769 emit_find_msb_using_lzd(bld, dst, src_reg(temp), false);
1770 } else {
1771 bld.FBL(dst, op[0]);
1772 }
1773 break;
1774 }
1775
1776 case nir_op_ubitfield_extract:
1777 case nir_op_ibitfield_extract:
1778 unreachable("should have been lowered");
1779 case nir_op_ubfe:
1780 case nir_op_ibfe:
1781 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1782 op[0] = fix_3src_operand(op[0]);
1783 op[1] = fix_3src_operand(op[1]);
1784 op[2] = fix_3src_operand(op[2]);
1785
1786 emit(BFE(dst, op[2], op[1], op[0]));
1787 break;
1788
1789 case nir_op_bfm:
1790 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1791 emit(BFI1(dst, op[0], op[1]));
1792 break;
1793
1794 case nir_op_bfi:
1795 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1796 op[0] = fix_3src_operand(op[0]);
1797 op[1] = fix_3src_operand(op[1]);
1798 op[2] = fix_3src_operand(op[2]);
1799
1800 emit(BFI2(dst, op[0], op[1], op[2]));
1801 break;
1802
1803 case nir_op_bitfield_insert:
1804 unreachable("not reached: should have been lowered");
1805
1806 case nir_op_fsign:
1807 if (type_sz(op[0].type) < 8) {
1808 /* AND(val, 0x80000000) gives the sign bit.
1809 *
1810 * Predicated OR ORs 1.0 (0x3f800000) with the sign bit if val is not
1811 * zero.
1812 */
1813 emit(CMP(dst_null_f(), op[0], brw_imm_f(0.0f), BRW_CONDITIONAL_NZ));
1814
1815 op[0].type = BRW_REGISTER_TYPE_UD;
1816 dst.type = BRW_REGISTER_TYPE_UD;
1817 emit(AND(dst, op[0], brw_imm_ud(0x80000000u)));
1818
1819 inst = emit(OR(dst, src_reg(dst), brw_imm_ud(0x3f800000u)));
1820 inst->predicate = BRW_PREDICATE_NORMAL;
1821 dst.type = BRW_REGISTER_TYPE_F;
1822
1823 if (instr->dest.saturate) {
1824 inst = emit(MOV(dst, src_reg(dst)));
1825 inst->saturate = true;
1826 }
1827 } else {
1828 /* For doubles we do the same but we need to consider:
1829 *
1830 * - We use a MOV with conditional_mod instead of a CMP so that we can
1831 * skip loading a 0.0 immediate. We use a source modifier on the
1832 * source of the MOV so that we flush denormalized values to 0.
1833 * Since we want to compare against 0, this won't alter the result.
1834 * - We need to extract the high 32-bit of each DF where the sign
1835 * is stored.
1836 * - We need to produce a DF result.
1837 */
1838
1839 /* Check for zero */
1840 src_reg value = op[0];
1841 value.abs = true;
1842 inst = emit(MOV(dst_null_df(), value));
1843 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1844
1845 /* AND each high 32-bit channel with 0x80000000u */
1846 dst_reg tmp = dst_reg(this, glsl_type::uvec4_type);
1847 emit(VEC4_OPCODE_PICK_HIGH_32BIT, tmp, op[0]);
1848 emit(AND(tmp, src_reg(tmp), brw_imm_ud(0x80000000u)));
1849
1850 /* Add 1.0 to each channel, predicated to skip the cases where the
1851 * channel's value was 0
1852 */
1853 inst = emit(OR(tmp, src_reg(tmp), brw_imm_ud(0x3f800000u)));
1854 inst->predicate = BRW_PREDICATE_NORMAL;
1855
1856 /* Now convert the result from float to double */
1857 emit_conversion_to_double(dst, retype(src_reg(tmp),
1858 BRW_REGISTER_TYPE_F),
1859 instr->dest.saturate);
1860 }
1861 break;
1862
1863 case nir_op_isign:
1864 /* ASR(val, 31) -> negative val generates 0xffffffff (signed -1).
1865 * -> non-negative val generates 0x00000000.
1866 * Predicated OR sets 1 if val is positive.
1867 */
1868 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1869 emit(CMP(dst_null_d(), op[0], brw_imm_d(0), BRW_CONDITIONAL_G));
1870 emit(ASR(dst, op[0], brw_imm_d(31)));
1871 inst = emit(OR(dst, src_reg(dst), brw_imm_d(1)));
1872 inst->predicate = BRW_PREDICATE_NORMAL;
1873 break;
1874
1875 case nir_op_ishl:
1876 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1877 emit(SHL(dst, op[0], op[1]));
1878 break;
1879
1880 case nir_op_ishr:
1881 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1882 emit(ASR(dst, op[0], op[1]));
1883 break;
1884
1885 case nir_op_ushr:
1886 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1887 emit(SHR(dst, op[0], op[1]));
1888 break;
1889
1890 case nir_op_ffma:
1891 if (type_sz(dst.type) == 8) {
1892 dst_reg mul_dst = dst_reg(this, glsl_type::dvec4_type);
1893 emit(MUL(mul_dst, op[1], op[0]));
1894 inst = emit(ADD(dst, src_reg(mul_dst), op[2]));
1895 inst->saturate = instr->dest.saturate;
1896 } else {
1897 op[0] = fix_3src_operand(op[0]);
1898 op[1] = fix_3src_operand(op[1]);
1899 op[2] = fix_3src_operand(op[2]);
1900
1901 inst = emit(MAD(dst, op[2], op[1], op[0]));
1902 inst->saturate = instr->dest.saturate;
1903 }
1904 break;
1905
1906 case nir_op_flrp:
1907 inst = emit_lrp(dst, op[0], op[1], op[2]);
1908 inst->saturate = instr->dest.saturate;
1909 break;
1910
1911 case nir_op_bcsel:
1912 enum brw_predicate predicate;
1913 if (!optimize_predicate(instr, &predicate)) {
1914 emit(CMP(dst_null_d(), op[0], brw_imm_d(0), BRW_CONDITIONAL_NZ));
1915 switch (dst.writemask) {
1916 case WRITEMASK_X:
1917 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_X;
1918 break;
1919 case WRITEMASK_Y:
1920 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_Y;
1921 break;
1922 case WRITEMASK_Z:
1923 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_Z;
1924 break;
1925 case WRITEMASK_W:
1926 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_W;
1927 break;
1928 default:
1929 predicate = BRW_PREDICATE_NORMAL;
1930 break;
1931 }
1932 }
1933 inst = emit(BRW_OPCODE_SEL, dst, op[1], op[2]);
1934 inst->predicate = predicate;
1935 break;
1936
1937 case nir_op_fdot_replicated2:
1938 inst = emit(BRW_OPCODE_DP2, dst, op[0], op[1]);
1939 inst->saturate = instr->dest.saturate;
1940 break;
1941
1942 case nir_op_fdot_replicated3:
1943 inst = emit(BRW_OPCODE_DP3, dst, op[0], op[1]);
1944 inst->saturate = instr->dest.saturate;
1945 break;
1946
1947 case nir_op_fdot_replicated4:
1948 inst = emit(BRW_OPCODE_DP4, dst, op[0], op[1]);
1949 inst->saturate = instr->dest.saturate;
1950 break;
1951
1952 case nir_op_fdph_replicated:
1953 inst = emit(BRW_OPCODE_DPH, dst, op[0], op[1]);
1954 inst->saturate = instr->dest.saturate;
1955 break;
1956
1957 case nir_op_iabs:
1958 case nir_op_ineg:
1959 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1960 /* fall through */
1961 case nir_op_fabs:
1962 case nir_op_fneg:
1963 case nir_op_fsat:
1964 unreachable("not reached: should be lowered by lower_source mods");
1965
1966 case nir_op_fdiv:
1967 unreachable("not reached: should be lowered by DIV_TO_MUL_RCP in the compiler");
1968
1969 case nir_op_fmod:
1970 unreachable("not reached: should be lowered by MOD_TO_FLOOR in the compiler");
1971
1972 case nir_op_fsub:
1973 case nir_op_isub:
1974 unreachable("not reached: should be handled by ir_sub_to_add_neg");
1975
1976 default:
1977 unreachable("Unimplemented ALU operation");
1978 }
1979
1980 /* If we need to do a boolean resolve, replace the result with -(x & 1)
1981 * to sign extend the low bit to 0/~0
1982 */
1983 if (devinfo->gen <= 5 &&
1984 (instr->instr.pass_flags & BRW_NIR_BOOLEAN_MASK) ==
1985 BRW_NIR_BOOLEAN_NEEDS_RESOLVE) {
1986 dst_reg masked = dst_reg(this, glsl_type::int_type);
1987 masked.writemask = dst.writemask;
1988 emit(AND(masked, src_reg(dst), brw_imm_d(1)));
1989 src_reg masked_neg = src_reg(masked);
1990 masked_neg.negate = true;
1991 emit(MOV(retype(dst, BRW_REGISTER_TYPE_D), masked_neg));
1992 }
1993 }
1994
1995 void
1996 vec4_visitor::nir_emit_jump(nir_jump_instr *instr)
1997 {
1998 switch (instr->type) {
1999 case nir_jump_break:
2000 emit(BRW_OPCODE_BREAK);
2001 break;
2002
2003 case nir_jump_continue:
2004 emit(BRW_OPCODE_CONTINUE);
2005 break;
2006
2007 case nir_jump_return:
2008 /* fall through */
2009 default:
2010 unreachable("unknown jump");
2011 }
2012 }
2013
2014 static enum ir_texture_opcode
2015 ir_texture_opcode_for_nir_texop(nir_texop texop)
2016 {
2017 enum ir_texture_opcode op;
2018
2019 switch (texop) {
2020 case nir_texop_lod: op = ir_lod; break;
2021 case nir_texop_query_levels: op = ir_query_levels; break;
2022 case nir_texop_texture_samples: op = ir_texture_samples; break;
2023 case nir_texop_tex: op = ir_tex; break;
2024 case nir_texop_tg4: op = ir_tg4; break;
2025 case nir_texop_txb: op = ir_txb; break;
2026 case nir_texop_txd: op = ir_txd; break;
2027 case nir_texop_txf: op = ir_txf; break;
2028 case nir_texop_txf_ms: op = ir_txf_ms; break;
2029 case nir_texop_txl: op = ir_txl; break;
2030 case nir_texop_txs: op = ir_txs; break;
2031 case nir_texop_samples_identical: op = ir_samples_identical; break;
2032 default:
2033 unreachable("unknown texture opcode");
2034 }
2035
2036 return op;
2037 }
2038
2039 static const glsl_type *
2040 glsl_type_for_nir_alu_type(nir_alu_type alu_type,
2041 unsigned components)
2042 {
2043 return glsl_type::get_instance(brw_glsl_base_type_for_nir_type(alu_type),
2044 components, 1);
2045 }
2046
2047 void
2048 vec4_visitor::nir_emit_texture(nir_tex_instr *instr)
2049 {
2050 unsigned texture = instr->texture_index;
2051 unsigned sampler = instr->sampler_index;
2052 src_reg texture_reg = brw_imm_ud(texture);
2053 src_reg sampler_reg = brw_imm_ud(sampler);
2054 src_reg coordinate;
2055 const glsl_type *coord_type = NULL;
2056 src_reg shadow_comparator;
2057 src_reg offset_value;
2058 src_reg lod, lod2;
2059 src_reg sample_index;
2060 src_reg mcs;
2061
2062 const glsl_type *dest_type =
2063 glsl_type_for_nir_alu_type(instr->dest_type,
2064 nir_tex_instr_dest_size(instr));
2065 dst_reg dest = get_nir_dest(instr->dest, instr->dest_type);
2066
2067 /* The hardware requires a LOD for buffer textures */
2068 if (instr->sampler_dim == GLSL_SAMPLER_DIM_BUF)
2069 lod = brw_imm_d(0);
2070
2071 /* Load the texture operation sources */
2072 uint32_t constant_offset = 0;
2073 for (unsigned i = 0; i < instr->num_srcs; i++) {
2074 switch (instr->src[i].src_type) {
2075 case nir_tex_src_comparator:
2076 shadow_comparator = get_nir_src(instr->src[i].src,
2077 BRW_REGISTER_TYPE_F, 1);
2078 break;
2079
2080 case nir_tex_src_coord: {
2081 unsigned src_size = nir_tex_instr_src_size(instr, i);
2082
2083 switch (instr->op) {
2084 case nir_texop_txf:
2085 case nir_texop_txf_ms:
2086 case nir_texop_samples_identical:
2087 coordinate = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D,
2088 src_size);
2089 coord_type = glsl_type::ivec(src_size);
2090 break;
2091
2092 default:
2093 coordinate = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_F,
2094 src_size);
2095 coord_type = glsl_type::vec(src_size);
2096 break;
2097 }
2098 break;
2099 }
2100
2101 case nir_tex_src_ddx:
2102 lod = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_F,
2103 nir_tex_instr_src_size(instr, i));
2104 break;
2105
2106 case nir_tex_src_ddy:
2107 lod2 = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_F,
2108 nir_tex_instr_src_size(instr, i));
2109 break;
2110
2111 case nir_tex_src_lod:
2112 switch (instr->op) {
2113 case nir_texop_txs:
2114 case nir_texop_txf:
2115 lod = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D, 1);
2116 break;
2117
2118 default:
2119 lod = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_F, 1);
2120 break;
2121 }
2122 break;
2123
2124 case nir_tex_src_ms_index: {
2125 sample_index = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D, 1);
2126 break;
2127 }
2128
2129 case nir_tex_src_offset: {
2130 nir_const_value *const_offset =
2131 nir_src_as_const_value(instr->src[i].src);
2132 if (!const_offset ||
2133 !brw_texture_offset(const_offset->i32,
2134 nir_tex_instr_src_size(instr, i),
2135 &constant_offset)) {
2136 offset_value =
2137 get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D, 2);
2138 }
2139 break;
2140 }
2141
2142 case nir_tex_src_texture_offset: {
2143 /* The highest texture which may be used by this operation is
2144 * the last element of the array. Mark it here, because the generator
2145 * doesn't have enough information to determine the bound.
2146 */
2147 uint32_t array_size = instr->texture_array_size;
2148 uint32_t max_used = texture + array_size - 1;
2149 if (instr->op == nir_texop_tg4) {
2150 max_used += prog_data->base.binding_table.gather_texture_start;
2151 } else {
2152 max_used += prog_data->base.binding_table.texture_start;
2153 }
2154
2155 brw_mark_surface_used(&prog_data->base, max_used);
2156
2157 /* Emit code to evaluate the actual indexing expression */
2158 src_reg src = get_nir_src(instr->src[i].src, 1);
2159 src_reg temp(this, glsl_type::uint_type);
2160 emit(ADD(dst_reg(temp), src, brw_imm_ud(texture)));
2161 texture_reg = emit_uniformize(temp);
2162 break;
2163 }
2164
2165 case nir_tex_src_sampler_offset: {
2166 /* Emit code to evaluate the actual indexing expression */
2167 src_reg src = get_nir_src(instr->src[i].src, 1);
2168 src_reg temp(this, glsl_type::uint_type);
2169 emit(ADD(dst_reg(temp), src, brw_imm_ud(sampler)));
2170 sampler_reg = emit_uniformize(temp);
2171 break;
2172 }
2173
2174 case nir_tex_src_projector:
2175 unreachable("Should be lowered by do_lower_texture_projection");
2176
2177 case nir_tex_src_bias:
2178 unreachable("LOD bias is not valid for vertex shaders.\n");
2179
2180 default:
2181 unreachable("unknown texture source");
2182 }
2183 }
2184
2185 if (instr->op == nir_texop_txf_ms ||
2186 instr->op == nir_texop_samples_identical) {
2187 assert(coord_type != NULL);
2188 if (devinfo->gen >= 7 &&
2189 key_tex->compressed_multisample_layout_mask & (1 << texture)) {
2190 mcs = emit_mcs_fetch(coord_type, coordinate, texture_reg);
2191 } else {
2192 mcs = brw_imm_ud(0u);
2193 }
2194 }
2195
2196 /* Stuff the channel select bits in the top of the texture offset */
2197 if (instr->op == nir_texop_tg4) {
2198 if (instr->component == 1 &&
2199 (key_tex->gather_channel_quirk_mask & (1 << texture))) {
2200 /* gather4 sampler is broken for green channel on RG32F --
2201 * we must ask for blue instead.
2202 */
2203 constant_offset |= 2 << 16;
2204 } else {
2205 constant_offset |= instr->component << 16;
2206 }
2207 }
2208
2209 ir_texture_opcode op = ir_texture_opcode_for_nir_texop(instr->op);
2210
2211 emit_texture(op, dest, dest_type, coordinate, instr->coord_components,
2212 shadow_comparator,
2213 lod, lod2, sample_index,
2214 constant_offset, offset_value, mcs,
2215 texture, texture_reg, sampler_reg);
2216 }
2217
2218 void
2219 vec4_visitor::nir_emit_undef(nir_ssa_undef_instr *instr)
2220 {
2221 nir_ssa_values[instr->def.index] =
2222 dst_reg(VGRF, alloc.allocate(DIV_ROUND_UP(instr->def.bit_size, 32)));
2223 }
2224
2225 /* SIMD4x2 64bit data is stored in register space like this:
2226 *
2227 * r0.0:DF x0 y0 z0 w0
2228 * r1.0:DF x1 y1 z1 w1
2229 *
2230 * When we need to write data such as this to memory using 32-bit write
2231 * messages we need to shuffle it in this fashion:
2232 *
2233 * r0.0:DF x0 y0 x1 y1 (to be written at base offset)
2234 * r0.0:DF z0 w0 z1 w1 (to be written at base offset + 16)
2235 *
2236 * We need to do the inverse operation when we read using 32-bit messages,
2237 * which we can do by applying the same exact shuffling on the 64-bit data
2238 * read, only that because the data for each vertex is positioned differently
2239 * we need to apply different channel enables.
2240 *
2241 * This function takes 64bit data and shuffles it as explained above.
2242 *
2243 * The @for_write parameter is used to specify if the shuffling is being done
2244 * for proper SIMD4x2 64-bit data that needs to be shuffled prior to a 32-bit
2245 * write message (for_write = true), or instead we are doing the inverse
2246 * operation and we have just read 64-bit data using a 32-bit messages that we
2247 * need to shuffle to create valid SIMD4x2 64-bit data (for_write = false).
2248 *
2249 * If @block and @ref are non-NULL, then the shuffling is done after @ref,
2250 * otherwise the instructions are emitted normally at the end. The function
2251 * returns the last instruction inserted.
2252 *
2253 * Notice that @src and @dst cannot be the same register.
2254 */
2255 vec4_instruction *
2256 vec4_visitor::shuffle_64bit_data(dst_reg dst, src_reg src, bool for_write,
2257 bblock_t *block, vec4_instruction *ref)
2258 {
2259 assert(type_sz(src.type) == 8);
2260 assert(type_sz(dst.type) == 8);
2261 assert(!regions_overlap(dst, 2 * REG_SIZE, src, 2 * REG_SIZE));
2262 assert(!ref == !block);
2263
2264 const vec4_builder bld = !ref ? vec4_builder(this).at_end() :
2265 vec4_builder(this).at(block, ref->next);
2266
2267 /* Resolve swizzle in src */
2268 vec4_instruction *inst;
2269 if (src.swizzle != BRW_SWIZZLE_XYZW) {
2270 dst_reg data = dst_reg(this, glsl_type::dvec4_type);
2271 inst = bld.MOV(data, src);
2272 src = src_reg(data);
2273 }
2274
2275 /* dst+0.XY = src+0.XY */
2276 inst = bld.group(4, 0).MOV(writemask(dst, WRITEMASK_XY), src);
2277
2278 /* dst+0.ZW = src+1.XY */
2279 inst = bld.group(4, for_write ? 1 : 0)
2280 .MOV(writemask(dst, WRITEMASK_ZW),
2281 swizzle(byte_offset(src, REG_SIZE), BRW_SWIZZLE_XYXY));
2282
2283 /* dst+1.XY = src+0.ZW */
2284 inst = bld.group(4, for_write ? 0 : 1)
2285 .MOV(writemask(byte_offset(dst, REG_SIZE), WRITEMASK_XY),
2286 swizzle(src, BRW_SWIZZLE_ZWZW));
2287
2288 /* dst+1.ZW = src+1.ZW */
2289 inst = bld.group(4, 1)
2290 .MOV(writemask(byte_offset(dst, REG_SIZE), WRITEMASK_ZW),
2291 byte_offset(src, REG_SIZE));
2292
2293 return inst;
2294 }
2295
2296 }