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