i965/vec4: split d2x conversion and data gathering from one opcode to two explicit...
[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 emit(VEC4_OPCODE_PICK_LOW_32BIT, temp2, src_reg(retype(temp2, BRW_REGISTER_TYPE_DF)));
1195 vec4_instruction *inst = emit(MOV(dst, src_reg(temp2)));
1196 inst->saturate = saturate;
1197 }
1198
1199 void
1200 vec4_visitor::emit_conversion_to_double(dst_reg dst, src_reg src,
1201 bool saturate)
1202 {
1203 dst_reg tmp_dst = dst_reg(src_reg(this, glsl_type::dvec4_type));
1204 src_reg tmp_src = retype(src_reg(this, glsl_type::vec4_type), src.type);
1205 emit(MOV(dst_reg(tmp_src), src));
1206 emit(VEC4_OPCODE_TO_DOUBLE, tmp_dst, tmp_src);
1207 vec4_instruction *inst = emit(MOV(dst, src_reg(tmp_dst)));
1208 inst->saturate = saturate;
1209 }
1210
1211 src_reg
1212 vec4_visitor::setup_imm_df(double v)
1213 {
1214 assert(devinfo->gen >= 7);
1215
1216 if (devinfo->gen >= 8)
1217 return brw_imm_df(v);
1218
1219 /* gen7.5 does not support DF immediates straighforward but the DIM
1220 * instruction allows to set the 64-bit immediate value.
1221 */
1222 if (devinfo->is_haswell) {
1223 dst_reg dst = retype(dst_reg(VGRF, alloc.allocate(2)), BRW_REGISTER_TYPE_DF);
1224 emit(DIM(dst, brw_imm_df(v)))->force_writemask_all = true;
1225 return swizzle(src_reg(retype(dst, BRW_REGISTER_TYPE_DF)), BRW_SWIZZLE_XXXX);
1226 }
1227
1228 /* gen7 does not support DF immediates */
1229 union {
1230 double d;
1231 struct {
1232 uint32_t i1;
1233 uint32_t i2;
1234 };
1235 } di;
1236
1237 di.d = v;
1238
1239 /* Write the low 32-bit of the constant to the X:UD channel and the
1240 * high 32-bit to the Y:UD channel to build the constant in a VGRF.
1241 * We have to do this twice (offset 0 and offset 1), since a DF VGRF takes
1242 * two SIMD8 registers in SIMD4x2 execution. Finally, return a swizzle
1243 * XXXX so any access to the VGRF only reads the constant data in these
1244 * channels.
1245 */
1246 const dst_reg tmp =
1247 retype(dst_reg(VGRF, alloc.allocate(2)), BRW_REGISTER_TYPE_UD);
1248 for (int n = 0; n < 2; n++) {
1249 emit(MOV(writemask(offset(tmp, 8, n), WRITEMASK_X), brw_imm_ud(di.i1)))
1250 ->force_writemask_all = true;
1251 emit(MOV(writemask(offset(tmp, 8, n), WRITEMASK_Y), brw_imm_ud(di.i2)))
1252 ->force_writemask_all = true;
1253 }
1254
1255 return swizzle(src_reg(retype(tmp, BRW_REGISTER_TYPE_DF)), BRW_SWIZZLE_XXXX);
1256 }
1257
1258 void
1259 vec4_visitor::nir_emit_alu(nir_alu_instr *instr)
1260 {
1261 vec4_instruction *inst;
1262
1263 nir_alu_type dst_type = (nir_alu_type) (nir_op_infos[instr->op].output_type |
1264 nir_dest_bit_size(instr->dest.dest));
1265 dst_reg dst = get_nir_dest(instr->dest.dest, dst_type);
1266 dst.writemask = instr->dest.write_mask;
1267
1268 src_reg op[4];
1269 for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++) {
1270 nir_alu_type src_type = (nir_alu_type)
1271 (nir_op_infos[instr->op].input_types[i] |
1272 nir_src_bit_size(instr->src[i].src));
1273 op[i] = get_nir_src(instr->src[i].src, src_type, 4);
1274 op[i].swizzle = brw_swizzle_for_nir_swizzle(instr->src[i].swizzle);
1275 op[i].abs = instr->src[i].abs;
1276 op[i].negate = instr->src[i].negate;
1277 }
1278
1279 switch (instr->op) {
1280 case nir_op_imov:
1281 case nir_op_fmov:
1282 inst = emit(MOV(dst, op[0]));
1283 inst->saturate = instr->dest.saturate;
1284 break;
1285
1286 case nir_op_vec2:
1287 case nir_op_vec3:
1288 case nir_op_vec4:
1289 unreachable("not reached: should be handled by lower_vec_to_movs()");
1290
1291 case nir_op_i2f32:
1292 case nir_op_u2f32:
1293 inst = emit(MOV(dst, op[0]));
1294 inst->saturate = instr->dest.saturate;
1295 break;
1296
1297 case nir_op_f2f32:
1298 case nir_op_f2i32:
1299 case nir_op_f2u32:
1300 if (nir_src_bit_size(instr->src[0].src) == 64)
1301 emit_conversion_from_double(dst, op[0], instr->dest.saturate);
1302 else
1303 inst = emit(MOV(dst, op[0]));
1304 break;
1305
1306 case nir_op_f2f64:
1307 case nir_op_i2f64:
1308 case nir_op_u2f64:
1309 emit_conversion_to_double(dst, op[0], instr->dest.saturate);
1310 break;
1311
1312 case nir_op_iadd:
1313 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1314 /* fall through */
1315 case nir_op_fadd:
1316 inst = emit(ADD(dst, op[0], op[1]));
1317 inst->saturate = instr->dest.saturate;
1318 break;
1319
1320 case nir_op_fmul:
1321 inst = emit(MUL(dst, op[0], op[1]));
1322 inst->saturate = instr->dest.saturate;
1323 break;
1324
1325 case nir_op_imul: {
1326 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1327 if (devinfo->gen < 8) {
1328 nir_const_value *value0 = nir_src_as_const_value(instr->src[0].src);
1329 nir_const_value *value1 = nir_src_as_const_value(instr->src[1].src);
1330
1331 /* For integer multiplication, the MUL uses the low 16 bits of one of
1332 * the operands (src0 through SNB, src1 on IVB and later). The MACH
1333 * accumulates in the contribution of the upper 16 bits of that
1334 * operand. If we can determine that one of the args is in the low
1335 * 16 bits, though, we can just emit a single MUL.
1336 */
1337 if (value0 && value0->u32[0] < (1 << 16)) {
1338 if (devinfo->gen < 7)
1339 emit(MUL(dst, op[0], op[1]));
1340 else
1341 emit(MUL(dst, op[1], op[0]));
1342 } else if (value1 && value1->u32[0] < (1 << 16)) {
1343 if (devinfo->gen < 7)
1344 emit(MUL(dst, op[1], op[0]));
1345 else
1346 emit(MUL(dst, op[0], op[1]));
1347 } else {
1348 struct brw_reg acc = retype(brw_acc_reg(8), dst.type);
1349
1350 emit(MUL(acc, op[0], op[1]));
1351 emit(MACH(dst_null_d(), op[0], op[1]));
1352 emit(MOV(dst, src_reg(acc)));
1353 }
1354 } else {
1355 emit(MUL(dst, op[0], op[1]));
1356 }
1357 break;
1358 }
1359
1360 case nir_op_imul_high:
1361 case nir_op_umul_high: {
1362 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1363 struct brw_reg acc = retype(brw_acc_reg(8), dst.type);
1364
1365 if (devinfo->gen >= 8)
1366 emit(MUL(acc, op[0], retype(op[1], BRW_REGISTER_TYPE_UW)));
1367 else
1368 emit(MUL(acc, op[0], op[1]));
1369
1370 emit(MACH(dst, op[0], op[1]));
1371 break;
1372 }
1373
1374 case nir_op_frcp:
1375 inst = emit_math(SHADER_OPCODE_RCP, dst, op[0]);
1376 inst->saturate = instr->dest.saturate;
1377 break;
1378
1379 case nir_op_fexp2:
1380 inst = emit_math(SHADER_OPCODE_EXP2, dst, op[0]);
1381 inst->saturate = instr->dest.saturate;
1382 break;
1383
1384 case nir_op_flog2:
1385 inst = emit_math(SHADER_OPCODE_LOG2, dst, op[0]);
1386 inst->saturate = instr->dest.saturate;
1387 break;
1388
1389 case nir_op_fsin:
1390 inst = emit_math(SHADER_OPCODE_SIN, dst, op[0]);
1391 inst->saturate = instr->dest.saturate;
1392 break;
1393
1394 case nir_op_fcos:
1395 inst = emit_math(SHADER_OPCODE_COS, dst, op[0]);
1396 inst->saturate = instr->dest.saturate;
1397 break;
1398
1399 case nir_op_idiv:
1400 case nir_op_udiv:
1401 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1402 emit_math(SHADER_OPCODE_INT_QUOTIENT, dst, op[0], op[1]);
1403 break;
1404
1405 case nir_op_umod:
1406 case nir_op_irem:
1407 /* According to the sign table for INT DIV in the Ivy Bridge PRM, it
1408 * appears that our hardware just does the right thing for signed
1409 * remainder.
1410 */
1411 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1412 emit_math(SHADER_OPCODE_INT_REMAINDER, dst, op[0], op[1]);
1413 break;
1414
1415 case nir_op_imod: {
1416 /* Get a regular C-style remainder. If a % b == 0, set the predicate. */
1417 inst = emit_math(SHADER_OPCODE_INT_REMAINDER, dst, op[0], op[1]);
1418
1419 /* Math instructions don't support conditional mod */
1420 inst = emit(MOV(dst_null_d(), src_reg(dst)));
1421 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1422
1423 /* Now, we need to determine if signs of the sources are different.
1424 * When we XOR the sources, the top bit is 0 if they are the same and 1
1425 * if they are different. We can then use a conditional modifier to
1426 * turn that into a predicate. This leads us to an XOR.l instruction.
1427 *
1428 * Technically, according to the PRM, you're not allowed to use .l on a
1429 * XOR instruction. However, emperical experiments and Curro's reading
1430 * of the simulator source both indicate that it's safe.
1431 */
1432 src_reg tmp = src_reg(this, glsl_type::ivec4_type);
1433 inst = emit(XOR(dst_reg(tmp), op[0], op[1]));
1434 inst->predicate = BRW_PREDICATE_NORMAL;
1435 inst->conditional_mod = BRW_CONDITIONAL_L;
1436
1437 /* If the result of the initial remainder operation is non-zero and the
1438 * two sources have different signs, add in a copy of op[1] to get the
1439 * final integer modulus value.
1440 */
1441 inst = emit(ADD(dst, src_reg(dst), op[1]));
1442 inst->predicate = BRW_PREDICATE_NORMAL;
1443 break;
1444 }
1445
1446 case nir_op_ldexp:
1447 unreachable("not reached: should be handled by ldexp_to_arith()");
1448
1449 case nir_op_fsqrt:
1450 inst = emit_math(SHADER_OPCODE_SQRT, dst, op[0]);
1451 inst->saturate = instr->dest.saturate;
1452 break;
1453
1454 case nir_op_frsq:
1455 inst = emit_math(SHADER_OPCODE_RSQ, dst, op[0]);
1456 inst->saturate = instr->dest.saturate;
1457 break;
1458
1459 case nir_op_fpow:
1460 inst = emit_math(SHADER_OPCODE_POW, dst, op[0], op[1]);
1461 inst->saturate = instr->dest.saturate;
1462 break;
1463
1464 case nir_op_uadd_carry: {
1465 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1466 struct brw_reg acc = retype(brw_acc_reg(8), BRW_REGISTER_TYPE_UD);
1467
1468 emit(ADDC(dst_null_ud(), op[0], op[1]));
1469 emit(MOV(dst, src_reg(acc)));
1470 break;
1471 }
1472
1473 case nir_op_usub_borrow: {
1474 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1475 struct brw_reg acc = retype(brw_acc_reg(8), BRW_REGISTER_TYPE_UD);
1476
1477 emit(SUBB(dst_null_ud(), op[0], op[1]));
1478 emit(MOV(dst, src_reg(acc)));
1479 break;
1480 }
1481
1482 case nir_op_ftrunc:
1483 inst = emit(RNDZ(dst, op[0]));
1484 inst->saturate = instr->dest.saturate;
1485 break;
1486
1487 case nir_op_fceil: {
1488 src_reg tmp = src_reg(this, glsl_type::float_type);
1489 tmp.swizzle =
1490 brw_swizzle_for_size(instr->src[0].src.is_ssa ?
1491 instr->src[0].src.ssa->num_components :
1492 instr->src[0].src.reg.reg->num_components);
1493
1494 op[0].negate = !op[0].negate;
1495 emit(RNDD(dst_reg(tmp), op[0]));
1496 tmp.negate = true;
1497 inst = emit(MOV(dst, tmp));
1498 inst->saturate = instr->dest.saturate;
1499 break;
1500 }
1501
1502 case nir_op_ffloor:
1503 inst = emit(RNDD(dst, op[0]));
1504 inst->saturate = instr->dest.saturate;
1505 break;
1506
1507 case nir_op_ffract:
1508 inst = emit(FRC(dst, op[0]));
1509 inst->saturate = instr->dest.saturate;
1510 break;
1511
1512 case nir_op_fround_even:
1513 inst = emit(RNDE(dst, op[0]));
1514 inst->saturate = instr->dest.saturate;
1515 break;
1516
1517 case nir_op_fquantize2f16: {
1518 /* See also vec4_visitor::emit_pack_half_2x16() */
1519 src_reg tmp16 = src_reg(this, glsl_type::uvec4_type);
1520 src_reg tmp32 = src_reg(this, glsl_type::vec4_type);
1521 src_reg zero = src_reg(this, glsl_type::vec4_type);
1522
1523 /* Check for denormal */
1524 src_reg abs_src0 = op[0];
1525 abs_src0.abs = true;
1526 emit(CMP(dst_null_f(), abs_src0, brw_imm_f(ldexpf(1.0, -14)),
1527 BRW_CONDITIONAL_L));
1528 /* Get the appropriately signed zero */
1529 emit(AND(retype(dst_reg(zero), BRW_REGISTER_TYPE_UD),
1530 retype(op[0], BRW_REGISTER_TYPE_UD),
1531 brw_imm_ud(0x80000000)));
1532 /* Do the actual F32 -> F16 -> F32 conversion */
1533 emit(F32TO16(dst_reg(tmp16), op[0]));
1534 emit(F16TO32(dst_reg(tmp32), tmp16));
1535 /* Select that or zero based on normal status */
1536 inst = emit(BRW_OPCODE_SEL, dst, zero, tmp32);
1537 inst->predicate = BRW_PREDICATE_NORMAL;
1538 inst->saturate = instr->dest.saturate;
1539 break;
1540 }
1541
1542 case nir_op_imin:
1543 case nir_op_umin:
1544 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1545 /* fall through */
1546 case nir_op_fmin:
1547 inst = emit_minmax(BRW_CONDITIONAL_L, dst, op[0], op[1]);
1548 inst->saturate = instr->dest.saturate;
1549 break;
1550
1551 case nir_op_imax:
1552 case nir_op_umax:
1553 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1554 /* fall through */
1555 case nir_op_fmax:
1556 inst = emit_minmax(BRW_CONDITIONAL_GE, dst, op[0], op[1]);
1557 inst->saturate = instr->dest.saturate;
1558 break;
1559
1560 case nir_op_fddx:
1561 case nir_op_fddx_coarse:
1562 case nir_op_fddx_fine:
1563 case nir_op_fddy:
1564 case nir_op_fddy_coarse:
1565 case nir_op_fddy_fine:
1566 unreachable("derivatives are not valid in vertex shaders");
1567
1568 case nir_op_ilt:
1569 case nir_op_ult:
1570 case nir_op_ige:
1571 case nir_op_uge:
1572 case nir_op_ieq:
1573 case nir_op_ine:
1574 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1575 /* Fallthrough */
1576 case nir_op_flt:
1577 case nir_op_fge:
1578 case nir_op_feq:
1579 case nir_op_fne: {
1580 enum brw_conditional_mod conditional_mod =
1581 brw_conditional_for_nir_comparison(instr->op);
1582
1583 if (nir_src_bit_size(instr->src[0].src) < 64) {
1584 emit(CMP(dst, op[0], op[1], conditional_mod));
1585 } else {
1586 /* Produce a 32-bit boolean result from the DF comparison by selecting
1587 * only the low 32-bit in each DF produced. Do this in a temporary
1588 * so we can then move from there to the result using align16 again
1589 * to honor the original writemask.
1590 */
1591 dst_reg temp = dst_reg(this, glsl_type::dvec4_type);
1592 emit(CMP(temp, op[0], op[1], conditional_mod));
1593 dst_reg result = dst_reg(this, glsl_type::bvec4_type);
1594 emit(VEC4_OPCODE_PICK_LOW_32BIT, result, src_reg(temp));
1595 emit(MOV(dst, src_reg(result)));
1596 }
1597 break;
1598 }
1599
1600 case nir_op_ball_iequal2:
1601 case nir_op_ball_iequal3:
1602 case nir_op_ball_iequal4:
1603 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1604 /* Fallthrough */
1605 case nir_op_ball_fequal2:
1606 case nir_op_ball_fequal3:
1607 case nir_op_ball_fequal4: {
1608 unsigned swiz =
1609 brw_swizzle_for_size(nir_op_infos[instr->op].input_sizes[0]);
1610
1611 emit(CMP(dst_null_d(), swizzle(op[0], swiz), swizzle(op[1], swiz),
1612 brw_conditional_for_nir_comparison(instr->op)));
1613 emit(MOV(dst, brw_imm_d(0)));
1614 inst = emit(MOV(dst, brw_imm_d(~0)));
1615 inst->predicate = BRW_PREDICATE_ALIGN16_ALL4H;
1616 break;
1617 }
1618
1619 case nir_op_bany_inequal2:
1620 case nir_op_bany_inequal3:
1621 case nir_op_bany_inequal4:
1622 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1623 /* Fallthrough */
1624 case nir_op_bany_fnequal2:
1625 case nir_op_bany_fnequal3:
1626 case nir_op_bany_fnequal4: {
1627 unsigned swiz =
1628 brw_swizzle_for_size(nir_op_infos[instr->op].input_sizes[0]);
1629
1630 emit(CMP(dst_null_d(), swizzle(op[0], swiz), swizzle(op[1], swiz),
1631 brw_conditional_for_nir_comparison(instr->op)));
1632
1633 emit(MOV(dst, brw_imm_d(0)));
1634 inst = emit(MOV(dst, brw_imm_d(~0)));
1635 inst->predicate = BRW_PREDICATE_ALIGN16_ANY4H;
1636 break;
1637 }
1638
1639 case nir_op_inot:
1640 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1641 if (devinfo->gen >= 8) {
1642 op[0] = resolve_source_modifiers(op[0]);
1643 }
1644 emit(NOT(dst, op[0]));
1645 break;
1646
1647 case nir_op_ixor:
1648 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1649 if (devinfo->gen >= 8) {
1650 op[0] = resolve_source_modifiers(op[0]);
1651 op[1] = resolve_source_modifiers(op[1]);
1652 }
1653 emit(XOR(dst, op[0], op[1]));
1654 break;
1655
1656 case nir_op_ior:
1657 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1658 if (devinfo->gen >= 8) {
1659 op[0] = resolve_source_modifiers(op[0]);
1660 op[1] = resolve_source_modifiers(op[1]);
1661 }
1662 emit(OR(dst, op[0], op[1]));
1663 break;
1664
1665 case nir_op_iand:
1666 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1667 if (devinfo->gen >= 8) {
1668 op[0] = resolve_source_modifiers(op[0]);
1669 op[1] = resolve_source_modifiers(op[1]);
1670 }
1671 emit(AND(dst, op[0], op[1]));
1672 break;
1673
1674 case nir_op_b2i:
1675 case nir_op_b2f:
1676 emit(MOV(dst, negate(op[0])));
1677 break;
1678
1679 case nir_op_f2b:
1680 if (nir_src_bit_size(instr->src[0].src) == 64) {
1681 /* We use a MOV with conditional_mod to check if the provided value is
1682 * 0.0. We want this to flush denormalized numbers to zero, so we set a
1683 * source modifier on the source operand to trigger this, as source
1684 * modifiers don't affect the result of the testing against 0.0.
1685 */
1686 src_reg value = op[0];
1687 value.abs = true;
1688 vec4_instruction *inst = emit(MOV(dst_null_df(), value));
1689 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1690
1691 src_reg one = src_reg(this, glsl_type::ivec4_type);
1692 emit(MOV(dst_reg(one), brw_imm_d(~0)));
1693 inst = emit(BRW_OPCODE_SEL, dst, one, brw_imm_d(0));
1694 inst->predicate = BRW_PREDICATE_NORMAL;
1695 } else {
1696 emit(CMP(dst, op[0], brw_imm_f(0.0f), BRW_CONDITIONAL_NZ));
1697 }
1698 break;
1699
1700 case nir_op_i2b:
1701 emit(CMP(dst, op[0], brw_imm_d(0), BRW_CONDITIONAL_NZ));
1702 break;
1703
1704 case nir_op_fnoise1_1:
1705 case nir_op_fnoise1_2:
1706 case nir_op_fnoise1_3:
1707 case nir_op_fnoise1_4:
1708 case nir_op_fnoise2_1:
1709 case nir_op_fnoise2_2:
1710 case nir_op_fnoise2_3:
1711 case nir_op_fnoise2_4:
1712 case nir_op_fnoise3_1:
1713 case nir_op_fnoise3_2:
1714 case nir_op_fnoise3_3:
1715 case nir_op_fnoise3_4:
1716 case nir_op_fnoise4_1:
1717 case nir_op_fnoise4_2:
1718 case nir_op_fnoise4_3:
1719 case nir_op_fnoise4_4:
1720 unreachable("not reached: should be handled by lower_noise");
1721
1722 case nir_op_unpack_half_2x16_split_x:
1723 case nir_op_unpack_half_2x16_split_y:
1724 case nir_op_pack_half_2x16_split:
1725 unreachable("not reached: should not occur in vertex shader");
1726
1727 case nir_op_unpack_snorm_2x16:
1728 case nir_op_unpack_unorm_2x16:
1729 case nir_op_pack_snorm_2x16:
1730 case nir_op_pack_unorm_2x16:
1731 unreachable("not reached: should be handled by lower_packing_builtins");
1732
1733 case nir_op_pack_uvec4_to_uint:
1734 unreachable("not reached");
1735
1736 case nir_op_pack_uvec2_to_uint: {
1737 dst_reg tmp1 = dst_reg(this, glsl_type::uint_type);
1738 tmp1.writemask = WRITEMASK_X;
1739 op[0].swizzle = BRW_SWIZZLE_YYYY;
1740 emit(SHL(tmp1, op[0], src_reg(brw_imm_ud(16u))));
1741
1742 dst_reg tmp2 = dst_reg(this, glsl_type::uint_type);
1743 tmp2.writemask = WRITEMASK_X;
1744 op[0].swizzle = BRW_SWIZZLE_XXXX;
1745 emit(AND(tmp2, op[0], src_reg(brw_imm_ud(0xffffu))));
1746
1747 emit(OR(dst, src_reg(tmp1), src_reg(tmp2)));
1748 break;
1749 }
1750
1751 case nir_op_pack_64_2x32_split: {
1752 dst_reg result = dst_reg(this, glsl_type::dvec4_type);
1753 dst_reg tmp = dst_reg(this, glsl_type::uvec4_type);
1754 emit(MOV(tmp, retype(op[0], BRW_REGISTER_TYPE_UD)));
1755 emit(VEC4_OPCODE_SET_LOW_32BIT, result, src_reg(tmp));
1756 emit(MOV(tmp, retype(op[1], BRW_REGISTER_TYPE_UD)));
1757 emit(VEC4_OPCODE_SET_HIGH_32BIT, result, src_reg(tmp));
1758 emit(MOV(dst, src_reg(result)));
1759 break;
1760 }
1761
1762 case nir_op_unpack_64_2x32_split_x:
1763 case nir_op_unpack_64_2x32_split_y: {
1764 enum opcode oper = (instr->op == nir_op_unpack_64_2x32_split_x) ?
1765 VEC4_OPCODE_PICK_LOW_32BIT : VEC4_OPCODE_PICK_HIGH_32BIT;
1766 dst_reg tmp = dst_reg(this, glsl_type::dvec4_type);
1767 emit(MOV(tmp, op[0]));
1768 dst_reg tmp2 = dst_reg(this, glsl_type::uvec4_type);
1769 emit(oper, tmp2, src_reg(tmp));
1770 emit(MOV(dst, src_reg(tmp2)));
1771 break;
1772 }
1773
1774 case nir_op_unpack_half_2x16:
1775 /* As NIR does not guarantee that we have a correct swizzle outside the
1776 * boundaries of a vector, and the implementation of emit_unpack_half_2x16
1777 * uses the source operand in an operation with WRITEMASK_Y while our
1778 * source operand has only size 1, it accessed incorrect data producing
1779 * regressions in Piglit. We repeat the swizzle of the first component on the
1780 * rest of components to avoid regressions. In the vec4_visitor IR code path
1781 * this is not needed because the operand has already the correct swizzle.
1782 */
1783 op[0].swizzle = brw_compose_swizzle(BRW_SWIZZLE_XXXX, op[0].swizzle);
1784 emit_unpack_half_2x16(dst, op[0]);
1785 break;
1786
1787 case nir_op_pack_half_2x16:
1788 emit_pack_half_2x16(dst, op[0]);
1789 break;
1790
1791 case nir_op_unpack_unorm_4x8:
1792 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1793 emit_unpack_unorm_4x8(dst, op[0]);
1794 break;
1795
1796 case nir_op_pack_unorm_4x8:
1797 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1798 emit_pack_unorm_4x8(dst, op[0]);
1799 break;
1800
1801 case nir_op_unpack_snorm_4x8:
1802 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1803 emit_unpack_snorm_4x8(dst, op[0]);
1804 break;
1805
1806 case nir_op_pack_snorm_4x8:
1807 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1808 emit_pack_snorm_4x8(dst, op[0]);
1809 break;
1810
1811 case nir_op_bitfield_reverse:
1812 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1813 emit(BFREV(dst, op[0]));
1814 break;
1815
1816 case nir_op_bit_count:
1817 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1818 emit(CBIT(dst, op[0]));
1819 break;
1820
1821 case nir_op_ufind_msb:
1822 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1823 emit_find_msb_using_lzd(vec4_builder(this).at_end(), dst, op[0], false);
1824 break;
1825
1826 case nir_op_ifind_msb: {
1827 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1828 vec4_builder bld = vec4_builder(this).at_end();
1829 src_reg src(dst);
1830
1831 if (devinfo->gen < 7) {
1832 emit_find_msb_using_lzd(bld, dst, op[0], true);
1833 } else {
1834 emit(FBH(retype(dst, BRW_REGISTER_TYPE_UD), op[0]));
1835
1836 /* FBH counts from the MSB side, while GLSL's findMSB() wants the
1837 * count from the LSB side. If FBH didn't return an error
1838 * (0xFFFFFFFF), then subtract the result from 31 to convert the MSB
1839 * count into an LSB count.
1840 */
1841 bld.CMP(dst_null_d(), src, brw_imm_d(-1), BRW_CONDITIONAL_NZ);
1842
1843 inst = bld.ADD(dst, src, brw_imm_d(31));
1844 inst->predicate = BRW_PREDICATE_NORMAL;
1845 inst->src[0].negate = true;
1846 }
1847 break;
1848 }
1849
1850 case nir_op_find_lsb: {
1851 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1852 vec4_builder bld = vec4_builder(this).at_end();
1853
1854 if (devinfo->gen < 7) {
1855 dst_reg temp = bld.vgrf(BRW_REGISTER_TYPE_D);
1856
1857 /* (x & -x) generates a value that consists of only the LSB of x.
1858 * For all powers of 2, findMSB(y) == findLSB(y).
1859 */
1860 src_reg src = src_reg(retype(op[0], BRW_REGISTER_TYPE_D));
1861 src_reg negated_src = src;
1862
1863 /* One must be negated, and the other must be non-negated. It
1864 * doesn't matter which is which.
1865 */
1866 negated_src.negate = true;
1867 src.negate = false;
1868
1869 bld.AND(temp, src, negated_src);
1870 emit_find_msb_using_lzd(bld, dst, src_reg(temp), false);
1871 } else {
1872 bld.FBL(dst, op[0]);
1873 }
1874 break;
1875 }
1876
1877 case nir_op_ubitfield_extract:
1878 case nir_op_ibitfield_extract:
1879 unreachable("should have been lowered");
1880 case nir_op_ubfe:
1881 case nir_op_ibfe:
1882 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1883 op[0] = fix_3src_operand(op[0]);
1884 op[1] = fix_3src_operand(op[1]);
1885 op[2] = fix_3src_operand(op[2]);
1886
1887 emit(BFE(dst, op[2], op[1], op[0]));
1888 break;
1889
1890 case nir_op_bfm:
1891 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1892 emit(BFI1(dst, op[0], op[1]));
1893 break;
1894
1895 case nir_op_bfi:
1896 assert(nir_dest_bit_size(instr->dest.dest) < 64);
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 emit(BFI2(dst, op[0], op[1], op[2]));
1902 break;
1903
1904 case nir_op_bitfield_insert:
1905 unreachable("not reached: should have been lowered");
1906
1907 case nir_op_fsign:
1908 if (type_sz(op[0].type) < 8) {
1909 /* AND(val, 0x80000000) gives the sign bit.
1910 *
1911 * Predicated OR ORs 1.0 (0x3f800000) with the sign bit if val is not
1912 * zero.
1913 */
1914 emit(CMP(dst_null_f(), op[0], brw_imm_f(0.0f), BRW_CONDITIONAL_NZ));
1915
1916 op[0].type = BRW_REGISTER_TYPE_UD;
1917 dst.type = BRW_REGISTER_TYPE_UD;
1918 emit(AND(dst, op[0], brw_imm_ud(0x80000000u)));
1919
1920 inst = emit(OR(dst, src_reg(dst), brw_imm_ud(0x3f800000u)));
1921 inst->predicate = BRW_PREDICATE_NORMAL;
1922 dst.type = BRW_REGISTER_TYPE_F;
1923
1924 if (instr->dest.saturate) {
1925 inst = emit(MOV(dst, src_reg(dst)));
1926 inst->saturate = true;
1927 }
1928 } else {
1929 /* For doubles we do the same but we need to consider:
1930 *
1931 * - We use a MOV with conditional_mod instead of a CMP so that we can
1932 * skip loading a 0.0 immediate. We use a source modifier on the
1933 * source of the MOV so that we flush denormalized values to 0.
1934 * Since we want to compare against 0, this won't alter the result.
1935 * - We need to extract the high 32-bit of each DF where the sign
1936 * is stored.
1937 * - We need to produce a DF result.
1938 */
1939
1940 /* Check for zero */
1941 src_reg value = op[0];
1942 value.abs = true;
1943 inst = emit(MOV(dst_null_df(), value));
1944 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1945
1946 /* AND each high 32-bit channel with 0x80000000u */
1947 dst_reg tmp = dst_reg(this, glsl_type::uvec4_type);
1948 emit(VEC4_OPCODE_PICK_HIGH_32BIT, tmp, op[0]);
1949 emit(AND(tmp, src_reg(tmp), brw_imm_ud(0x80000000u)));
1950
1951 /* Add 1.0 to each channel, predicated to skip the cases where the
1952 * channel's value was 0
1953 */
1954 inst = emit(OR(tmp, src_reg(tmp), brw_imm_ud(0x3f800000u)));
1955 inst->predicate = BRW_PREDICATE_NORMAL;
1956
1957 /* Now convert the result from float to double */
1958 emit_conversion_to_double(dst, retype(src_reg(tmp),
1959 BRW_REGISTER_TYPE_F),
1960 instr->dest.saturate);
1961 }
1962 break;
1963
1964 case nir_op_isign:
1965 /* ASR(val, 31) -> negative val generates 0xffffffff (signed -1).
1966 * -> non-negative val generates 0x00000000.
1967 * Predicated OR sets 1 if val is positive.
1968 */
1969 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1970 emit(CMP(dst_null_d(), op[0], brw_imm_d(0), BRW_CONDITIONAL_G));
1971 emit(ASR(dst, op[0], brw_imm_d(31)));
1972 inst = emit(OR(dst, src_reg(dst), brw_imm_d(1)));
1973 inst->predicate = BRW_PREDICATE_NORMAL;
1974 break;
1975
1976 case nir_op_ishl:
1977 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1978 emit(SHL(dst, op[0], op[1]));
1979 break;
1980
1981 case nir_op_ishr:
1982 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1983 emit(ASR(dst, op[0], op[1]));
1984 break;
1985
1986 case nir_op_ushr:
1987 assert(nir_dest_bit_size(instr->dest.dest) < 64);
1988 emit(SHR(dst, op[0], op[1]));
1989 break;
1990
1991 case nir_op_ffma:
1992 if (type_sz(dst.type) == 8) {
1993 dst_reg mul_dst = dst_reg(this, glsl_type::dvec4_type);
1994 emit(MUL(mul_dst, op[1], op[0]));
1995 inst = emit(ADD(dst, src_reg(mul_dst), op[2]));
1996 inst->saturate = instr->dest.saturate;
1997 } else {
1998 op[0] = fix_3src_operand(op[0]);
1999 op[1] = fix_3src_operand(op[1]);
2000 op[2] = fix_3src_operand(op[2]);
2001
2002 inst = emit(MAD(dst, op[2], op[1], op[0]));
2003 inst->saturate = instr->dest.saturate;
2004 }
2005 break;
2006
2007 case nir_op_flrp:
2008 inst = emit_lrp(dst, op[0], op[1], op[2]);
2009 inst->saturate = instr->dest.saturate;
2010 break;
2011
2012 case nir_op_bcsel:
2013 enum brw_predicate predicate;
2014 if (!optimize_predicate(instr, &predicate)) {
2015 emit(CMP(dst_null_d(), op[0], brw_imm_d(0), BRW_CONDITIONAL_NZ));
2016 switch (dst.writemask) {
2017 case WRITEMASK_X:
2018 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_X;
2019 break;
2020 case WRITEMASK_Y:
2021 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_Y;
2022 break;
2023 case WRITEMASK_Z:
2024 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_Z;
2025 break;
2026 case WRITEMASK_W:
2027 predicate = BRW_PREDICATE_ALIGN16_REPLICATE_W;
2028 break;
2029 default:
2030 predicate = BRW_PREDICATE_NORMAL;
2031 break;
2032 }
2033 }
2034 inst = emit(BRW_OPCODE_SEL, dst, op[1], op[2]);
2035 inst->predicate = predicate;
2036 break;
2037
2038 case nir_op_fdot_replicated2:
2039 inst = emit(BRW_OPCODE_DP2, dst, op[0], op[1]);
2040 inst->saturate = instr->dest.saturate;
2041 break;
2042
2043 case nir_op_fdot_replicated3:
2044 inst = emit(BRW_OPCODE_DP3, dst, op[0], op[1]);
2045 inst->saturate = instr->dest.saturate;
2046 break;
2047
2048 case nir_op_fdot_replicated4:
2049 inst = emit(BRW_OPCODE_DP4, dst, op[0], op[1]);
2050 inst->saturate = instr->dest.saturate;
2051 break;
2052
2053 case nir_op_fdph_replicated:
2054 inst = emit(BRW_OPCODE_DPH, dst, op[0], op[1]);
2055 inst->saturate = instr->dest.saturate;
2056 break;
2057
2058 case nir_op_iabs:
2059 case nir_op_ineg:
2060 assert(nir_dest_bit_size(instr->dest.dest) < 64);
2061 /* fall through */
2062 case nir_op_fabs:
2063 case nir_op_fneg:
2064 case nir_op_fsat:
2065 unreachable("not reached: should be lowered by lower_source mods");
2066
2067 case nir_op_fdiv:
2068 unreachable("not reached: should be lowered by DIV_TO_MUL_RCP in the compiler");
2069
2070 case nir_op_fmod:
2071 unreachable("not reached: should be lowered by MOD_TO_FLOOR in the compiler");
2072
2073 case nir_op_fsub:
2074 case nir_op_isub:
2075 unreachable("not reached: should be handled by ir_sub_to_add_neg");
2076
2077 default:
2078 unreachable("Unimplemented ALU operation");
2079 }
2080
2081 /* If we need to do a boolean resolve, replace the result with -(x & 1)
2082 * to sign extend the low bit to 0/~0
2083 */
2084 if (devinfo->gen <= 5 &&
2085 (instr->instr.pass_flags & BRW_NIR_BOOLEAN_MASK) ==
2086 BRW_NIR_BOOLEAN_NEEDS_RESOLVE) {
2087 dst_reg masked = dst_reg(this, glsl_type::int_type);
2088 masked.writemask = dst.writemask;
2089 emit(AND(masked, src_reg(dst), brw_imm_d(1)));
2090 src_reg masked_neg = src_reg(masked);
2091 masked_neg.negate = true;
2092 emit(MOV(retype(dst, BRW_REGISTER_TYPE_D), masked_neg));
2093 }
2094 }
2095
2096 void
2097 vec4_visitor::nir_emit_jump(nir_jump_instr *instr)
2098 {
2099 switch (instr->type) {
2100 case nir_jump_break:
2101 emit(BRW_OPCODE_BREAK);
2102 break;
2103
2104 case nir_jump_continue:
2105 emit(BRW_OPCODE_CONTINUE);
2106 break;
2107
2108 case nir_jump_return:
2109 /* fall through */
2110 default:
2111 unreachable("unknown jump");
2112 }
2113 }
2114
2115 enum ir_texture_opcode
2116 ir_texture_opcode_for_nir_texop(nir_texop texop)
2117 {
2118 enum ir_texture_opcode op;
2119
2120 switch (texop) {
2121 case nir_texop_lod: op = ir_lod; break;
2122 case nir_texop_query_levels: op = ir_query_levels; break;
2123 case nir_texop_texture_samples: op = ir_texture_samples; break;
2124 case nir_texop_tex: op = ir_tex; break;
2125 case nir_texop_tg4: op = ir_tg4; break;
2126 case nir_texop_txb: op = ir_txb; break;
2127 case nir_texop_txd: op = ir_txd; break;
2128 case nir_texop_txf: op = ir_txf; break;
2129 case nir_texop_txf_ms: op = ir_txf_ms; break;
2130 case nir_texop_txl: op = ir_txl; break;
2131 case nir_texop_txs: op = ir_txs; break;
2132 case nir_texop_samples_identical: op = ir_samples_identical; break;
2133 default:
2134 unreachable("unknown texture opcode");
2135 }
2136
2137 return op;
2138 }
2139 const glsl_type *
2140 glsl_type_for_nir_alu_type(nir_alu_type alu_type,
2141 unsigned components)
2142 {
2143 return glsl_type::get_instance(brw_glsl_base_type_for_nir_type(alu_type),
2144 components, 1);
2145 }
2146
2147 void
2148 vec4_visitor::nir_emit_texture(nir_tex_instr *instr)
2149 {
2150 unsigned texture = instr->texture_index;
2151 unsigned sampler = instr->sampler_index;
2152 src_reg texture_reg = brw_imm_ud(texture);
2153 src_reg sampler_reg = brw_imm_ud(sampler);
2154 src_reg coordinate;
2155 const glsl_type *coord_type = NULL;
2156 src_reg shadow_comparator;
2157 src_reg offset_value;
2158 src_reg lod, lod2;
2159 src_reg sample_index;
2160 src_reg mcs;
2161
2162 const glsl_type *dest_type =
2163 glsl_type_for_nir_alu_type(instr->dest_type,
2164 nir_tex_instr_dest_size(instr));
2165 dst_reg dest = get_nir_dest(instr->dest, instr->dest_type);
2166
2167 /* The hardware requires a LOD for buffer textures */
2168 if (instr->sampler_dim == GLSL_SAMPLER_DIM_BUF)
2169 lod = brw_imm_d(0);
2170
2171 /* Load the texture operation sources */
2172 uint32_t constant_offset = 0;
2173 for (unsigned i = 0; i < instr->num_srcs; i++) {
2174 switch (instr->src[i].src_type) {
2175 case nir_tex_src_comparator:
2176 shadow_comparator = get_nir_src(instr->src[i].src,
2177 BRW_REGISTER_TYPE_F, 1);
2178 break;
2179
2180 case nir_tex_src_coord: {
2181 unsigned src_size = nir_tex_instr_src_size(instr, i);
2182
2183 switch (instr->op) {
2184 case nir_texop_txf:
2185 case nir_texop_txf_ms:
2186 case nir_texop_samples_identical:
2187 coordinate = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D,
2188 src_size);
2189 coord_type = glsl_type::ivec(src_size);
2190 break;
2191
2192 default:
2193 coordinate = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_F,
2194 src_size);
2195 coord_type = glsl_type::vec(src_size);
2196 break;
2197 }
2198 break;
2199 }
2200
2201 case nir_tex_src_ddx:
2202 lod = 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_ddy:
2207 lod2 = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_F,
2208 nir_tex_instr_src_size(instr, i));
2209 break;
2210
2211 case nir_tex_src_lod:
2212 switch (instr->op) {
2213 case nir_texop_txs:
2214 case nir_texop_txf:
2215 lod = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D, 1);
2216 break;
2217
2218 default:
2219 lod = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_F, 1);
2220 break;
2221 }
2222 break;
2223
2224 case nir_tex_src_ms_index: {
2225 sample_index = get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D, 1);
2226 break;
2227 }
2228
2229 case nir_tex_src_offset: {
2230 nir_const_value *const_offset =
2231 nir_src_as_const_value(instr->src[i].src);
2232 if (!const_offset ||
2233 !brw_texture_offset(const_offset->i32,
2234 nir_tex_instr_src_size(instr, i),
2235 &constant_offset)) {
2236 offset_value =
2237 get_nir_src(instr->src[i].src, BRW_REGISTER_TYPE_D, 2);
2238 }
2239 break;
2240 }
2241
2242 case nir_tex_src_texture_offset: {
2243 /* The highest texture which may be used by this operation is
2244 * the last element of the array. Mark it here, because the generator
2245 * doesn't have enough information to determine the bound.
2246 */
2247 uint32_t array_size = instr->texture_array_size;
2248 uint32_t max_used = texture + array_size - 1;
2249 if (instr->op == nir_texop_tg4) {
2250 max_used += prog_data->base.binding_table.gather_texture_start;
2251 } else {
2252 max_used += prog_data->base.binding_table.texture_start;
2253 }
2254
2255 brw_mark_surface_used(&prog_data->base, max_used);
2256
2257 /* Emit code to evaluate the actual indexing expression */
2258 src_reg src = get_nir_src(instr->src[i].src, 1);
2259 src_reg temp(this, glsl_type::uint_type);
2260 emit(ADD(dst_reg(temp), src, brw_imm_ud(texture)));
2261 texture_reg = emit_uniformize(temp);
2262 break;
2263 }
2264
2265 case nir_tex_src_sampler_offset: {
2266 /* Emit code to evaluate the actual indexing expression */
2267 src_reg src = get_nir_src(instr->src[i].src, 1);
2268 src_reg temp(this, glsl_type::uint_type);
2269 emit(ADD(dst_reg(temp), src, brw_imm_ud(sampler)));
2270 sampler_reg = emit_uniformize(temp);
2271 break;
2272 }
2273
2274 case nir_tex_src_projector:
2275 unreachable("Should be lowered by do_lower_texture_projection");
2276
2277 case nir_tex_src_bias:
2278 unreachable("LOD bias is not valid for vertex shaders.\n");
2279
2280 default:
2281 unreachable("unknown texture source");
2282 }
2283 }
2284
2285 if (instr->op == nir_texop_txf_ms ||
2286 instr->op == nir_texop_samples_identical) {
2287 assert(coord_type != NULL);
2288 if (devinfo->gen >= 7 &&
2289 key_tex->compressed_multisample_layout_mask & (1 << texture)) {
2290 mcs = emit_mcs_fetch(coord_type, coordinate, texture_reg);
2291 } else {
2292 mcs = brw_imm_ud(0u);
2293 }
2294 }
2295
2296 /* Stuff the channel select bits in the top of the texture offset */
2297 if (instr->op == nir_texop_tg4) {
2298 if (instr->component == 1 &&
2299 (key_tex->gather_channel_quirk_mask & (1 << texture))) {
2300 /* gather4 sampler is broken for green channel on RG32F --
2301 * we must ask for blue instead.
2302 */
2303 constant_offset |= 2 << 16;
2304 } else {
2305 constant_offset |= instr->component << 16;
2306 }
2307 }
2308
2309 ir_texture_opcode op = ir_texture_opcode_for_nir_texop(instr->op);
2310
2311 emit_texture(op, dest, dest_type, coordinate, instr->coord_components,
2312 shadow_comparator,
2313 lod, lod2, sample_index,
2314 constant_offset, offset_value, mcs,
2315 texture, texture_reg, sampler_reg);
2316 }
2317
2318 void
2319 vec4_visitor::nir_emit_undef(nir_ssa_undef_instr *instr)
2320 {
2321 nir_ssa_values[instr->def.index] =
2322 dst_reg(VGRF, alloc.allocate(DIV_ROUND_UP(instr->def.bit_size, 32)));
2323 }
2324
2325 /* SIMD4x2 64bit data is stored in register space like this:
2326 *
2327 * r0.0:DF x0 y0 z0 w0
2328 * r1.0:DF x1 y1 z1 w1
2329 *
2330 * When we need to write data such as this to memory using 32-bit write
2331 * messages we need to shuffle it in this fashion:
2332 *
2333 * r0.0:DF x0 y0 x1 y1 (to be written at base offset)
2334 * r0.0:DF z0 w0 z1 w1 (to be written at base offset + 16)
2335 *
2336 * We need to do the inverse operation when we read using 32-bit messages,
2337 * which we can do by applying the same exact shuffling on the 64-bit data
2338 * read, only that because the data for each vertex is positioned differently
2339 * we need to apply different channel enables.
2340 *
2341 * This function takes 64bit data and shuffles it as explained above.
2342 *
2343 * The @for_write parameter is used to specify if the shuffling is being done
2344 * for proper SIMD4x2 64-bit data that needs to be shuffled prior to a 32-bit
2345 * write message (for_write = true), or instead we are doing the inverse
2346 * operation and we have just read 64-bit data using a 32-bit messages that we
2347 * need to shuffle to create valid SIMD4x2 64-bit data (for_write = false).
2348 *
2349 * If @block and @ref are non-NULL, then the shuffling is done after @ref,
2350 * otherwise the instructions are emitted normally at the end. The function
2351 * returns the last instruction inserted.
2352 *
2353 * Notice that @src and @dst cannot be the same register.
2354 */
2355 vec4_instruction *
2356 vec4_visitor::shuffle_64bit_data(dst_reg dst, src_reg src, bool for_write,
2357 bblock_t *block, vec4_instruction *ref)
2358 {
2359 assert(type_sz(src.type) == 8);
2360 assert(type_sz(dst.type) == 8);
2361 assert(!regions_overlap(dst, 2 * REG_SIZE, src, 2 * REG_SIZE));
2362 assert(!ref == !block);
2363
2364 const vec4_builder bld = !ref ? vec4_builder(this).at_end() :
2365 vec4_builder(this).at(block, ref->next);
2366
2367 /* Resolve swizzle in src */
2368 vec4_instruction *inst;
2369 if (src.swizzle != BRW_SWIZZLE_XYZW) {
2370 dst_reg data = dst_reg(this, glsl_type::dvec4_type);
2371 inst = bld.MOV(data, src);
2372 src = src_reg(data);
2373 }
2374
2375 /* dst+0.XY = src+0.XY */
2376 inst = bld.group(4, 0).MOV(writemask(dst, WRITEMASK_XY), src);
2377
2378 /* dst+0.ZW = src+1.XY */
2379 inst = bld.group(4, for_write ? 1 : 0)
2380 .MOV(writemask(dst, WRITEMASK_ZW),
2381 swizzle(byte_offset(src, REG_SIZE), BRW_SWIZZLE_XYXY));
2382
2383 /* dst+1.XY = src+0.ZW */
2384 inst = bld.group(4, for_write ? 0 : 1)
2385 .MOV(writemask(byte_offset(dst, REG_SIZE), WRITEMASK_XY),
2386 swizzle(src, BRW_SWIZZLE_ZWZW));
2387
2388 /* dst+1.ZW = src+1.ZW */
2389 inst = bld.group(4, 1)
2390 .MOV(writemask(byte_offset(dst, REG_SIZE), WRITEMASK_ZW),
2391 byte_offset(src, REG_SIZE));
2392
2393 return inst;
2394 }
2395
2396 }