d54d13410ae112f4d0645c9101988f700d27d8ae
[mesa.git] / src / mesa / drivers / dri / i965 / brw_fs_visitor.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 /** @file brw_fs_visitor.cpp
25 *
26 * This file supports generating the FS LIR from the GLSL IR. The LIR
27 * makes it easier to do backend-specific optimizations than doing so
28 * in the GLSL IR or in the native code.
29 */
30 extern "C" {
31
32 #include <sys/types.h>
33
34 #include "main/macros.h"
35 #include "main/shaderobj.h"
36 #include "main/uniforms.h"
37 #include "program/prog_parameter.h"
38 #include "program/prog_print.h"
39 #include "program/prog_optimize.h"
40 #include "program/register_allocate.h"
41 #include "program/sampler.h"
42 #include "program/hash_table.h"
43 #include "brw_context.h"
44 #include "brw_eu.h"
45 #include "brw_wm.h"
46 }
47 #include "brw_fs.h"
48 #include "glsl/glsl_types.h"
49 #include "glsl/ir_optimization.h"
50 #include "glsl/ir_print_visitor.h"
51
52 void
53 fs_visitor::visit(ir_variable *ir)
54 {
55 fs_reg *reg = NULL;
56
57 if (variable_storage(ir))
58 return;
59
60 if (ir->mode == ir_var_shader_in) {
61 if (!strcmp(ir->name, "gl_FragCoord")) {
62 reg = emit_fragcoord_interpolation(ir);
63 } else if (!strcmp(ir->name, "gl_FrontFacing")) {
64 reg = emit_frontfacing_interpolation(ir);
65 } else {
66 reg = emit_general_interpolation(ir);
67 }
68 assert(reg);
69 hash_table_insert(this->variable_ht, reg, ir);
70 return;
71 } else if (ir->mode == ir_var_shader_out) {
72 reg = new(this->mem_ctx) fs_reg(this, ir->type);
73
74 if (ir->index > 0) {
75 assert(ir->location == FRAG_RESULT_DATA0);
76 assert(ir->index == 1);
77 this->dual_src_output = *reg;
78 } else if (ir->location == FRAG_RESULT_COLOR) {
79 /* Writing gl_FragColor outputs to all color regions. */
80 for (unsigned int i = 0; i < MAX2(c->key.nr_color_regions, 1); i++) {
81 this->outputs[i] = *reg;
82 this->output_components[i] = 4;
83 }
84 } else if (ir->location == FRAG_RESULT_DEPTH) {
85 this->frag_depth = *reg;
86 } else {
87 /* gl_FragData or a user-defined FS output */
88 assert(ir->location >= FRAG_RESULT_DATA0 &&
89 ir->location < FRAG_RESULT_DATA0 + BRW_MAX_DRAW_BUFFERS);
90
91 int vector_elements =
92 ir->type->is_array() ? ir->type->fields.array->vector_elements
93 : ir->type->vector_elements;
94
95 /* General color output. */
96 for (unsigned int i = 0; i < MAX2(1, ir->type->length); i++) {
97 int output = ir->location - FRAG_RESULT_DATA0 + i;
98 this->outputs[output] = *reg;
99 this->outputs[output].reg_offset += vector_elements * i;
100 this->output_components[output] = vector_elements;
101 }
102 }
103 } else if (ir->mode == ir_var_uniform) {
104 int param_index = c->prog_data.nr_params;
105
106 /* Thanks to the lower_ubo_reference pass, we will see only
107 * ir_binop_ubo_load expressions and not ir_dereference_variable for UBO
108 * variables, so no need for them to be in variable_ht.
109 */
110 if (ir->is_in_uniform_block())
111 return;
112
113 if (dispatch_width == 16) {
114 if (!variable_storage(ir)) {
115 fail("Failed to find uniform '%s' in 16-wide\n", ir->name);
116 }
117 return;
118 }
119
120 param_size[param_index] = type_size(ir->type);
121 if (!strncmp(ir->name, "gl_", 3)) {
122 setup_builtin_uniform_values(ir);
123 } else {
124 setup_uniform_values(ir);
125 }
126
127 reg = new(this->mem_ctx) fs_reg(UNIFORM, param_index);
128 reg->type = brw_type_for_base_type(ir->type);
129 }
130
131 if (!reg)
132 reg = new(this->mem_ctx) fs_reg(this, ir->type);
133
134 hash_table_insert(this->variable_ht, reg, ir);
135 }
136
137 void
138 fs_visitor::visit(ir_dereference_variable *ir)
139 {
140 fs_reg *reg = variable_storage(ir->var);
141 this->result = *reg;
142 }
143
144 void
145 fs_visitor::visit(ir_dereference_record *ir)
146 {
147 const glsl_type *struct_type = ir->record->type;
148
149 ir->record->accept(this);
150
151 unsigned int offset = 0;
152 for (unsigned int i = 0; i < struct_type->length; i++) {
153 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0)
154 break;
155 offset += type_size(struct_type->fields.structure[i].type);
156 }
157 this->result.reg_offset += offset;
158 this->result.type = brw_type_for_base_type(ir->type);
159 }
160
161 void
162 fs_visitor::visit(ir_dereference_array *ir)
163 {
164 ir_constant *constant_index;
165 fs_reg src;
166 int element_size = type_size(ir->type);
167
168 constant_index = ir->array_index->as_constant();
169
170 ir->array->accept(this);
171 src = this->result;
172 src.type = brw_type_for_base_type(ir->type);
173
174 if (constant_index) {
175 assert(src.file == UNIFORM || src.file == GRF);
176 src.reg_offset += constant_index->value.i[0] * element_size;
177 } else {
178 /* Variable index array dereference. We attach the variable index
179 * component to the reg as a pointer to a register containing the
180 * offset. Currently only uniform arrays are supported in this patch,
181 * and that reladdr pointer is resolved by
182 * move_uniform_array_access_to_pull_constants(). All other array types
183 * are lowered by lower_variable_index_to_cond_assign().
184 */
185 ir->array_index->accept(this);
186
187 fs_reg index_reg;
188 index_reg = fs_reg(this, glsl_type::int_type);
189 emit(BRW_OPCODE_MUL, index_reg, this->result, fs_reg(element_size));
190
191 if (src.reladdr) {
192 emit(BRW_OPCODE_ADD, index_reg, *src.reladdr, index_reg);
193 }
194
195 src.reladdr = ralloc(mem_ctx, fs_reg);
196 memcpy(src.reladdr, &index_reg, sizeof(index_reg));
197 }
198 this->result = src;
199 }
200
201 void
202 fs_visitor::emit_lrp(fs_reg dst, fs_reg x, fs_reg y, fs_reg a)
203 {
204 if (intel->gen < 6 || x.file != GRF || y.file != GRF || a.file != GRF) {
205 /* We can't use the LRP instruction. Emit x*(1-a) + y*a. */
206 fs_reg y_times_a = fs_reg(this, glsl_type::float_type);
207 fs_reg one_minus_a = fs_reg(this, glsl_type::float_type);
208 fs_reg x_times_one_minus_a = fs_reg(this, glsl_type::float_type);
209
210 emit(MUL(y_times_a, y, a));
211
212 a.negate = !a.negate;
213 emit(ADD(one_minus_a, a, fs_reg(1.0f)));
214 emit(MUL(x_times_one_minus_a, x, one_minus_a));
215
216 emit(ADD(dst, x_times_one_minus_a, y_times_a));
217 } else {
218 /* The LRP instruction actually does op1 * op0 + op2 * (1 - op0), so
219 * we need to reorder the operands.
220 */
221 emit(LRP(dst, a, y, x));
222 }
223 }
224
225 void
226 fs_visitor::emit_minmax(uint32_t conditionalmod, fs_reg dst,
227 fs_reg src0, fs_reg src1)
228 {
229 fs_inst *inst;
230
231 if (intel->gen >= 6) {
232 inst = emit(BRW_OPCODE_SEL, dst, src0, src1);
233 inst->conditional_mod = conditionalmod;
234 } else {
235 emit(CMP(reg_null_d, src0, src1, conditionalmod));
236
237 inst = emit(BRW_OPCODE_SEL, dst, src0, src1);
238 inst->predicate = BRW_PREDICATE_NORMAL;
239 }
240 }
241
242 /* Instruction selection: Produce a MOV.sat instead of
243 * MIN(MAX(val, 0), 1) when possible.
244 */
245 bool
246 fs_visitor::try_emit_saturate(ir_expression *ir)
247 {
248 ir_rvalue *sat_val = ir->as_rvalue_to_saturate();
249
250 if (!sat_val)
251 return false;
252
253 fs_inst *pre_inst = (fs_inst *) this->instructions.get_tail();
254
255 sat_val->accept(this);
256 fs_reg src = this->result;
257
258 fs_inst *last_inst = (fs_inst *) this->instructions.get_tail();
259
260 /* If the last instruction from our accept() didn't generate our
261 * src, generate a saturated MOV
262 */
263 fs_inst *modify = get_instruction_generating_reg(pre_inst, last_inst, src);
264 if (!modify || modify->regs_written != 1) {
265 this->result = fs_reg(this, ir->type);
266 fs_inst *inst = emit(MOV(this->result, src));
267 inst->saturate = true;
268 } else {
269 modify->saturate = true;
270 this->result = src;
271 }
272
273
274 return true;
275 }
276
277 bool
278 fs_visitor::try_emit_mad(ir_expression *ir, int mul_arg)
279 {
280 /* 3-src instructions were introduced in gen6. */
281 if (intel->gen < 6)
282 return false;
283
284 /* MAD can only handle floating-point data. */
285 if (ir->type != glsl_type::float_type)
286 return false;
287
288 ir_rvalue *nonmul = ir->operands[1 - mul_arg];
289 ir_expression *mul = ir->operands[mul_arg]->as_expression();
290
291 if (!mul || mul->operation != ir_binop_mul)
292 return false;
293
294 if (nonmul->as_constant() ||
295 mul->operands[0]->as_constant() ||
296 mul->operands[1]->as_constant())
297 return false;
298
299 nonmul->accept(this);
300 fs_reg src0 = this->result;
301
302 mul->operands[0]->accept(this);
303 fs_reg src1 = this->result;
304
305 mul->operands[1]->accept(this);
306 fs_reg src2 = this->result;
307
308 this->result = fs_reg(this, ir->type);
309 emit(BRW_OPCODE_MAD, this->result, src0, src1, src2);
310
311 return true;
312 }
313
314 void
315 fs_visitor::visit(ir_expression *ir)
316 {
317 unsigned int operand;
318 fs_reg op[3], temp;
319 fs_inst *inst;
320
321 assert(ir->get_num_operands() <= 3);
322
323 if (try_emit_saturate(ir))
324 return;
325 if (ir->operation == ir_binop_add) {
326 if (try_emit_mad(ir, 0) || try_emit_mad(ir, 1))
327 return;
328 }
329
330 for (operand = 0; operand < ir->get_num_operands(); operand++) {
331 ir->operands[operand]->accept(this);
332 if (this->result.file == BAD_FILE) {
333 ir_print_visitor v;
334 fail("Failed to get tree for expression operand:\n");
335 ir->operands[operand]->accept(&v);
336 }
337 op[operand] = this->result;
338
339 /* Matrix expression operands should have been broken down to vector
340 * operations already.
341 */
342 assert(!ir->operands[operand]->type->is_matrix());
343 /* And then those vector operands should have been broken down to scalar.
344 */
345 assert(!ir->operands[operand]->type->is_vector());
346 }
347
348 /* Storage for our result. If our result goes into an assignment, it will
349 * just get copy-propagated out, so no worries.
350 */
351 this->result = fs_reg(this, ir->type);
352
353 switch (ir->operation) {
354 case ir_unop_logic_not:
355 /* Note that BRW_OPCODE_NOT is not appropriate here, since it is
356 * ones complement of the whole register, not just bit 0.
357 */
358 emit(XOR(this->result, op[0], fs_reg(1)));
359 break;
360 case ir_unop_neg:
361 op[0].negate = !op[0].negate;
362 this->result = op[0];
363 break;
364 case ir_unop_abs:
365 op[0].abs = true;
366 op[0].negate = false;
367 this->result = op[0];
368 break;
369 case ir_unop_sign:
370 temp = fs_reg(this, ir->type);
371
372 emit(MOV(this->result, fs_reg(0.0f)));
373
374 emit(CMP(reg_null_f, op[0], fs_reg(0.0f), BRW_CONDITIONAL_G));
375 inst = emit(MOV(this->result, fs_reg(1.0f)));
376 inst->predicate = BRW_PREDICATE_NORMAL;
377
378 emit(CMP(reg_null_f, op[0], fs_reg(0.0f), BRW_CONDITIONAL_L));
379 inst = emit(MOV(this->result, fs_reg(-1.0f)));
380 inst->predicate = BRW_PREDICATE_NORMAL;
381
382 break;
383 case ir_unop_rcp:
384 emit_math(SHADER_OPCODE_RCP, this->result, op[0]);
385 break;
386
387 case ir_unop_exp2:
388 emit_math(SHADER_OPCODE_EXP2, this->result, op[0]);
389 break;
390 case ir_unop_log2:
391 emit_math(SHADER_OPCODE_LOG2, this->result, op[0]);
392 break;
393 case ir_unop_exp:
394 case ir_unop_log:
395 assert(!"not reached: should be handled by ir_explog_to_explog2");
396 break;
397 case ir_unop_sin:
398 case ir_unop_sin_reduced:
399 emit_math(SHADER_OPCODE_SIN, this->result, op[0]);
400 break;
401 case ir_unop_cos:
402 case ir_unop_cos_reduced:
403 emit_math(SHADER_OPCODE_COS, this->result, op[0]);
404 break;
405
406 case ir_unop_dFdx:
407 emit(FS_OPCODE_DDX, this->result, op[0]);
408 break;
409 case ir_unop_dFdy:
410 emit(FS_OPCODE_DDY, this->result, op[0]);
411 break;
412
413 case ir_binop_add:
414 emit(ADD(this->result, op[0], op[1]));
415 break;
416 case ir_binop_sub:
417 assert(!"not reached: should be handled by ir_sub_to_add_neg");
418 break;
419
420 case ir_binop_mul:
421 if (ir->type->is_integer()) {
422 /* For integer multiplication, the MUL uses the low 16 bits
423 * of one of the operands (src0 on gen6, src1 on gen7). The
424 * MACH accumulates in the contribution of the upper 16 bits
425 * of that operand.
426 *
427 * FINISHME: Emit just the MUL if we know an operand is small
428 * enough.
429 */
430 if (intel->gen >= 7 && dispatch_width == 16)
431 fail("16-wide explicit accumulator operands unsupported\n");
432
433 struct brw_reg acc = retype(brw_acc_reg(), BRW_REGISTER_TYPE_D);
434
435 emit(MUL(acc, op[0], op[1]));
436 emit(MACH(reg_null_d, op[0], op[1]));
437 emit(MOV(this->result, fs_reg(acc)));
438 } else {
439 emit(MUL(this->result, op[0], op[1]));
440 }
441 break;
442 case ir_binop_div:
443 /* Floating point should be lowered by DIV_TO_MUL_RCP in the compiler. */
444 assert(ir->type->is_integer());
445 emit_math(SHADER_OPCODE_INT_QUOTIENT, this->result, op[0], op[1]);
446 break;
447 case ir_binop_mod:
448 /* Floating point should be lowered by MOD_TO_FRACT in the compiler. */
449 assert(ir->type->is_integer());
450 emit_math(SHADER_OPCODE_INT_REMAINDER, this->result, op[0], op[1]);
451 break;
452
453 case ir_binop_less:
454 case ir_binop_greater:
455 case ir_binop_lequal:
456 case ir_binop_gequal:
457 case ir_binop_equal:
458 case ir_binop_all_equal:
459 case ir_binop_nequal:
460 case ir_binop_any_nequal:
461 resolve_bool_comparison(ir->operands[0], &op[0]);
462 resolve_bool_comparison(ir->operands[1], &op[1]);
463
464 emit(CMP(this->result, op[0], op[1],
465 brw_conditional_for_comparison(ir->operation)));
466 break;
467
468 case ir_binop_logic_xor:
469 emit(XOR(this->result, op[0], op[1]));
470 break;
471
472 case ir_binop_logic_or:
473 emit(OR(this->result, op[0], op[1]));
474 break;
475
476 case ir_binop_logic_and:
477 emit(AND(this->result, op[0], op[1]));
478 break;
479
480 case ir_binop_dot:
481 case ir_unop_any:
482 assert(!"not reached: should be handled by brw_fs_channel_expressions");
483 break;
484
485 case ir_unop_noise:
486 assert(!"not reached: should be handled by lower_noise");
487 break;
488
489 case ir_quadop_vector:
490 assert(!"not reached: should be handled by lower_quadop_vector");
491 break;
492
493 case ir_unop_sqrt:
494 emit_math(SHADER_OPCODE_SQRT, this->result, op[0]);
495 break;
496
497 case ir_unop_rsq:
498 emit_math(SHADER_OPCODE_RSQ, this->result, op[0]);
499 break;
500
501 case ir_unop_bitcast_i2f:
502 case ir_unop_bitcast_u2f:
503 op[0].type = BRW_REGISTER_TYPE_F;
504 this->result = op[0];
505 break;
506 case ir_unop_i2u:
507 case ir_unop_bitcast_f2u:
508 op[0].type = BRW_REGISTER_TYPE_UD;
509 this->result = op[0];
510 break;
511 case ir_unop_u2i:
512 case ir_unop_bitcast_f2i:
513 op[0].type = BRW_REGISTER_TYPE_D;
514 this->result = op[0];
515 break;
516 case ir_unop_i2f:
517 case ir_unop_u2f:
518 case ir_unop_f2i:
519 case ir_unop_f2u:
520 emit(MOV(this->result, op[0]));
521 break;
522
523 case ir_unop_b2i:
524 inst = emit(AND(this->result, op[0], fs_reg(1)));
525 break;
526 case ir_unop_b2f:
527 temp = fs_reg(this, glsl_type::int_type);
528 emit(AND(temp, op[0], fs_reg(1)));
529 emit(MOV(this->result, temp));
530 break;
531
532 case ir_unop_f2b:
533 emit(CMP(this->result, op[0], fs_reg(0.0f), BRW_CONDITIONAL_NZ));
534 break;
535 case ir_unop_i2b:
536 emit(CMP(this->result, op[0], fs_reg(0), BRW_CONDITIONAL_NZ));
537 break;
538
539 case ir_unop_trunc:
540 emit(RNDZ(this->result, op[0]));
541 break;
542 case ir_unop_ceil:
543 op[0].negate = !op[0].negate;
544 inst = emit(RNDD(this->result, op[0]));
545 this->result.negate = true;
546 break;
547 case ir_unop_floor:
548 inst = emit(RNDD(this->result, op[0]));
549 break;
550 case ir_unop_fract:
551 inst = emit(FRC(this->result, op[0]));
552 break;
553 case ir_unop_round_even:
554 emit(RNDE(this->result, op[0]));
555 break;
556
557 case ir_binop_min:
558 case ir_binop_max:
559 resolve_ud_negate(&op[0]);
560 resolve_ud_negate(&op[1]);
561 emit_minmax(ir->operation == ir_binop_min ?
562 BRW_CONDITIONAL_L : BRW_CONDITIONAL_GE,
563 this->result, op[0], op[1]);
564 break;
565 case ir_unop_pack_snorm_2x16:
566 case ir_unop_pack_snorm_4x8:
567 case ir_unop_pack_unorm_2x16:
568 case ir_unop_pack_unorm_4x8:
569 case ir_unop_unpack_snorm_2x16:
570 case ir_unop_unpack_snorm_4x8:
571 case ir_unop_unpack_unorm_2x16:
572 case ir_unop_unpack_unorm_4x8:
573 case ir_unop_unpack_half_2x16:
574 case ir_unop_pack_half_2x16:
575 assert(!"not reached: should be handled by lower_packing_builtins");
576 break;
577 case ir_unop_unpack_half_2x16_split_x:
578 emit(FS_OPCODE_UNPACK_HALF_2x16_SPLIT_X, this->result, op[0]);
579 break;
580 case ir_unop_unpack_half_2x16_split_y:
581 emit(FS_OPCODE_UNPACK_HALF_2x16_SPLIT_Y, this->result, op[0]);
582 break;
583 case ir_binop_pow:
584 emit_math(SHADER_OPCODE_POW, this->result, op[0], op[1]);
585 break;
586
587 case ir_unop_bit_not:
588 inst = emit(NOT(this->result, op[0]));
589 break;
590 case ir_binop_bit_and:
591 inst = emit(AND(this->result, op[0], op[1]));
592 break;
593 case ir_binop_bit_xor:
594 inst = emit(XOR(this->result, op[0], op[1]));
595 break;
596 case ir_binop_bit_or:
597 inst = emit(OR(this->result, op[0], op[1]));
598 break;
599
600 case ir_binop_lshift:
601 inst = emit(SHL(this->result, op[0], op[1]));
602 break;
603
604 case ir_binop_rshift:
605 if (ir->type->base_type == GLSL_TYPE_INT)
606 inst = emit(ASR(this->result, op[0], op[1]));
607 else
608 inst = emit(SHR(this->result, op[0], op[1]));
609 break;
610 case ir_binop_pack_half_2x16_split:
611 emit(FS_OPCODE_PACK_HALF_2x16_SPLIT, this->result, op[0], op[1]);
612 break;
613 case ir_binop_ubo_load: {
614 /* This IR node takes a constant uniform block and a constant or
615 * variable byte offset within the block and loads a vector from that.
616 */
617 ir_constant *uniform_block = ir->operands[0]->as_constant();
618 ir_constant *const_offset = ir->operands[1]->as_constant();
619 fs_reg surf_index = fs_reg((unsigned)SURF_INDEX_WM_UBO(uniform_block->value.u[0]));
620 if (const_offset) {
621 fs_reg packed_consts = fs_reg(this, glsl_type::float_type);
622 packed_consts.type = result.type;
623
624 fs_reg const_offset_reg = fs_reg(const_offset->value.u[0] & ~15);
625 emit(fs_inst(FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD,
626 packed_consts, surf_index, const_offset_reg));
627
628 packed_consts.smear = const_offset->value.u[0] % 16 / 4;
629 for (int i = 0; i < ir->type->vector_elements; i++) {
630 /* UBO bools are any nonzero value. We consider bools to be
631 * values with the low bit set to 1. Convert them using CMP.
632 */
633 if (ir->type->base_type == GLSL_TYPE_BOOL) {
634 emit(CMP(result, packed_consts, fs_reg(0u), BRW_CONDITIONAL_NZ));
635 } else {
636 emit(MOV(result, packed_consts));
637 }
638
639 packed_consts.smear++;
640 result.reg_offset++;
641
642 /* The std140 packing rules don't allow vectors to cross 16-byte
643 * boundaries, and a reg is 32 bytes.
644 */
645 assert(packed_consts.smear < 8);
646 }
647 } else {
648 /* Turn the byte offset into a dword offset. */
649 fs_reg base_offset = fs_reg(this, glsl_type::int_type);
650 emit(SHR(base_offset, op[1], fs_reg(2)));
651
652 for (int i = 0; i < ir->type->vector_elements; i++) {
653 emit(VARYING_PULL_CONSTANT_LOAD(result, surf_index,
654 base_offset, i));
655
656 if (ir->type->base_type == GLSL_TYPE_BOOL)
657 emit(CMP(result, result, fs_reg(0), BRW_CONDITIONAL_NZ));
658
659 result.reg_offset++;
660 }
661 }
662
663 result.reg_offset = 0;
664 break;
665 }
666
667 case ir_triop_lrp:
668 emit_lrp(this->result, op[0], op[1], op[2]);
669 break;
670 }
671 }
672
673 void
674 fs_visitor::emit_assignment_writes(fs_reg &l, fs_reg &r,
675 const glsl_type *type, bool predicated)
676 {
677 switch (type->base_type) {
678 case GLSL_TYPE_FLOAT:
679 case GLSL_TYPE_UINT:
680 case GLSL_TYPE_INT:
681 case GLSL_TYPE_BOOL:
682 for (unsigned int i = 0; i < type->components(); i++) {
683 l.type = brw_type_for_base_type(type);
684 r.type = brw_type_for_base_type(type);
685
686 if (predicated || !l.equals(r)) {
687 fs_inst *inst = emit(MOV(l, r));
688 inst->predicate = predicated ? BRW_PREDICATE_NORMAL : BRW_PREDICATE_NONE;
689 }
690
691 l.reg_offset++;
692 r.reg_offset++;
693 }
694 break;
695 case GLSL_TYPE_ARRAY:
696 for (unsigned int i = 0; i < type->length; i++) {
697 emit_assignment_writes(l, r, type->fields.array, predicated);
698 }
699 break;
700
701 case GLSL_TYPE_STRUCT:
702 for (unsigned int i = 0; i < type->length; i++) {
703 emit_assignment_writes(l, r, type->fields.structure[i].type,
704 predicated);
705 }
706 break;
707
708 case GLSL_TYPE_SAMPLER:
709 break;
710
711 case GLSL_TYPE_VOID:
712 case GLSL_TYPE_ERROR:
713 case GLSL_TYPE_INTERFACE:
714 assert(!"not reached");
715 break;
716 }
717 }
718
719 /* If the RHS processing resulted in an instruction generating a
720 * temporary value, and it would be easy to rewrite the instruction to
721 * generate its result right into the LHS instead, do so. This ends
722 * up reliably removing instructions where it can be tricky to do so
723 * later without real UD chain information.
724 */
725 bool
726 fs_visitor::try_rewrite_rhs_to_dst(ir_assignment *ir,
727 fs_reg dst,
728 fs_reg src,
729 fs_inst *pre_rhs_inst,
730 fs_inst *last_rhs_inst)
731 {
732 /* Only attempt if we're doing a direct assignment. */
733 if (ir->condition ||
734 !(ir->lhs->type->is_scalar() ||
735 (ir->lhs->type->is_vector() &&
736 ir->write_mask == (1 << ir->lhs->type->vector_elements) - 1)))
737 return false;
738
739 /* Make sure the last instruction generated our source reg. */
740 fs_inst *modify = get_instruction_generating_reg(pre_rhs_inst,
741 last_rhs_inst,
742 src);
743 if (!modify)
744 return false;
745
746 /* If last_rhs_inst wrote a different number of components than our LHS,
747 * we can't safely rewrite it.
748 */
749 if (virtual_grf_sizes[dst.reg] != modify->regs_written)
750 return false;
751
752 /* Success! Rewrite the instruction. */
753 modify->dst = dst;
754
755 return true;
756 }
757
758 void
759 fs_visitor::visit(ir_assignment *ir)
760 {
761 fs_reg l, r;
762 fs_inst *inst;
763
764 /* FINISHME: arrays on the lhs */
765 ir->lhs->accept(this);
766 l = this->result;
767
768 fs_inst *pre_rhs_inst = (fs_inst *) this->instructions.get_tail();
769
770 ir->rhs->accept(this);
771 r = this->result;
772
773 fs_inst *last_rhs_inst = (fs_inst *) this->instructions.get_tail();
774
775 assert(l.file != BAD_FILE);
776 assert(r.file != BAD_FILE);
777
778 if (try_rewrite_rhs_to_dst(ir, l, r, pre_rhs_inst, last_rhs_inst))
779 return;
780
781 if (ir->condition) {
782 emit_bool_to_cond_code(ir->condition);
783 }
784
785 if (ir->lhs->type->is_scalar() ||
786 ir->lhs->type->is_vector()) {
787 for (int i = 0; i < ir->lhs->type->vector_elements; i++) {
788 if (ir->write_mask & (1 << i)) {
789 inst = emit(MOV(l, r));
790 if (ir->condition)
791 inst->predicate = BRW_PREDICATE_NORMAL;
792 r.reg_offset++;
793 }
794 l.reg_offset++;
795 }
796 } else {
797 emit_assignment_writes(l, r, ir->lhs->type, ir->condition != NULL);
798 }
799 }
800
801 fs_inst *
802 fs_visitor::emit_texture_gen4(ir_texture *ir, fs_reg dst, fs_reg coordinate,
803 fs_reg shadow_c, fs_reg lod, fs_reg dPdy)
804 {
805 int mlen;
806 int base_mrf = 1;
807 bool simd16 = false;
808 fs_reg orig_dst;
809
810 /* g0 header. */
811 mlen = 1;
812
813 if (ir->shadow_comparitor) {
814 for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
815 emit(MOV(fs_reg(MRF, base_mrf + mlen + i), coordinate));
816 coordinate.reg_offset++;
817 }
818 /* gen4's SIMD8 sampler always has the slots for u,v,r present. */
819 mlen += 3;
820
821 if (ir->op == ir_tex) {
822 /* There's no plain shadow compare message, so we use shadow
823 * compare with a bias of 0.0.
824 */
825 emit(MOV(fs_reg(MRF, base_mrf + mlen), fs_reg(0.0f)));
826 mlen++;
827 } else if (ir->op == ir_txb || ir->op == ir_txl) {
828 emit(MOV(fs_reg(MRF, base_mrf + mlen), lod));
829 mlen++;
830 } else {
831 assert(!"Should not get here.");
832 }
833
834 emit(MOV(fs_reg(MRF, base_mrf + mlen), shadow_c));
835 mlen++;
836 } else if (ir->op == ir_tex) {
837 for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
838 emit(MOV(fs_reg(MRF, base_mrf + mlen + i), coordinate));
839 coordinate.reg_offset++;
840 }
841 /* gen4's SIMD8 sampler always has the slots for u,v,r present. */
842 mlen += 3;
843 } else if (ir->op == ir_txd) {
844 fs_reg &dPdx = lod;
845
846 for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
847 emit(MOV(fs_reg(MRF, base_mrf + mlen + i), coordinate));
848 coordinate.reg_offset++;
849 }
850 /* the slots for u and v are always present, but r is optional */
851 mlen += MAX2(ir->coordinate->type->vector_elements, 2);
852
853 /* P = u, v, r
854 * dPdx = dudx, dvdx, drdx
855 * dPdy = dudy, dvdy, drdy
856 *
857 * 1-arg: Does not exist.
858 *
859 * 2-arg: dudx dvdx dudy dvdy
860 * dPdx.x dPdx.y dPdy.x dPdy.y
861 * m4 m5 m6 m7
862 *
863 * 3-arg: dudx dvdx drdx dudy dvdy drdy
864 * dPdx.x dPdx.y dPdx.z dPdy.x dPdy.y dPdy.z
865 * m5 m6 m7 m8 m9 m10
866 */
867 for (int i = 0; i < ir->lod_info.grad.dPdx->type->vector_elements; i++) {
868 emit(MOV(fs_reg(MRF, base_mrf + mlen), dPdx));
869 dPdx.reg_offset++;
870 }
871 mlen += MAX2(ir->lod_info.grad.dPdx->type->vector_elements, 2);
872
873 for (int i = 0; i < ir->lod_info.grad.dPdy->type->vector_elements; i++) {
874 emit(MOV(fs_reg(MRF, base_mrf + mlen), dPdy));
875 dPdy.reg_offset++;
876 }
877 mlen += MAX2(ir->lod_info.grad.dPdy->type->vector_elements, 2);
878 } else if (ir->op == ir_txs) {
879 /* There's no SIMD8 resinfo message on Gen4. Use SIMD16 instead. */
880 simd16 = true;
881 emit(MOV(fs_reg(MRF, base_mrf + mlen, BRW_REGISTER_TYPE_UD), lod));
882 mlen += 2;
883 } else {
884 /* Oh joy. gen4 doesn't have SIMD8 non-shadow-compare bias/lod
885 * instructions. We'll need to do SIMD16 here.
886 */
887 simd16 = true;
888 assert(ir->op == ir_txb || ir->op == ir_txl || ir->op == ir_txf);
889
890 for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
891 emit(MOV(fs_reg(MRF, base_mrf + mlen + i * 2, coordinate.type),
892 coordinate));
893 coordinate.reg_offset++;
894 }
895
896 /* Initialize the rest of u/v/r with 0.0. Empirically, this seems to
897 * be necessary for TXF (ld), but seems wise to do for all messages.
898 */
899 for (int i = ir->coordinate->type->vector_elements; i < 3; i++) {
900 emit(MOV(fs_reg(MRF, base_mrf + mlen + i * 2), fs_reg(0.0f)));
901 }
902
903 /* lod/bias appears after u/v/r. */
904 mlen += 6;
905
906 emit(MOV(fs_reg(MRF, base_mrf + mlen, lod.type), lod));
907 mlen++;
908
909 /* The unused upper half. */
910 mlen++;
911 }
912
913 if (simd16) {
914 /* Now, since we're doing simd16, the return is 2 interleaved
915 * vec4s where the odd-indexed ones are junk. We'll need to move
916 * this weirdness around to the expected layout.
917 */
918 orig_dst = dst;
919 dst = fs_reg(GRF, virtual_grf_alloc(8),
920 (intel->is_g4x ?
921 brw_type_for_base_type(ir->type) :
922 BRW_REGISTER_TYPE_F));
923 }
924
925 fs_inst *inst = NULL;
926 switch (ir->op) {
927 case ir_tex:
928 inst = emit(SHADER_OPCODE_TEX, dst);
929 break;
930 case ir_txb:
931 inst = emit(FS_OPCODE_TXB, dst);
932 break;
933 case ir_txl:
934 inst = emit(SHADER_OPCODE_TXL, dst);
935 break;
936 case ir_txd:
937 inst = emit(SHADER_OPCODE_TXD, dst);
938 break;
939 case ir_txs:
940 inst = emit(SHADER_OPCODE_TXS, dst);
941 break;
942 case ir_txf:
943 inst = emit(SHADER_OPCODE_TXF, dst);
944 break;
945 default:
946 fail("unrecognized texture opcode");
947 }
948 inst->base_mrf = base_mrf;
949 inst->mlen = mlen;
950 inst->header_present = true;
951 inst->regs_written = simd16 ? 8 : 4;
952
953 if (simd16) {
954 for (int i = 0; i < 4; i++) {
955 emit(MOV(orig_dst, dst));
956 orig_dst.reg_offset++;
957 dst.reg_offset += 2;
958 }
959 }
960
961 return inst;
962 }
963
964 /* gen5's sampler has slots for u, v, r, array index, then optional
965 * parameters like shadow comparitor or LOD bias. If optional
966 * parameters aren't present, those base slots are optional and don't
967 * need to be included in the message.
968 *
969 * We don't fill in the unnecessary slots regardless, which may look
970 * surprising in the disassembly.
971 */
972 fs_inst *
973 fs_visitor::emit_texture_gen5(ir_texture *ir, fs_reg dst, fs_reg coordinate,
974 fs_reg shadow_c, fs_reg lod, fs_reg lod2,
975 fs_reg sample_index)
976 {
977 int mlen = 0;
978 int base_mrf = 2;
979 int reg_width = dispatch_width / 8;
980 bool header_present = false;
981 const int vector_elements =
982 ir->coordinate ? ir->coordinate->type->vector_elements : 0;
983
984 if (ir->offset != NULL && ir->op == ir_txf) {
985 /* It appears that the ld instruction used for txf does its
986 * address bounds check before adding in the offset. To work
987 * around this, just add the integer offset to the integer texel
988 * coordinate, and don't put the offset in the header.
989 */
990 ir_constant *offset = ir->offset->as_constant();
991 for (int i = 0; i < vector_elements; i++) {
992 emit(ADD(fs_reg(MRF, base_mrf + mlen + i * reg_width, coordinate.type),
993 coordinate,
994 offset->value.i[i]));
995 coordinate.reg_offset++;
996 }
997 } else {
998 if (ir->offset) {
999 /* The offsets set up by the ir_texture visitor are in the
1000 * m1 header, so we can't go headerless.
1001 */
1002 header_present = true;
1003 mlen++;
1004 base_mrf--;
1005 }
1006
1007 for (int i = 0; i < vector_elements; i++) {
1008 emit(MOV(fs_reg(MRF, base_mrf + mlen + i * reg_width, coordinate.type),
1009 coordinate));
1010 coordinate.reg_offset++;
1011 }
1012 }
1013 mlen += vector_elements * reg_width;
1014
1015 if (ir->shadow_comparitor) {
1016 mlen = MAX2(mlen, header_present + 4 * reg_width);
1017
1018 emit(MOV(fs_reg(MRF, base_mrf + mlen), shadow_c));
1019 mlen += reg_width;
1020 }
1021
1022 fs_inst *inst = NULL;
1023 switch (ir->op) {
1024 case ir_tex:
1025 inst = emit(SHADER_OPCODE_TEX, dst);
1026 break;
1027 case ir_txb:
1028 mlen = MAX2(mlen, header_present + 4 * reg_width);
1029 emit(MOV(fs_reg(MRF, base_mrf + mlen), lod));
1030 mlen += reg_width;
1031
1032 inst = emit(FS_OPCODE_TXB, dst);
1033 break;
1034 case ir_txl:
1035 mlen = MAX2(mlen, header_present + 4 * reg_width);
1036 emit(MOV(fs_reg(MRF, base_mrf + mlen), lod));
1037 mlen += reg_width;
1038
1039 inst = emit(SHADER_OPCODE_TXL, dst);
1040 break;
1041 case ir_txd: {
1042 mlen = MAX2(mlen, header_present + 4 * reg_width); /* skip over 'ai' */
1043
1044 /**
1045 * P = u, v, r
1046 * dPdx = dudx, dvdx, drdx
1047 * dPdy = dudy, dvdy, drdy
1048 *
1049 * Load up these values:
1050 * - dudx dudy dvdx dvdy drdx drdy
1051 * - dPdx.x dPdy.x dPdx.y dPdy.y dPdx.z dPdy.z
1052 */
1053 for (int i = 0; i < ir->lod_info.grad.dPdx->type->vector_elements; i++) {
1054 emit(MOV(fs_reg(MRF, base_mrf + mlen), lod));
1055 lod.reg_offset++;
1056 mlen += reg_width;
1057
1058 emit(MOV(fs_reg(MRF, base_mrf + mlen), lod2));
1059 lod2.reg_offset++;
1060 mlen += reg_width;
1061 }
1062
1063 inst = emit(SHADER_OPCODE_TXD, dst);
1064 break;
1065 }
1066 case ir_txs:
1067 emit(MOV(fs_reg(MRF, base_mrf + mlen, BRW_REGISTER_TYPE_UD), lod));
1068 mlen += reg_width;
1069 inst = emit(SHADER_OPCODE_TXS, dst);
1070 break;
1071 case ir_txf:
1072 mlen = header_present + 4 * reg_width;
1073 emit(MOV(fs_reg(MRF, base_mrf + mlen - reg_width, BRW_REGISTER_TYPE_UD), lod));
1074 inst = emit(SHADER_OPCODE_TXF, dst);
1075 break;
1076 case ir_txf_ms:
1077 mlen = header_present + 4 * reg_width;
1078
1079 /* lod */
1080 emit(MOV(fs_reg(MRF, base_mrf + mlen - reg_width, BRW_REGISTER_TYPE_UD), fs_reg(0)));
1081 /* sample index */
1082 emit(MOV(fs_reg(MRF, base_mrf + mlen, BRW_REGISTER_TYPE_UD), sample_index));
1083 mlen += reg_width;
1084 inst = emit(SHADER_OPCODE_TXF_MS, dst);
1085 break;
1086 case ir_lod:
1087 inst = emit(SHADER_OPCODE_LOD, dst);
1088 break;
1089 }
1090 inst->base_mrf = base_mrf;
1091 inst->mlen = mlen;
1092 inst->header_present = header_present;
1093 inst->regs_written = 4;
1094
1095 if (mlen > 11) {
1096 fail("Message length >11 disallowed by hardware\n");
1097 }
1098
1099 return inst;
1100 }
1101
1102 fs_inst *
1103 fs_visitor::emit_texture_gen7(ir_texture *ir, fs_reg dst, fs_reg coordinate,
1104 fs_reg shadow_c, fs_reg lod, fs_reg lod2,
1105 fs_reg sample_index)
1106 {
1107 int mlen = 0;
1108 int base_mrf = 2;
1109 int reg_width = dispatch_width / 8;
1110 bool header_present = false;
1111 int offsets[3];
1112
1113 if (ir->offset && ir->op != ir_txf) {
1114 /* The offsets set up by the ir_texture visitor are in the
1115 * m1 header, so we can't go headerless.
1116 */
1117 header_present = true;
1118 mlen++;
1119 base_mrf--;
1120 }
1121
1122 if (ir->shadow_comparitor) {
1123 emit(MOV(fs_reg(MRF, base_mrf + mlen), shadow_c));
1124 mlen += reg_width;
1125 }
1126
1127 /* Set up the LOD info */
1128 switch (ir->op) {
1129 case ir_tex:
1130 case ir_lod:
1131 break;
1132 case ir_txb:
1133 emit(MOV(fs_reg(MRF, base_mrf + mlen), lod));
1134 mlen += reg_width;
1135 break;
1136 case ir_txl:
1137 emit(MOV(fs_reg(MRF, base_mrf + mlen), lod));
1138 mlen += reg_width;
1139 break;
1140 case ir_txd: {
1141 if (dispatch_width == 16)
1142 fail("Gen7 does not support sample_d/sample_d_c in SIMD16 mode.");
1143
1144 /* Load dPdx and the coordinate together:
1145 * [hdr], [ref], x, dPdx.x, dPdy.x, y, dPdx.y, dPdy.y, z, dPdx.z, dPdy.z
1146 */
1147 for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
1148 emit(MOV(fs_reg(MRF, base_mrf + mlen), coordinate));
1149 coordinate.reg_offset++;
1150 mlen += reg_width;
1151
1152 /* For cube map array, the coordinate is (u,v,r,ai) but there are
1153 * only derivatives for (u, v, r).
1154 */
1155 if (i < ir->lod_info.grad.dPdx->type->vector_elements) {
1156 emit(MOV(fs_reg(MRF, base_mrf + mlen), lod));
1157 lod.reg_offset++;
1158 mlen += reg_width;
1159
1160 emit(MOV(fs_reg(MRF, base_mrf + mlen), lod2));
1161 lod2.reg_offset++;
1162 mlen += reg_width;
1163 }
1164 }
1165 break;
1166 }
1167 case ir_txs:
1168 emit(MOV(fs_reg(MRF, base_mrf + mlen, BRW_REGISTER_TYPE_UD), lod));
1169 mlen += reg_width;
1170 break;
1171 case ir_txf:
1172 /* It appears that the ld instruction used for txf does its
1173 * address bounds check before adding in the offset. To work
1174 * around this, just add the integer offset to the integer texel
1175 * coordinate, and don't put the offset in the header.
1176 */
1177 if (ir->offset) {
1178 ir_constant *offset = ir->offset->as_constant();
1179 offsets[0] = offset->value.i[0];
1180 offsets[1] = offset->value.i[1];
1181 offsets[2] = offset->value.i[2];
1182 } else {
1183 memset(offsets, 0, sizeof(offsets));
1184 }
1185
1186 /* Unfortunately, the parameters for LD are intermixed: u, lod, v, r. */
1187 emit(ADD(fs_reg(MRF, base_mrf + mlen, BRW_REGISTER_TYPE_D),
1188 coordinate, offsets[0]));
1189 coordinate.reg_offset++;
1190 mlen += reg_width;
1191
1192 emit(MOV(fs_reg(MRF, base_mrf + mlen, BRW_REGISTER_TYPE_D), lod));
1193 mlen += reg_width;
1194
1195 for (int i = 1; i < ir->coordinate->type->vector_elements; i++) {
1196 emit(ADD(fs_reg(MRF, base_mrf + mlen, BRW_REGISTER_TYPE_D),
1197 coordinate, offsets[i]));
1198 coordinate.reg_offset++;
1199 mlen += reg_width;
1200 }
1201 break;
1202 case ir_txf_ms:
1203 emit(MOV(fs_reg(MRF, base_mrf + mlen, BRW_REGISTER_TYPE_UD), sample_index));
1204 mlen += reg_width;
1205
1206 /* constant zero MCS; we arrange to never actually have a compressed
1207 * multisample surface here for now. TODO: issue ld_mcs to get this first,
1208 * if we ever support texturing from compressed multisample surfaces
1209 */
1210 emit(MOV(fs_reg(MRF, base_mrf + mlen, BRW_REGISTER_TYPE_UD), fs_reg(0u)));
1211 mlen += reg_width;
1212
1213 /* there is no offsetting for this message; just copy in the integer
1214 * texture coordinates
1215 */
1216 for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
1217 emit(MOV(fs_reg(MRF, base_mrf + mlen, BRW_REGISTER_TYPE_D),
1218 coordinate));
1219 coordinate.reg_offset++;
1220 mlen += reg_width;
1221 }
1222 break;
1223 }
1224
1225 /* Set up the coordinate (except for cases where it was done above) */
1226 if (ir->op != ir_txd && ir->op != ir_txs && ir->op != ir_txf && ir->op != ir_txf_ms) {
1227 for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
1228 emit(MOV(fs_reg(MRF, base_mrf + mlen), coordinate));
1229 coordinate.reg_offset++;
1230 mlen += reg_width;
1231 }
1232 }
1233
1234 /* Generate the SEND */
1235 fs_inst *inst = NULL;
1236 switch (ir->op) {
1237 case ir_tex: inst = emit(SHADER_OPCODE_TEX, dst); break;
1238 case ir_txb: inst = emit(FS_OPCODE_TXB, dst); break;
1239 case ir_txl: inst = emit(SHADER_OPCODE_TXL, dst); break;
1240 case ir_txd: inst = emit(SHADER_OPCODE_TXD, dst); break;
1241 case ir_txf: inst = emit(SHADER_OPCODE_TXF, dst); break;
1242 case ir_txf_ms: inst = emit(SHADER_OPCODE_TXF_MS, dst); break;
1243 case ir_txs: inst = emit(SHADER_OPCODE_TXS, dst); break;
1244 case ir_lod: inst = emit(SHADER_OPCODE_LOD, dst); break;
1245 }
1246 inst->base_mrf = base_mrf;
1247 inst->mlen = mlen;
1248 inst->header_present = header_present;
1249 inst->regs_written = 4;
1250
1251 if (mlen > 11) {
1252 fail("Message length >11 disallowed by hardware\n");
1253 }
1254
1255 return inst;
1256 }
1257
1258 fs_reg
1259 fs_visitor::rescale_texcoord(ir_texture *ir, fs_reg coordinate,
1260 bool is_rect, int sampler, int texunit)
1261 {
1262 fs_inst *inst = NULL;
1263 bool needs_gl_clamp = true;
1264 fs_reg scale_x, scale_y;
1265
1266 /* The 965 requires the EU to do the normalization of GL rectangle
1267 * texture coordinates. We use the program parameter state
1268 * tracking to get the scaling factor.
1269 */
1270 if (is_rect &&
1271 (intel->gen < 6 ||
1272 (intel->gen >= 6 && (c->key.tex.gl_clamp_mask[0] & (1 << sampler) ||
1273 c->key.tex.gl_clamp_mask[1] & (1 << sampler))))) {
1274 struct gl_program_parameter_list *params = fp->Base.Parameters;
1275 int tokens[STATE_LENGTH] = {
1276 STATE_INTERNAL,
1277 STATE_TEXRECT_SCALE,
1278 texunit,
1279 0,
1280 0
1281 };
1282
1283 if (dispatch_width == 16) {
1284 fail("rectangle scale uniform setup not supported on 16-wide\n");
1285 return coordinate;
1286 }
1287
1288 scale_x = fs_reg(UNIFORM, c->prog_data.nr_params);
1289 scale_y = fs_reg(UNIFORM, c->prog_data.nr_params + 1);
1290
1291 GLuint index = _mesa_add_state_reference(params,
1292 (gl_state_index *)tokens);
1293 c->prog_data.param[c->prog_data.nr_params++] =
1294 &fp->Base.Parameters->ParameterValues[index][0].f;
1295 c->prog_data.param[c->prog_data.nr_params++] =
1296 &fp->Base.Parameters->ParameterValues[index][1].f;
1297 }
1298
1299 /* The 965 requires the EU to do the normalization of GL rectangle
1300 * texture coordinates. We use the program parameter state
1301 * tracking to get the scaling factor.
1302 */
1303 if (intel->gen < 6 && is_rect) {
1304 fs_reg dst = fs_reg(this, ir->coordinate->type);
1305 fs_reg src = coordinate;
1306 coordinate = dst;
1307
1308 emit(MUL(dst, src, scale_x));
1309 dst.reg_offset++;
1310 src.reg_offset++;
1311 emit(MUL(dst, src, scale_y));
1312 } else if (is_rect) {
1313 /* On gen6+, the sampler handles the rectangle coordinates
1314 * natively, without needing rescaling. But that means we have
1315 * to do GL_CLAMP clamping at the [0, width], [0, height] scale,
1316 * not [0, 1] like the default case below.
1317 */
1318 needs_gl_clamp = false;
1319
1320 for (int i = 0; i < 2; i++) {
1321 if (c->key.tex.gl_clamp_mask[i] & (1 << sampler)) {
1322 fs_reg chan = coordinate;
1323 chan.reg_offset += i;
1324
1325 inst = emit(BRW_OPCODE_SEL, chan, chan, brw_imm_f(0.0));
1326 inst->conditional_mod = BRW_CONDITIONAL_G;
1327
1328 /* Our parameter comes in as 1.0/width or 1.0/height,
1329 * because that's what people normally want for doing
1330 * texture rectangle handling. We need width or height
1331 * for clamping, but we don't care enough to make a new
1332 * parameter type, so just invert back.
1333 */
1334 fs_reg limit = fs_reg(this, glsl_type::float_type);
1335 emit(MOV(limit, i == 0 ? scale_x : scale_y));
1336 emit(SHADER_OPCODE_RCP, limit, limit);
1337
1338 inst = emit(BRW_OPCODE_SEL, chan, chan, limit);
1339 inst->conditional_mod = BRW_CONDITIONAL_L;
1340 }
1341 }
1342 }
1343
1344 if (ir->coordinate && needs_gl_clamp) {
1345 for (unsigned int i = 0;
1346 i < MIN2(ir->coordinate->type->vector_elements, 3); i++) {
1347 if (c->key.tex.gl_clamp_mask[i] & (1 << sampler)) {
1348 fs_reg chan = coordinate;
1349 chan.reg_offset += i;
1350
1351 fs_inst *inst = emit(MOV(chan, chan));
1352 inst->saturate = true;
1353 }
1354 }
1355 }
1356 return coordinate;
1357 }
1358
1359 void
1360 fs_visitor::visit(ir_texture *ir)
1361 {
1362 fs_inst *inst = NULL;
1363
1364 int sampler = _mesa_get_sampler_uniform_value(ir->sampler, prog, &fp->Base);
1365 /* FINISHME: We're failing to recompile our programs when the sampler is
1366 * updated. This only matters for the texture rectangle scale parameters
1367 * (pre-gen6, or gen6+ with GL_CLAMP).
1368 */
1369 int texunit = fp->Base.SamplerUnits[sampler];
1370
1371 /* Should be lowered by do_lower_texture_projection */
1372 assert(!ir->projector);
1373
1374 /* Generate code to compute all the subexpression trees. This has to be
1375 * done before loading any values into MRFs for the sampler message since
1376 * generating these values may involve SEND messages that need the MRFs.
1377 */
1378 fs_reg coordinate;
1379 if (ir->coordinate) {
1380 ir->coordinate->accept(this);
1381
1382 coordinate = rescale_texcoord(ir, this->result,
1383 ir->sampler->type->sampler_dimensionality ==
1384 GLSL_SAMPLER_DIM_RECT,
1385 sampler, texunit);
1386 }
1387
1388 fs_reg shadow_comparitor;
1389 if (ir->shadow_comparitor) {
1390 ir->shadow_comparitor->accept(this);
1391 shadow_comparitor = this->result;
1392 }
1393
1394 fs_reg lod, lod2, sample_index;
1395 switch (ir->op) {
1396 case ir_tex:
1397 case ir_lod:
1398 break;
1399 case ir_txb:
1400 ir->lod_info.bias->accept(this);
1401 lod = this->result;
1402 break;
1403 case ir_txd:
1404 ir->lod_info.grad.dPdx->accept(this);
1405 lod = this->result;
1406
1407 ir->lod_info.grad.dPdy->accept(this);
1408 lod2 = this->result;
1409 break;
1410 case ir_txf:
1411 case ir_txl:
1412 case ir_txs:
1413 ir->lod_info.lod->accept(this);
1414 lod = this->result;
1415 break;
1416 case ir_txf_ms:
1417 ir->lod_info.sample_index->accept(this);
1418 sample_index = this->result;
1419 break;
1420 };
1421
1422 /* Writemasking doesn't eliminate channels on SIMD8 texture
1423 * samples, so don't worry about them.
1424 */
1425 fs_reg dst = fs_reg(this, glsl_type::get_instance(ir->type->base_type, 4, 1));
1426
1427 if (intel->gen >= 7) {
1428 inst = emit_texture_gen7(ir, dst, coordinate, shadow_comparitor,
1429 lod, lod2, sample_index);
1430 } else if (intel->gen >= 5) {
1431 inst = emit_texture_gen5(ir, dst, coordinate, shadow_comparitor,
1432 lod, lod2, sample_index);
1433 } else {
1434 inst = emit_texture_gen4(ir, dst, coordinate, shadow_comparitor,
1435 lod, lod2);
1436 }
1437
1438 /* The header is set up by generate_tex() when necessary. */
1439 inst->src[0] = reg_undef;
1440
1441 if (ir->offset != NULL && ir->op != ir_txf)
1442 inst->texture_offset = brw_texture_offset(ir->offset->as_constant());
1443
1444 inst->sampler = sampler;
1445
1446 if (ir->shadow_comparitor)
1447 inst->shadow_compare = true;
1448
1449 /* fixup #layers for cube map arrays */
1450 if (ir->op == ir_txs) {
1451 glsl_type const *type = ir->sampler->type;
1452 if (type->sampler_dimensionality == GLSL_SAMPLER_DIM_CUBE &&
1453 type->sampler_array) {
1454 fs_reg depth = dst;
1455 depth.reg_offset = 2;
1456 emit_math(SHADER_OPCODE_INT_QUOTIENT, depth, depth, fs_reg(6));
1457 }
1458 }
1459
1460 swizzle_result(ir, dst, sampler);
1461 }
1462
1463 /**
1464 * Swizzle the result of a texture result. This is necessary for
1465 * EXT_texture_swizzle as well as DEPTH_TEXTURE_MODE for shadow comparisons.
1466 */
1467 void
1468 fs_visitor::swizzle_result(ir_texture *ir, fs_reg orig_val, int sampler)
1469 {
1470 this->result = orig_val;
1471
1472 if (ir->op == ir_txs || ir->op == ir_lod)
1473 return;
1474
1475 if (ir->type == glsl_type::float_type) {
1476 /* Ignore DEPTH_TEXTURE_MODE swizzling. */
1477 assert(ir->sampler->type->sampler_shadow);
1478 } else if (c->key.tex.swizzles[sampler] != SWIZZLE_NOOP) {
1479 fs_reg swizzled_result = fs_reg(this, glsl_type::vec4_type);
1480
1481 for (int i = 0; i < 4; i++) {
1482 int swiz = GET_SWZ(c->key.tex.swizzles[sampler], i);
1483 fs_reg l = swizzled_result;
1484 l.reg_offset += i;
1485
1486 if (swiz == SWIZZLE_ZERO) {
1487 emit(MOV(l, fs_reg(0.0f)));
1488 } else if (swiz == SWIZZLE_ONE) {
1489 emit(MOV(l, fs_reg(1.0f)));
1490 } else {
1491 fs_reg r = orig_val;
1492 r.reg_offset += GET_SWZ(c->key.tex.swizzles[sampler], i);
1493 emit(MOV(l, r));
1494 }
1495 }
1496 this->result = swizzled_result;
1497 }
1498 }
1499
1500 void
1501 fs_visitor::visit(ir_swizzle *ir)
1502 {
1503 ir->val->accept(this);
1504 fs_reg val = this->result;
1505
1506 if (ir->type->vector_elements == 1) {
1507 this->result.reg_offset += ir->mask.x;
1508 return;
1509 }
1510
1511 fs_reg result = fs_reg(this, ir->type);
1512 this->result = result;
1513
1514 for (unsigned int i = 0; i < ir->type->vector_elements; i++) {
1515 fs_reg channel = val;
1516 int swiz = 0;
1517
1518 switch (i) {
1519 case 0:
1520 swiz = ir->mask.x;
1521 break;
1522 case 1:
1523 swiz = ir->mask.y;
1524 break;
1525 case 2:
1526 swiz = ir->mask.z;
1527 break;
1528 case 3:
1529 swiz = ir->mask.w;
1530 break;
1531 }
1532
1533 channel.reg_offset += swiz;
1534 emit(MOV(result, channel));
1535 result.reg_offset++;
1536 }
1537 }
1538
1539 void
1540 fs_visitor::visit(ir_discard *ir)
1541 {
1542 assert(ir->condition == NULL); /* FINISHME */
1543
1544 /* We track our discarded pixels in f0.1. By predicating on it, we can
1545 * update just the flag bits that aren't yet discarded. By emitting a
1546 * CMP of g0 != g0, all our currently executing channels will get turned
1547 * off.
1548 */
1549 fs_reg some_reg = fs_reg(retype(brw_vec8_grf(0, 0),
1550 BRW_REGISTER_TYPE_UW));
1551 fs_inst *cmp = emit(CMP(reg_null_f, some_reg, some_reg,
1552 BRW_CONDITIONAL_NZ));
1553 cmp->predicate = BRW_PREDICATE_NORMAL;
1554 cmp->flag_subreg = 1;
1555
1556 if (intel->gen >= 6) {
1557 /* For performance, after a discard, jump to the end of the shader.
1558 * However, many people will do foliage by discarding based on a
1559 * texture's alpha mask, and then continue on to texture with the
1560 * remaining pixels. To avoid trashing the derivatives for those
1561 * texture samples, we'll only jump if all of the pixels in the subspan
1562 * have been discarded.
1563 */
1564 fs_inst *discard_jump = emit(FS_OPCODE_DISCARD_JUMP);
1565 discard_jump->flag_subreg = 1;
1566 discard_jump->predicate = BRW_PREDICATE_ALIGN1_ANY4H;
1567 discard_jump->predicate_inverse = true;
1568 }
1569 }
1570
1571 void
1572 fs_visitor::visit(ir_constant *ir)
1573 {
1574 /* Set this->result to reg at the bottom of the function because some code
1575 * paths will cause this visitor to be applied to other fields. This will
1576 * cause the value stored in this->result to be modified.
1577 *
1578 * Make reg constant so that it doesn't get accidentally modified along the
1579 * way. Yes, I actually had this problem. :(
1580 */
1581 const fs_reg reg(this, ir->type);
1582 fs_reg dst_reg = reg;
1583
1584 if (ir->type->is_array()) {
1585 const unsigned size = type_size(ir->type->fields.array);
1586
1587 for (unsigned i = 0; i < ir->type->length; i++) {
1588 ir->array_elements[i]->accept(this);
1589 fs_reg src_reg = this->result;
1590
1591 dst_reg.type = src_reg.type;
1592 for (unsigned j = 0; j < size; j++) {
1593 emit(MOV(dst_reg, src_reg));
1594 src_reg.reg_offset++;
1595 dst_reg.reg_offset++;
1596 }
1597 }
1598 } else if (ir->type->is_record()) {
1599 foreach_list(node, &ir->components) {
1600 ir_constant *const field = (ir_constant *) node;
1601 const unsigned size = type_size(field->type);
1602
1603 field->accept(this);
1604 fs_reg src_reg = this->result;
1605
1606 dst_reg.type = src_reg.type;
1607 for (unsigned j = 0; j < size; j++) {
1608 emit(MOV(dst_reg, src_reg));
1609 src_reg.reg_offset++;
1610 dst_reg.reg_offset++;
1611 }
1612 }
1613 } else {
1614 const unsigned size = type_size(ir->type);
1615
1616 for (unsigned i = 0; i < size; i++) {
1617 switch (ir->type->base_type) {
1618 case GLSL_TYPE_FLOAT:
1619 emit(MOV(dst_reg, fs_reg(ir->value.f[i])));
1620 break;
1621 case GLSL_TYPE_UINT:
1622 emit(MOV(dst_reg, fs_reg(ir->value.u[i])));
1623 break;
1624 case GLSL_TYPE_INT:
1625 emit(MOV(dst_reg, fs_reg(ir->value.i[i])));
1626 break;
1627 case GLSL_TYPE_BOOL:
1628 emit(MOV(dst_reg, fs_reg((int)ir->value.b[i])));
1629 break;
1630 default:
1631 assert(!"Non-float/uint/int/bool constant");
1632 }
1633 dst_reg.reg_offset++;
1634 }
1635 }
1636
1637 this->result = reg;
1638 }
1639
1640 void
1641 fs_visitor::emit_bool_to_cond_code(ir_rvalue *ir)
1642 {
1643 ir_expression *expr = ir->as_expression();
1644
1645 if (expr) {
1646 fs_reg op[2];
1647 fs_inst *inst;
1648
1649 assert(expr->get_num_operands() <= 2);
1650 for (unsigned int i = 0; i < expr->get_num_operands(); i++) {
1651 assert(expr->operands[i]->type->is_scalar());
1652
1653 expr->operands[i]->accept(this);
1654 op[i] = this->result;
1655
1656 resolve_ud_negate(&op[i]);
1657 }
1658
1659 switch (expr->operation) {
1660 case ir_unop_logic_not:
1661 inst = emit(AND(reg_null_d, op[0], fs_reg(1)));
1662 inst->conditional_mod = BRW_CONDITIONAL_Z;
1663 break;
1664
1665 case ir_binop_logic_xor:
1666 case ir_binop_logic_or:
1667 case ir_binop_logic_and:
1668 goto out;
1669
1670 case ir_unop_f2b:
1671 if (intel->gen >= 6) {
1672 emit(CMP(reg_null_d, op[0], fs_reg(0.0f), BRW_CONDITIONAL_NZ));
1673 } else {
1674 inst = emit(MOV(reg_null_f, op[0]));
1675 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1676 }
1677 break;
1678
1679 case ir_unop_i2b:
1680 if (intel->gen >= 6) {
1681 emit(CMP(reg_null_d, op[0], fs_reg(0), BRW_CONDITIONAL_NZ));
1682 } else {
1683 inst = emit(MOV(reg_null_d, op[0]));
1684 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1685 }
1686 break;
1687
1688 case ir_binop_greater:
1689 case ir_binop_gequal:
1690 case ir_binop_less:
1691 case ir_binop_lequal:
1692 case ir_binop_equal:
1693 case ir_binop_all_equal:
1694 case ir_binop_nequal:
1695 case ir_binop_any_nequal:
1696 resolve_bool_comparison(expr->operands[0], &op[0]);
1697 resolve_bool_comparison(expr->operands[1], &op[1]);
1698
1699 emit(CMP(reg_null_d, op[0], op[1],
1700 brw_conditional_for_comparison(expr->operation)));
1701 break;
1702
1703 default:
1704 assert(!"not reached");
1705 fail("bad cond code\n");
1706 break;
1707 }
1708 return;
1709 }
1710
1711 out:
1712 ir->accept(this);
1713
1714 fs_inst *inst = emit(AND(reg_null_d, this->result, fs_reg(1)));
1715 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1716 }
1717
1718 /**
1719 * Emit a gen6 IF statement with the comparison folded into the IF
1720 * instruction.
1721 */
1722 void
1723 fs_visitor::emit_if_gen6(ir_if *ir)
1724 {
1725 ir_expression *expr = ir->condition->as_expression();
1726
1727 if (expr) {
1728 fs_reg op[2];
1729 fs_inst *inst;
1730 fs_reg temp;
1731
1732 assert(expr->get_num_operands() <= 2);
1733 for (unsigned int i = 0; i < expr->get_num_operands(); i++) {
1734 assert(expr->operands[i]->type->is_scalar());
1735
1736 expr->operands[i]->accept(this);
1737 op[i] = this->result;
1738 }
1739
1740 switch (expr->operation) {
1741 case ir_unop_logic_not:
1742 case ir_binop_logic_xor:
1743 case ir_binop_logic_or:
1744 case ir_binop_logic_and:
1745 /* For operations on bool arguments, only the low bit of the bool is
1746 * valid, and the others are undefined. Fall back to the condition
1747 * code path.
1748 */
1749 break;
1750
1751 case ir_unop_f2b:
1752 inst = emit(BRW_OPCODE_IF, reg_null_f, op[0], fs_reg(0));
1753 inst->conditional_mod = BRW_CONDITIONAL_NZ;
1754 return;
1755
1756 case ir_unop_i2b:
1757 emit(IF(op[0], fs_reg(0), BRW_CONDITIONAL_NZ));
1758 return;
1759
1760 case ir_binop_greater:
1761 case ir_binop_gequal:
1762 case ir_binop_less:
1763 case ir_binop_lequal:
1764 case ir_binop_equal:
1765 case ir_binop_all_equal:
1766 case ir_binop_nequal:
1767 case ir_binop_any_nequal:
1768 resolve_bool_comparison(expr->operands[0], &op[0]);
1769 resolve_bool_comparison(expr->operands[1], &op[1]);
1770
1771 emit(IF(op[0], op[1],
1772 brw_conditional_for_comparison(expr->operation)));
1773 return;
1774 default:
1775 assert(!"not reached");
1776 emit(IF(op[0], fs_reg(0), BRW_CONDITIONAL_NZ));
1777 fail("bad condition\n");
1778 return;
1779 }
1780 }
1781
1782 emit_bool_to_cond_code(ir->condition);
1783 fs_inst *inst = emit(BRW_OPCODE_IF);
1784 inst->predicate = BRW_PREDICATE_NORMAL;
1785 }
1786
1787 void
1788 fs_visitor::visit(ir_if *ir)
1789 {
1790 if (intel->gen < 6 && dispatch_width == 16) {
1791 fail("Can't support (non-uniform) control flow on 16-wide\n");
1792 }
1793
1794 /* Don't point the annotation at the if statement, because then it plus
1795 * the then and else blocks get printed.
1796 */
1797 this->base_ir = ir->condition;
1798
1799 if (intel->gen == 6) {
1800 emit_if_gen6(ir);
1801 } else {
1802 emit_bool_to_cond_code(ir->condition);
1803
1804 emit(IF(BRW_PREDICATE_NORMAL));
1805 }
1806
1807 foreach_list(node, &ir->then_instructions) {
1808 ir_instruction *ir = (ir_instruction *)node;
1809 this->base_ir = ir;
1810
1811 ir->accept(this);
1812 }
1813
1814 if (!ir->else_instructions.is_empty()) {
1815 emit(BRW_OPCODE_ELSE);
1816
1817 foreach_list(node, &ir->else_instructions) {
1818 ir_instruction *ir = (ir_instruction *)node;
1819 this->base_ir = ir;
1820
1821 ir->accept(this);
1822 }
1823 }
1824
1825 emit(BRW_OPCODE_ENDIF);
1826 }
1827
1828 void
1829 fs_visitor::visit(ir_loop *ir)
1830 {
1831 fs_reg counter = reg_undef;
1832
1833 if (intel->gen < 6 && dispatch_width == 16) {
1834 fail("Can't support (non-uniform) control flow on 16-wide\n");
1835 }
1836
1837 if (ir->counter) {
1838 this->base_ir = ir->counter;
1839 ir->counter->accept(this);
1840 counter = *(variable_storage(ir->counter));
1841
1842 if (ir->from) {
1843 this->base_ir = ir->from;
1844 ir->from->accept(this);
1845
1846 emit(MOV(counter, this->result));
1847 }
1848 }
1849
1850 this->base_ir = NULL;
1851 emit(BRW_OPCODE_DO);
1852
1853 if (ir->to) {
1854 this->base_ir = ir->to;
1855 ir->to->accept(this);
1856
1857 emit(CMP(reg_null_d, counter, this->result,
1858 brw_conditional_for_comparison(ir->cmp)));
1859
1860 fs_inst *inst = emit(BRW_OPCODE_BREAK);
1861 inst->predicate = BRW_PREDICATE_NORMAL;
1862 }
1863
1864 foreach_list(node, &ir->body_instructions) {
1865 ir_instruction *ir = (ir_instruction *)node;
1866
1867 this->base_ir = ir;
1868 ir->accept(this);
1869 }
1870
1871 if (ir->increment) {
1872 this->base_ir = ir->increment;
1873 ir->increment->accept(this);
1874 emit(ADD(counter, counter, this->result));
1875 }
1876
1877 this->base_ir = NULL;
1878 emit(BRW_OPCODE_WHILE);
1879 }
1880
1881 void
1882 fs_visitor::visit(ir_loop_jump *ir)
1883 {
1884 switch (ir->mode) {
1885 case ir_loop_jump::jump_break:
1886 emit(BRW_OPCODE_BREAK);
1887 break;
1888 case ir_loop_jump::jump_continue:
1889 emit(BRW_OPCODE_CONTINUE);
1890 break;
1891 }
1892 }
1893
1894 void
1895 fs_visitor::visit(ir_call *ir)
1896 {
1897 assert(!"FINISHME");
1898 }
1899
1900 void
1901 fs_visitor::visit(ir_return *ir)
1902 {
1903 assert(!"FINISHME");
1904 }
1905
1906 void
1907 fs_visitor::visit(ir_function *ir)
1908 {
1909 /* Ignore function bodies other than main() -- we shouldn't see calls to
1910 * them since they should all be inlined before we get to ir_to_mesa.
1911 */
1912 if (strcmp(ir->name, "main") == 0) {
1913 const ir_function_signature *sig;
1914 exec_list empty;
1915
1916 sig = ir->matching_signature(&empty);
1917
1918 assert(sig);
1919
1920 foreach_list(node, &sig->body) {
1921 ir_instruction *ir = (ir_instruction *)node;
1922 this->base_ir = ir;
1923
1924 ir->accept(this);
1925 }
1926 }
1927 }
1928
1929 void
1930 fs_visitor::visit(ir_function_signature *ir)
1931 {
1932 assert(!"not reached");
1933 (void)ir;
1934 }
1935
1936 fs_inst *
1937 fs_visitor::emit(fs_inst inst)
1938 {
1939 fs_inst *list_inst = new(mem_ctx) fs_inst;
1940 *list_inst = inst;
1941 emit(list_inst);
1942 return list_inst;
1943 }
1944
1945 fs_inst *
1946 fs_visitor::emit(fs_inst *inst)
1947 {
1948 if (force_uncompressed_stack > 0)
1949 inst->force_uncompressed = true;
1950 else if (force_sechalf_stack > 0)
1951 inst->force_sechalf = true;
1952
1953 inst->annotation = this->current_annotation;
1954 inst->ir = this->base_ir;
1955
1956 this->instructions.push_tail(inst);
1957
1958 return inst;
1959 }
1960
1961 void
1962 fs_visitor::emit(exec_list list)
1963 {
1964 foreach_list_safe(node, &list) {
1965 fs_inst *inst = (fs_inst *)node;
1966 inst->remove();
1967 emit(inst);
1968 }
1969 }
1970
1971 /** Emits a dummy fragment shader consisting of magenta for bringup purposes. */
1972 void
1973 fs_visitor::emit_dummy_fs()
1974 {
1975 int reg_width = dispatch_width / 8;
1976
1977 /* Everyone's favorite color. */
1978 emit(MOV(fs_reg(MRF, 2 + 0 * reg_width), fs_reg(1.0f)));
1979 emit(MOV(fs_reg(MRF, 2 + 1 * reg_width), fs_reg(0.0f)));
1980 emit(MOV(fs_reg(MRF, 2 + 2 * reg_width), fs_reg(1.0f)));
1981 emit(MOV(fs_reg(MRF, 2 + 3 * reg_width), fs_reg(0.0f)));
1982
1983 fs_inst *write;
1984 write = emit(FS_OPCODE_FB_WRITE, fs_reg(0), fs_reg(0));
1985 write->base_mrf = 2;
1986 write->mlen = 4 * reg_width;
1987 write->eot = true;
1988 }
1989
1990 /* The register location here is relative to the start of the URB
1991 * data. It will get adjusted to be a real location before
1992 * generate_code() time.
1993 */
1994 struct brw_reg
1995 fs_visitor::interp_reg(int location, int channel)
1996 {
1997 int regnr = urb_setup[location] * 2 + channel / 2;
1998 int stride = (channel & 1) * 4;
1999
2000 assert(urb_setup[location] != -1);
2001
2002 return brw_vec1_grf(regnr, stride);
2003 }
2004
2005 /** Emits the interpolation for the varying inputs. */
2006 void
2007 fs_visitor::emit_interpolation_setup_gen4()
2008 {
2009 this->current_annotation = "compute pixel centers";
2010 this->pixel_x = fs_reg(this, glsl_type::uint_type);
2011 this->pixel_y = fs_reg(this, glsl_type::uint_type);
2012 this->pixel_x.type = BRW_REGISTER_TYPE_UW;
2013 this->pixel_y.type = BRW_REGISTER_TYPE_UW;
2014
2015 emit(FS_OPCODE_PIXEL_X, this->pixel_x);
2016 emit(FS_OPCODE_PIXEL_Y, this->pixel_y);
2017
2018 this->current_annotation = "compute pixel deltas from v0";
2019 if (brw->has_pln) {
2020 this->delta_x[BRW_WM_PERSPECTIVE_PIXEL_BARYCENTRIC] =
2021 fs_reg(this, glsl_type::vec2_type);
2022 this->delta_y[BRW_WM_PERSPECTIVE_PIXEL_BARYCENTRIC] =
2023 this->delta_x[BRW_WM_PERSPECTIVE_PIXEL_BARYCENTRIC];
2024 this->delta_y[BRW_WM_PERSPECTIVE_PIXEL_BARYCENTRIC].reg_offset++;
2025 } else {
2026 this->delta_x[BRW_WM_PERSPECTIVE_PIXEL_BARYCENTRIC] =
2027 fs_reg(this, glsl_type::float_type);
2028 this->delta_y[BRW_WM_PERSPECTIVE_PIXEL_BARYCENTRIC] =
2029 fs_reg(this, glsl_type::float_type);
2030 }
2031 emit(ADD(this->delta_x[BRW_WM_PERSPECTIVE_PIXEL_BARYCENTRIC],
2032 this->pixel_x, fs_reg(negate(brw_vec1_grf(1, 0)))));
2033 emit(ADD(this->delta_y[BRW_WM_PERSPECTIVE_PIXEL_BARYCENTRIC],
2034 this->pixel_y, fs_reg(negate(brw_vec1_grf(1, 1)))));
2035
2036 this->current_annotation = "compute pos.w and 1/pos.w";
2037 /* Compute wpos.w. It's always in our setup, since it's needed to
2038 * interpolate the other attributes.
2039 */
2040 this->wpos_w = fs_reg(this, glsl_type::float_type);
2041 emit(FS_OPCODE_LINTERP, wpos_w,
2042 this->delta_x[BRW_WM_PERSPECTIVE_PIXEL_BARYCENTRIC],
2043 this->delta_y[BRW_WM_PERSPECTIVE_PIXEL_BARYCENTRIC],
2044 interp_reg(VARYING_SLOT_POS, 3));
2045 /* Compute the pixel 1/W value from wpos.w. */
2046 this->pixel_w = fs_reg(this, glsl_type::float_type);
2047 emit_math(SHADER_OPCODE_RCP, this->pixel_w, wpos_w);
2048 this->current_annotation = NULL;
2049 }
2050
2051 /** Emits the interpolation for the varying inputs. */
2052 void
2053 fs_visitor::emit_interpolation_setup_gen6()
2054 {
2055 struct brw_reg g1_uw = retype(brw_vec1_grf(1, 0), BRW_REGISTER_TYPE_UW);
2056
2057 /* If the pixel centers end up used, the setup is the same as for gen4. */
2058 this->current_annotation = "compute pixel centers";
2059 fs_reg int_pixel_x = fs_reg(this, glsl_type::uint_type);
2060 fs_reg int_pixel_y = fs_reg(this, glsl_type::uint_type);
2061 int_pixel_x.type = BRW_REGISTER_TYPE_UW;
2062 int_pixel_y.type = BRW_REGISTER_TYPE_UW;
2063 emit(ADD(int_pixel_x,
2064 fs_reg(stride(suboffset(g1_uw, 4), 2, 4, 0)),
2065 fs_reg(brw_imm_v(0x10101010))));
2066 emit(ADD(int_pixel_y,
2067 fs_reg(stride(suboffset(g1_uw, 5), 2, 4, 0)),
2068 fs_reg(brw_imm_v(0x11001100))));
2069
2070 /* As of gen6, we can no longer mix float and int sources. We have
2071 * to turn the integer pixel centers into floats for their actual
2072 * use.
2073 */
2074 this->pixel_x = fs_reg(this, glsl_type::float_type);
2075 this->pixel_y = fs_reg(this, glsl_type::float_type);
2076 emit(MOV(this->pixel_x, int_pixel_x));
2077 emit(MOV(this->pixel_y, int_pixel_y));
2078
2079 this->current_annotation = "compute pos.w";
2080 this->pixel_w = fs_reg(brw_vec8_grf(c->source_w_reg, 0));
2081 this->wpos_w = fs_reg(this, glsl_type::float_type);
2082 emit_math(SHADER_OPCODE_RCP, this->wpos_w, this->pixel_w);
2083
2084 for (int i = 0; i < BRW_WM_BARYCENTRIC_INTERP_MODE_COUNT; ++i) {
2085 uint8_t reg = c->barycentric_coord_reg[i];
2086 this->delta_x[i] = fs_reg(brw_vec8_grf(reg, 0));
2087 this->delta_y[i] = fs_reg(brw_vec8_grf(reg + 1, 0));
2088 }
2089
2090 this->current_annotation = NULL;
2091 }
2092
2093 void
2094 fs_visitor::emit_color_write(int target, int index, int first_color_mrf)
2095 {
2096 int reg_width = dispatch_width / 8;
2097 fs_inst *inst;
2098 fs_reg color = outputs[target];
2099 fs_reg mrf;
2100
2101 /* If there's no color data to be written, skip it. */
2102 if (color.file == BAD_FILE)
2103 return;
2104
2105 color.reg_offset += index;
2106
2107 if (dispatch_width == 8 || intel->gen >= 6) {
2108 /* SIMD8 write looks like:
2109 * m + 0: r0
2110 * m + 1: r1
2111 * m + 2: g0
2112 * m + 3: g1
2113 *
2114 * gen6 SIMD16 DP write looks like:
2115 * m + 0: r0
2116 * m + 1: r1
2117 * m + 2: g0
2118 * m + 3: g1
2119 * m + 4: b0
2120 * m + 5: b1
2121 * m + 6: a0
2122 * m + 7: a1
2123 */
2124 inst = emit(MOV(fs_reg(MRF, first_color_mrf + index * reg_width,
2125 color.type),
2126 color));
2127 inst->saturate = c->key.clamp_fragment_color;
2128 } else {
2129 /* pre-gen6 SIMD16 single source DP write looks like:
2130 * m + 0: r0
2131 * m + 1: g0
2132 * m + 2: b0
2133 * m + 3: a0
2134 * m + 4: r1
2135 * m + 5: g1
2136 * m + 6: b1
2137 * m + 7: a1
2138 */
2139 if (brw->has_compr4) {
2140 /* By setting the high bit of the MRF register number, we
2141 * indicate that we want COMPR4 mode - instead of doing the
2142 * usual destination + 1 for the second half we get
2143 * destination + 4.
2144 */
2145 inst = emit(MOV(fs_reg(MRF, BRW_MRF_COMPR4 + first_color_mrf + index,
2146 color.type),
2147 color));
2148 inst->saturate = c->key.clamp_fragment_color;
2149 } else {
2150 push_force_uncompressed();
2151 inst = emit(MOV(fs_reg(MRF, first_color_mrf + index, color.type),
2152 color));
2153 inst->saturate = c->key.clamp_fragment_color;
2154 pop_force_uncompressed();
2155
2156 push_force_sechalf();
2157 color.sechalf = true;
2158 inst = emit(MOV(fs_reg(MRF, first_color_mrf + index + 4, color.type),
2159 color));
2160 inst->saturate = c->key.clamp_fragment_color;
2161 pop_force_sechalf();
2162 color.sechalf = false;
2163 }
2164 }
2165 }
2166
2167 void
2168 fs_visitor::emit_fb_writes()
2169 {
2170 this->current_annotation = "FB write header";
2171 bool header_present = true;
2172 /* We can potentially have a message length of up to 15, so we have to set
2173 * base_mrf to either 0 or 1 in order to fit in m0..m15.
2174 */
2175 int base_mrf = 1;
2176 int nr = base_mrf;
2177 int reg_width = dispatch_width / 8;
2178 bool do_dual_src = this->dual_src_output.file != BAD_FILE;
2179 bool src0_alpha_to_render_target = false;
2180
2181 if (dispatch_width == 16 && do_dual_src) {
2182 fail("GL_ARB_blend_func_extended not yet supported in 16-wide.");
2183 do_dual_src = false;
2184 }
2185
2186 /* From the Sandy Bridge PRM, volume 4, page 198:
2187 *
2188 * "Dispatched Pixel Enables. One bit per pixel indicating
2189 * which pixels were originally enabled when the thread was
2190 * dispatched. This field is only required for the end-of-
2191 * thread message and on all dual-source messages."
2192 */
2193 if (intel->gen >= 6 &&
2194 !this->fp->UsesKill &&
2195 !do_dual_src &&
2196 c->key.nr_color_regions == 1) {
2197 header_present = false;
2198 }
2199
2200 if (header_present) {
2201 src0_alpha_to_render_target = intel->gen >= 6 &&
2202 !do_dual_src &&
2203 c->key.nr_color_regions > 1 &&
2204 c->key.sample_alpha_to_coverage;
2205 /* m2, m3 header */
2206 nr += 2;
2207 }
2208
2209 if (c->aa_dest_stencil_reg) {
2210 push_force_uncompressed();
2211 emit(MOV(fs_reg(MRF, nr++),
2212 fs_reg(brw_vec8_grf(c->aa_dest_stencil_reg, 0))));
2213 pop_force_uncompressed();
2214 }
2215
2216 /* Reserve space for color. It'll be filled in per MRT below. */
2217 int color_mrf = nr;
2218 nr += 4 * reg_width;
2219 if (do_dual_src)
2220 nr += 4;
2221 if (src0_alpha_to_render_target)
2222 nr += reg_width;
2223
2224 if (c->source_depth_to_render_target) {
2225 if (intel->gen == 6 && dispatch_width == 16) {
2226 /* For outputting oDepth on gen6, SIMD8 writes have to be
2227 * used. This would require 8-wide moves of each half to
2228 * message regs, kind of like pre-gen5 SIMD16 FB writes.
2229 * Just bail on doing so for now.
2230 */
2231 fail("Missing support for simd16 depth writes on gen6\n");
2232 }
2233
2234 if (fp->Base.OutputsWritten & BITFIELD64_BIT(FRAG_RESULT_DEPTH)) {
2235 /* Hand over gl_FragDepth. */
2236 assert(this->frag_depth.file != BAD_FILE);
2237 emit(MOV(fs_reg(MRF, nr), this->frag_depth));
2238 } else {
2239 /* Pass through the payload depth. */
2240 emit(MOV(fs_reg(MRF, nr),
2241 fs_reg(brw_vec8_grf(c->source_depth_reg, 0))));
2242 }
2243 nr += reg_width;
2244 }
2245
2246 if (c->dest_depth_reg) {
2247 emit(MOV(fs_reg(MRF, nr),
2248 fs_reg(brw_vec8_grf(c->dest_depth_reg, 0))));
2249 nr += reg_width;
2250 }
2251
2252 if (do_dual_src) {
2253 fs_reg src0 = this->outputs[0];
2254 fs_reg src1 = this->dual_src_output;
2255
2256 this->current_annotation = ralloc_asprintf(this->mem_ctx,
2257 "FB write src0");
2258 for (int i = 0; i < 4; i++) {
2259 fs_inst *inst = emit(MOV(fs_reg(MRF, color_mrf + i, src0.type), src0));
2260 src0.reg_offset++;
2261 inst->saturate = c->key.clamp_fragment_color;
2262 }
2263
2264 this->current_annotation = ralloc_asprintf(this->mem_ctx,
2265 "FB write src1");
2266 for (int i = 0; i < 4; i++) {
2267 fs_inst *inst = emit(MOV(fs_reg(MRF, color_mrf + 4 + i, src1.type),
2268 src1));
2269 src1.reg_offset++;
2270 inst->saturate = c->key.clamp_fragment_color;
2271 }
2272
2273 if (INTEL_DEBUG & DEBUG_SHADER_TIME)
2274 emit_shader_time_end();
2275
2276 fs_inst *inst = emit(FS_OPCODE_FB_WRITE);
2277 inst->target = 0;
2278 inst->base_mrf = base_mrf;
2279 inst->mlen = nr - base_mrf;
2280 inst->eot = true;
2281 inst->header_present = header_present;
2282
2283 c->prog_data.dual_src_blend = true;
2284 this->current_annotation = NULL;
2285 return;
2286 }
2287
2288 for (int target = 0; target < c->key.nr_color_regions; target++) {
2289 this->current_annotation = ralloc_asprintf(this->mem_ctx,
2290 "FB write target %d",
2291 target);
2292 /* If src0_alpha_to_render_target is true, include source zero alpha
2293 * data in RenderTargetWrite message for targets > 0.
2294 */
2295 int write_color_mrf = color_mrf;
2296 if (src0_alpha_to_render_target && target != 0) {
2297 fs_inst *inst;
2298 fs_reg color = outputs[0];
2299 color.reg_offset += 3;
2300
2301 inst = emit(MOV(fs_reg(MRF, write_color_mrf, color.type),
2302 color));
2303 inst->saturate = c->key.clamp_fragment_color;
2304 write_color_mrf = color_mrf + reg_width;
2305 }
2306
2307 for (unsigned i = 0; i < this->output_components[target]; i++)
2308 emit_color_write(target, i, write_color_mrf);
2309
2310 bool eot = false;
2311 if (target == c->key.nr_color_regions - 1) {
2312 eot = true;
2313
2314 if (INTEL_DEBUG & DEBUG_SHADER_TIME)
2315 emit_shader_time_end();
2316 }
2317
2318 fs_inst *inst = emit(FS_OPCODE_FB_WRITE);
2319 inst->target = target;
2320 inst->base_mrf = base_mrf;
2321 if (src0_alpha_to_render_target && target == 0)
2322 inst->mlen = nr - base_mrf - reg_width;
2323 else
2324 inst->mlen = nr - base_mrf;
2325 inst->eot = eot;
2326 inst->header_present = header_present;
2327 }
2328
2329 if (c->key.nr_color_regions == 0) {
2330 /* Even if there's no color buffers enabled, we still need to send
2331 * alpha out the pipeline to our null renderbuffer to support
2332 * alpha-testing, alpha-to-coverage, and so on.
2333 */
2334 emit_color_write(0, 3, color_mrf);
2335
2336 if (INTEL_DEBUG & DEBUG_SHADER_TIME)
2337 emit_shader_time_end();
2338
2339 fs_inst *inst = emit(FS_OPCODE_FB_WRITE);
2340 inst->base_mrf = base_mrf;
2341 inst->mlen = nr - base_mrf;
2342 inst->eot = true;
2343 inst->header_present = header_present;
2344 }
2345
2346 this->current_annotation = NULL;
2347 }
2348
2349 void
2350 fs_visitor::resolve_ud_negate(fs_reg *reg)
2351 {
2352 if (reg->type != BRW_REGISTER_TYPE_UD ||
2353 !reg->negate)
2354 return;
2355
2356 fs_reg temp = fs_reg(this, glsl_type::uint_type);
2357 emit(MOV(temp, *reg));
2358 *reg = temp;
2359 }
2360
2361 void
2362 fs_visitor::resolve_bool_comparison(ir_rvalue *rvalue, fs_reg *reg)
2363 {
2364 if (rvalue->type != glsl_type::bool_type)
2365 return;
2366
2367 fs_reg temp = fs_reg(this, glsl_type::bool_type);
2368 emit(AND(temp, *reg, fs_reg(1)));
2369 *reg = temp;
2370 }
2371
2372 fs_visitor::fs_visitor(struct brw_context *brw,
2373 struct brw_wm_compile *c,
2374 struct gl_shader_program *prog,
2375 struct gl_fragment_program *fp,
2376 unsigned dispatch_width)
2377 : dispatch_width(dispatch_width)
2378 {
2379 this->c = c;
2380 this->brw = brw;
2381 this->fp = fp;
2382 this->prog = prog;
2383 this->intel = &brw->intel;
2384 this->ctx = &intel->ctx;
2385 this->mem_ctx = ralloc_context(NULL);
2386 if (prog)
2387 shader = (struct brw_shader *) prog->_LinkedShaders[MESA_SHADER_FRAGMENT];
2388 else
2389 shader = NULL;
2390 this->failed = false;
2391 this->variable_ht = hash_table_ctor(0,
2392 hash_table_pointer_hash,
2393 hash_table_pointer_compare);
2394
2395 memset(this->outputs, 0, sizeof(this->outputs));
2396 memset(this->output_components, 0, sizeof(this->output_components));
2397 this->first_non_payload_grf = 0;
2398 this->max_grf = intel->gen >= 7 ? GEN7_MRF_HACK_START : BRW_MAX_GRF;
2399
2400 this->current_annotation = NULL;
2401 this->base_ir = NULL;
2402
2403 this->virtual_grf_sizes = NULL;
2404 this->virtual_grf_count = 0;
2405 this->virtual_grf_array_size = 0;
2406 this->virtual_grf_def = NULL;
2407 this->virtual_grf_use = NULL;
2408 this->live_intervals_valid = false;
2409
2410 this->force_uncompressed_stack = 0;
2411 this->force_sechalf_stack = 0;
2412
2413 memset(&this->param_size, 0, sizeof(this->param_size));
2414 }
2415
2416 fs_visitor::~fs_visitor()
2417 {
2418 ralloc_free(this->mem_ctx);
2419 hash_table_dtor(this->variable_ht);
2420 }