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