i965: Remove the context parameter from brw_texture_offset
[mesa.git] / src / mesa / drivers / dri / i965 / brw_fs_nir.cpp
1 /*
2 * Copyright © 2010 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 "glsl/ir.h"
25 #include "glsl/ir_optimization.h"
26 #include "glsl/nir/glsl_to_nir.h"
27 #include "program/prog_to_nir.h"
28 #include "brw_fs.h"
29 #include "brw_nir.h"
30
31 void
32 fs_visitor::emit_nir_code()
33 {
34 nir_shader *nir = prog->nir;
35
36 /* emit the arrays used for inputs and outputs - load/store intrinsics will
37 * be converted to reads/writes of these arrays
38 */
39
40 if (nir->num_inputs > 0) {
41 nir_inputs = vgrf(nir->num_inputs);
42 nir_setup_inputs(nir);
43 }
44
45 if (nir->num_outputs > 0) {
46 nir_outputs = vgrf(nir->num_outputs);
47 nir_setup_outputs(nir);
48 }
49
50 if (nir->num_uniforms > 0) {
51 nir_setup_uniforms(nir);
52 }
53
54 nir_emit_system_values(nir);
55
56 nir_globals = ralloc_array(mem_ctx, fs_reg, nir->reg_alloc);
57 foreach_list_typed(nir_register, reg, node, &nir->registers) {
58 unsigned array_elems =
59 reg->num_array_elems == 0 ? 1 : reg->num_array_elems;
60 unsigned size = array_elems * reg->num_components;
61 nir_globals[reg->index] = vgrf(size);
62 }
63
64 /* get the main function and emit it */
65 nir_foreach_overload(nir, overload) {
66 assert(strcmp(overload->function->name, "main") == 0);
67 assert(overload->impl);
68 nir_emit_impl(overload->impl);
69 }
70 }
71
72 void
73 fs_visitor::nir_setup_inputs(nir_shader *shader)
74 {
75 foreach_list_typed(nir_variable, var, node, &shader->inputs) {
76 enum brw_reg_type type = brw_type_for_base_type(var->type);
77 fs_reg input = offset(nir_inputs, var->data.driver_location);
78
79 fs_reg reg;
80 switch (stage) {
81 case MESA_SHADER_VERTEX: {
82 /* Our ATTR file is indexed by VERT_ATTRIB_*, which is the value
83 * stored in nir_variable::location.
84 *
85 * However, NIR's load_input intrinsics use a different index - an
86 * offset into a single contiguous array containing all inputs.
87 * This index corresponds to the nir_variable::driver_location field.
88 *
89 * So, we need to copy from fs_reg(ATTR, var->location) to
90 * offset(nir_inputs, var->data.driver_location).
91 */
92 unsigned components = var->type->without_array()->components();
93 unsigned array_length = var->type->is_array() ? var->type->length : 1;
94 for (unsigned i = 0; i < array_length; i++) {
95 for (unsigned j = 0; j < components; j++) {
96 emit(MOV(retype(offset(input, components * i + j), type),
97 offset(fs_reg(ATTR, var->data.location + i, type), j)));
98 }
99 }
100 break;
101 }
102 case MESA_SHADER_GEOMETRY:
103 case MESA_SHADER_COMPUTE:
104 unreachable("fs_visitor not used for these stages yet.");
105 break;
106 case MESA_SHADER_FRAGMENT:
107 if (var->data.location == VARYING_SLOT_POS) {
108 reg = *emit_fragcoord_interpolation(var->data.pixel_center_integer,
109 var->data.origin_upper_left);
110 emit_percomp(MOV(input, reg), 0xF);
111 } else {
112 emit_general_interpolation(input, var->name, var->type,
113 (glsl_interp_qualifier) var->data.interpolation,
114 var->data.location, var->data.centroid,
115 var->data.sample);
116 }
117 break;
118 }
119 }
120 }
121
122 void
123 fs_visitor::nir_setup_outputs(nir_shader *shader)
124 {
125 brw_wm_prog_key *key = (brw_wm_prog_key*) this->key;
126
127 foreach_list_typed(nir_variable, var, node, &shader->outputs) {
128 fs_reg reg = offset(nir_outputs, var->data.driver_location);
129
130 int vector_elements =
131 var->type->is_array() ? var->type->fields.array->vector_elements
132 : var->type->vector_elements;
133
134 if (stage == MESA_SHADER_VERTEX) {
135 for (int i = 0; i < ALIGN(type_size(var->type), 4) / 4; i++) {
136 int output = var->data.location + i;
137 this->outputs[output] = offset(reg, 4 * i);
138 this->output_components[output] = vector_elements;
139 }
140 } else if (var->data.index > 0) {
141 assert(var->data.location == FRAG_RESULT_DATA0);
142 assert(var->data.index == 1);
143 this->dual_src_output = reg;
144 this->do_dual_src = true;
145 } else if (var->data.location == FRAG_RESULT_COLOR) {
146 /* Writing gl_FragColor outputs to all color regions. */
147 for (unsigned int i = 0; i < MAX2(key->nr_color_regions, 1); i++) {
148 this->outputs[i] = reg;
149 this->output_components[i] = 4;
150 }
151 } else if (var->data.location == FRAG_RESULT_DEPTH) {
152 this->frag_depth = reg;
153 } else if (var->data.location == FRAG_RESULT_SAMPLE_MASK) {
154 this->sample_mask = reg;
155 } else {
156 /* gl_FragData or a user-defined FS output */
157 assert(var->data.location >= FRAG_RESULT_DATA0 &&
158 var->data.location < FRAG_RESULT_DATA0 + BRW_MAX_DRAW_BUFFERS);
159
160 /* General color output. */
161 for (unsigned int i = 0; i < MAX2(1, var->type->length); i++) {
162 int output = var->data.location - FRAG_RESULT_DATA0 + i;
163 this->outputs[output] = offset(reg, vector_elements * i);
164 this->output_components[output] = vector_elements;
165 }
166 }
167 }
168 }
169
170 void
171 fs_visitor::nir_setup_uniforms(nir_shader *shader)
172 {
173 uniforms = shader->num_uniforms;
174 num_direct_uniforms = shader->num_direct_uniforms;
175
176 /* We split the uniform register file in half. The first half is
177 * entirely direct uniforms. The second half is indirect.
178 */
179 param_size[0] = num_direct_uniforms;
180 if (shader->num_uniforms > num_direct_uniforms)
181 param_size[num_direct_uniforms] = shader->num_uniforms - num_direct_uniforms;
182
183 if (dispatch_width != 8)
184 return;
185
186 if (shader_prog) {
187 foreach_list_typed(nir_variable, var, node, &shader->uniforms) {
188 /* UBO's and atomics don't take up space in the uniform file */
189 if (var->interface_type != NULL || var->type->contains_atomic())
190 continue;
191
192 if (strncmp(var->name, "gl_", 3) == 0)
193 nir_setup_builtin_uniform(var);
194 else
195 nir_setup_uniform(var);
196 }
197 } else {
198 /* prog_to_nir doesn't create uniform variables; set param up directly. */
199 for (unsigned p = 0; p < prog->Parameters->NumParameters; p++) {
200 for (unsigned int i = 0; i < 4; i++) {
201 stage_prog_data->param[4 * p + i] =
202 &prog->Parameters->ParameterValues[p][i];
203 }
204 }
205 }
206 }
207
208 void
209 fs_visitor::nir_setup_uniform(nir_variable *var)
210 {
211 int namelen = strlen(var->name);
212
213 /* The data for our (non-builtin) uniforms is stored in a series of
214 * gl_uniform_driver_storage structs for each subcomponent that
215 * glGetUniformLocation() could name. We know it's been set up in the
216 * same order we'd walk the type, so walk the list of storage and find
217 * anything with our name, or the prefix of a component that starts with
218 * our name.
219 */
220 unsigned index = var->data.driver_location;
221 for (unsigned u = 0; u < shader_prog->NumUserUniformStorage; u++) {
222 struct gl_uniform_storage *storage = &shader_prog->UniformStorage[u];
223
224 if (strncmp(var->name, storage->name, namelen) != 0 ||
225 (storage->name[namelen] != 0 &&
226 storage->name[namelen] != '.' &&
227 storage->name[namelen] != '[')) {
228 continue;
229 }
230
231 unsigned slots = storage->type->component_slots();
232 if (storage->array_elements)
233 slots *= storage->array_elements;
234
235 for (unsigned i = 0; i < slots; i++) {
236 stage_prog_data->param[index++] = &storage->storage[i];
237 }
238 }
239
240 /* Make sure we actually initialized the right amount of stuff here. */
241 assert(var->data.driver_location + var->type->component_slots() == index);
242 }
243
244 void
245 fs_visitor::nir_setup_builtin_uniform(nir_variable *var)
246 {
247 const nir_state_slot *const slots = var->state_slots;
248 assert(var->state_slots != NULL);
249
250 unsigned uniform_index = var->data.driver_location;
251 for (unsigned int i = 0; i < var->num_state_slots; i++) {
252 /* This state reference has already been setup by ir_to_mesa, but we'll
253 * get the same index back here.
254 */
255 int index = _mesa_add_state_reference(this->prog->Parameters,
256 (gl_state_index *)slots[i].tokens);
257
258 /* Add each of the unique swizzles of the element as a parameter.
259 * This'll end up matching the expected layout of the
260 * array/matrix/structure we're trying to fill in.
261 */
262 int last_swiz = -1;
263 for (unsigned int j = 0; j < 4; j++) {
264 int swiz = GET_SWZ(slots[i].swizzle, j);
265 if (swiz == last_swiz)
266 break;
267 last_swiz = swiz;
268
269 stage_prog_data->param[uniform_index++] =
270 &prog->Parameters->ParameterValues[index][swiz];
271 }
272 }
273 }
274
275 static bool
276 emit_system_values_block(nir_block *block, void *void_visitor)
277 {
278 fs_visitor *v = (fs_visitor *)void_visitor;
279 fs_reg *reg;
280
281 nir_foreach_instr(block, instr) {
282 if (instr->type != nir_instr_type_intrinsic)
283 continue;
284
285 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
286 switch (intrin->intrinsic) {
287 case nir_intrinsic_load_vertex_id:
288 unreachable("should be lowered by lower_vertex_id().");
289
290 case nir_intrinsic_load_vertex_id_zero_base:
291 assert(v->stage == MESA_SHADER_VERTEX);
292 reg = &v->nir_system_values[SYSTEM_VALUE_VERTEX_ID_ZERO_BASE];
293 if (reg->file == BAD_FILE)
294 *reg = *v->emit_vs_system_value(SYSTEM_VALUE_VERTEX_ID_ZERO_BASE);
295 break;
296
297 case nir_intrinsic_load_base_vertex:
298 assert(v->stage == MESA_SHADER_VERTEX);
299 reg = &v->nir_system_values[SYSTEM_VALUE_BASE_VERTEX];
300 if (reg->file == BAD_FILE)
301 *reg = *v->emit_vs_system_value(SYSTEM_VALUE_BASE_VERTEX);
302 break;
303
304 case nir_intrinsic_load_instance_id:
305 assert(v->stage == MESA_SHADER_VERTEX);
306 reg = &v->nir_system_values[SYSTEM_VALUE_INSTANCE_ID];
307 if (reg->file == BAD_FILE)
308 *reg = *v->emit_vs_system_value(SYSTEM_VALUE_INSTANCE_ID);
309 break;
310
311 case nir_intrinsic_load_sample_pos:
312 assert(v->stage == MESA_SHADER_FRAGMENT);
313 reg = &v->nir_system_values[SYSTEM_VALUE_SAMPLE_POS];
314 if (reg->file == BAD_FILE)
315 *reg = *v->emit_samplepos_setup();
316 break;
317
318 case nir_intrinsic_load_sample_id:
319 assert(v->stage == MESA_SHADER_FRAGMENT);
320 reg = &v->nir_system_values[SYSTEM_VALUE_SAMPLE_ID];
321 if (reg->file == BAD_FILE)
322 *reg = *v->emit_sampleid_setup();
323 break;
324
325 case nir_intrinsic_load_sample_mask_in:
326 assert(v->stage == MESA_SHADER_FRAGMENT);
327 assert(v->brw->gen >= 7);
328 reg = &v->nir_system_values[SYSTEM_VALUE_SAMPLE_MASK_IN];
329 if (reg->file == BAD_FILE)
330 *reg = fs_reg(retype(brw_vec8_grf(v->payload.sample_mask_in_reg, 0),
331 BRW_REGISTER_TYPE_D));
332 break;
333
334 default:
335 break;
336 }
337 }
338
339 return true;
340 }
341
342 void
343 fs_visitor::nir_emit_system_values(nir_shader *shader)
344 {
345 nir_system_values = ralloc_array(mem_ctx, fs_reg, SYSTEM_VALUE_MAX);
346 nir_foreach_overload(shader, overload) {
347 assert(strcmp(overload->function->name, "main") == 0);
348 assert(overload->impl);
349 nir_foreach_block(overload->impl, emit_system_values_block, this);
350 }
351 }
352
353 void
354 fs_visitor::nir_emit_impl(nir_function_impl *impl)
355 {
356 nir_locals = reralloc(mem_ctx, nir_locals, fs_reg, impl->reg_alloc);
357 foreach_list_typed(nir_register, reg, node, &impl->registers) {
358 unsigned array_elems =
359 reg->num_array_elems == 0 ? 1 : reg->num_array_elems;
360 unsigned size = array_elems * reg->num_components;
361 nir_locals[reg->index] = vgrf(size);
362 }
363
364 nir_emit_cf_list(&impl->body);
365 }
366
367 void
368 fs_visitor::nir_emit_cf_list(exec_list *list)
369 {
370 exec_list_validate(list);
371 foreach_list_typed(nir_cf_node, node, node, list) {
372 switch (node->type) {
373 case nir_cf_node_if:
374 nir_emit_if(nir_cf_node_as_if(node));
375 break;
376
377 case nir_cf_node_loop:
378 nir_emit_loop(nir_cf_node_as_loop(node));
379 break;
380
381 case nir_cf_node_block:
382 nir_emit_block(nir_cf_node_as_block(node));
383 break;
384
385 default:
386 unreachable("Invalid CFG node block");
387 }
388 }
389 }
390
391 void
392 fs_visitor::nir_emit_if(nir_if *if_stmt)
393 {
394 /* first, put the condition into f0 */
395 fs_inst *inst = emit(MOV(reg_null_d,
396 retype(get_nir_src(if_stmt->condition),
397 BRW_REGISTER_TYPE_D)));
398 inst->conditional_mod = BRW_CONDITIONAL_NZ;
399
400 emit(IF(BRW_PREDICATE_NORMAL));
401
402 nir_emit_cf_list(&if_stmt->then_list);
403
404 /* note: if the else is empty, dead CF elimination will remove it */
405 emit(BRW_OPCODE_ELSE);
406
407 nir_emit_cf_list(&if_stmt->else_list);
408
409 emit(BRW_OPCODE_ENDIF);
410
411 if (!try_replace_with_sel() && brw->gen < 6) {
412 no16("Can't support (non-uniform) control flow on SIMD16\n");
413 }
414 }
415
416 void
417 fs_visitor::nir_emit_loop(nir_loop *loop)
418 {
419 if (brw->gen < 6) {
420 no16("Can't support (non-uniform) control flow on SIMD16\n");
421 }
422
423 emit(BRW_OPCODE_DO);
424
425 nir_emit_cf_list(&loop->body);
426
427 emit(BRW_OPCODE_WHILE);
428 }
429
430 void
431 fs_visitor::nir_emit_block(nir_block *block)
432 {
433 nir_foreach_instr(block, instr) {
434 nir_emit_instr(instr);
435 }
436 }
437
438 void
439 fs_visitor::nir_emit_instr(nir_instr *instr)
440 {
441 this->base_ir = instr;
442
443 switch (instr->type) {
444 case nir_instr_type_alu:
445 nir_emit_alu(nir_instr_as_alu(instr));
446 break;
447
448 case nir_instr_type_intrinsic:
449 nir_emit_intrinsic(nir_instr_as_intrinsic(instr));
450 break;
451
452 case nir_instr_type_tex:
453 nir_emit_texture(nir_instr_as_tex(instr));
454 break;
455
456 case nir_instr_type_load_const:
457 /* We can hit these, but we do nothing now and use them as
458 * immediates later.
459 */
460 break;
461
462 case nir_instr_type_jump:
463 nir_emit_jump(nir_instr_as_jump(instr));
464 break;
465
466 default:
467 unreachable("unknown instruction type");
468 }
469
470 this->base_ir = NULL;
471 }
472
473 static brw_reg_type
474 brw_type_for_nir_type(nir_alu_type type)
475 {
476 switch (type) {
477 case nir_type_unsigned:
478 return BRW_REGISTER_TYPE_UD;
479 case nir_type_bool:
480 case nir_type_int:
481 return BRW_REGISTER_TYPE_D;
482 case nir_type_float:
483 return BRW_REGISTER_TYPE_F;
484 default:
485 unreachable("unknown type");
486 }
487
488 return BRW_REGISTER_TYPE_F;
489 }
490
491 bool
492 fs_visitor::optimize_frontfacing_ternary(nir_alu_instr *instr,
493 const fs_reg &result)
494 {
495 if (instr->src[0].src.is_ssa ||
496 !instr->src[0].src.reg.reg ||
497 !instr->src[0].src.reg.reg->parent_instr)
498 return false;
499
500 if (instr->src[0].src.reg.reg->parent_instr->type !=
501 nir_instr_type_intrinsic)
502 return false;
503
504 nir_intrinsic_instr *src0 =
505 nir_instr_as_intrinsic(instr->src[0].src.reg.reg->parent_instr);
506
507 if (src0->intrinsic != nir_intrinsic_load_front_face)
508 return false;
509
510 nir_const_value *value1 = nir_src_as_const_value(instr->src[1].src);
511 if (!value1 || fabsf(value1->f[0]) != 1.0f)
512 return false;
513
514 nir_const_value *value2 = nir_src_as_const_value(instr->src[2].src);
515 if (!value2 || fabsf(value2->f[0]) != 1.0f)
516 return false;
517
518 fs_reg tmp = vgrf(glsl_type::int_type);
519
520 if (brw->gen >= 6) {
521 /* Bit 15 of g0.0 is 0 if the polygon is front facing. */
522 fs_reg g0 = fs_reg(retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_W));
523
524 /* For (gl_FrontFacing ? 1.0 : -1.0), emit:
525 *
526 * or(8) tmp.1<2>W g0.0<0,1,0>W 0x00003f80W
527 * and(8) dst<1>D tmp<8,8,1>D 0xbf800000D
528 *
529 * and negate g0.0<0,1,0>W for (gl_FrontFacing ? -1.0 : 1.0).
530 *
531 * This negation looks like it's safe in practice, because bits 0:4 will
532 * surely be TRIANGLES
533 */
534
535 if (value1->f[0] == -1.0f) {
536 g0.negate = true;
537 }
538
539 tmp.type = BRW_REGISTER_TYPE_W;
540 tmp.subreg_offset = 2;
541 tmp.stride = 2;
542
543 fs_inst *or_inst = emit(OR(tmp, g0, fs_reg(0x3f80)));
544 or_inst->src[1].type = BRW_REGISTER_TYPE_UW;
545
546 tmp.type = BRW_REGISTER_TYPE_D;
547 tmp.subreg_offset = 0;
548 tmp.stride = 1;
549 } else {
550 /* Bit 31 of g1.6 is 0 if the polygon is front facing. */
551 fs_reg g1_6 = fs_reg(retype(brw_vec1_grf(1, 6), BRW_REGISTER_TYPE_D));
552
553 /* For (gl_FrontFacing ? 1.0 : -1.0), emit:
554 *
555 * or(8) tmp<1>D g1.6<0,1,0>D 0x3f800000D
556 * and(8) dst<1>D tmp<8,8,1>D 0xbf800000D
557 *
558 * and negate g1.6<0,1,0>D for (gl_FrontFacing ? -1.0 : 1.0).
559 *
560 * This negation looks like it's safe in practice, because bits 0:4 will
561 * surely be TRIANGLES
562 */
563
564 if (value1->f[0] == -1.0f) {
565 g1_6.negate = true;
566 }
567
568 emit(OR(tmp, g1_6, fs_reg(0x3f800000)));
569 }
570 emit(AND(retype(result, BRW_REGISTER_TYPE_D), tmp, fs_reg(0xbf800000)));
571
572 return true;
573 }
574
575 void
576 fs_visitor::nir_emit_alu(nir_alu_instr *instr)
577 {
578 struct brw_wm_prog_key *fs_key = (struct brw_wm_prog_key *) this->key;
579 fs_inst *inst;
580
581 fs_reg result = get_nir_dest(instr->dest.dest);
582 result.type = brw_type_for_nir_type(nir_op_infos[instr->op].output_type);
583
584 fs_reg op[4];
585 for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++) {
586 op[i] = get_nir_src(instr->src[i].src);
587 op[i].type = brw_type_for_nir_type(nir_op_infos[instr->op].input_types[i]);
588 op[i].abs = instr->src[i].abs;
589 op[i].negate = instr->src[i].negate;
590 }
591
592 /* We get a bunch of mov's out of the from_ssa pass and they may still
593 * be vectorized. We'll handle them as a special-case. We'll also
594 * handle vecN here because it's basically the same thing.
595 */
596 switch (instr->op) {
597 case nir_op_imov:
598 case nir_op_fmov:
599 case nir_op_vec2:
600 case nir_op_vec3:
601 case nir_op_vec4: {
602 fs_reg temp = result;
603 bool need_extra_copy = false;
604 for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++) {
605 if (!instr->src[i].src.is_ssa &&
606 instr->dest.dest.reg.reg == instr->src[i].src.reg.reg) {
607 need_extra_copy = true;
608 temp = retype(vgrf(4), result.type);
609 break;
610 }
611 }
612
613 for (unsigned i = 0; i < 4; i++) {
614 if (!(instr->dest.write_mask & (1 << i)))
615 continue;
616
617 if (instr->op == nir_op_imov || instr->op == nir_op_fmov) {
618 inst = emit(MOV(offset(temp, i),
619 offset(op[0], instr->src[0].swizzle[i])));
620 } else {
621 inst = emit(MOV(offset(temp, i),
622 offset(op[i], instr->src[i].swizzle[0])));
623 }
624 inst->saturate = instr->dest.saturate;
625 }
626
627 /* In this case the source and destination registers were the same,
628 * so we need to insert an extra set of moves in order to deal with
629 * any swizzling.
630 */
631 if (need_extra_copy) {
632 for (unsigned i = 0; i < 4; i++) {
633 if (!(instr->dest.write_mask & (1 << i)))
634 continue;
635
636 emit(MOV(offset(result, i), offset(temp, i)));
637 }
638 }
639 return;
640 }
641 default:
642 break;
643 }
644
645 /* At this point, we have dealt with any instruction that operates on
646 * more than a single channel. Therefore, we can just adjust the source
647 * and destination registers for that channel and emit the instruction.
648 */
649 unsigned channel = 0;
650 if (nir_op_infos[instr->op].output_size == 0) {
651 /* Since NIR is doing the scalarizing for us, we should only ever see
652 * vectorized operations with a single channel.
653 */
654 assert(_mesa_bitcount(instr->dest.write_mask) == 1);
655 channel = ffs(instr->dest.write_mask) - 1;
656
657 result = offset(result, channel);
658 }
659
660 for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++) {
661 assert(nir_op_infos[instr->op].input_sizes[i] < 2);
662 op[i] = offset(op[i], instr->src[i].swizzle[channel]);
663 }
664
665 switch (instr->op) {
666 case nir_op_i2f:
667 case nir_op_u2f:
668 inst = emit(MOV(result, op[0]));
669 inst->saturate = instr->dest.saturate;
670 break;
671
672 case nir_op_f2i:
673 case nir_op_f2u:
674 emit(MOV(result, op[0]));
675 break;
676
677 case nir_op_fsign: {
678 /* AND(val, 0x80000000) gives the sign bit.
679 *
680 * Predicated OR ORs 1.0 (0x3f800000) with the sign bit if val is not
681 * zero.
682 */
683 emit(CMP(reg_null_f, op[0], fs_reg(0.0f), BRW_CONDITIONAL_NZ));
684
685 fs_reg result_int = retype(result, BRW_REGISTER_TYPE_UD);
686 op[0].type = BRW_REGISTER_TYPE_UD;
687 result.type = BRW_REGISTER_TYPE_UD;
688 emit(AND(result_int, op[0], fs_reg(0x80000000u)));
689
690 inst = emit(OR(result_int, result_int, fs_reg(0x3f800000u)));
691 inst->predicate = BRW_PREDICATE_NORMAL;
692 if (instr->dest.saturate) {
693 inst = emit(MOV(result, result));
694 inst->saturate = true;
695 }
696 break;
697 }
698
699 case nir_op_isign:
700 /* ASR(val, 31) -> negative val generates 0xffffffff (signed -1).
701 * -> non-negative val generates 0x00000000.
702 * Predicated OR sets 1 if val is positive.
703 */
704 emit(CMP(reg_null_d, op[0], fs_reg(0), BRW_CONDITIONAL_G));
705 emit(ASR(result, op[0], fs_reg(31)));
706 inst = emit(OR(result, result, fs_reg(1)));
707 inst->predicate = BRW_PREDICATE_NORMAL;
708 break;
709
710 case nir_op_frcp:
711 inst = emit_math(SHADER_OPCODE_RCP, result, op[0]);
712 inst->saturate = instr->dest.saturate;
713 break;
714
715 case nir_op_fexp2:
716 inst = emit_math(SHADER_OPCODE_EXP2, result, op[0]);
717 inst->saturate = instr->dest.saturate;
718 break;
719
720 case nir_op_flog2:
721 inst = emit_math(SHADER_OPCODE_LOG2, result, op[0]);
722 inst->saturate = instr->dest.saturate;
723 break;
724
725 case nir_op_fexp:
726 case nir_op_flog:
727 unreachable("not reached: should be handled by ir_explog_to_explog2");
728
729 case nir_op_fsin:
730 inst = emit_math(SHADER_OPCODE_SIN, result, op[0]);
731 inst->saturate = instr->dest.saturate;
732 break;
733
734 case nir_op_fcos:
735 inst = emit_math(SHADER_OPCODE_COS, result, op[0]);
736 inst->saturate = instr->dest.saturate;
737 break;
738
739 case nir_op_fddx:
740 if (fs_key->high_quality_derivatives) {
741 inst = emit(FS_OPCODE_DDX_FINE, result, op[0]);
742 } else {
743 inst = emit(FS_OPCODE_DDX_COARSE, result, op[0]);
744 }
745 inst->saturate = instr->dest.saturate;
746 break;
747 case nir_op_fddx_fine:
748 inst = emit(FS_OPCODE_DDX_FINE, result, op[0]);
749 inst->saturate = instr->dest.saturate;
750 break;
751 case nir_op_fddx_coarse:
752 inst = emit(FS_OPCODE_DDX_COARSE, result, op[0]);
753 inst->saturate = instr->dest.saturate;
754 break;
755 case nir_op_fddy:
756 if (fs_key->high_quality_derivatives) {
757 inst = emit(FS_OPCODE_DDY_FINE, result, op[0],
758 fs_reg(fs_key->render_to_fbo));
759 } else {
760 inst = emit(FS_OPCODE_DDY_COARSE, result, op[0],
761 fs_reg(fs_key->render_to_fbo));
762 }
763 inst->saturate = instr->dest.saturate;
764 break;
765 case nir_op_fddy_fine:
766 inst = emit(FS_OPCODE_DDY_FINE, result, op[0],
767 fs_reg(fs_key->render_to_fbo));
768 inst->saturate = instr->dest.saturate;
769 break;
770 case nir_op_fddy_coarse:
771 inst = emit(FS_OPCODE_DDY_COARSE, result, op[0],
772 fs_reg(fs_key->render_to_fbo));
773 inst->saturate = instr->dest.saturate;
774 break;
775
776 case nir_op_fadd:
777 case nir_op_iadd:
778 inst = emit(ADD(result, op[0], op[1]));
779 inst->saturate = instr->dest.saturate;
780 break;
781
782 case nir_op_fmul:
783 inst = emit(MUL(result, op[0], op[1]));
784 inst->saturate = instr->dest.saturate;
785 break;
786
787 case nir_op_imul: {
788 if (brw->gen >= 8) {
789 emit(MUL(result, op[0], op[1]));
790 break;
791 } else {
792 nir_const_value *value0 = nir_src_as_const_value(instr->src[0].src);
793 nir_const_value *value1 = nir_src_as_const_value(instr->src[1].src);
794
795 if (value0 && value0->u[0] < (1 << 16)) {
796 if (brw->gen < 7) {
797 emit(MUL(result, op[0], op[1]));
798 } else {
799 emit(MUL(result, op[1], op[0]));
800 }
801 break;
802 } else if (value1 && value1->u[0] < (1 << 16)) {
803 if (brw->gen < 7) {
804 emit(MUL(result, op[1], op[0]));
805 } else {
806 emit(MUL(result, op[0], op[1]));
807 }
808 break;
809 }
810 }
811
812 if (brw->gen >= 7)
813 no16("SIMD16 explicit accumulator operands unsupported\n");
814
815 struct brw_reg acc = retype(brw_acc_reg(dispatch_width), result.type);
816
817 emit(MUL(acc, op[0], op[1]));
818 emit(MACH(reg_null_d, op[0], op[1]));
819 emit(MOV(result, fs_reg(acc)));
820 break;
821 }
822
823 case nir_op_imul_high:
824 case nir_op_umul_high: {
825 if (brw->gen >= 7)
826 no16("SIMD16 explicit accumulator operands unsupported\n");
827
828 struct brw_reg acc = retype(brw_acc_reg(dispatch_width), result.type);
829
830 emit(MUL(acc, op[0], op[1]));
831 emit(MACH(result, op[0], op[1]));
832 break;
833 }
834
835 case nir_op_idiv:
836 case nir_op_udiv:
837 emit_math(SHADER_OPCODE_INT_QUOTIENT, result, op[0], op[1]);
838 break;
839
840 case nir_op_uadd_carry: {
841 if (brw->gen >= 7)
842 no16("SIMD16 explicit accumulator operands unsupported\n");
843
844 struct brw_reg acc = retype(brw_acc_reg(dispatch_width),
845 BRW_REGISTER_TYPE_UD);
846
847 emit(ADDC(reg_null_ud, op[0], op[1]));
848 emit(MOV(result, fs_reg(acc)));
849 break;
850 }
851
852 case nir_op_usub_borrow: {
853 if (brw->gen >= 7)
854 no16("SIMD16 explicit accumulator operands unsupported\n");
855
856 struct brw_reg acc = retype(brw_acc_reg(dispatch_width),
857 BRW_REGISTER_TYPE_UD);
858
859 emit(SUBB(reg_null_ud, op[0], op[1]));
860 emit(MOV(result, fs_reg(acc)));
861 break;
862 }
863
864 case nir_op_umod:
865 emit_math(SHADER_OPCODE_INT_REMAINDER, result, op[0], op[1]);
866 break;
867
868 case nir_op_flt:
869 case nir_op_ilt:
870 case nir_op_ult:
871 emit(CMP(result, op[0], op[1], BRW_CONDITIONAL_L));
872 break;
873
874 case nir_op_fge:
875 case nir_op_ige:
876 case nir_op_uge:
877 emit(CMP(result, op[0], op[1], BRW_CONDITIONAL_GE));
878 break;
879
880 case nir_op_feq:
881 case nir_op_ieq:
882 emit(CMP(result, op[0], op[1], BRW_CONDITIONAL_Z));
883 break;
884
885 case nir_op_fne:
886 case nir_op_ine:
887 emit(CMP(result, op[0], op[1], BRW_CONDITIONAL_NZ));
888 break;
889
890 case nir_op_inot:
891 if (brw->gen >= 8) {
892 resolve_source_modifiers(&op[0]);
893 }
894 emit(NOT(result, op[0]));
895 break;
896 case nir_op_ixor:
897 if (brw->gen >= 8) {
898 resolve_source_modifiers(&op[0]);
899 resolve_source_modifiers(&op[1]);
900 }
901 emit(XOR(result, op[0], op[1]));
902 break;
903 case nir_op_ior:
904 if (brw->gen >= 8) {
905 resolve_source_modifiers(&op[0]);
906 resolve_source_modifiers(&op[1]);
907 }
908 emit(OR(result, op[0], op[1]));
909 break;
910 case nir_op_iand:
911 if (brw->gen >= 8) {
912 resolve_source_modifiers(&op[0]);
913 resolve_source_modifiers(&op[1]);
914 }
915 emit(AND(result, op[0], op[1]));
916 break;
917
918 case nir_op_fdot2:
919 case nir_op_fdot3:
920 case nir_op_fdot4:
921 case nir_op_bany2:
922 case nir_op_bany3:
923 case nir_op_bany4:
924 case nir_op_ball2:
925 case nir_op_ball3:
926 case nir_op_ball4:
927 case nir_op_ball_fequal2:
928 case nir_op_ball_iequal2:
929 case nir_op_ball_fequal3:
930 case nir_op_ball_iequal3:
931 case nir_op_ball_fequal4:
932 case nir_op_ball_iequal4:
933 case nir_op_bany_fnequal2:
934 case nir_op_bany_inequal2:
935 case nir_op_bany_fnequal3:
936 case nir_op_bany_inequal3:
937 case nir_op_bany_fnequal4:
938 case nir_op_bany_inequal4:
939 unreachable("Lowered by nir_lower_alu_reductions");
940
941 case nir_op_fnoise1_1:
942 case nir_op_fnoise1_2:
943 case nir_op_fnoise1_3:
944 case nir_op_fnoise1_4:
945 case nir_op_fnoise2_1:
946 case nir_op_fnoise2_2:
947 case nir_op_fnoise2_3:
948 case nir_op_fnoise2_4:
949 case nir_op_fnoise3_1:
950 case nir_op_fnoise3_2:
951 case nir_op_fnoise3_3:
952 case nir_op_fnoise3_4:
953 case nir_op_fnoise4_1:
954 case nir_op_fnoise4_2:
955 case nir_op_fnoise4_3:
956 case nir_op_fnoise4_4:
957 unreachable("not reached: should be handled by lower_noise");
958
959 case nir_op_ldexp:
960 unreachable("not reached: should be handled by ldexp_to_arith()");
961
962 case nir_op_fsqrt:
963 inst = emit_math(SHADER_OPCODE_SQRT, result, op[0]);
964 inst->saturate = instr->dest.saturate;
965 break;
966
967 case nir_op_frsq:
968 inst = emit_math(SHADER_OPCODE_RSQ, result, op[0]);
969 inst->saturate = instr->dest.saturate;
970 break;
971
972 case nir_op_b2i:
973 emit(AND(result, op[0], fs_reg(1)));
974 break;
975 case nir_op_b2f:
976 emit(AND(retype(result, BRW_REGISTER_TYPE_UD), op[0], fs_reg(0x3f800000u)));
977 break;
978
979 case nir_op_f2b:
980 emit(CMP(result, op[0], fs_reg(0.0f), BRW_CONDITIONAL_NZ));
981 break;
982 case nir_op_i2b:
983 emit(CMP(result, op[0], fs_reg(0), BRW_CONDITIONAL_NZ));
984 break;
985
986 case nir_op_ftrunc:
987 inst = emit(RNDZ(result, op[0]));
988 inst->saturate = instr->dest.saturate;
989 break;
990
991 case nir_op_fceil: {
992 op[0].negate = !op[0].negate;
993 fs_reg temp = vgrf(glsl_type::float_type);
994 emit(RNDD(temp, op[0]));
995 temp.negate = true;
996 inst = emit(MOV(result, temp));
997 inst->saturate = instr->dest.saturate;
998 break;
999 }
1000 case nir_op_ffloor:
1001 inst = emit(RNDD(result, op[0]));
1002 inst->saturate = instr->dest.saturate;
1003 break;
1004 case nir_op_ffract:
1005 inst = emit(FRC(result, op[0]));
1006 inst->saturate = instr->dest.saturate;
1007 break;
1008 case nir_op_fround_even:
1009 inst = emit(RNDE(result, op[0]));
1010 inst->saturate = instr->dest.saturate;
1011 break;
1012
1013 case nir_op_fmin:
1014 case nir_op_imin:
1015 case nir_op_umin:
1016 if (brw->gen >= 6) {
1017 inst = emit(BRW_OPCODE_SEL, result, op[0], op[1]);
1018 inst->conditional_mod = BRW_CONDITIONAL_L;
1019 } else {
1020 emit(CMP(reg_null_d, op[0], op[1], BRW_CONDITIONAL_L));
1021 inst = emit(SEL(result, op[0], op[1]));
1022 inst->predicate = BRW_PREDICATE_NORMAL;
1023 }
1024 inst->saturate = instr->dest.saturate;
1025 break;
1026
1027 case nir_op_fmax:
1028 case nir_op_imax:
1029 case nir_op_umax:
1030 if (brw->gen >= 6) {
1031 inst = emit(BRW_OPCODE_SEL, result, op[0], op[1]);
1032 inst->conditional_mod = BRW_CONDITIONAL_GE;
1033 } else {
1034 emit(CMP(reg_null_d, op[0], op[1], BRW_CONDITIONAL_GE));
1035 inst = emit(SEL(result, op[0], op[1]));
1036 inst->predicate = BRW_PREDICATE_NORMAL;
1037 }
1038 inst->saturate = instr->dest.saturate;
1039 break;
1040
1041 case nir_op_pack_snorm_2x16:
1042 case nir_op_pack_snorm_4x8:
1043 case nir_op_pack_unorm_2x16:
1044 case nir_op_pack_unorm_4x8:
1045 case nir_op_unpack_snorm_2x16:
1046 case nir_op_unpack_snorm_4x8:
1047 case nir_op_unpack_unorm_2x16:
1048 case nir_op_unpack_unorm_4x8:
1049 case nir_op_unpack_half_2x16:
1050 case nir_op_pack_half_2x16:
1051 unreachable("not reached: should be handled by lower_packing_builtins");
1052
1053 case nir_op_unpack_half_2x16_split_x:
1054 inst = emit(FS_OPCODE_UNPACK_HALF_2x16_SPLIT_X, result, op[0]);
1055 inst->saturate = instr->dest.saturate;
1056 break;
1057 case nir_op_unpack_half_2x16_split_y:
1058 inst = emit(FS_OPCODE_UNPACK_HALF_2x16_SPLIT_Y, result, op[0]);
1059 inst->saturate = instr->dest.saturate;
1060 break;
1061
1062 case nir_op_fpow:
1063 inst = emit_math(SHADER_OPCODE_POW, result, op[0], op[1]);
1064 inst->saturate = instr->dest.saturate;
1065 break;
1066
1067 case nir_op_bitfield_reverse:
1068 emit(BFREV(result, op[0]));
1069 break;
1070
1071 case nir_op_bit_count:
1072 emit(CBIT(result, op[0]));
1073 break;
1074
1075 case nir_op_ufind_msb:
1076 case nir_op_ifind_msb: {
1077 emit(FBH(retype(result, BRW_REGISTER_TYPE_UD), op[0]));
1078
1079 /* FBH counts from the MSB side, while GLSL's findMSB() wants the count
1080 * from the LSB side. If FBH didn't return an error (0xFFFFFFFF), then
1081 * subtract the result from 31 to convert the MSB count into an LSB count.
1082 */
1083
1084 emit(CMP(reg_null_d, result, fs_reg(-1), BRW_CONDITIONAL_NZ));
1085 fs_reg neg_result(result);
1086 neg_result.negate = true;
1087 inst = emit(ADD(result, neg_result, fs_reg(31)));
1088 inst->predicate = BRW_PREDICATE_NORMAL;
1089 break;
1090 }
1091
1092 case nir_op_find_lsb:
1093 emit(FBL(result, op[0]));
1094 break;
1095
1096 case nir_op_ubitfield_extract:
1097 case nir_op_ibitfield_extract:
1098 emit(BFE(result, op[2], op[1], op[0]));
1099 break;
1100 case nir_op_bfm:
1101 emit(BFI1(result, op[0], op[1]));
1102 break;
1103 case nir_op_bfi:
1104 emit(BFI2(result, op[0], op[1], op[2]));
1105 break;
1106
1107 case nir_op_bitfield_insert:
1108 unreachable("not reached: should be handled by "
1109 "lower_instructions::bitfield_insert_to_bfm_bfi");
1110
1111 case nir_op_ishl:
1112 emit(SHL(result, op[0], op[1]));
1113 break;
1114 case nir_op_ishr:
1115 emit(ASR(result, op[0], op[1]));
1116 break;
1117 case nir_op_ushr:
1118 emit(SHR(result, op[0], op[1]));
1119 break;
1120
1121 case nir_op_pack_half_2x16_split:
1122 emit(FS_OPCODE_PACK_HALF_2x16_SPLIT, result, op[0], op[1]);
1123 break;
1124
1125 case nir_op_ffma:
1126 inst = emit(MAD(result, op[2], op[1], op[0]));
1127 inst->saturate = instr->dest.saturate;
1128 break;
1129
1130 case nir_op_flrp:
1131 inst = emit_lrp(result, op[0], op[1], op[2]);
1132 inst->saturate = instr->dest.saturate;
1133 break;
1134
1135 case nir_op_bcsel:
1136 if (optimize_frontfacing_ternary(instr, result))
1137 return;
1138
1139 emit(CMP(reg_null_d, op[0], fs_reg(0), BRW_CONDITIONAL_NZ));
1140 inst = emit(SEL(result, op[1], op[2]));
1141 inst->predicate = BRW_PREDICATE_NORMAL;
1142 break;
1143
1144 default:
1145 unreachable("unhandled instruction");
1146 }
1147
1148 /* If we need to do a boolean resolve, replace the result with -(x & 1)
1149 * to sign extend the low bit to 0/~0
1150 */
1151 if (brw->gen <= 5 &&
1152 (instr->instr.pass_flags & BRW_NIR_BOOLEAN_MASK) == BRW_NIR_BOOLEAN_NEEDS_RESOLVE) {
1153 fs_reg masked = vgrf(glsl_type::int_type);
1154 emit(AND(masked, result, fs_reg(1)));
1155 masked.negate = true;
1156 emit(MOV(retype(result, BRW_REGISTER_TYPE_D), masked));
1157 }
1158 }
1159
1160 fs_reg
1161 fs_visitor::get_nir_src(nir_src src)
1162 {
1163 if (src.is_ssa) {
1164 assert(src.ssa->parent_instr->type == nir_instr_type_load_const);
1165 nir_load_const_instr *load = nir_instr_as_load_const(src.ssa->parent_instr);
1166 fs_reg reg = vgrf(src.ssa->num_components);
1167 reg.type = BRW_REGISTER_TYPE_D;
1168
1169 for (unsigned i = 0; i < src.ssa->num_components; ++i)
1170 emit(MOV(offset(reg, i), fs_reg(load->value.i[i])));
1171
1172 return reg;
1173 } else {
1174 fs_reg reg;
1175 if (src.reg.reg->is_global)
1176 reg = nir_globals[src.reg.reg->index];
1177 else
1178 reg = nir_locals[src.reg.reg->index];
1179
1180 /* to avoid floating-point denorm flushing problems, set the type by
1181 * default to D - instructions that need floating point semantics will set
1182 * this to F if they need to
1183 */
1184 reg = retype(offset(reg, src.reg.base_offset), BRW_REGISTER_TYPE_D);
1185 if (src.reg.indirect) {
1186 reg.reladdr = new(mem_ctx) fs_reg();
1187 *reg.reladdr = retype(get_nir_src(*src.reg.indirect),
1188 BRW_REGISTER_TYPE_D);
1189 }
1190
1191 return reg;
1192 }
1193 }
1194
1195 fs_reg
1196 fs_visitor::get_nir_dest(nir_dest dest)
1197 {
1198 fs_reg reg;
1199 if (dest.reg.reg->is_global)
1200 reg = nir_globals[dest.reg.reg->index];
1201 else
1202 reg = nir_locals[dest.reg.reg->index];
1203
1204 reg = offset(reg, dest.reg.base_offset);
1205 if (dest.reg.indirect) {
1206 reg.reladdr = new(mem_ctx) fs_reg();
1207 *reg.reladdr = retype(get_nir_src(*dest.reg.indirect),
1208 BRW_REGISTER_TYPE_D);
1209 }
1210
1211 return reg;
1212 }
1213
1214 void
1215 fs_visitor::emit_percomp(fs_inst *inst, unsigned wr_mask)
1216 {
1217 for (unsigned i = 0; i < 4; i++) {
1218 if (!((wr_mask >> i) & 1))
1219 continue;
1220
1221 fs_inst *new_inst = new(mem_ctx) fs_inst(*inst);
1222 new_inst->dst = offset(new_inst->dst, i);
1223 for (unsigned j = 0; j < new_inst->sources; j++)
1224 if (inst->src[j].file == GRF)
1225 new_inst->src[j] = offset(new_inst->src[j], i);
1226
1227 emit(new_inst);
1228 }
1229 }
1230
1231 void
1232 fs_visitor::nir_emit_intrinsic(nir_intrinsic_instr *instr)
1233 {
1234 fs_reg dest;
1235 if (nir_intrinsic_infos[instr->intrinsic].has_dest)
1236 dest = get_nir_dest(instr->dest);
1237
1238 bool has_indirect = false;
1239
1240 switch (instr->intrinsic) {
1241 case nir_intrinsic_discard:
1242 case nir_intrinsic_discard_if: {
1243 /* We track our discarded pixels in f0.1. By predicating on it, we can
1244 * update just the flag bits that aren't yet discarded. If there's no
1245 * condition, we emit a CMP of g0 != g0, so all currently executing
1246 * channels will get turned off.
1247 */
1248 fs_inst *cmp;
1249 if (instr->intrinsic == nir_intrinsic_discard_if) {
1250 cmp = emit(CMP(reg_null_f, get_nir_src(instr->src[0]),
1251 fs_reg(0), BRW_CONDITIONAL_Z));
1252 } else {
1253 fs_reg some_reg = fs_reg(retype(brw_vec8_grf(0, 0),
1254 BRW_REGISTER_TYPE_UW));
1255 cmp = emit(CMP(reg_null_f, some_reg, some_reg, BRW_CONDITIONAL_NZ));
1256 }
1257 cmp->predicate = BRW_PREDICATE_NORMAL;
1258 cmp->flag_subreg = 1;
1259
1260 if (brw->gen >= 6) {
1261 emit_discard_jump();
1262 }
1263 break;
1264 }
1265
1266 case nir_intrinsic_atomic_counter_inc:
1267 case nir_intrinsic_atomic_counter_dec:
1268 case nir_intrinsic_atomic_counter_read: {
1269 unsigned surf_index = prog_data->binding_table.abo_start +
1270 (unsigned) instr->const_index[0];
1271 fs_reg offset = fs_reg(get_nir_src(instr->src[0]));
1272
1273 switch (instr->intrinsic) {
1274 case nir_intrinsic_atomic_counter_inc:
1275 emit_untyped_atomic(BRW_AOP_INC, surf_index, dest, offset,
1276 fs_reg(), fs_reg());
1277 break;
1278 case nir_intrinsic_atomic_counter_dec:
1279 emit_untyped_atomic(BRW_AOP_PREDEC, surf_index, dest, offset,
1280 fs_reg(), fs_reg());
1281 break;
1282 case nir_intrinsic_atomic_counter_read:
1283 emit_untyped_surface_read(surf_index, dest, offset);
1284 break;
1285 default:
1286 unreachable("Unreachable");
1287 }
1288 break;
1289 }
1290
1291 case nir_intrinsic_load_front_face:
1292 emit(MOV(retype(dest, BRW_REGISTER_TYPE_D),
1293 *emit_frontfacing_interpolation()));
1294 break;
1295
1296 case nir_intrinsic_load_vertex_id:
1297 unreachable("should be lowered by lower_vertex_id()");
1298
1299 case nir_intrinsic_load_vertex_id_zero_base: {
1300 fs_reg vertex_id = nir_system_values[SYSTEM_VALUE_VERTEX_ID_ZERO_BASE];
1301 assert(vertex_id.file != BAD_FILE);
1302 dest.type = vertex_id.type;
1303 emit(MOV(dest, vertex_id));
1304 break;
1305 }
1306
1307 case nir_intrinsic_load_base_vertex: {
1308 fs_reg base_vertex = nir_system_values[SYSTEM_VALUE_BASE_VERTEX];
1309 assert(base_vertex.file != BAD_FILE);
1310 dest.type = base_vertex.type;
1311 emit(MOV(dest, base_vertex));
1312 break;
1313 }
1314
1315 case nir_intrinsic_load_instance_id: {
1316 fs_reg instance_id = nir_system_values[SYSTEM_VALUE_INSTANCE_ID];
1317 assert(instance_id.file != BAD_FILE);
1318 dest.type = instance_id.type;
1319 emit(MOV(dest, instance_id));
1320 break;
1321 }
1322
1323 case nir_intrinsic_load_sample_mask_in: {
1324 fs_reg sample_mask_in = nir_system_values[SYSTEM_VALUE_SAMPLE_MASK_IN];
1325 assert(sample_mask_in.file != BAD_FILE);
1326 dest.type = sample_mask_in.type;
1327 emit(MOV(dest, sample_mask_in));
1328 break;
1329 }
1330
1331 case nir_intrinsic_load_sample_pos: {
1332 fs_reg sample_pos = nir_system_values[SYSTEM_VALUE_SAMPLE_POS];
1333 assert(sample_pos.file != BAD_FILE);
1334 dest.type = sample_pos.type;
1335 emit(MOV(dest, sample_pos));
1336 emit(MOV(offset(dest, 1), offset(sample_pos, 1)));
1337 break;
1338 }
1339
1340 case nir_intrinsic_load_sample_id: {
1341 fs_reg sample_id = nir_system_values[SYSTEM_VALUE_SAMPLE_ID];
1342 assert(sample_id.file != BAD_FILE);
1343 dest.type = sample_id.type;
1344 emit(MOV(dest, sample_id));
1345 break;
1346 }
1347
1348 case nir_intrinsic_load_uniform_indirect:
1349 has_indirect = true;
1350 /* fallthrough */
1351 case nir_intrinsic_load_uniform: {
1352 unsigned index = instr->const_index[0];
1353
1354 fs_reg uniform_reg;
1355 if (index < num_direct_uniforms) {
1356 uniform_reg = fs_reg(UNIFORM, 0);
1357 } else {
1358 uniform_reg = fs_reg(UNIFORM, num_direct_uniforms);
1359 index -= num_direct_uniforms;
1360 }
1361
1362 for (int i = 0; i < instr->const_index[1]; i++) {
1363 for (unsigned j = 0; j < instr->num_components; j++) {
1364 fs_reg src = offset(retype(uniform_reg, dest.type), index);
1365 if (has_indirect)
1366 src.reladdr = new(mem_ctx) fs_reg(get_nir_src(instr->src[0]));
1367 index++;
1368
1369 emit(MOV(dest, src));
1370 dest = offset(dest, 1);
1371 }
1372 }
1373 break;
1374 }
1375
1376 case nir_intrinsic_load_ubo_indirect:
1377 has_indirect = true;
1378 /* fallthrough */
1379 case nir_intrinsic_load_ubo: {
1380 nir_const_value *const_index = nir_src_as_const_value(instr->src[0]);
1381 fs_reg surf_index;
1382
1383 if (const_index) {
1384 surf_index = fs_reg(stage_prog_data->binding_table.ubo_start +
1385 const_index->u[0]);
1386 } else {
1387 /* The block index is not a constant. Evaluate the index expression
1388 * per-channel and add the base UBO index; the generator will select
1389 * a value from any live channel.
1390 */
1391 surf_index = vgrf(glsl_type::uint_type);
1392 emit(ADD(surf_index, get_nir_src(instr->src[0]),
1393 fs_reg(stage_prog_data->binding_table.ubo_start)))
1394 ->force_writemask_all = true;
1395
1396 /* Assume this may touch any UBO. It would be nice to provide
1397 * a tighter bound, but the array information is already lowered away.
1398 */
1399 brw_mark_surface_used(prog_data,
1400 stage_prog_data->binding_table.ubo_start +
1401 shader_prog->NumUniformBlocks - 1);
1402 }
1403
1404 if (has_indirect) {
1405 /* Turn the byte offset into a dword offset. */
1406 fs_reg base_offset = vgrf(glsl_type::int_type);
1407 emit(SHR(base_offset, retype(get_nir_src(instr->src[1]),
1408 BRW_REGISTER_TYPE_D),
1409 fs_reg(2)));
1410
1411 unsigned vec4_offset = instr->const_index[0] / 4;
1412 for (int i = 0; i < instr->num_components; i++)
1413 emit(VARYING_PULL_CONSTANT_LOAD(offset(dest, i), surf_index,
1414 base_offset, vec4_offset + i));
1415 } else {
1416 fs_reg packed_consts = vgrf(glsl_type::float_type);
1417 packed_consts.type = dest.type;
1418
1419 fs_reg const_offset_reg((unsigned) instr->const_index[0] & ~15);
1420 emit(FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD, packed_consts,
1421 surf_index, const_offset_reg);
1422
1423 for (unsigned i = 0; i < instr->num_components; i++) {
1424 packed_consts.set_smear(instr->const_index[0] % 16 / 4 + i);
1425
1426 /* The std140 packing rules don't allow vectors to cross 16-byte
1427 * boundaries, and a reg is 32 bytes.
1428 */
1429 assert(packed_consts.subreg_offset < 32);
1430
1431 emit(MOV(dest, packed_consts));
1432 dest = offset(dest, 1);
1433 }
1434 }
1435 break;
1436 }
1437
1438 case nir_intrinsic_load_input_indirect:
1439 has_indirect = true;
1440 /* fallthrough */
1441 case nir_intrinsic_load_input: {
1442 unsigned index = 0;
1443 for (int i = 0; i < instr->const_index[1]; i++) {
1444 for (unsigned j = 0; j < instr->num_components; j++) {
1445 fs_reg src = offset(retype(nir_inputs, dest.type),
1446 instr->const_index[0] + index);
1447 if (has_indirect)
1448 src.reladdr = new(mem_ctx) fs_reg(get_nir_src(instr->src[0]));
1449 index++;
1450
1451 emit(MOV(dest, src));
1452 dest = offset(dest, 1);
1453 }
1454 }
1455 break;
1456 }
1457
1458 /* Handle ARB_gpu_shader5 interpolation intrinsics
1459 *
1460 * It's worth a quick word of explanation as to why we handle the full
1461 * variable-based interpolation intrinsic rather than a lowered version
1462 * with like we do for other inputs. We have to do that because the way
1463 * we set up inputs doesn't allow us to use the already setup inputs for
1464 * interpolation. At the beginning of the shader, we go through all of
1465 * the input variables and do the initial interpolation and put it in
1466 * the nir_inputs array based on its location as determined in
1467 * nir_lower_io. If the input isn't used, dead code cleans up and
1468 * everything works fine. However, when we get to the ARB_gpu_shader5
1469 * interpolation intrinsics, we need to reinterpolate the input
1470 * differently. If we used an intrinsic that just had an index it would
1471 * only give us the offset into the nir_inputs array. However, this is
1472 * useless because that value is post-interpolation and we need
1473 * pre-interpolation. In order to get the actual location of the bits
1474 * we get from the vertex fetching hardware, we need the variable.
1475 */
1476 case nir_intrinsic_interp_var_at_centroid:
1477 case nir_intrinsic_interp_var_at_sample:
1478 case nir_intrinsic_interp_var_at_offset: {
1479 /* in SIMD16 mode, the pixel interpolator returns coords interleaved
1480 * 8 channels at a time, same as the barycentric coords presented in
1481 * the FS payload. this requires a bit of extra work to support.
1482 */
1483 no16("interpolate_at_* not yet supported in SIMD16 mode.");
1484
1485 fs_reg dst_xy = vgrf(2);
1486
1487 /* For most messages, we need one reg of ignored data; the hardware
1488 * requires mlen==1 even when there is no payload. in the per-slot
1489 * offset case, we'll replace this with the proper source data.
1490 */
1491 fs_reg src = vgrf(glsl_type::float_type);
1492 int mlen = 1; /* one reg unless overriden */
1493 fs_inst *inst;
1494
1495 switch (instr->intrinsic) {
1496 case nir_intrinsic_interp_var_at_centroid:
1497 inst = emit(FS_OPCODE_INTERPOLATE_AT_CENTROID, dst_xy, src, fs_reg(0u));
1498 break;
1499
1500 case nir_intrinsic_interp_var_at_sample: {
1501 /* XXX: We should probably handle non-constant sample id's */
1502 nir_const_value *const_sample = nir_src_as_const_value(instr->src[0]);
1503 assert(const_sample);
1504 unsigned msg_data = const_sample ? const_sample->i[0] << 4 : 0;
1505 inst = emit(FS_OPCODE_INTERPOLATE_AT_SAMPLE, dst_xy, src,
1506 fs_reg(msg_data));
1507 break;
1508 }
1509
1510 case nir_intrinsic_interp_var_at_offset: {
1511 nir_const_value *const_offset = nir_src_as_const_value(instr->src[0]);
1512
1513 if (const_offset) {
1514 unsigned off_x = MIN2((int)(const_offset->f[0] * 16), 7) & 0xf;
1515 unsigned off_y = MIN2((int)(const_offset->f[1] * 16), 7) & 0xf;
1516
1517 inst = emit(FS_OPCODE_INTERPOLATE_AT_SHARED_OFFSET, dst_xy, src,
1518 fs_reg(off_x | (off_y << 4)));
1519 } else {
1520 src = vgrf(glsl_type::ivec2_type);
1521 fs_reg offset_src = retype(get_nir_src(instr->src[0]),
1522 BRW_REGISTER_TYPE_F);
1523 for (int i = 0; i < 2; i++) {
1524 fs_reg temp = vgrf(glsl_type::float_type);
1525 emit(MUL(temp, offset(offset_src, i), fs_reg(16.0f)));
1526 fs_reg itemp = vgrf(glsl_type::int_type);
1527 emit(MOV(itemp, temp)); /* float to int */
1528
1529 /* Clamp the upper end of the range to +7/16.
1530 * ARB_gpu_shader5 requires that we support a maximum offset
1531 * of +0.5, which isn't representable in a S0.4 value -- if
1532 * we didn't clamp it, we'd end up with -8/16, which is the
1533 * opposite of what the shader author wanted.
1534 *
1535 * This is legal due to ARB_gpu_shader5's quantization
1536 * rules:
1537 *
1538 * "Not all values of <offset> may be supported; x and y
1539 * offsets may be rounded to fixed-point values with the
1540 * number of fraction bits given by the
1541 * implementation-dependent constant
1542 * FRAGMENT_INTERPOLATION_OFFSET_BITS"
1543 */
1544
1545 emit(BRW_OPCODE_SEL, offset(src, i), itemp, fs_reg(7))
1546 ->conditional_mod = BRW_CONDITIONAL_L; /* min(src2, 7) */
1547 }
1548
1549 mlen = 2;
1550 inst = emit(FS_OPCODE_INTERPOLATE_AT_PER_SLOT_OFFSET, dst_xy, src,
1551 fs_reg(0u));
1552 }
1553 break;
1554 }
1555
1556 default:
1557 unreachable("Invalid intrinsic");
1558 }
1559
1560 inst->mlen = mlen;
1561 inst->regs_written = 2; /* 2 floats per slot returned */
1562 inst->pi_noperspective = instr->variables[0]->var->data.interpolation ==
1563 INTERP_QUALIFIER_NOPERSPECTIVE;
1564
1565 for (unsigned j = 0; j < instr->num_components; j++) {
1566 fs_reg src = interp_reg(instr->variables[0]->var->data.location, j);
1567 src.type = dest.type;
1568
1569 emit(FS_OPCODE_LINTERP, dest, dst_xy, src);
1570 dest = offset(dest, 1);
1571 }
1572 break;
1573 }
1574
1575 case nir_intrinsic_store_output_indirect:
1576 has_indirect = true;
1577 /* fallthrough */
1578 case nir_intrinsic_store_output: {
1579 fs_reg src = get_nir_src(instr->src[0]);
1580 unsigned index = 0;
1581 for (int i = 0; i < instr->const_index[1]; i++) {
1582 for (unsigned j = 0; j < instr->num_components; j++) {
1583 fs_reg new_dest = offset(retype(nir_outputs, src.type),
1584 instr->const_index[0] + index);
1585 if (has_indirect)
1586 src.reladdr = new(mem_ctx) fs_reg(get_nir_src(instr->src[1]));
1587 index++;
1588 emit(MOV(new_dest, src));
1589 src = offset(src, 1);
1590 }
1591 }
1592 break;
1593 }
1594
1595 default:
1596 unreachable("unknown intrinsic");
1597 }
1598 }
1599
1600 void
1601 fs_visitor::nir_emit_texture(nir_tex_instr *instr)
1602 {
1603 unsigned sampler = instr->sampler_index;
1604 fs_reg sampler_reg(sampler);
1605
1606 /* FINISHME: We're failing to recompile our programs when the sampler is
1607 * updated. This only matters for the texture rectangle scale parameters
1608 * (pre-gen6, or gen6+ with GL_CLAMP).
1609 */
1610 int texunit = prog->SamplerUnits[sampler];
1611
1612 int gather_component = instr->component;
1613
1614 bool is_rect = instr->sampler_dim == GLSL_SAMPLER_DIM_RECT;
1615
1616 bool is_cube_array = instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE &&
1617 instr->is_array;
1618
1619 int lod_components = 0, offset_components = 0;
1620
1621 fs_reg coordinate, shadow_comparitor, lod, lod2, sample_index, mcs, tex_offset;
1622
1623 for (unsigned i = 0; i < instr->num_srcs; i++) {
1624 fs_reg src = get_nir_src(instr->src[i].src);
1625 switch (instr->src[i].src_type) {
1626 case nir_tex_src_bias:
1627 lod = retype(src, BRW_REGISTER_TYPE_F);
1628 break;
1629 case nir_tex_src_comparitor:
1630 shadow_comparitor = retype(src, BRW_REGISTER_TYPE_F);
1631 break;
1632 case nir_tex_src_coord:
1633 switch (instr->op) {
1634 case nir_texop_txf:
1635 case nir_texop_txf_ms:
1636 coordinate = retype(src, BRW_REGISTER_TYPE_D);
1637 break;
1638 default:
1639 coordinate = retype(src, BRW_REGISTER_TYPE_F);
1640 break;
1641 }
1642 break;
1643 case nir_tex_src_ddx:
1644 lod = retype(src, BRW_REGISTER_TYPE_F);
1645 lod_components = nir_tex_instr_src_size(instr, i);
1646 break;
1647 case nir_tex_src_ddy:
1648 lod2 = retype(src, BRW_REGISTER_TYPE_F);
1649 break;
1650 case nir_tex_src_lod:
1651 switch (instr->op) {
1652 case nir_texop_txs:
1653 lod = retype(src, BRW_REGISTER_TYPE_UD);
1654 break;
1655 case nir_texop_txf:
1656 lod = retype(src, BRW_REGISTER_TYPE_D);
1657 break;
1658 default:
1659 lod = retype(src, BRW_REGISTER_TYPE_F);
1660 break;
1661 }
1662 break;
1663 case nir_tex_src_ms_index:
1664 sample_index = retype(src, BRW_REGISTER_TYPE_UD);
1665 break;
1666 case nir_tex_src_offset:
1667 tex_offset = retype(src, BRW_REGISTER_TYPE_D);
1668 if (instr->is_array)
1669 offset_components = instr->coord_components - 1;
1670 else
1671 offset_components = instr->coord_components;
1672 break;
1673 case nir_tex_src_projector:
1674 unreachable("should be lowered");
1675
1676 case nir_tex_src_sampler_offset: {
1677 /* Figure out the highest possible sampler index and mark it as used */
1678 uint32_t max_used = sampler + instr->sampler_array_size - 1;
1679 if (instr->op == nir_texop_tg4 && brw->gen < 8) {
1680 max_used += stage_prog_data->binding_table.gather_texture_start;
1681 } else {
1682 max_used += stage_prog_data->binding_table.texture_start;
1683 }
1684 brw_mark_surface_used(prog_data, max_used);
1685
1686 /* Emit code to evaluate the actual indexing expression */
1687 sampler_reg = vgrf(glsl_type::uint_type);
1688 emit(ADD(sampler_reg, src, fs_reg(sampler)))
1689 ->force_writemask_all = true;
1690 break;
1691 }
1692
1693 default:
1694 unreachable("unknown texture source");
1695 }
1696 }
1697
1698 if (instr->op == nir_texop_txf_ms) {
1699 if (brw->gen >= 7 &&
1700 key_tex->compressed_multisample_layout_mask & (1 << sampler)) {
1701 mcs = emit_mcs_fetch(coordinate, instr->coord_components, sampler_reg);
1702 } else {
1703 mcs = fs_reg(0u);
1704 }
1705 }
1706
1707 for (unsigned i = 0; i < 3; i++) {
1708 if (instr->const_offset[i] != 0) {
1709 assert(offset_components == 0);
1710 tex_offset = fs_reg(brw_texture_offset(instr->const_offset, 3));
1711 break;
1712 }
1713 }
1714
1715 enum glsl_base_type dest_base_type;
1716 switch (instr->dest_type) {
1717 case nir_type_float:
1718 dest_base_type = GLSL_TYPE_FLOAT;
1719 break;
1720 case nir_type_int:
1721 dest_base_type = GLSL_TYPE_INT;
1722 break;
1723 case nir_type_unsigned:
1724 dest_base_type = GLSL_TYPE_UINT;
1725 break;
1726 default:
1727 unreachable("bad type");
1728 }
1729
1730 const glsl_type *dest_type =
1731 glsl_type::get_instance(dest_base_type, nir_tex_instr_dest_size(instr),
1732 1);
1733
1734 ir_texture_opcode op;
1735 switch (instr->op) {
1736 case nir_texop_lod: op = ir_lod; break;
1737 case nir_texop_query_levels: op = ir_query_levels; break;
1738 case nir_texop_tex: op = ir_tex; break;
1739 case nir_texop_tg4: op = ir_tg4; break;
1740 case nir_texop_txb: op = ir_txb; break;
1741 case nir_texop_txd: op = ir_txd; break;
1742 case nir_texop_txf: op = ir_txf; break;
1743 case nir_texop_txf_ms: op = ir_txf_ms; break;
1744 case nir_texop_txl: op = ir_txl; break;
1745 case nir_texop_txs: op = ir_txs; break;
1746 default:
1747 unreachable("unknown texture opcode");
1748 }
1749
1750 emit_texture(op, dest_type, coordinate, instr->coord_components,
1751 shadow_comparitor, lod, lod2, lod_components, sample_index,
1752 tex_offset, mcs, gather_component,
1753 is_cube_array, is_rect, sampler, sampler_reg, texunit);
1754
1755 fs_reg dest = get_nir_dest(instr->dest);
1756 dest.type = this->result.type;
1757 unsigned num_components = nir_tex_instr_dest_size(instr);
1758 emit_percomp(MOV(dest, this->result), (1 << num_components) - 1);
1759 }
1760
1761 void
1762 fs_visitor::nir_emit_jump(nir_jump_instr *instr)
1763 {
1764 switch (instr->type) {
1765 case nir_jump_break:
1766 emit(BRW_OPCODE_BREAK);
1767 break;
1768 case nir_jump_continue:
1769 emit(BRW_OPCODE_CONTINUE);
1770 break;
1771 case nir_jump_return:
1772 default:
1773 unreachable("unknown jump");
1774 }
1775 }