c691b2be8b9fd879b7a1d96037ca6a6c5ad9673c
[mesa.git] / src / mesa / drivers / dri / i965 / brw_fs.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.cpp
25 *
26 * This file drives the GLSL IR -> LIR translation, contains the
27 * optimizations on the LIR, and drives the generation of native code
28 * from the LIR.
29 */
30
31 #include "main/macros.h"
32 #include "brw_context.h"
33 #include "brw_eu.h"
34 #include "brw_fs.h"
35 #include "brw_cs.h"
36 #include "brw_nir.h"
37 #include "brw_vec4_gs_visitor.h"
38 #include "brw_cfg.h"
39 #include "brw_program.h"
40 #include "brw_dead_control_flow.h"
41 #include "compiler/glsl_types.h"
42 #include "compiler/nir/nir_builder.h"
43 #include "program/prog_parameter.h"
44
45 using namespace brw;
46
47 static unsigned get_lowered_simd_width(const struct gen_device_info *devinfo,
48 const fs_inst *inst);
49
50 void
51 fs_inst::init(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
52 const fs_reg *src, unsigned sources)
53 {
54 memset(this, 0, sizeof(*this));
55
56 this->src = new fs_reg[MAX2(sources, 3)];
57 for (unsigned i = 0; i < sources; i++)
58 this->src[i] = src[i];
59
60 this->opcode = opcode;
61 this->dst = dst;
62 this->sources = sources;
63 this->exec_size = exec_size;
64 this->base_mrf = -1;
65
66 assert(dst.file != IMM && dst.file != UNIFORM);
67
68 assert(this->exec_size != 0);
69
70 this->conditional_mod = BRW_CONDITIONAL_NONE;
71
72 /* This will be the case for almost all instructions. */
73 switch (dst.file) {
74 case VGRF:
75 case ARF:
76 case FIXED_GRF:
77 case MRF:
78 case ATTR:
79 this->size_written = dst.component_size(exec_size);
80 break;
81 case BAD_FILE:
82 this->size_written = 0;
83 break;
84 case IMM:
85 case UNIFORM:
86 unreachable("Invalid destination register file");
87 }
88
89 this->writes_accumulator = false;
90 }
91
92 fs_inst::fs_inst()
93 {
94 init(BRW_OPCODE_NOP, 8, dst, NULL, 0);
95 }
96
97 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_size)
98 {
99 init(opcode, exec_size, reg_undef, NULL, 0);
100 }
101
102 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst)
103 {
104 init(opcode, exec_size, dst, NULL, 0);
105 }
106
107 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
108 const fs_reg &src0)
109 {
110 const fs_reg src[1] = { src0 };
111 init(opcode, exec_size, dst, src, 1);
112 }
113
114 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
115 const fs_reg &src0, const fs_reg &src1)
116 {
117 const fs_reg src[2] = { src0, src1 };
118 init(opcode, exec_size, dst, src, 2);
119 }
120
121 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
122 const fs_reg &src0, const fs_reg &src1, const fs_reg &src2)
123 {
124 const fs_reg src[3] = { src0, src1, src2 };
125 init(opcode, exec_size, dst, src, 3);
126 }
127
128 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_width, const fs_reg &dst,
129 const fs_reg src[], unsigned sources)
130 {
131 init(opcode, exec_width, dst, src, sources);
132 }
133
134 fs_inst::fs_inst(const fs_inst &that)
135 {
136 memcpy(this, &that, sizeof(that));
137
138 this->src = new fs_reg[MAX2(that.sources, 3)];
139
140 for (unsigned i = 0; i < that.sources; i++)
141 this->src[i] = that.src[i];
142 }
143
144 fs_inst::~fs_inst()
145 {
146 delete[] this->src;
147 }
148
149 void
150 fs_inst::resize_sources(uint8_t num_sources)
151 {
152 if (this->sources != num_sources) {
153 fs_reg *src = new fs_reg[MAX2(num_sources, 3)];
154
155 for (unsigned i = 0; i < MIN2(this->sources, num_sources); ++i)
156 src[i] = this->src[i];
157
158 delete[] this->src;
159 this->src = src;
160 this->sources = num_sources;
161 }
162 }
163
164 void
165 fs_visitor::VARYING_PULL_CONSTANT_LOAD(const fs_builder &bld,
166 const fs_reg &dst,
167 const fs_reg &surf_index,
168 const fs_reg &varying_offset,
169 uint32_t const_offset)
170 {
171 /* We have our constant surface use a pitch of 4 bytes, so our index can
172 * be any component of a vector, and then we load 4 contiguous
173 * components starting from that.
174 *
175 * We break down the const_offset to a portion added to the variable
176 * offset and a portion done using reg_offset, which means that if you
177 * have GLSL using something like "uniform vec4 a[20]; gl_FragColor =
178 * a[i]", we'll temporarily generate 4 vec4 loads from offset i * 4, and
179 * CSE can later notice that those loads are all the same and eliminate
180 * the redundant ones.
181 */
182 fs_reg vec4_offset = vgrf(glsl_type::uint_type);
183 bld.ADD(vec4_offset, varying_offset, brw_imm_ud(const_offset & ~0xf));
184
185 /* The pull load message will load a vec4 (16 bytes). If we are loading
186 * a double this means we are only loading 2 elements worth of data.
187 * We also want to use a 32-bit data type for the dst of the load operation
188 * so other parts of the driver don't get confused about the size of the
189 * result.
190 */
191 fs_reg vec4_result = bld.vgrf(BRW_REGISTER_TYPE_F, 4);
192 fs_inst *inst = bld.emit(FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_LOGICAL,
193 vec4_result, surf_index, vec4_offset);
194 inst->size_written = 4 * vec4_result.component_size(inst->exec_size);
195
196 if (type_sz(dst.type) == 8) {
197 shuffle_32bit_load_result_to_64bit_data(
198 bld, retype(vec4_result, dst.type), vec4_result, 2);
199 }
200
201 vec4_result.type = dst.type;
202 bld.MOV(dst, offset(vec4_result, bld,
203 (const_offset & 0xf) / type_sz(vec4_result.type)));
204 }
205
206 /**
207 * A helper for MOV generation for fixing up broken hardware SEND dependency
208 * handling.
209 */
210 void
211 fs_visitor::DEP_RESOLVE_MOV(const fs_builder &bld, int grf)
212 {
213 /* The caller always wants uncompressed to emit the minimal extra
214 * dependencies, and to avoid having to deal with aligning its regs to 2.
215 */
216 const fs_builder ubld = bld.annotate("send dependency resolve")
217 .half(0);
218
219 ubld.MOV(ubld.null_reg_f(), fs_reg(VGRF, grf, BRW_REGISTER_TYPE_F));
220 }
221
222 bool
223 fs_inst::equals(fs_inst *inst) const
224 {
225 return (opcode == inst->opcode &&
226 dst.equals(inst->dst) &&
227 src[0].equals(inst->src[0]) &&
228 src[1].equals(inst->src[1]) &&
229 src[2].equals(inst->src[2]) &&
230 saturate == inst->saturate &&
231 predicate == inst->predicate &&
232 conditional_mod == inst->conditional_mod &&
233 mlen == inst->mlen &&
234 base_mrf == inst->base_mrf &&
235 target == inst->target &&
236 eot == inst->eot &&
237 header_size == inst->header_size &&
238 shadow_compare == inst->shadow_compare &&
239 exec_size == inst->exec_size &&
240 offset == inst->offset);
241 }
242
243 bool
244 fs_inst::is_send_from_grf() const
245 {
246 switch (opcode) {
247 case FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_GEN7:
248 case SHADER_OPCODE_SHADER_TIME_ADD:
249 case FS_OPCODE_INTERPOLATE_AT_SAMPLE:
250 case FS_OPCODE_INTERPOLATE_AT_SHARED_OFFSET:
251 case FS_OPCODE_INTERPOLATE_AT_PER_SLOT_OFFSET:
252 case SHADER_OPCODE_UNTYPED_ATOMIC:
253 case SHADER_OPCODE_UNTYPED_SURFACE_READ:
254 case SHADER_OPCODE_UNTYPED_SURFACE_WRITE:
255 case SHADER_OPCODE_TYPED_ATOMIC:
256 case SHADER_OPCODE_TYPED_SURFACE_READ:
257 case SHADER_OPCODE_TYPED_SURFACE_WRITE:
258 case SHADER_OPCODE_URB_WRITE_SIMD8:
259 case SHADER_OPCODE_URB_WRITE_SIMD8_PER_SLOT:
260 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED:
261 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED_PER_SLOT:
262 case SHADER_OPCODE_URB_READ_SIMD8:
263 case SHADER_OPCODE_URB_READ_SIMD8_PER_SLOT:
264 return true;
265 case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD:
266 return src[1].file == VGRF;
267 case FS_OPCODE_FB_WRITE:
268 case FS_OPCODE_FB_READ:
269 return src[0].file == VGRF;
270 default:
271 if (is_tex())
272 return src[0].file == VGRF;
273
274 return false;
275 }
276 }
277
278 /**
279 * Returns true if this instruction's sources and destinations cannot
280 * safely be the same register.
281 *
282 * In most cases, a register can be written over safely by the same
283 * instruction that is its last use. For a single instruction, the
284 * sources are dereferenced before writing of the destination starts
285 * (naturally).
286 *
287 * However, there are a few cases where this can be problematic:
288 *
289 * - Virtual opcodes that translate to multiple instructions in the
290 * code generator: if src == dst and one instruction writes the
291 * destination before a later instruction reads the source, then
292 * src will have been clobbered.
293 *
294 * - SIMD16 compressed instructions with certain regioning (see below).
295 *
296 * The register allocator uses this information to set up conflicts between
297 * GRF sources and the destination.
298 */
299 bool
300 fs_inst::has_source_and_destination_hazard() const
301 {
302 switch (opcode) {
303 case FS_OPCODE_PACK_HALF_2x16_SPLIT:
304 /* Multiple partial writes to the destination */
305 return true;
306 default:
307 /* The SIMD16 compressed instruction
308 *
309 * add(16) g4<1>F g4<8,8,1>F g6<8,8,1>F
310 *
311 * is actually decoded in hardware as:
312 *
313 * add(8) g4<1>F g4<8,8,1>F g6<8,8,1>F
314 * add(8) g5<1>F g5<8,8,1>F g7<8,8,1>F
315 *
316 * Which is safe. However, if we have uniform accesses
317 * happening, we get into trouble:
318 *
319 * add(8) g4<1>F g4<0,1,0>F g6<8,8,1>F
320 * add(8) g5<1>F g4<0,1,0>F g7<8,8,1>F
321 *
322 * Now our destination for the first instruction overwrote the
323 * second instruction's src0, and we get garbage for those 8
324 * pixels. There's a similar issue for the pre-gen6
325 * pixel_x/pixel_y, which are registers of 16-bit values and thus
326 * would get stomped by the first decode as well.
327 */
328 if (exec_size == 16) {
329 for (int i = 0; i < sources; i++) {
330 if (src[i].file == VGRF && (src[i].stride == 0 ||
331 src[i].type == BRW_REGISTER_TYPE_UW ||
332 src[i].type == BRW_REGISTER_TYPE_W ||
333 src[i].type == BRW_REGISTER_TYPE_UB ||
334 src[i].type == BRW_REGISTER_TYPE_B)) {
335 return true;
336 }
337 }
338 }
339 return false;
340 }
341 }
342
343 bool
344 fs_inst::is_copy_payload(const brw::simple_allocator &grf_alloc) const
345 {
346 if (this->opcode != SHADER_OPCODE_LOAD_PAYLOAD)
347 return false;
348
349 fs_reg reg = this->src[0];
350 if (reg.file != VGRF || reg.offset != 0 || reg.stride != 1)
351 return false;
352
353 if (grf_alloc.sizes[reg.nr] * REG_SIZE != this->size_written)
354 return false;
355
356 for (int i = 0; i < this->sources; i++) {
357 reg.type = this->src[i].type;
358 if (!this->src[i].equals(reg))
359 return false;
360
361 if (i < this->header_size) {
362 reg.offset += REG_SIZE;
363 } else {
364 reg = horiz_offset(reg, this->exec_size);
365 }
366 }
367
368 return true;
369 }
370
371 bool
372 fs_inst::can_do_source_mods(const struct gen_device_info *devinfo)
373 {
374 if (devinfo->gen == 6 && is_math())
375 return false;
376
377 if (is_send_from_grf())
378 return false;
379
380 if (!backend_instruction::can_do_source_mods())
381 return false;
382
383 return true;
384 }
385
386 bool
387 fs_inst::can_change_types() const
388 {
389 return dst.type == src[0].type &&
390 !src[0].abs && !src[0].negate && !saturate &&
391 (opcode == BRW_OPCODE_MOV ||
392 (opcode == BRW_OPCODE_SEL &&
393 dst.type == src[1].type &&
394 predicate != BRW_PREDICATE_NONE &&
395 !src[1].abs && !src[1].negate));
396 }
397
398 bool
399 fs_inst::has_side_effects() const
400 {
401 return this->eot || backend_instruction::has_side_effects();
402 }
403
404 void
405 fs_reg::init()
406 {
407 memset(this, 0, sizeof(*this));
408 stride = 1;
409 }
410
411 /** Generic unset register constructor. */
412 fs_reg::fs_reg()
413 {
414 init();
415 this->file = BAD_FILE;
416 }
417
418 fs_reg::fs_reg(struct ::brw_reg reg) :
419 backend_reg(reg)
420 {
421 this->offset = 0;
422 this->stride = 1;
423 if (this->file == IMM &&
424 (this->type != BRW_REGISTER_TYPE_V &&
425 this->type != BRW_REGISTER_TYPE_UV &&
426 this->type != BRW_REGISTER_TYPE_VF)) {
427 this->stride = 0;
428 }
429 }
430
431 bool
432 fs_reg::equals(const fs_reg &r) const
433 {
434 return (this->backend_reg::equals(r) &&
435 stride == r.stride);
436 }
437
438 bool
439 fs_reg::is_contiguous() const
440 {
441 return stride == 1;
442 }
443
444 unsigned
445 fs_reg::component_size(unsigned width) const
446 {
447 const unsigned stride = ((file != ARF && file != FIXED_GRF) ? this->stride :
448 hstride == 0 ? 0 :
449 1 << (hstride - 1));
450 return MAX2(width * stride, 1) * type_sz(type);
451 }
452
453 extern "C" int
454 type_size_scalar(const struct glsl_type *type)
455 {
456 unsigned int size, i;
457
458 switch (type->base_type) {
459 case GLSL_TYPE_UINT:
460 case GLSL_TYPE_INT:
461 case GLSL_TYPE_FLOAT:
462 case GLSL_TYPE_BOOL:
463 return type->components();
464 case GLSL_TYPE_DOUBLE:
465 return type->components() * 2;
466 case GLSL_TYPE_ARRAY:
467 return type_size_scalar(type->fields.array) * type->length;
468 case GLSL_TYPE_STRUCT:
469 size = 0;
470 for (i = 0; i < type->length; i++) {
471 size += type_size_scalar(type->fields.structure[i].type);
472 }
473 return size;
474 case GLSL_TYPE_SAMPLER:
475 /* Samplers take up no register space, since they're baked in at
476 * link time.
477 */
478 return 0;
479 case GLSL_TYPE_ATOMIC_UINT:
480 return 0;
481 case GLSL_TYPE_SUBROUTINE:
482 return 1;
483 case GLSL_TYPE_IMAGE:
484 return BRW_IMAGE_PARAM_SIZE;
485 case GLSL_TYPE_VOID:
486 case GLSL_TYPE_ERROR:
487 case GLSL_TYPE_INTERFACE:
488 case GLSL_TYPE_FUNCTION:
489 unreachable("not reached");
490 }
491
492 return 0;
493 }
494
495 /**
496 * Returns the number of scalar components needed to store type, assuming
497 * that vectors are padded out to vec4.
498 *
499 * This has the packing rules of type_size_vec4(), but counts components
500 * similar to type_size_scalar().
501 */
502 extern "C" int
503 type_size_vec4_times_4(const struct glsl_type *type)
504 {
505 return 4 * type_size_vec4(type);
506 }
507
508 /* Attribute arrays are loaded as one vec4 per element (or matrix column),
509 * except for double-precision types, which are loaded as one dvec4.
510 */
511 extern "C" int
512 type_size_vs_input(const struct glsl_type *type)
513 {
514 if (type->is_double()) {
515 return type_size_dvec4(type);
516 } else {
517 return type_size_vec4(type);
518 }
519 }
520
521 /**
522 * Create a MOV to read the timestamp register.
523 *
524 * The caller is responsible for emitting the MOV. The return value is
525 * the destination of the MOV, with extra parameters set.
526 */
527 fs_reg
528 fs_visitor::get_timestamp(const fs_builder &bld)
529 {
530 assert(devinfo->gen >= 7);
531
532 fs_reg ts = fs_reg(retype(brw_vec4_reg(BRW_ARCHITECTURE_REGISTER_FILE,
533 BRW_ARF_TIMESTAMP,
534 0),
535 BRW_REGISTER_TYPE_UD));
536
537 fs_reg dst = fs_reg(VGRF, alloc.allocate(1), BRW_REGISTER_TYPE_UD);
538
539 /* We want to read the 3 fields we care about even if it's not enabled in
540 * the dispatch.
541 */
542 bld.group(4, 0).exec_all().MOV(dst, ts);
543
544 return dst;
545 }
546
547 void
548 fs_visitor::emit_shader_time_begin()
549 {
550 /* We want only the low 32 bits of the timestamp. Since it's running
551 * at the GPU clock rate of ~1.2ghz, it will roll over every ~3 seconds,
552 * which is plenty of time for our purposes. It is identical across the
553 * EUs, but since it's tracking GPU core speed it will increment at a
554 * varying rate as render P-states change.
555 */
556 shader_start_time = component(
557 get_timestamp(bld.annotate("shader time start")), 0);
558 }
559
560 void
561 fs_visitor::emit_shader_time_end()
562 {
563 /* Insert our code just before the final SEND with EOT. */
564 exec_node *end = this->instructions.get_tail();
565 assert(end && ((fs_inst *) end)->eot);
566 const fs_builder ibld = bld.annotate("shader time end")
567 .exec_all().at(NULL, end);
568 const fs_reg timestamp = get_timestamp(ibld);
569
570 /* We only use the low 32 bits of the timestamp - see
571 * emit_shader_time_begin()).
572 *
573 * We could also check if render P-states have changed (or anything
574 * else that might disrupt timing) by setting smear to 2 and checking if
575 * that field is != 0.
576 */
577 const fs_reg shader_end_time = component(timestamp, 0);
578
579 /* Check that there weren't any timestamp reset events (assuming these
580 * were the only two timestamp reads that happened).
581 */
582 const fs_reg reset = component(timestamp, 2);
583 set_condmod(BRW_CONDITIONAL_Z,
584 ibld.AND(ibld.null_reg_ud(), reset, brw_imm_ud(1u)));
585 ibld.IF(BRW_PREDICATE_NORMAL);
586
587 fs_reg start = shader_start_time;
588 start.negate = true;
589 const fs_reg diff = component(fs_reg(VGRF, alloc.allocate(1),
590 BRW_REGISTER_TYPE_UD),
591 0);
592 const fs_builder cbld = ibld.group(1, 0);
593 cbld.group(1, 0).ADD(diff, start, shader_end_time);
594
595 /* If there were no instructions between the two timestamp gets, the diff
596 * is 2 cycles. Remove that overhead, so I can forget about that when
597 * trying to determine the time taken for single instructions.
598 */
599 cbld.ADD(diff, diff, brw_imm_ud(-2u));
600 SHADER_TIME_ADD(cbld, 0, diff);
601 SHADER_TIME_ADD(cbld, 1, brw_imm_ud(1u));
602 ibld.emit(BRW_OPCODE_ELSE);
603 SHADER_TIME_ADD(cbld, 2, brw_imm_ud(1u));
604 ibld.emit(BRW_OPCODE_ENDIF);
605 }
606
607 void
608 fs_visitor::SHADER_TIME_ADD(const fs_builder &bld,
609 int shader_time_subindex,
610 fs_reg value)
611 {
612 int index = shader_time_index * 3 + shader_time_subindex;
613 struct brw_reg offset = brw_imm_d(index * SHADER_TIME_STRIDE);
614
615 fs_reg payload;
616 if (dispatch_width == 8)
617 payload = vgrf(glsl_type::uvec2_type);
618 else
619 payload = vgrf(glsl_type::uint_type);
620
621 bld.emit(SHADER_OPCODE_SHADER_TIME_ADD, fs_reg(), payload, offset, value);
622 }
623
624 void
625 fs_visitor::vfail(const char *format, va_list va)
626 {
627 char *msg;
628
629 if (failed)
630 return;
631
632 failed = true;
633
634 msg = ralloc_vasprintf(mem_ctx, format, va);
635 msg = ralloc_asprintf(mem_ctx, "%s compile failed: %s\n", stage_abbrev, msg);
636
637 this->fail_msg = msg;
638
639 if (debug_enabled) {
640 fprintf(stderr, "%s", msg);
641 }
642 }
643
644 void
645 fs_visitor::fail(const char *format, ...)
646 {
647 va_list va;
648
649 va_start(va, format);
650 vfail(format, va);
651 va_end(va);
652 }
653
654 /**
655 * Mark this program as impossible to compile with dispatch width greater
656 * than n.
657 *
658 * During the SIMD8 compile (which happens first), we can detect and flag
659 * things that are unsupported in SIMD16+ mode, so the compiler can skip the
660 * SIMD16+ compile altogether.
661 *
662 * During a compile of dispatch width greater than n (if one happens anyway),
663 * this just calls fail().
664 */
665 void
666 fs_visitor::limit_dispatch_width(unsigned n, const char *msg)
667 {
668 if (dispatch_width > n) {
669 fail("%s", msg);
670 } else {
671 max_dispatch_width = n;
672 compiler->shader_perf_log(log_data,
673 "Shader dispatch width limited to SIMD%d: %s",
674 n, msg);
675 }
676 }
677
678 /**
679 * Returns true if the instruction has a flag that means it won't
680 * update an entire destination register.
681 *
682 * For example, dead code elimination and live variable analysis want to know
683 * when a write to a variable screens off any preceding values that were in
684 * it.
685 */
686 bool
687 fs_inst::is_partial_write() const
688 {
689 return ((this->predicate && this->opcode != BRW_OPCODE_SEL) ||
690 (this->exec_size * type_sz(this->dst.type)) < 32 ||
691 !this->dst.is_contiguous() ||
692 this->dst.offset % REG_SIZE != 0);
693 }
694
695 unsigned
696 fs_inst::components_read(unsigned i) const
697 {
698 /* Return zero if the source is not present. */
699 if (src[i].file == BAD_FILE)
700 return 0;
701
702 switch (opcode) {
703 case FS_OPCODE_LINTERP:
704 if (i == 0)
705 return 2;
706 else
707 return 1;
708
709 case FS_OPCODE_PIXEL_X:
710 case FS_OPCODE_PIXEL_Y:
711 assert(i == 0);
712 return 2;
713
714 case FS_OPCODE_FB_WRITE_LOGICAL:
715 assert(src[FB_WRITE_LOGICAL_SRC_COMPONENTS].file == IMM);
716 /* First/second FB write color. */
717 if (i < 2)
718 return src[FB_WRITE_LOGICAL_SRC_COMPONENTS].ud;
719 else
720 return 1;
721
722 case SHADER_OPCODE_TEX_LOGICAL:
723 case SHADER_OPCODE_TXD_LOGICAL:
724 case SHADER_OPCODE_TXF_LOGICAL:
725 case SHADER_OPCODE_TXL_LOGICAL:
726 case SHADER_OPCODE_TXS_LOGICAL:
727 case FS_OPCODE_TXB_LOGICAL:
728 case SHADER_OPCODE_TXF_CMS_LOGICAL:
729 case SHADER_OPCODE_TXF_CMS_W_LOGICAL:
730 case SHADER_OPCODE_TXF_UMS_LOGICAL:
731 case SHADER_OPCODE_TXF_MCS_LOGICAL:
732 case SHADER_OPCODE_LOD_LOGICAL:
733 case SHADER_OPCODE_TG4_LOGICAL:
734 case SHADER_OPCODE_TG4_OFFSET_LOGICAL:
735 case SHADER_OPCODE_SAMPLEINFO_LOGICAL:
736 assert(src[TEX_LOGICAL_SRC_COORD_COMPONENTS].file == IMM &&
737 src[TEX_LOGICAL_SRC_GRAD_COMPONENTS].file == IMM);
738 /* Texture coordinates. */
739 if (i == TEX_LOGICAL_SRC_COORDINATE)
740 return src[TEX_LOGICAL_SRC_COORD_COMPONENTS].ud;
741 /* Texture derivatives. */
742 else if ((i == TEX_LOGICAL_SRC_LOD || i == TEX_LOGICAL_SRC_LOD2) &&
743 opcode == SHADER_OPCODE_TXD_LOGICAL)
744 return src[TEX_LOGICAL_SRC_GRAD_COMPONENTS].ud;
745 /* Texture offset. */
746 else if (i == TEX_LOGICAL_SRC_OFFSET_VALUE)
747 return 2;
748 /* MCS */
749 else if (i == TEX_LOGICAL_SRC_MCS && opcode == SHADER_OPCODE_TXF_CMS_W_LOGICAL)
750 return 2;
751 else
752 return 1;
753
754 case SHADER_OPCODE_UNTYPED_SURFACE_READ_LOGICAL:
755 case SHADER_OPCODE_TYPED_SURFACE_READ_LOGICAL:
756 assert(src[3].file == IMM);
757 /* Surface coordinates. */
758 if (i == 0)
759 return src[3].ud;
760 /* Surface operation source (ignored for reads). */
761 else if (i == 1)
762 return 0;
763 else
764 return 1;
765
766 case SHADER_OPCODE_UNTYPED_SURFACE_WRITE_LOGICAL:
767 case SHADER_OPCODE_TYPED_SURFACE_WRITE_LOGICAL:
768 assert(src[3].file == IMM &&
769 src[4].file == IMM);
770 /* Surface coordinates. */
771 if (i == 0)
772 return src[3].ud;
773 /* Surface operation source. */
774 else if (i == 1)
775 return src[4].ud;
776 else
777 return 1;
778
779 case SHADER_OPCODE_UNTYPED_ATOMIC_LOGICAL:
780 case SHADER_OPCODE_TYPED_ATOMIC_LOGICAL: {
781 assert(src[3].file == IMM &&
782 src[4].file == IMM);
783 const unsigned op = src[4].ud;
784 /* Surface coordinates. */
785 if (i == 0)
786 return src[3].ud;
787 /* Surface operation source. */
788 else if (i == 1 && op == BRW_AOP_CMPWR)
789 return 2;
790 else if (i == 1 && (op == BRW_AOP_INC || op == BRW_AOP_DEC ||
791 op == BRW_AOP_PREDEC))
792 return 0;
793 else
794 return 1;
795 }
796
797 default:
798 return 1;
799 }
800 }
801
802 unsigned
803 fs_inst::size_read(int arg) const
804 {
805 switch (opcode) {
806 case FS_OPCODE_FB_WRITE:
807 case FS_OPCODE_FB_READ:
808 case SHADER_OPCODE_URB_WRITE_SIMD8:
809 case SHADER_OPCODE_URB_WRITE_SIMD8_PER_SLOT:
810 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED:
811 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED_PER_SLOT:
812 case SHADER_OPCODE_URB_READ_SIMD8:
813 case SHADER_OPCODE_URB_READ_SIMD8_PER_SLOT:
814 case SHADER_OPCODE_UNTYPED_ATOMIC:
815 case SHADER_OPCODE_UNTYPED_SURFACE_READ:
816 case SHADER_OPCODE_UNTYPED_SURFACE_WRITE:
817 case SHADER_OPCODE_TYPED_ATOMIC:
818 case SHADER_OPCODE_TYPED_SURFACE_READ:
819 case SHADER_OPCODE_TYPED_SURFACE_WRITE:
820 case FS_OPCODE_INTERPOLATE_AT_PER_SLOT_OFFSET:
821 if (arg == 0)
822 return mlen * REG_SIZE;
823 break;
824
825 case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD_GEN7:
826 /* The payload is actually stored in src1 */
827 if (arg == 1)
828 return mlen * REG_SIZE;
829 break;
830
831 case FS_OPCODE_LINTERP:
832 if (arg == 1)
833 return 16;
834 break;
835
836 case SHADER_OPCODE_LOAD_PAYLOAD:
837 if (arg < this->header_size)
838 return REG_SIZE;
839 break;
840
841 case CS_OPCODE_CS_TERMINATE:
842 case SHADER_OPCODE_BARRIER:
843 return REG_SIZE;
844
845 case SHADER_OPCODE_MOV_INDIRECT:
846 if (arg == 0) {
847 assert(src[2].file == IMM);
848 return src[2].ud;
849 }
850 break;
851
852 default:
853 if (is_tex() && arg == 0 && src[0].file == VGRF)
854 return mlen * REG_SIZE;
855 break;
856 }
857
858 switch (src[arg].file) {
859 case UNIFORM:
860 case IMM:
861 return components_read(arg) * type_sz(src[arg].type);
862 case BAD_FILE:
863 case ARF:
864 case FIXED_GRF:
865 case VGRF:
866 case ATTR:
867 return components_read(arg) * src[arg].component_size(exec_size);
868 case MRF:
869 unreachable("MRF registers are not allowed as sources");
870 }
871 return 0;
872 }
873
874 namespace {
875 /* Return the subset of flag registers that an instruction could
876 * potentially read or write based on the execution controls and flag
877 * subregister number of the instruction.
878 */
879 unsigned
880 flag_mask(const fs_inst *inst)
881 {
882 const unsigned start = inst->flag_subreg * 16 + inst->group;
883 const unsigned end = start + inst->exec_size;
884 return ((1 << DIV_ROUND_UP(end, 8)) - 1) & ~((1 << (start / 8)) - 1);
885 }
886 }
887
888 unsigned
889 fs_inst::flags_read(const gen_device_info *devinfo) const
890 {
891 /* XXX - This doesn't consider explicit uses of the flag register as source
892 * region.
893 */
894 if (predicate == BRW_PREDICATE_ALIGN1_ANYV ||
895 predicate == BRW_PREDICATE_ALIGN1_ALLV) {
896 /* The vertical predication modes combine corresponding bits from
897 * f0.0 and f1.0 on Gen7+, and f0.0 and f0.1 on older hardware.
898 */
899 const unsigned shift = devinfo->gen >= 7 ? 4 : 2;
900 return flag_mask(this) << shift | flag_mask(this);
901 } else if (predicate) {
902 return flag_mask(this);
903 } else {
904 return 0;
905 }
906 }
907
908 unsigned
909 fs_inst::flags_written() const
910 {
911 /* XXX - This doesn't consider explicit uses of the flag register as
912 * destination region.
913 */
914 if ((conditional_mod && (opcode != BRW_OPCODE_SEL &&
915 opcode != BRW_OPCODE_IF &&
916 opcode != BRW_OPCODE_WHILE)) ||
917 opcode == FS_OPCODE_MOV_DISPATCH_TO_FLAGS) {
918 return flag_mask(this);
919 } else {
920 return 0;
921 }
922 }
923
924 /**
925 * Returns how many MRFs an FS opcode will write over.
926 *
927 * Note that this is not the 0 or 1 implied writes in an actual gen
928 * instruction -- the FS opcodes often generate MOVs in addition.
929 */
930 int
931 fs_visitor::implied_mrf_writes(fs_inst *inst)
932 {
933 if (inst->mlen == 0)
934 return 0;
935
936 if (inst->base_mrf == -1)
937 return 0;
938
939 switch (inst->opcode) {
940 case SHADER_OPCODE_RCP:
941 case SHADER_OPCODE_RSQ:
942 case SHADER_OPCODE_SQRT:
943 case SHADER_OPCODE_EXP2:
944 case SHADER_OPCODE_LOG2:
945 case SHADER_OPCODE_SIN:
946 case SHADER_OPCODE_COS:
947 return 1 * dispatch_width / 8;
948 case SHADER_OPCODE_POW:
949 case SHADER_OPCODE_INT_QUOTIENT:
950 case SHADER_OPCODE_INT_REMAINDER:
951 return 2 * dispatch_width / 8;
952 case SHADER_OPCODE_TEX:
953 case FS_OPCODE_TXB:
954 case SHADER_OPCODE_TXD:
955 case SHADER_OPCODE_TXF:
956 case SHADER_OPCODE_TXF_CMS:
957 case SHADER_OPCODE_TXF_MCS:
958 case SHADER_OPCODE_TG4:
959 case SHADER_OPCODE_TG4_OFFSET:
960 case SHADER_OPCODE_TXL:
961 case SHADER_OPCODE_TXS:
962 case SHADER_OPCODE_LOD:
963 case SHADER_OPCODE_SAMPLEINFO:
964 return 1;
965 case FS_OPCODE_FB_WRITE:
966 return 2;
967 case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD:
968 case SHADER_OPCODE_GEN4_SCRATCH_READ:
969 return 1;
970 case FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_GEN4:
971 return inst->mlen;
972 case SHADER_OPCODE_GEN4_SCRATCH_WRITE:
973 return inst->mlen;
974 default:
975 unreachable("not reached");
976 }
977 }
978
979 fs_reg
980 fs_visitor::vgrf(const glsl_type *const type)
981 {
982 int reg_width = dispatch_width / 8;
983 return fs_reg(VGRF, alloc.allocate(type_size_scalar(type) * reg_width),
984 brw_type_for_base_type(type));
985 }
986
987 fs_reg::fs_reg(enum brw_reg_file file, int nr)
988 {
989 init();
990 this->file = file;
991 this->nr = nr;
992 this->type = BRW_REGISTER_TYPE_F;
993 this->stride = (file == UNIFORM ? 0 : 1);
994 }
995
996 fs_reg::fs_reg(enum brw_reg_file file, int nr, enum brw_reg_type type)
997 {
998 init();
999 this->file = file;
1000 this->nr = nr;
1001 this->type = type;
1002 this->stride = (file == UNIFORM ? 0 : 1);
1003 }
1004
1005 /* For SIMD16, we need to follow from the uniform setup of SIMD8 dispatch.
1006 * This brings in those uniform definitions
1007 */
1008 void
1009 fs_visitor::import_uniforms(fs_visitor *v)
1010 {
1011 this->push_constant_loc = v->push_constant_loc;
1012 this->pull_constant_loc = v->pull_constant_loc;
1013 this->uniforms = v->uniforms;
1014 }
1015
1016 void
1017 fs_visitor::emit_fragcoord_interpolation(fs_reg wpos)
1018 {
1019 assert(stage == MESA_SHADER_FRAGMENT);
1020
1021 /* gl_FragCoord.x */
1022 bld.MOV(wpos, this->pixel_x);
1023 wpos = offset(wpos, bld, 1);
1024
1025 /* gl_FragCoord.y */
1026 bld.MOV(wpos, this->pixel_y);
1027 wpos = offset(wpos, bld, 1);
1028
1029 /* gl_FragCoord.z */
1030 if (devinfo->gen >= 6) {
1031 bld.MOV(wpos, fs_reg(brw_vec8_grf(payload.source_depth_reg, 0)));
1032 } else {
1033 bld.emit(FS_OPCODE_LINTERP, wpos,
1034 this->delta_xy[BRW_BARYCENTRIC_PERSPECTIVE_PIXEL],
1035 interp_reg(VARYING_SLOT_POS, 2));
1036 }
1037 wpos = offset(wpos, bld, 1);
1038
1039 /* gl_FragCoord.w: Already set up in emit_interpolation */
1040 bld.MOV(wpos, this->wpos_w);
1041 }
1042
1043 enum brw_barycentric_mode
1044 brw_barycentric_mode(enum glsl_interp_mode mode, nir_intrinsic_op op)
1045 {
1046 /* Barycentric modes don't make sense for flat inputs. */
1047 assert(mode != INTERP_MODE_FLAT);
1048
1049 unsigned bary;
1050 switch (op) {
1051 case nir_intrinsic_load_barycentric_pixel:
1052 case nir_intrinsic_load_barycentric_at_offset:
1053 bary = BRW_BARYCENTRIC_PERSPECTIVE_PIXEL;
1054 break;
1055 case nir_intrinsic_load_barycentric_centroid:
1056 bary = BRW_BARYCENTRIC_PERSPECTIVE_CENTROID;
1057 break;
1058 case nir_intrinsic_load_barycentric_sample:
1059 case nir_intrinsic_load_barycentric_at_sample:
1060 bary = BRW_BARYCENTRIC_PERSPECTIVE_SAMPLE;
1061 break;
1062 default:
1063 unreachable("invalid intrinsic");
1064 }
1065
1066 if (mode == INTERP_MODE_NOPERSPECTIVE)
1067 bary += 3;
1068
1069 return (enum brw_barycentric_mode) bary;
1070 }
1071
1072 /**
1073 * Turn one of the two CENTROID barycentric modes into PIXEL mode.
1074 */
1075 static enum brw_barycentric_mode
1076 centroid_to_pixel(enum brw_barycentric_mode bary)
1077 {
1078 assert(bary == BRW_BARYCENTRIC_PERSPECTIVE_CENTROID ||
1079 bary == BRW_BARYCENTRIC_NONPERSPECTIVE_CENTROID);
1080 return (enum brw_barycentric_mode) ((unsigned) bary - 1);
1081 }
1082
1083 fs_reg *
1084 fs_visitor::emit_frontfacing_interpolation()
1085 {
1086 fs_reg *reg = new(this->mem_ctx) fs_reg(vgrf(glsl_type::bool_type));
1087
1088 if (devinfo->gen >= 6) {
1089 /* Bit 15 of g0.0 is 0 if the polygon is front facing. We want to create
1090 * a boolean result from this (~0/true or 0/false).
1091 *
1092 * We can use the fact that bit 15 is the MSB of g0.0:W to accomplish
1093 * this task in only one instruction:
1094 * - a negation source modifier will flip the bit; and
1095 * - a W -> D type conversion will sign extend the bit into the high
1096 * word of the destination.
1097 *
1098 * An ASR 15 fills the low word of the destination.
1099 */
1100 fs_reg g0 = fs_reg(retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_W));
1101 g0.negate = true;
1102
1103 bld.ASR(*reg, g0, brw_imm_d(15));
1104 } else {
1105 /* Bit 31 of g1.6 is 0 if the polygon is front facing. We want to create
1106 * a boolean result from this (1/true or 0/false).
1107 *
1108 * Like in the above case, since the bit is the MSB of g1.6:UD we can use
1109 * the negation source modifier to flip it. Unfortunately the SHR
1110 * instruction only operates on UD (or D with an abs source modifier)
1111 * sources without negation.
1112 *
1113 * Instead, use ASR (which will give ~0/true or 0/false).
1114 */
1115 fs_reg g1_6 = fs_reg(retype(brw_vec1_grf(1, 6), BRW_REGISTER_TYPE_D));
1116 g1_6.negate = true;
1117
1118 bld.ASR(*reg, g1_6, brw_imm_d(31));
1119 }
1120
1121 return reg;
1122 }
1123
1124 void
1125 fs_visitor::compute_sample_position(fs_reg dst, fs_reg int_sample_pos)
1126 {
1127 assert(stage == MESA_SHADER_FRAGMENT);
1128 brw_wm_prog_data *wm_prog_data = (brw_wm_prog_data *) this->prog_data;
1129 assert(dst.type == BRW_REGISTER_TYPE_F);
1130
1131 if (wm_prog_data->persample_dispatch) {
1132 /* Convert int_sample_pos to floating point */
1133 bld.MOV(dst, int_sample_pos);
1134 /* Scale to the range [0, 1] */
1135 bld.MUL(dst, dst, brw_imm_f(1 / 16.0f));
1136 }
1137 else {
1138 /* From ARB_sample_shading specification:
1139 * "When rendering to a non-multisample buffer, or if multisample
1140 * rasterization is disabled, gl_SamplePosition will always be
1141 * (0.5, 0.5).
1142 */
1143 bld.MOV(dst, brw_imm_f(0.5f));
1144 }
1145 }
1146
1147 fs_reg *
1148 fs_visitor::emit_samplepos_setup()
1149 {
1150 assert(devinfo->gen >= 6);
1151
1152 const fs_builder abld = bld.annotate("compute sample position");
1153 fs_reg *reg = new(this->mem_ctx) fs_reg(vgrf(glsl_type::vec2_type));
1154 fs_reg pos = *reg;
1155 fs_reg int_sample_x = vgrf(glsl_type::int_type);
1156 fs_reg int_sample_y = vgrf(glsl_type::int_type);
1157
1158 /* WM will be run in MSDISPMODE_PERSAMPLE. So, only one of SIMD8 or SIMD16
1159 * mode will be enabled.
1160 *
1161 * From the Ivy Bridge PRM, volume 2 part 1, page 344:
1162 * R31.1:0 Position Offset X/Y for Slot[3:0]
1163 * R31.3:2 Position Offset X/Y for Slot[7:4]
1164 * .....
1165 *
1166 * The X, Y sample positions come in as bytes in thread payload. So, read
1167 * the positions using vstride=16, width=8, hstride=2.
1168 */
1169 struct brw_reg sample_pos_reg =
1170 stride(retype(brw_vec1_grf(payload.sample_pos_reg, 0),
1171 BRW_REGISTER_TYPE_B), 16, 8, 2);
1172
1173 if (dispatch_width == 8) {
1174 abld.MOV(int_sample_x, fs_reg(sample_pos_reg));
1175 } else {
1176 abld.half(0).MOV(half(int_sample_x, 0), fs_reg(sample_pos_reg));
1177 abld.half(1).MOV(half(int_sample_x, 1),
1178 fs_reg(suboffset(sample_pos_reg, 16)));
1179 }
1180 /* Compute gl_SamplePosition.x */
1181 compute_sample_position(pos, int_sample_x);
1182 pos = offset(pos, abld, 1);
1183 if (dispatch_width == 8) {
1184 abld.MOV(int_sample_y, fs_reg(suboffset(sample_pos_reg, 1)));
1185 } else {
1186 abld.half(0).MOV(half(int_sample_y, 0),
1187 fs_reg(suboffset(sample_pos_reg, 1)));
1188 abld.half(1).MOV(half(int_sample_y, 1),
1189 fs_reg(suboffset(sample_pos_reg, 17)));
1190 }
1191 /* Compute gl_SamplePosition.y */
1192 compute_sample_position(pos, int_sample_y);
1193 return reg;
1194 }
1195
1196 fs_reg *
1197 fs_visitor::emit_sampleid_setup()
1198 {
1199 assert(stage == MESA_SHADER_FRAGMENT);
1200 brw_wm_prog_key *key = (brw_wm_prog_key*) this->key;
1201 assert(devinfo->gen >= 6);
1202
1203 const fs_builder abld = bld.annotate("compute sample id");
1204 fs_reg *reg = new(this->mem_ctx) fs_reg(vgrf(glsl_type::int_type));
1205
1206 if (!key->multisample_fbo) {
1207 /* As per GL_ARB_sample_shading specification:
1208 * "When rendering to a non-multisample buffer, or if multisample
1209 * rasterization is disabled, gl_SampleID will always be zero."
1210 */
1211 abld.MOV(*reg, brw_imm_d(0));
1212 } else if (devinfo->gen >= 8) {
1213 /* Sample ID comes in as 4-bit numbers in g1.0:
1214 *
1215 * 15:12 Slot 3 SampleID (only used in SIMD16)
1216 * 11:8 Slot 2 SampleID (only used in SIMD16)
1217 * 7:4 Slot 1 SampleID
1218 * 3:0 Slot 0 SampleID
1219 *
1220 * Each slot corresponds to four channels, so we want to replicate each
1221 * half-byte value to 4 channels in a row:
1222 *
1223 * dst+0: .7 .6 .5 .4 .3 .2 .1 .0
1224 * 7:4 7:4 7:4 7:4 3:0 3:0 3:0 3:0
1225 *
1226 * dst+1: .7 .6 .5 .4 .3 .2 .1 .0 (if SIMD16)
1227 * 15:12 15:12 15:12 15:12 11:8 11:8 11:8 11:8
1228 *
1229 * First, we read g1.0 with a <1,8,0>UB region, causing the first 8
1230 * channels to read the first byte (7:0), and the second group of 8
1231 * channels to read the second byte (15:8). Then, we shift right by
1232 * a vector immediate of <4, 4, 4, 4, 0, 0, 0, 0>, moving the slot 1 / 3
1233 * values into place. Finally, we AND with 0xf to keep the low nibble.
1234 *
1235 * shr(16) tmp<1>W g1.0<1,8,0>B 0x44440000:V
1236 * and(16) dst<1>D tmp<8,8,1>W 0xf:W
1237 *
1238 * TODO: These payload bits exist on Gen7 too, but they appear to always
1239 * be zero, so this code fails to work. We should find out why.
1240 */
1241 fs_reg tmp(VGRF, alloc.allocate(1), BRW_REGISTER_TYPE_W);
1242
1243 abld.SHR(tmp, fs_reg(stride(retype(brw_vec1_grf(1, 0),
1244 BRW_REGISTER_TYPE_B), 1, 8, 0)),
1245 brw_imm_v(0x44440000));
1246 abld.AND(*reg, tmp, brw_imm_w(0xf));
1247 } else {
1248 const fs_reg t1 = component(fs_reg(VGRF, alloc.allocate(1),
1249 BRW_REGISTER_TYPE_D), 0);
1250 const fs_reg t2(VGRF, alloc.allocate(1), BRW_REGISTER_TYPE_W);
1251
1252 /* The PS will be run in MSDISPMODE_PERSAMPLE. For example with
1253 * 8x multisampling, subspan 0 will represent sample N (where N
1254 * is 0, 2, 4 or 6), subspan 1 will represent sample 1, 3, 5 or
1255 * 7. We can find the value of N by looking at R0.0 bits 7:6
1256 * ("Starting Sample Pair Index (SSPI)") and multiplying by two
1257 * (since samples are always delivered in pairs). That is, we
1258 * compute 2*((R0.0 & 0xc0) >> 6) == (R0.0 & 0xc0) >> 5. Then
1259 * we need to add N to the sequence (0, 0, 0, 0, 1, 1, 1, 1) in
1260 * case of SIMD8 and sequence (0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2,
1261 * 2, 3, 3, 3, 3) in case of SIMD16. We compute this sequence by
1262 * populating a temporary variable with the sequence (0, 1, 2, 3),
1263 * and then reading from it using vstride=1, width=4, hstride=0.
1264 * These computations hold good for 4x multisampling as well.
1265 *
1266 * For 2x MSAA and SIMD16, we want to use the sequence (0, 1, 0, 1):
1267 * the first four slots are sample 0 of subspan 0; the next four
1268 * are sample 1 of subspan 0; the third group is sample 0 of
1269 * subspan 1, and finally sample 1 of subspan 1.
1270 */
1271
1272 /* SKL+ has an extra bit for the Starting Sample Pair Index to
1273 * accomodate 16x MSAA.
1274 */
1275 abld.exec_all().group(1, 0)
1276 .AND(t1, fs_reg(retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_D)),
1277 brw_imm_ud(0xc0));
1278 abld.exec_all().group(1, 0).SHR(t1, t1, brw_imm_d(5));
1279
1280 /* This works for both SIMD8 and SIMD16 */
1281 abld.exec_all().group(4, 0).MOV(t2, brw_imm_v(0x3210));
1282
1283 /* This special instruction takes care of setting vstride=1,
1284 * width=4, hstride=0 of t2 during an ADD instruction.
1285 */
1286 abld.emit(FS_OPCODE_SET_SAMPLE_ID, *reg, t1, t2);
1287 }
1288
1289 return reg;
1290 }
1291
1292 fs_reg *
1293 fs_visitor::emit_samplemaskin_setup()
1294 {
1295 assert(stage == MESA_SHADER_FRAGMENT);
1296 brw_wm_prog_data *wm_prog_data = (brw_wm_prog_data *) this->prog_data;
1297 assert(devinfo->gen >= 6);
1298
1299 fs_reg *reg = new(this->mem_ctx) fs_reg(vgrf(glsl_type::int_type));
1300
1301 fs_reg coverage_mask(retype(brw_vec8_grf(payload.sample_mask_in_reg, 0),
1302 BRW_REGISTER_TYPE_D));
1303
1304 if (wm_prog_data->persample_dispatch) {
1305 /* gl_SampleMaskIn[] comes from two sources: the input coverage mask,
1306 * and a mask representing which sample is being processed by the
1307 * current shader invocation.
1308 *
1309 * From the OES_sample_variables specification:
1310 * "When per-sample shading is active due to the use of a fragment input
1311 * qualified by "sample" or due to the use of the gl_SampleID or
1312 * gl_SamplePosition variables, only the bit for the current sample is
1313 * set in gl_SampleMaskIn."
1314 */
1315 const fs_builder abld = bld.annotate("compute gl_SampleMaskIn");
1316
1317 if (nir_system_values[SYSTEM_VALUE_SAMPLE_ID].file == BAD_FILE)
1318 nir_system_values[SYSTEM_VALUE_SAMPLE_ID] = *emit_sampleid_setup();
1319
1320 fs_reg one = vgrf(glsl_type::int_type);
1321 fs_reg enabled_mask = vgrf(glsl_type::int_type);
1322 abld.MOV(one, brw_imm_d(1));
1323 abld.SHL(enabled_mask, one, nir_system_values[SYSTEM_VALUE_SAMPLE_ID]);
1324 abld.AND(*reg, enabled_mask, coverage_mask);
1325 } else {
1326 /* In per-pixel mode, the coverage mask is sufficient. */
1327 *reg = coverage_mask;
1328 }
1329 return reg;
1330 }
1331
1332 fs_reg
1333 fs_visitor::resolve_source_modifiers(const fs_reg &src)
1334 {
1335 if (!src.abs && !src.negate)
1336 return src;
1337
1338 fs_reg temp = bld.vgrf(src.type);
1339 bld.MOV(temp, src);
1340
1341 return temp;
1342 }
1343
1344 void
1345 fs_visitor::emit_discard_jump()
1346 {
1347 assert(((brw_wm_prog_data*) this->prog_data)->uses_kill);
1348
1349 /* For performance, after a discard, jump to the end of the
1350 * shader if all relevant channels have been discarded.
1351 */
1352 fs_inst *discard_jump = bld.emit(FS_OPCODE_DISCARD_JUMP);
1353 discard_jump->flag_subreg = 1;
1354
1355 discard_jump->predicate = BRW_PREDICATE_ALIGN1_ANY4H;
1356 discard_jump->predicate_inverse = true;
1357 }
1358
1359 void
1360 fs_visitor::emit_gs_thread_end()
1361 {
1362 assert(stage == MESA_SHADER_GEOMETRY);
1363
1364 struct brw_gs_prog_data *gs_prog_data =
1365 (struct brw_gs_prog_data *) prog_data;
1366
1367 if (gs_compile->control_data_header_size_bits > 0) {
1368 emit_gs_control_data_bits(this->final_gs_vertex_count);
1369 }
1370
1371 const fs_builder abld = bld.annotate("thread end");
1372 fs_inst *inst;
1373
1374 if (gs_prog_data->static_vertex_count != -1) {
1375 foreach_in_list_reverse(fs_inst, prev, &this->instructions) {
1376 if (prev->opcode == SHADER_OPCODE_URB_WRITE_SIMD8 ||
1377 prev->opcode == SHADER_OPCODE_URB_WRITE_SIMD8_MASKED ||
1378 prev->opcode == SHADER_OPCODE_URB_WRITE_SIMD8_PER_SLOT ||
1379 prev->opcode == SHADER_OPCODE_URB_WRITE_SIMD8_MASKED_PER_SLOT) {
1380 prev->eot = true;
1381
1382 /* Delete now dead instructions. */
1383 foreach_in_list_reverse_safe(exec_node, dead, &this->instructions) {
1384 if (dead == prev)
1385 break;
1386 dead->remove();
1387 }
1388 return;
1389 } else if (prev->is_control_flow() || prev->has_side_effects()) {
1390 break;
1391 }
1392 }
1393 fs_reg hdr = abld.vgrf(BRW_REGISTER_TYPE_UD, 1);
1394 abld.MOV(hdr, fs_reg(retype(brw_vec8_grf(1, 0), BRW_REGISTER_TYPE_UD)));
1395 inst = abld.emit(SHADER_OPCODE_URB_WRITE_SIMD8, reg_undef, hdr);
1396 inst->mlen = 1;
1397 } else {
1398 fs_reg payload = abld.vgrf(BRW_REGISTER_TYPE_UD, 2);
1399 fs_reg *sources = ralloc_array(mem_ctx, fs_reg, 2);
1400 sources[0] = fs_reg(retype(brw_vec8_grf(1, 0), BRW_REGISTER_TYPE_UD));
1401 sources[1] = this->final_gs_vertex_count;
1402 abld.LOAD_PAYLOAD(payload, sources, 2, 2);
1403 inst = abld.emit(SHADER_OPCODE_URB_WRITE_SIMD8, reg_undef, payload);
1404 inst->mlen = 2;
1405 }
1406 inst->eot = true;
1407 inst->offset = 0;
1408 }
1409
1410 void
1411 fs_visitor::assign_curb_setup()
1412 {
1413 prog_data->curb_read_length = ALIGN(stage_prog_data->nr_params, 8) / 8;
1414
1415 /* Map the offsets in the UNIFORM file to fixed HW regs. */
1416 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1417 for (unsigned int i = 0; i < inst->sources; i++) {
1418 if (inst->src[i].file == UNIFORM) {
1419 int uniform_nr = inst->src[i].nr + inst->src[i].offset / 4;
1420 int constant_nr;
1421 if (uniform_nr >= 0 && uniform_nr < (int) uniforms) {
1422 constant_nr = push_constant_loc[uniform_nr];
1423 } else {
1424 /* Section 5.11 of the OpenGL 4.1 spec says:
1425 * "Out-of-bounds reads return undefined values, which include
1426 * values from other variables of the active program or zero."
1427 * Just return the first push constant.
1428 */
1429 constant_nr = 0;
1430 }
1431
1432 struct brw_reg brw_reg = brw_vec1_grf(payload.num_regs +
1433 constant_nr / 8,
1434 constant_nr % 8);
1435 brw_reg.abs = inst->src[i].abs;
1436 brw_reg.negate = inst->src[i].negate;
1437
1438 assert(inst->src[i].stride == 0);
1439 inst->src[i] = byte_offset(
1440 retype(brw_reg, inst->src[i].type),
1441 inst->src[i].offset % 4);
1442 }
1443 }
1444 }
1445
1446 /* This may be updated in assign_urb_setup or assign_vs_urb_setup. */
1447 this->first_non_payload_grf = payload.num_regs + prog_data->curb_read_length;
1448 }
1449
1450 void
1451 fs_visitor::calculate_urb_setup()
1452 {
1453 assert(stage == MESA_SHADER_FRAGMENT);
1454 brw_wm_prog_data *prog_data = (brw_wm_prog_data*) this->prog_data;
1455 brw_wm_prog_key *key = (brw_wm_prog_key*) this->key;
1456
1457 memset(prog_data->urb_setup, -1,
1458 sizeof(prog_data->urb_setup[0]) * VARYING_SLOT_MAX);
1459
1460 int urb_next = 0;
1461 /* Figure out where each of the incoming setup attributes lands. */
1462 if (devinfo->gen >= 6) {
1463 if (_mesa_bitcount_64(nir->info.inputs_read &
1464 BRW_FS_VARYING_INPUT_MASK) <= 16) {
1465 /* The SF/SBE pipeline stage can do arbitrary rearrangement of the
1466 * first 16 varying inputs, so we can put them wherever we want.
1467 * Just put them in order.
1468 *
1469 * This is useful because it means that (a) inputs not used by the
1470 * fragment shader won't take up valuable register space, and (b) we
1471 * won't have to recompile the fragment shader if it gets paired with
1472 * a different vertex (or geometry) shader.
1473 */
1474 for (unsigned int i = 0; i < VARYING_SLOT_MAX; i++) {
1475 if (nir->info.inputs_read & BRW_FS_VARYING_INPUT_MASK &
1476 BITFIELD64_BIT(i)) {
1477 prog_data->urb_setup[i] = urb_next++;
1478 }
1479 }
1480 } else {
1481 bool include_vue_header =
1482 nir->info.inputs_read & (VARYING_BIT_LAYER | VARYING_BIT_VIEWPORT);
1483
1484 /* We have enough input varyings that the SF/SBE pipeline stage can't
1485 * arbitrarily rearrange them to suit our whim; we have to put them
1486 * in an order that matches the output of the previous pipeline stage
1487 * (geometry or vertex shader).
1488 */
1489 struct brw_vue_map prev_stage_vue_map;
1490 brw_compute_vue_map(devinfo, &prev_stage_vue_map,
1491 key->input_slots_valid,
1492 nir->info.separate_shader);
1493 int first_slot =
1494 include_vue_header ? 0 : 2 * BRW_SF_URB_ENTRY_READ_OFFSET;
1495
1496 assert(prev_stage_vue_map.num_slots <= first_slot + 32);
1497 for (int slot = first_slot; slot < prev_stage_vue_map.num_slots;
1498 slot++) {
1499 int varying = prev_stage_vue_map.slot_to_varying[slot];
1500 if (varying != BRW_VARYING_SLOT_PAD &&
1501 (nir->info.inputs_read & BRW_FS_VARYING_INPUT_MASK &
1502 BITFIELD64_BIT(varying))) {
1503 prog_data->urb_setup[varying] = slot - first_slot;
1504 }
1505 }
1506 urb_next = prev_stage_vue_map.num_slots - first_slot;
1507 }
1508 } else {
1509 /* FINISHME: The sf doesn't map VS->FS inputs for us very well. */
1510 for (unsigned int i = 0; i < VARYING_SLOT_MAX; i++) {
1511 /* Point size is packed into the header, not as a general attribute */
1512 if (i == VARYING_SLOT_PSIZ)
1513 continue;
1514
1515 if (key->input_slots_valid & BITFIELD64_BIT(i)) {
1516 /* The back color slot is skipped when the front color is
1517 * also written to. In addition, some slots can be
1518 * written in the vertex shader and not read in the
1519 * fragment shader. So the register number must always be
1520 * incremented, mapped or not.
1521 */
1522 if (_mesa_varying_slot_in_fs((gl_varying_slot) i))
1523 prog_data->urb_setup[i] = urb_next;
1524 urb_next++;
1525 }
1526 }
1527
1528 /*
1529 * It's a FS only attribute, and we did interpolation for this attribute
1530 * in SF thread. So, count it here, too.
1531 *
1532 * See compile_sf_prog() for more info.
1533 */
1534 if (nir->info.inputs_read & BITFIELD64_BIT(VARYING_SLOT_PNTC))
1535 prog_data->urb_setup[VARYING_SLOT_PNTC] = urb_next++;
1536 }
1537
1538 prog_data->num_varying_inputs = urb_next;
1539 }
1540
1541 void
1542 fs_visitor::assign_urb_setup()
1543 {
1544 assert(stage == MESA_SHADER_FRAGMENT);
1545 brw_wm_prog_data *prog_data = (brw_wm_prog_data*) this->prog_data;
1546
1547 int urb_start = payload.num_regs + prog_data->base.curb_read_length;
1548
1549 /* Offset all the urb_setup[] index by the actual position of the
1550 * setup regs, now that the location of the constants has been chosen.
1551 */
1552 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1553 if (inst->opcode == FS_OPCODE_LINTERP) {
1554 assert(inst->src[1].file == FIXED_GRF);
1555 inst->src[1].nr += urb_start;
1556 }
1557
1558 if (inst->opcode == FS_OPCODE_CINTERP) {
1559 assert(inst->src[0].file == FIXED_GRF);
1560 inst->src[0].nr += urb_start;
1561 }
1562 }
1563
1564 /* Each attribute is 4 setup channels, each of which is half a reg. */
1565 this->first_non_payload_grf += prog_data->num_varying_inputs * 2;
1566 }
1567
1568 void
1569 fs_visitor::convert_attr_sources_to_hw_regs(fs_inst *inst)
1570 {
1571 for (int i = 0; i < inst->sources; i++) {
1572 if (inst->src[i].file == ATTR) {
1573 int grf = payload.num_regs +
1574 prog_data->curb_read_length +
1575 inst->src[i].nr +
1576 inst->src[i].offset / REG_SIZE;
1577
1578 /* As explained at brw_reg_from_fs_reg, From the Haswell PRM:
1579 *
1580 * VertStride must be used to cross GRF register boundaries. This
1581 * rule implies that elements within a 'Width' cannot cross GRF
1582 * boundaries.
1583 *
1584 * So, for registers that are large enough, we have to split the exec
1585 * size in two and trust the compression state to sort it out.
1586 */
1587 unsigned total_size = inst->exec_size *
1588 inst->src[i].stride *
1589 type_sz(inst->src[i].type);
1590
1591 assert(total_size <= 2 * REG_SIZE);
1592 const unsigned exec_size =
1593 (total_size <= REG_SIZE) ? inst->exec_size : inst->exec_size / 2;
1594
1595 unsigned width = inst->src[i].stride == 0 ? 1 : exec_size;
1596 struct brw_reg reg =
1597 stride(byte_offset(retype(brw_vec8_grf(grf, 0), inst->src[i].type),
1598 inst->src[i].offset % REG_SIZE),
1599 exec_size * inst->src[i].stride,
1600 width, inst->src[i].stride);
1601 reg.abs = inst->src[i].abs;
1602 reg.negate = inst->src[i].negate;
1603
1604 inst->src[i] = reg;
1605 }
1606 }
1607 }
1608
1609 void
1610 fs_visitor::assign_vs_urb_setup()
1611 {
1612 brw_vs_prog_data *vs_prog_data = (brw_vs_prog_data *) prog_data;
1613
1614 assert(stage == MESA_SHADER_VERTEX);
1615
1616 /* Each attribute is 4 regs. */
1617 this->first_non_payload_grf += 4 * vs_prog_data->nr_attribute_slots;
1618
1619 assert(vs_prog_data->base.urb_read_length <= 15);
1620
1621 /* Rewrite all ATTR file references to the hw grf that they land in. */
1622 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1623 convert_attr_sources_to_hw_regs(inst);
1624 }
1625 }
1626
1627 void
1628 fs_visitor::assign_tcs_single_patch_urb_setup()
1629 {
1630 assert(stage == MESA_SHADER_TESS_CTRL);
1631
1632 /* Rewrite all ATTR file references to HW_REGs. */
1633 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1634 convert_attr_sources_to_hw_regs(inst);
1635 }
1636 }
1637
1638 void
1639 fs_visitor::assign_tes_urb_setup()
1640 {
1641 assert(stage == MESA_SHADER_TESS_EVAL);
1642
1643 brw_vue_prog_data *vue_prog_data = (brw_vue_prog_data *) prog_data;
1644
1645 first_non_payload_grf += 8 * vue_prog_data->urb_read_length;
1646
1647 /* Rewrite all ATTR file references to HW_REGs. */
1648 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1649 convert_attr_sources_to_hw_regs(inst);
1650 }
1651 }
1652
1653 void
1654 fs_visitor::assign_gs_urb_setup()
1655 {
1656 assert(stage == MESA_SHADER_GEOMETRY);
1657
1658 brw_vue_prog_data *vue_prog_data = (brw_vue_prog_data *) prog_data;
1659
1660 first_non_payload_grf +=
1661 8 * vue_prog_data->urb_read_length * nir->info.gs.vertices_in;
1662
1663 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1664 /* Rewrite all ATTR file references to GRFs. */
1665 convert_attr_sources_to_hw_regs(inst);
1666 }
1667 }
1668
1669
1670 /**
1671 * Split large virtual GRFs into separate components if we can.
1672 *
1673 * This is mostly duplicated with what brw_fs_vector_splitting does,
1674 * but that's really conservative because it's afraid of doing
1675 * splitting that doesn't result in real progress after the rest of
1676 * the optimization phases, which would cause infinite looping in
1677 * optimization. We can do it once here, safely. This also has the
1678 * opportunity to split interpolated values, or maybe even uniforms,
1679 * which we don't have at the IR level.
1680 *
1681 * We want to split, because virtual GRFs are what we register
1682 * allocate and spill (due to contiguousness requirements for some
1683 * instructions), and they're what we naturally generate in the
1684 * codegen process, but most virtual GRFs don't actually need to be
1685 * contiguous sets of GRFs. If we split, we'll end up with reduced
1686 * live intervals and better dead code elimination and coalescing.
1687 */
1688 void
1689 fs_visitor::split_virtual_grfs()
1690 {
1691 int num_vars = this->alloc.count;
1692
1693 /* Count the total number of registers */
1694 int reg_count = 0;
1695 int vgrf_to_reg[num_vars];
1696 for (int i = 0; i < num_vars; i++) {
1697 vgrf_to_reg[i] = reg_count;
1698 reg_count += alloc.sizes[i];
1699 }
1700
1701 /* An array of "split points". For each register slot, this indicates
1702 * if this slot can be separated from the previous slot. Every time an
1703 * instruction uses multiple elements of a register (as a source or
1704 * destination), we mark the used slots as inseparable. Then we go
1705 * through and split the registers into the smallest pieces we can.
1706 */
1707 bool split_points[reg_count];
1708 memset(split_points, 0, sizeof(split_points));
1709
1710 /* Mark all used registers as fully splittable */
1711 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1712 if (inst->dst.file == VGRF) {
1713 int reg = vgrf_to_reg[inst->dst.nr];
1714 for (unsigned j = 1; j < this->alloc.sizes[inst->dst.nr]; j++)
1715 split_points[reg + j] = true;
1716 }
1717
1718 for (int i = 0; i < inst->sources; i++) {
1719 if (inst->src[i].file == VGRF) {
1720 int reg = vgrf_to_reg[inst->src[i].nr];
1721 for (unsigned j = 1; j < this->alloc.sizes[inst->src[i].nr]; j++)
1722 split_points[reg + j] = true;
1723 }
1724 }
1725 }
1726
1727 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1728 if (inst->dst.file == VGRF) {
1729 int reg = vgrf_to_reg[inst->dst.nr] + inst->dst.offset / REG_SIZE;
1730 for (unsigned j = 1; j < regs_written(inst); j++)
1731 split_points[reg + j] = false;
1732 }
1733 for (int i = 0; i < inst->sources; i++) {
1734 if (inst->src[i].file == VGRF) {
1735 int reg = vgrf_to_reg[inst->src[i].nr] + inst->src[i].offset / REG_SIZE;
1736 for (unsigned j = 1; j < regs_read(inst, i); j++)
1737 split_points[reg + j] = false;
1738 }
1739 }
1740 }
1741
1742 int new_virtual_grf[reg_count];
1743 int new_reg_offset[reg_count];
1744
1745 int reg = 0;
1746 for (int i = 0; i < num_vars; i++) {
1747 /* The first one should always be 0 as a quick sanity check. */
1748 assert(split_points[reg] == false);
1749
1750 /* j = 0 case */
1751 new_reg_offset[reg] = 0;
1752 reg++;
1753 int offset = 1;
1754
1755 /* j > 0 case */
1756 for (unsigned j = 1; j < alloc.sizes[i]; j++) {
1757 /* If this is a split point, reset the offset to 0 and allocate a
1758 * new virtual GRF for the previous offset many registers
1759 */
1760 if (split_points[reg]) {
1761 assert(offset <= MAX_VGRF_SIZE);
1762 int grf = alloc.allocate(offset);
1763 for (int k = reg - offset; k < reg; k++)
1764 new_virtual_grf[k] = grf;
1765 offset = 0;
1766 }
1767 new_reg_offset[reg] = offset;
1768 offset++;
1769 reg++;
1770 }
1771
1772 /* The last one gets the original register number */
1773 assert(offset <= MAX_VGRF_SIZE);
1774 alloc.sizes[i] = offset;
1775 for (int k = reg - offset; k < reg; k++)
1776 new_virtual_grf[k] = i;
1777 }
1778 assert(reg == reg_count);
1779
1780 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1781 if (inst->dst.file == VGRF) {
1782 reg = vgrf_to_reg[inst->dst.nr] + inst->dst.offset / REG_SIZE;
1783 inst->dst.nr = new_virtual_grf[reg];
1784 inst->dst.offset = new_reg_offset[reg] * REG_SIZE +
1785 inst->dst.offset % REG_SIZE;
1786 assert((unsigned)new_reg_offset[reg] < alloc.sizes[new_virtual_grf[reg]]);
1787 }
1788 for (int i = 0; i < inst->sources; i++) {
1789 if (inst->src[i].file == VGRF) {
1790 reg = vgrf_to_reg[inst->src[i].nr] + inst->src[i].offset / REG_SIZE;
1791 inst->src[i].nr = new_virtual_grf[reg];
1792 inst->src[i].offset = new_reg_offset[reg] * REG_SIZE +
1793 inst->src[i].offset % REG_SIZE;
1794 assert((unsigned)new_reg_offset[reg] < alloc.sizes[new_virtual_grf[reg]]);
1795 }
1796 }
1797 }
1798 invalidate_live_intervals();
1799 }
1800
1801 /**
1802 * Remove unused virtual GRFs and compact the virtual_grf_* arrays.
1803 *
1804 * During code generation, we create tons of temporary variables, many of
1805 * which get immediately killed and are never used again. Yet, in later
1806 * optimization and analysis passes, such as compute_live_intervals, we need
1807 * to loop over all the virtual GRFs. Compacting them can save a lot of
1808 * overhead.
1809 */
1810 bool
1811 fs_visitor::compact_virtual_grfs()
1812 {
1813 bool progress = false;
1814 int remap_table[this->alloc.count];
1815 memset(remap_table, -1, sizeof(remap_table));
1816
1817 /* Mark which virtual GRFs are used. */
1818 foreach_block_and_inst(block, const fs_inst, inst, cfg) {
1819 if (inst->dst.file == VGRF)
1820 remap_table[inst->dst.nr] = 0;
1821
1822 for (int i = 0; i < inst->sources; i++) {
1823 if (inst->src[i].file == VGRF)
1824 remap_table[inst->src[i].nr] = 0;
1825 }
1826 }
1827
1828 /* Compact the GRF arrays. */
1829 int new_index = 0;
1830 for (unsigned i = 0; i < this->alloc.count; i++) {
1831 if (remap_table[i] == -1) {
1832 /* We just found an unused register. This means that we are
1833 * actually going to compact something.
1834 */
1835 progress = true;
1836 } else {
1837 remap_table[i] = new_index;
1838 alloc.sizes[new_index] = alloc.sizes[i];
1839 invalidate_live_intervals();
1840 ++new_index;
1841 }
1842 }
1843
1844 this->alloc.count = new_index;
1845
1846 /* Patch all the instructions to use the newly renumbered registers */
1847 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1848 if (inst->dst.file == VGRF)
1849 inst->dst.nr = remap_table[inst->dst.nr];
1850
1851 for (int i = 0; i < inst->sources; i++) {
1852 if (inst->src[i].file == VGRF)
1853 inst->src[i].nr = remap_table[inst->src[i].nr];
1854 }
1855 }
1856
1857 /* Patch all the references to delta_xy, since they're used in register
1858 * allocation. If they're unused, switch them to BAD_FILE so we don't
1859 * think some random VGRF is delta_xy.
1860 */
1861 for (unsigned i = 0; i < ARRAY_SIZE(delta_xy); i++) {
1862 if (delta_xy[i].file == VGRF) {
1863 if (remap_table[delta_xy[i].nr] != -1) {
1864 delta_xy[i].nr = remap_table[delta_xy[i].nr];
1865 } else {
1866 delta_xy[i].file = BAD_FILE;
1867 }
1868 }
1869 }
1870
1871 return progress;
1872 }
1873
1874 static void
1875 set_push_pull_constant_loc(unsigned uniform, int *chunk_start, bool contiguous,
1876 int *push_constant_loc, int *pull_constant_loc,
1877 unsigned *num_push_constants,
1878 unsigned *num_pull_constants,
1879 const unsigned max_push_components,
1880 const unsigned max_chunk_size,
1881 struct brw_stage_prog_data *stage_prog_data)
1882 {
1883 /* This is the first live uniform in the chunk */
1884 if (*chunk_start < 0)
1885 *chunk_start = uniform;
1886
1887 /* If this element does not need to be contiguous with the next, we
1888 * split at this point and everything between chunk_start and u forms a
1889 * single chunk.
1890 */
1891 if (!contiguous) {
1892 unsigned chunk_size = uniform - *chunk_start + 1;
1893
1894 /* Decide whether we should push or pull this parameter. In the
1895 * Vulkan driver, push constants are explicitly exposed via the API
1896 * so we push everything. In GL, we only push small arrays.
1897 */
1898 if (stage_prog_data->pull_param == NULL ||
1899 (*num_push_constants + chunk_size <= max_push_components &&
1900 chunk_size <= max_chunk_size)) {
1901 assert(*num_push_constants + chunk_size <= max_push_components);
1902 for (unsigned j = *chunk_start; j <= uniform; j++)
1903 push_constant_loc[j] = (*num_push_constants)++;
1904 } else {
1905 for (unsigned j = *chunk_start; j <= uniform; j++)
1906 pull_constant_loc[j] = (*num_pull_constants)++;
1907 }
1908
1909 *chunk_start = -1;
1910 }
1911 }
1912
1913 /**
1914 * Assign UNIFORM file registers to either push constants or pull constants.
1915 *
1916 * We allow a fragment shader to have more than the specified minimum
1917 * maximum number of fragment shader uniform components (64). If
1918 * there are too many of these, they'd fill up all of register space.
1919 * So, this will push some of them out to the pull constant buffer and
1920 * update the program to load them.
1921 */
1922 void
1923 fs_visitor::assign_constant_locations()
1924 {
1925 /* Only the first compile gets to decide on locations. */
1926 if (dispatch_width != min_dispatch_width)
1927 return;
1928
1929 bool is_live[uniforms];
1930 memset(is_live, 0, sizeof(is_live));
1931 bool is_live_64bit[uniforms];
1932 memset(is_live_64bit, 0, sizeof(is_live_64bit));
1933
1934 /* For each uniform slot, a value of true indicates that the given slot and
1935 * the next slot must remain contiguous. This is used to keep us from
1936 * splitting arrays apart.
1937 */
1938 bool contiguous[uniforms];
1939 memset(contiguous, 0, sizeof(contiguous));
1940
1941 int thread_local_id_index =
1942 (stage == MESA_SHADER_COMPUTE) ?
1943 ((brw_cs_prog_data*)stage_prog_data)->thread_local_id_index : -1;
1944
1945 /* First, we walk through the instructions and do two things:
1946 *
1947 * 1) Figure out which uniforms are live.
1948 *
1949 * 2) Mark any indirectly used ranges of registers as contiguous.
1950 *
1951 * Note that we don't move constant-indexed accesses to arrays. No
1952 * testing has been done of the performance impact of this choice.
1953 */
1954 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
1955 for (int i = 0 ; i < inst->sources; i++) {
1956 if (inst->src[i].file != UNIFORM)
1957 continue;
1958
1959 int constant_nr = inst->src[i].nr + inst->src[i].offset / 4;
1960
1961 if (inst->opcode == SHADER_OPCODE_MOV_INDIRECT && i == 0) {
1962 assert(inst->src[2].ud % 4 == 0);
1963 unsigned last = constant_nr + (inst->src[2].ud / 4) - 1;
1964 assert(last < uniforms);
1965
1966 for (unsigned j = constant_nr; j < last; j++) {
1967 is_live[j] = true;
1968 contiguous[j] = true;
1969 if (type_sz(inst->src[i].type) == 8) {
1970 is_live_64bit[j] = true;
1971 }
1972 }
1973 is_live[last] = true;
1974 } else {
1975 if (constant_nr >= 0 && constant_nr < (int) uniforms) {
1976 int regs_read = inst->components_read(i) *
1977 type_sz(inst->src[i].type) / 4;
1978 for (int j = 0; j < regs_read; j++) {
1979 is_live[constant_nr + j] = true;
1980 if (type_sz(inst->src[i].type) == 8) {
1981 is_live_64bit[constant_nr + j] = true;
1982 }
1983 }
1984 }
1985 }
1986 }
1987 }
1988
1989 if (thread_local_id_index >= 0 && !is_live[thread_local_id_index])
1990 thread_local_id_index = -1;
1991
1992 /* Only allow 16 registers (128 uniform components) as push constants.
1993 *
1994 * Just demote the end of the list. We could probably do better
1995 * here, demoting things that are rarely used in the program first.
1996 *
1997 * If changing this value, note the limitation about total_regs in
1998 * brw_curbe.c.
1999 */
2000 unsigned int max_push_components = 16 * 8;
2001 if (thread_local_id_index >= 0)
2002 max_push_components--; /* Save a slot for the thread ID */
2003
2004 /* We push small arrays, but no bigger than 16 floats. This is big enough
2005 * for a vec4 but hopefully not large enough to push out other stuff. We
2006 * should probably use a better heuristic at some point.
2007 */
2008 const unsigned int max_chunk_size = 16;
2009
2010 unsigned int num_push_constants = 0;
2011 unsigned int num_pull_constants = 0;
2012
2013 push_constant_loc = ralloc_array(mem_ctx, int, uniforms);
2014 pull_constant_loc = ralloc_array(mem_ctx, int, uniforms);
2015
2016 /* Default to -1 meaning no location */
2017 memset(push_constant_loc, -1, uniforms * sizeof(*push_constant_loc));
2018 memset(pull_constant_loc, -1, uniforms * sizeof(*pull_constant_loc));
2019
2020 int chunk_start = -1;
2021
2022 /* First push 64-bit uniforms to ensure they are properly aligned */
2023 for (unsigned u = 0; u < uniforms; u++) {
2024 if (!is_live[u] || !is_live_64bit[u])
2025 continue;
2026
2027 set_push_pull_constant_loc(u, &chunk_start, contiguous[u],
2028 push_constant_loc, pull_constant_loc,
2029 &num_push_constants, &num_pull_constants,
2030 max_push_components, max_chunk_size,
2031 stage_prog_data);
2032
2033 }
2034
2035 /* Then push the rest of uniforms */
2036 for (unsigned u = 0; u < uniforms; u++) {
2037 if (!is_live[u] || is_live_64bit[u])
2038 continue;
2039
2040 /* Skip thread_local_id_index to put it in the last push register. */
2041 if (thread_local_id_index == (int)u)
2042 continue;
2043
2044 set_push_pull_constant_loc(u, &chunk_start, contiguous[u],
2045 push_constant_loc, pull_constant_loc,
2046 &num_push_constants, &num_pull_constants,
2047 max_push_components, max_chunk_size,
2048 stage_prog_data);
2049 }
2050
2051 /* Add the CS local thread ID uniform at the end of the push constants */
2052 if (thread_local_id_index >= 0)
2053 push_constant_loc[thread_local_id_index] = num_push_constants++;
2054
2055 /* As the uniforms are going to be reordered, take the data from a temporary
2056 * copy of the original param[].
2057 */
2058 gl_constant_value **param = ralloc_array(NULL, gl_constant_value*,
2059 stage_prog_data->nr_params);
2060 memcpy(param, stage_prog_data->param,
2061 sizeof(gl_constant_value*) * stage_prog_data->nr_params);
2062 stage_prog_data->nr_params = num_push_constants;
2063 stage_prog_data->nr_pull_params = num_pull_constants;
2064
2065 /* Up until now, the param[] array has been indexed by reg + reg_offset
2066 * of UNIFORM registers. Move pull constants into pull_param[] and
2067 * condense param[] to only contain the uniforms we chose to push.
2068 *
2069 * NOTE: Because we are condensing the params[] array, we know that
2070 * push_constant_loc[i] <= i and we can do it in one smooth loop without
2071 * having to make a copy.
2072 */
2073 int new_thread_local_id_index = -1;
2074 for (unsigned int i = 0; i < uniforms; i++) {
2075 const gl_constant_value *value = param[i];
2076
2077 if (pull_constant_loc[i] != -1) {
2078 stage_prog_data->pull_param[pull_constant_loc[i]] = value;
2079 } else if (push_constant_loc[i] != -1) {
2080 stage_prog_data->param[push_constant_loc[i]] = value;
2081 if (thread_local_id_index == (int)i)
2082 new_thread_local_id_index = push_constant_loc[i];
2083 }
2084 }
2085 ralloc_free(param);
2086
2087 if (stage == MESA_SHADER_COMPUTE)
2088 ((brw_cs_prog_data*)stage_prog_data)->thread_local_id_index =
2089 new_thread_local_id_index;
2090 }
2091
2092 /**
2093 * Replace UNIFORM register file access with either UNIFORM_PULL_CONSTANT_LOAD
2094 * or VARYING_PULL_CONSTANT_LOAD instructions which load values into VGRFs.
2095 */
2096 void
2097 fs_visitor::lower_constant_loads()
2098 {
2099 const unsigned index = stage_prog_data->binding_table.pull_constants_start;
2100
2101 foreach_block_and_inst_safe (block, fs_inst, inst, cfg) {
2102 /* Set up the annotation tracking for new generated instructions. */
2103 const fs_builder ibld(this, block, inst);
2104
2105 for (int i = 0; i < inst->sources; i++) {
2106 if (inst->src[i].file != UNIFORM)
2107 continue;
2108
2109 /* We'll handle this case later */
2110 if (inst->opcode == SHADER_OPCODE_MOV_INDIRECT && i == 0)
2111 continue;
2112
2113 unsigned location = inst->src[i].nr + inst->src[i].offset / 4;
2114 if (location >= uniforms)
2115 continue; /* Out of bounds access */
2116
2117 int pull_index = pull_constant_loc[location];
2118
2119 if (pull_index == -1)
2120 continue;
2121
2122 const unsigned index = stage_prog_data->binding_table.pull_constants_start;
2123 fs_reg dst;
2124
2125 if (type_sz(inst->src[i].type) <= 4)
2126 dst = vgrf(glsl_type::float_type);
2127 else
2128 dst = vgrf(glsl_type::double_type);
2129
2130 assert(inst->src[i].stride == 0);
2131
2132 const fs_builder ubld = ibld.exec_all().group(8, 0);
2133 struct brw_reg offset = brw_imm_ud((unsigned)(pull_index * 4) & ~15);
2134 ubld.emit(FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD,
2135 dst, brw_imm_ud(index), offset);
2136
2137 /* Rewrite the instruction to use the temporary VGRF. */
2138 inst->src[i].file = VGRF;
2139 inst->src[i].nr = dst.nr;
2140 inst->src[i].offset = (pull_index & 3) * 4 + inst->src[i].offset % 4;
2141
2142 brw_mark_surface_used(prog_data, index);
2143 }
2144
2145 if (inst->opcode == SHADER_OPCODE_MOV_INDIRECT &&
2146 inst->src[0].file == UNIFORM) {
2147
2148 unsigned location = inst->src[0].nr + inst->src[0].offset / 4;
2149 if (location >= uniforms)
2150 continue; /* Out of bounds access */
2151
2152 int pull_index = pull_constant_loc[location];
2153
2154 if (pull_index == -1)
2155 continue;
2156
2157 VARYING_PULL_CONSTANT_LOAD(ibld, inst->dst,
2158 brw_imm_ud(index),
2159 inst->src[1],
2160 pull_index * 4);
2161 inst->remove(block);
2162
2163 brw_mark_surface_used(prog_data, index);
2164 }
2165 }
2166 invalidate_live_intervals();
2167 }
2168
2169 bool
2170 fs_visitor::opt_algebraic()
2171 {
2172 bool progress = false;
2173
2174 foreach_block_and_inst(block, fs_inst, inst, cfg) {
2175 switch (inst->opcode) {
2176 case BRW_OPCODE_MOV:
2177 if (inst->src[0].file != IMM)
2178 break;
2179
2180 if (inst->saturate) {
2181 if (inst->dst.type != inst->src[0].type)
2182 assert(!"unimplemented: saturate mixed types");
2183
2184 if (brw_saturate_immediate(inst->dst.type,
2185 &inst->src[0].as_brw_reg())) {
2186 inst->saturate = false;
2187 progress = true;
2188 }
2189 }
2190 break;
2191
2192 case BRW_OPCODE_MUL:
2193 if (inst->src[1].file != IMM)
2194 continue;
2195
2196 /* a * 1.0 = a */
2197 if (inst->src[1].is_one()) {
2198 inst->opcode = BRW_OPCODE_MOV;
2199 inst->src[1] = reg_undef;
2200 progress = true;
2201 break;
2202 }
2203
2204 /* a * -1.0 = -a */
2205 if (inst->src[1].is_negative_one()) {
2206 inst->opcode = BRW_OPCODE_MOV;
2207 inst->src[0].negate = !inst->src[0].negate;
2208 inst->src[1] = reg_undef;
2209 progress = true;
2210 break;
2211 }
2212
2213 /* a * 0.0 = 0.0 */
2214 if (inst->src[1].is_zero()) {
2215 inst->opcode = BRW_OPCODE_MOV;
2216 inst->src[0] = inst->src[1];
2217 inst->src[1] = reg_undef;
2218 progress = true;
2219 break;
2220 }
2221
2222 if (inst->src[0].file == IMM) {
2223 assert(inst->src[0].type == BRW_REGISTER_TYPE_F);
2224 inst->opcode = BRW_OPCODE_MOV;
2225 inst->src[0].f *= inst->src[1].f;
2226 inst->src[1] = reg_undef;
2227 progress = true;
2228 break;
2229 }
2230 break;
2231 case BRW_OPCODE_ADD:
2232 if (inst->src[1].file != IMM)
2233 continue;
2234
2235 /* a + 0.0 = a */
2236 if (inst->src[1].is_zero()) {
2237 inst->opcode = BRW_OPCODE_MOV;
2238 inst->src[1] = reg_undef;
2239 progress = true;
2240 break;
2241 }
2242
2243 if (inst->src[0].file == IMM) {
2244 assert(inst->src[0].type == BRW_REGISTER_TYPE_F);
2245 inst->opcode = BRW_OPCODE_MOV;
2246 inst->src[0].f += inst->src[1].f;
2247 inst->src[1] = reg_undef;
2248 progress = true;
2249 break;
2250 }
2251 break;
2252 case BRW_OPCODE_OR:
2253 if (inst->src[0].equals(inst->src[1])) {
2254 inst->opcode = BRW_OPCODE_MOV;
2255 inst->src[1] = reg_undef;
2256 progress = true;
2257 break;
2258 }
2259 break;
2260 case BRW_OPCODE_LRP:
2261 if (inst->src[1].equals(inst->src[2])) {
2262 inst->opcode = BRW_OPCODE_MOV;
2263 inst->src[0] = inst->src[1];
2264 inst->src[1] = reg_undef;
2265 inst->src[2] = reg_undef;
2266 progress = true;
2267 break;
2268 }
2269 break;
2270 case BRW_OPCODE_CMP:
2271 if (inst->conditional_mod == BRW_CONDITIONAL_GE &&
2272 inst->src[0].abs &&
2273 inst->src[0].negate &&
2274 inst->src[1].is_zero()) {
2275 inst->src[0].abs = false;
2276 inst->src[0].negate = false;
2277 inst->conditional_mod = BRW_CONDITIONAL_Z;
2278 progress = true;
2279 break;
2280 }
2281 break;
2282 case BRW_OPCODE_SEL:
2283 if (inst->src[0].equals(inst->src[1])) {
2284 inst->opcode = BRW_OPCODE_MOV;
2285 inst->src[1] = reg_undef;
2286 inst->predicate = BRW_PREDICATE_NONE;
2287 inst->predicate_inverse = false;
2288 progress = true;
2289 } else if (inst->saturate && inst->src[1].file == IMM) {
2290 switch (inst->conditional_mod) {
2291 case BRW_CONDITIONAL_LE:
2292 case BRW_CONDITIONAL_L:
2293 switch (inst->src[1].type) {
2294 case BRW_REGISTER_TYPE_F:
2295 if (inst->src[1].f >= 1.0f) {
2296 inst->opcode = BRW_OPCODE_MOV;
2297 inst->src[1] = reg_undef;
2298 inst->conditional_mod = BRW_CONDITIONAL_NONE;
2299 progress = true;
2300 }
2301 break;
2302 default:
2303 break;
2304 }
2305 break;
2306 case BRW_CONDITIONAL_GE:
2307 case BRW_CONDITIONAL_G:
2308 switch (inst->src[1].type) {
2309 case BRW_REGISTER_TYPE_F:
2310 if (inst->src[1].f <= 0.0f) {
2311 inst->opcode = BRW_OPCODE_MOV;
2312 inst->src[1] = reg_undef;
2313 inst->conditional_mod = BRW_CONDITIONAL_NONE;
2314 progress = true;
2315 }
2316 break;
2317 default:
2318 break;
2319 }
2320 default:
2321 break;
2322 }
2323 }
2324 break;
2325 case BRW_OPCODE_MAD:
2326 if (inst->src[1].is_zero() || inst->src[2].is_zero()) {
2327 inst->opcode = BRW_OPCODE_MOV;
2328 inst->src[1] = reg_undef;
2329 inst->src[2] = reg_undef;
2330 progress = true;
2331 } else if (inst->src[0].is_zero()) {
2332 inst->opcode = BRW_OPCODE_MUL;
2333 inst->src[0] = inst->src[2];
2334 inst->src[2] = reg_undef;
2335 progress = true;
2336 } else if (inst->src[1].is_one()) {
2337 inst->opcode = BRW_OPCODE_ADD;
2338 inst->src[1] = inst->src[2];
2339 inst->src[2] = reg_undef;
2340 progress = true;
2341 } else if (inst->src[2].is_one()) {
2342 inst->opcode = BRW_OPCODE_ADD;
2343 inst->src[2] = reg_undef;
2344 progress = true;
2345 } else if (inst->src[1].file == IMM && inst->src[2].file == IMM) {
2346 inst->opcode = BRW_OPCODE_ADD;
2347 inst->src[1].f *= inst->src[2].f;
2348 inst->src[2] = reg_undef;
2349 progress = true;
2350 }
2351 break;
2352 case SHADER_OPCODE_BROADCAST:
2353 if (is_uniform(inst->src[0])) {
2354 inst->opcode = BRW_OPCODE_MOV;
2355 inst->sources = 1;
2356 inst->force_writemask_all = true;
2357 progress = true;
2358 } else if (inst->src[1].file == IMM) {
2359 inst->opcode = BRW_OPCODE_MOV;
2360 inst->src[0] = component(inst->src[0],
2361 inst->src[1].ud);
2362 inst->sources = 1;
2363 inst->force_writemask_all = true;
2364 progress = true;
2365 }
2366 break;
2367
2368 default:
2369 break;
2370 }
2371
2372 /* Swap if src[0] is immediate. */
2373 if (progress && inst->is_commutative()) {
2374 if (inst->src[0].file == IMM) {
2375 fs_reg tmp = inst->src[1];
2376 inst->src[1] = inst->src[0];
2377 inst->src[0] = tmp;
2378 }
2379 }
2380 }
2381 return progress;
2382 }
2383
2384 /**
2385 * Optimize sample messages that have constant zero values for the trailing
2386 * texture coordinates. We can just reduce the message length for these
2387 * instructions instead of reserving a register for it. Trailing parameters
2388 * that aren't sent default to zero anyway. This will cause the dead code
2389 * eliminator to remove the MOV instruction that would otherwise be emitted to
2390 * set up the zero value.
2391 */
2392 bool
2393 fs_visitor::opt_zero_samples()
2394 {
2395 /* Gen4 infers the texturing opcode based on the message length so we can't
2396 * change it.
2397 */
2398 if (devinfo->gen < 5)
2399 return false;
2400
2401 bool progress = false;
2402
2403 foreach_block_and_inst(block, fs_inst, inst, cfg) {
2404 if (!inst->is_tex())
2405 continue;
2406
2407 fs_inst *load_payload = (fs_inst *) inst->prev;
2408
2409 if (load_payload->is_head_sentinel() ||
2410 load_payload->opcode != SHADER_OPCODE_LOAD_PAYLOAD)
2411 continue;
2412
2413 /* We don't want to remove the message header or the first parameter.
2414 * Removing the first parameter is not allowed, see the Haswell PRM
2415 * volume 7, page 149:
2416 *
2417 * "Parameter 0 is required except for the sampleinfo message, which
2418 * has no parameter 0"
2419 */
2420 while (inst->mlen > inst->header_size + inst->exec_size / 8 &&
2421 load_payload->src[(inst->mlen - inst->header_size) /
2422 (inst->exec_size / 8) +
2423 inst->header_size - 1].is_zero()) {
2424 inst->mlen -= inst->exec_size / 8;
2425 progress = true;
2426 }
2427 }
2428
2429 if (progress)
2430 invalidate_live_intervals();
2431
2432 return progress;
2433 }
2434
2435 /**
2436 * Optimize sample messages which are followed by the final RT write.
2437 *
2438 * CHV, and GEN9+ can mark a texturing SEND instruction with EOT to have its
2439 * results sent directly to the framebuffer, bypassing the EU. Recognize the
2440 * final texturing results copied to the framebuffer write payload and modify
2441 * them to write to the framebuffer directly.
2442 */
2443 bool
2444 fs_visitor::opt_sampler_eot()
2445 {
2446 brw_wm_prog_key *key = (brw_wm_prog_key*) this->key;
2447
2448 if (stage != MESA_SHADER_FRAGMENT)
2449 return false;
2450
2451 if (devinfo->gen < 9 && !devinfo->is_cherryview)
2452 return false;
2453
2454 /* FINISHME: It should be possible to implement this optimization when there
2455 * are multiple drawbuffers.
2456 */
2457 if (key->nr_color_regions != 1)
2458 return false;
2459
2460 /* Requires emitting a bunch of saturating MOV instructions during logical
2461 * send lowering to clamp the color payload, which the sampler unit isn't
2462 * going to do for us.
2463 */
2464 if (key->clamp_fragment_color)
2465 return false;
2466
2467 /* Look for a texturing instruction immediately before the final FB_WRITE. */
2468 bblock_t *block = cfg->blocks[cfg->num_blocks - 1];
2469 fs_inst *fb_write = (fs_inst *)block->end();
2470 assert(fb_write->eot);
2471 assert(fb_write->opcode == FS_OPCODE_FB_WRITE_LOGICAL);
2472
2473 /* There wasn't one; nothing to do. */
2474 if (unlikely(fb_write->prev->is_head_sentinel()))
2475 return false;
2476
2477 fs_inst *tex_inst = (fs_inst *) fb_write->prev;
2478
2479 /* 3D Sampler » Messages » Message Format
2480 *
2481 * “Response Length of zero is allowed on all SIMD8* and SIMD16* sampler
2482 * messages except sample+killpix, resinfo, sampleinfo, LOD, and gather4*”
2483 */
2484 if (tex_inst->opcode != SHADER_OPCODE_TEX_LOGICAL &&
2485 tex_inst->opcode != SHADER_OPCODE_TXD_LOGICAL &&
2486 tex_inst->opcode != SHADER_OPCODE_TXF_LOGICAL &&
2487 tex_inst->opcode != SHADER_OPCODE_TXL_LOGICAL &&
2488 tex_inst->opcode != FS_OPCODE_TXB_LOGICAL &&
2489 tex_inst->opcode != SHADER_OPCODE_TXF_CMS_LOGICAL &&
2490 tex_inst->opcode != SHADER_OPCODE_TXF_CMS_W_LOGICAL &&
2491 tex_inst->opcode != SHADER_OPCODE_TXF_UMS_LOGICAL)
2492 return false;
2493
2494 /* XXX - This shouldn't be necessary. */
2495 if (tex_inst->prev->is_head_sentinel())
2496 return false;
2497
2498 /* Check that the FB write sources are fully initialized by the single
2499 * texturing instruction.
2500 */
2501 for (unsigned i = 0; i < FB_WRITE_LOGICAL_NUM_SRCS; i++) {
2502 if (i == FB_WRITE_LOGICAL_SRC_COLOR0) {
2503 if (!fb_write->src[i].equals(tex_inst->dst) ||
2504 fb_write->size_read(i) != tex_inst->size_written)
2505 return false;
2506 } else if (i != FB_WRITE_LOGICAL_SRC_COMPONENTS) {
2507 if (fb_write->src[i].file != BAD_FILE)
2508 return false;
2509 }
2510 }
2511
2512 assert(!tex_inst->eot); /* We can't get here twice */
2513 assert((tex_inst->offset & (0xff << 24)) == 0);
2514
2515 const fs_builder ibld(this, block, tex_inst);
2516
2517 tex_inst->offset |= fb_write->target << 24;
2518 tex_inst->eot = true;
2519 tex_inst->dst = ibld.null_reg_ud();
2520 tex_inst->size_written = 0;
2521 fb_write->remove(cfg->blocks[cfg->num_blocks - 1]);
2522
2523 /* Marking EOT is sufficient, lower_logical_sends() will notice the EOT
2524 * flag and submit a header together with the sampler message as required
2525 * by the hardware.
2526 */
2527 invalidate_live_intervals();
2528 return true;
2529 }
2530
2531 bool
2532 fs_visitor::opt_register_renaming()
2533 {
2534 bool progress = false;
2535 int depth = 0;
2536
2537 int remap[alloc.count];
2538 memset(remap, -1, sizeof(int) * alloc.count);
2539
2540 foreach_block_and_inst(block, fs_inst, inst, cfg) {
2541 if (inst->opcode == BRW_OPCODE_IF || inst->opcode == BRW_OPCODE_DO) {
2542 depth++;
2543 } else if (inst->opcode == BRW_OPCODE_ENDIF ||
2544 inst->opcode == BRW_OPCODE_WHILE) {
2545 depth--;
2546 }
2547
2548 /* Rewrite instruction sources. */
2549 for (int i = 0; i < inst->sources; i++) {
2550 if (inst->src[i].file == VGRF &&
2551 remap[inst->src[i].nr] != -1 &&
2552 remap[inst->src[i].nr] != inst->src[i].nr) {
2553 inst->src[i].nr = remap[inst->src[i].nr];
2554 progress = true;
2555 }
2556 }
2557
2558 const int dst = inst->dst.nr;
2559
2560 if (depth == 0 &&
2561 inst->dst.file == VGRF &&
2562 alloc.sizes[inst->dst.nr] * REG_SIZE == inst->size_written &&
2563 !inst->is_partial_write()) {
2564 if (remap[dst] == -1) {
2565 remap[dst] = dst;
2566 } else {
2567 remap[dst] = alloc.allocate(regs_written(inst));
2568 inst->dst.nr = remap[dst];
2569 progress = true;
2570 }
2571 } else if (inst->dst.file == VGRF &&
2572 remap[dst] != -1 &&
2573 remap[dst] != dst) {
2574 inst->dst.nr = remap[dst];
2575 progress = true;
2576 }
2577 }
2578
2579 if (progress) {
2580 invalidate_live_intervals();
2581
2582 for (unsigned i = 0; i < ARRAY_SIZE(delta_xy); i++) {
2583 if (delta_xy[i].file == VGRF && remap[delta_xy[i].nr] != -1) {
2584 delta_xy[i].nr = remap[delta_xy[i].nr];
2585 }
2586 }
2587 }
2588
2589 return progress;
2590 }
2591
2592 /**
2593 * Remove redundant or useless discard jumps.
2594 *
2595 * For example, we can eliminate jumps in the following sequence:
2596 *
2597 * discard-jump (redundant with the next jump)
2598 * discard-jump (useless; jumps to the next instruction)
2599 * placeholder-halt
2600 */
2601 bool
2602 fs_visitor::opt_redundant_discard_jumps()
2603 {
2604 bool progress = false;
2605
2606 bblock_t *last_bblock = cfg->blocks[cfg->num_blocks - 1];
2607
2608 fs_inst *placeholder_halt = NULL;
2609 foreach_inst_in_block_reverse(fs_inst, inst, last_bblock) {
2610 if (inst->opcode == FS_OPCODE_PLACEHOLDER_HALT) {
2611 placeholder_halt = inst;
2612 break;
2613 }
2614 }
2615
2616 if (!placeholder_halt)
2617 return false;
2618
2619 /* Delete any HALTs immediately before the placeholder halt. */
2620 for (fs_inst *prev = (fs_inst *) placeholder_halt->prev;
2621 !prev->is_head_sentinel() && prev->opcode == FS_OPCODE_DISCARD_JUMP;
2622 prev = (fs_inst *) placeholder_halt->prev) {
2623 prev->remove(last_bblock);
2624 progress = true;
2625 }
2626
2627 if (progress)
2628 invalidate_live_intervals();
2629
2630 return progress;
2631 }
2632
2633 /**
2634 * Compute a bitmask with GRF granularity with a bit set for each GRF starting
2635 * from \p r.offset which overlaps the region starting at \p s.offset and
2636 * spanning \p ds bytes.
2637 */
2638 static inline unsigned
2639 mask_relative_to(const fs_reg &r, const fs_reg &s, unsigned ds)
2640 {
2641 const int rel_offset = reg_offset(s) - reg_offset(r);
2642 const int shift = rel_offset / REG_SIZE;
2643 const unsigned n = DIV_ROUND_UP(rel_offset % REG_SIZE + ds, REG_SIZE);
2644 assert(reg_space(r) == reg_space(s) &&
2645 shift >= 0 && shift < int(8 * sizeof(unsigned)));
2646 return ((1 << n) - 1) << shift;
2647 }
2648
2649 bool
2650 fs_visitor::compute_to_mrf()
2651 {
2652 bool progress = false;
2653 int next_ip = 0;
2654
2655 /* No MRFs on Gen >= 7. */
2656 if (devinfo->gen >= 7)
2657 return false;
2658
2659 calculate_live_intervals();
2660
2661 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
2662 int ip = next_ip;
2663 next_ip++;
2664
2665 if (inst->opcode != BRW_OPCODE_MOV ||
2666 inst->is_partial_write() ||
2667 inst->dst.file != MRF || inst->src[0].file != VGRF ||
2668 inst->dst.type != inst->src[0].type ||
2669 inst->src[0].abs || inst->src[0].negate ||
2670 !inst->src[0].is_contiguous() ||
2671 inst->src[0].offset % REG_SIZE != 0)
2672 continue;
2673
2674 /* Can't compute-to-MRF this GRF if someone else was going to
2675 * read it later.
2676 */
2677 if (this->virtual_grf_end[inst->src[0].nr] > ip)
2678 continue;
2679
2680 /* Found a move of a GRF to a MRF. Let's see if we can go rewrite the
2681 * things that computed the value of all GRFs of the source region. The
2682 * regs_left bitset keeps track of the registers we haven't yet found a
2683 * generating instruction for.
2684 */
2685 unsigned regs_left = (1 << regs_read(inst, 0)) - 1;
2686
2687 foreach_inst_in_block_reverse_starting_from(fs_inst, scan_inst, inst) {
2688 if (regions_overlap(scan_inst->dst, scan_inst->size_written,
2689 inst->src[0], inst->size_read(0))) {
2690 /* Found the last thing to write our reg we want to turn
2691 * into a compute-to-MRF.
2692 */
2693
2694 /* If this one instruction didn't populate all the
2695 * channels, bail. We might be able to rewrite everything
2696 * that writes that reg, but it would require smarter
2697 * tracking.
2698 */
2699 if (scan_inst->is_partial_write())
2700 break;
2701
2702 /* Handling things not fully contained in the source of the copy
2703 * would need us to understand coalescing out more than one MOV at
2704 * a time.
2705 */
2706 if (!region_contained_in(scan_inst->dst, scan_inst->size_written,
2707 inst->src[0], inst->size_read(0)))
2708 break;
2709
2710 /* SEND instructions can't have MRF as a destination. */
2711 if (scan_inst->mlen)
2712 break;
2713
2714 if (devinfo->gen == 6) {
2715 /* gen6 math instructions must have the destination be
2716 * GRF, so no compute-to-MRF for them.
2717 */
2718 if (scan_inst->is_math()) {
2719 break;
2720 }
2721 }
2722
2723 /* Clear the bits for any registers this instruction overwrites. */
2724 regs_left &= ~mask_relative_to(
2725 inst->src[0], scan_inst->dst, scan_inst->size_written);
2726 if (!regs_left)
2727 break;
2728 }
2729
2730 /* We don't handle control flow here. Most computation of
2731 * values that end up in MRFs are shortly before the MRF
2732 * write anyway.
2733 */
2734 if (block->start() == scan_inst)
2735 break;
2736
2737 /* You can't read from an MRF, so if someone else reads our
2738 * MRF's source GRF that we wanted to rewrite, that stops us.
2739 */
2740 bool interfered = false;
2741 for (int i = 0; i < scan_inst->sources; i++) {
2742 if (regions_overlap(scan_inst->src[i], scan_inst->size_read(i),
2743 inst->src[0], inst->size_read(0))) {
2744 interfered = true;
2745 }
2746 }
2747 if (interfered)
2748 break;
2749
2750 if (regions_overlap(scan_inst->dst, scan_inst->size_written,
2751 inst->dst, inst->size_written)) {
2752 /* If somebody else writes our MRF here, we can't
2753 * compute-to-MRF before that.
2754 */
2755 break;
2756 }
2757
2758 if (scan_inst->mlen > 0 && scan_inst->base_mrf != -1 &&
2759 regions_overlap(fs_reg(MRF, scan_inst->base_mrf), scan_inst->mlen * REG_SIZE,
2760 inst->dst, inst->size_written)) {
2761 /* Found a SEND instruction, which means that there are
2762 * live values in MRFs from base_mrf to base_mrf +
2763 * scan_inst->mlen - 1. Don't go pushing our MRF write up
2764 * above it.
2765 */
2766 break;
2767 }
2768 }
2769
2770 if (regs_left)
2771 continue;
2772
2773 /* Found all generating instructions of our MRF's source value, so it
2774 * should be safe to rewrite them to point to the MRF directly.
2775 */
2776 regs_left = (1 << regs_read(inst, 0)) - 1;
2777
2778 foreach_inst_in_block_reverse_starting_from(fs_inst, scan_inst, inst) {
2779 if (regions_overlap(scan_inst->dst, scan_inst->size_written,
2780 inst->src[0], inst->size_read(0))) {
2781 /* Clear the bits for any registers this instruction overwrites. */
2782 regs_left &= ~mask_relative_to(
2783 inst->src[0], scan_inst->dst, scan_inst->size_written);
2784
2785 const unsigned rel_offset = reg_offset(scan_inst->dst) -
2786 reg_offset(inst->src[0]);
2787
2788 if (inst->dst.nr & BRW_MRF_COMPR4) {
2789 /* Apply the same address transformation done by the hardware
2790 * for COMPR4 MRF writes.
2791 */
2792 assert(rel_offset < 2 * REG_SIZE);
2793 scan_inst->dst.nr = inst->dst.nr + rel_offset / REG_SIZE * 4;
2794
2795 /* Clear the COMPR4 bit if the generating instruction is not
2796 * compressed.
2797 */
2798 if (scan_inst->size_written < 2 * REG_SIZE)
2799 scan_inst->dst.nr &= ~BRW_MRF_COMPR4;
2800
2801 } else {
2802 /* Calculate the MRF number the result of this instruction is
2803 * ultimately written to.
2804 */
2805 scan_inst->dst.nr = inst->dst.nr + rel_offset / REG_SIZE;
2806 }
2807
2808 scan_inst->dst.file = MRF;
2809 scan_inst->dst.offset = inst->dst.offset + rel_offset % REG_SIZE;
2810 scan_inst->saturate |= inst->saturate;
2811 if (!regs_left)
2812 break;
2813 }
2814 }
2815
2816 assert(!regs_left);
2817 inst->remove(block);
2818 progress = true;
2819 }
2820
2821 if (progress)
2822 invalidate_live_intervals();
2823
2824 return progress;
2825 }
2826
2827 /**
2828 * Eliminate FIND_LIVE_CHANNEL instructions occurring outside any control
2829 * flow. We could probably do better here with some form of divergence
2830 * analysis.
2831 */
2832 bool
2833 fs_visitor::eliminate_find_live_channel()
2834 {
2835 bool progress = false;
2836 unsigned depth = 0;
2837
2838 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
2839 switch (inst->opcode) {
2840 case BRW_OPCODE_IF:
2841 case BRW_OPCODE_DO:
2842 depth++;
2843 break;
2844
2845 case BRW_OPCODE_ENDIF:
2846 case BRW_OPCODE_WHILE:
2847 depth--;
2848 break;
2849
2850 case FS_OPCODE_DISCARD_JUMP:
2851 /* This can potentially make control flow non-uniform until the end
2852 * of the program.
2853 */
2854 return progress;
2855
2856 case SHADER_OPCODE_FIND_LIVE_CHANNEL:
2857 if (depth == 0) {
2858 inst->opcode = BRW_OPCODE_MOV;
2859 inst->src[0] = brw_imm_ud(0u);
2860 inst->sources = 1;
2861 inst->force_writemask_all = true;
2862 progress = true;
2863 }
2864 break;
2865
2866 default:
2867 break;
2868 }
2869 }
2870
2871 return progress;
2872 }
2873
2874 /**
2875 * Once we've generated code, try to convert normal FS_OPCODE_FB_WRITE
2876 * instructions to FS_OPCODE_REP_FB_WRITE.
2877 */
2878 void
2879 fs_visitor::emit_repclear_shader()
2880 {
2881 brw_wm_prog_key *key = (brw_wm_prog_key*) this->key;
2882 int base_mrf = 0;
2883 int color_mrf = base_mrf + 2;
2884 fs_inst *mov;
2885
2886 if (uniforms > 0) {
2887 mov = bld.exec_all().group(4, 0)
2888 .MOV(brw_message_reg(color_mrf),
2889 fs_reg(UNIFORM, 0, BRW_REGISTER_TYPE_F));
2890 } else {
2891 struct brw_reg reg =
2892 brw_reg(BRW_GENERAL_REGISTER_FILE, 2, 3, 0, 0, BRW_REGISTER_TYPE_F,
2893 BRW_VERTICAL_STRIDE_8, BRW_WIDTH_2, BRW_HORIZONTAL_STRIDE_4,
2894 BRW_SWIZZLE_XYZW, WRITEMASK_XYZW);
2895
2896 mov = bld.exec_all().group(4, 0)
2897 .MOV(vec4(brw_message_reg(color_mrf)), fs_reg(reg));
2898 }
2899
2900 fs_inst *write;
2901 if (key->nr_color_regions == 1) {
2902 write = bld.emit(FS_OPCODE_REP_FB_WRITE);
2903 write->saturate = key->clamp_fragment_color;
2904 write->base_mrf = color_mrf;
2905 write->target = 0;
2906 write->header_size = 0;
2907 write->mlen = 1;
2908 } else {
2909 assume(key->nr_color_regions > 0);
2910 for (int i = 0; i < key->nr_color_regions; ++i) {
2911 write = bld.emit(FS_OPCODE_REP_FB_WRITE);
2912 write->saturate = key->clamp_fragment_color;
2913 write->base_mrf = base_mrf;
2914 write->target = i;
2915 write->header_size = 2;
2916 write->mlen = 3;
2917 }
2918 }
2919 write->eot = true;
2920
2921 calculate_cfg();
2922
2923 assign_constant_locations();
2924 assign_curb_setup();
2925
2926 /* Now that we have the uniform assigned, go ahead and force it to a vec4. */
2927 if (uniforms > 0) {
2928 assert(mov->src[0].file == FIXED_GRF);
2929 mov->src[0] = brw_vec4_grf(mov->src[0].nr, 0);
2930 }
2931 }
2932
2933 /**
2934 * Walks through basic blocks, looking for repeated MRF writes and
2935 * removing the later ones.
2936 */
2937 bool
2938 fs_visitor::remove_duplicate_mrf_writes()
2939 {
2940 fs_inst *last_mrf_move[BRW_MAX_MRF(devinfo->gen)];
2941 bool progress = false;
2942
2943 /* Need to update the MRF tracking for compressed instructions. */
2944 if (dispatch_width >= 16)
2945 return false;
2946
2947 memset(last_mrf_move, 0, sizeof(last_mrf_move));
2948
2949 foreach_block_and_inst_safe (block, fs_inst, inst, cfg) {
2950 if (inst->is_control_flow()) {
2951 memset(last_mrf_move, 0, sizeof(last_mrf_move));
2952 }
2953
2954 if (inst->opcode == BRW_OPCODE_MOV &&
2955 inst->dst.file == MRF) {
2956 fs_inst *prev_inst = last_mrf_move[inst->dst.nr];
2957 if (prev_inst && inst->equals(prev_inst)) {
2958 inst->remove(block);
2959 progress = true;
2960 continue;
2961 }
2962 }
2963
2964 /* Clear out the last-write records for MRFs that were overwritten. */
2965 if (inst->dst.file == MRF) {
2966 last_mrf_move[inst->dst.nr] = NULL;
2967 }
2968
2969 if (inst->mlen > 0 && inst->base_mrf != -1) {
2970 /* Found a SEND instruction, which will include two or fewer
2971 * implied MRF writes. We could do better here.
2972 */
2973 for (int i = 0; i < implied_mrf_writes(inst); i++) {
2974 last_mrf_move[inst->base_mrf + i] = NULL;
2975 }
2976 }
2977
2978 /* Clear out any MRF move records whose sources got overwritten. */
2979 for (unsigned i = 0; i < ARRAY_SIZE(last_mrf_move); i++) {
2980 if (last_mrf_move[i] &&
2981 regions_overlap(inst->dst, inst->size_written,
2982 last_mrf_move[i]->src[0],
2983 last_mrf_move[i]->size_read(0))) {
2984 last_mrf_move[i] = NULL;
2985 }
2986 }
2987
2988 if (inst->opcode == BRW_OPCODE_MOV &&
2989 inst->dst.file == MRF &&
2990 inst->src[0].file != ARF &&
2991 !inst->is_partial_write()) {
2992 last_mrf_move[inst->dst.nr] = inst;
2993 }
2994 }
2995
2996 if (progress)
2997 invalidate_live_intervals();
2998
2999 return progress;
3000 }
3001
3002 static void
3003 clear_deps_for_inst_src(fs_inst *inst, bool *deps, int first_grf, int grf_len)
3004 {
3005 /* Clear the flag for registers that actually got read (as expected). */
3006 for (int i = 0; i < inst->sources; i++) {
3007 int grf;
3008 if (inst->src[i].file == VGRF || inst->src[i].file == FIXED_GRF) {
3009 grf = inst->src[i].nr;
3010 } else {
3011 continue;
3012 }
3013
3014 if (grf >= first_grf &&
3015 grf < first_grf + grf_len) {
3016 deps[grf - first_grf] = false;
3017 if (inst->exec_size == 16)
3018 deps[grf - first_grf + 1] = false;
3019 }
3020 }
3021 }
3022
3023 /**
3024 * Implements this workaround for the original 965:
3025 *
3026 * "[DevBW, DevCL] Implementation Restrictions: As the hardware does not
3027 * check for post destination dependencies on this instruction, software
3028 * must ensure that there is no destination hazard for the case of ‘write
3029 * followed by a posted write’ shown in the following example.
3030 *
3031 * 1. mov r3 0
3032 * 2. send r3.xy <rest of send instruction>
3033 * 3. mov r2 r3
3034 *
3035 * Due to no post-destination dependency check on the ‘send’, the above
3036 * code sequence could have two instructions (1 and 2) in flight at the
3037 * same time that both consider ‘r3’ as the target of their final writes.
3038 */
3039 void
3040 fs_visitor::insert_gen4_pre_send_dependency_workarounds(bblock_t *block,
3041 fs_inst *inst)
3042 {
3043 int write_len = regs_written(inst);
3044 int first_write_grf = inst->dst.nr;
3045 bool needs_dep[BRW_MAX_MRF(devinfo->gen)];
3046 assert(write_len < (int)sizeof(needs_dep) - 1);
3047
3048 memset(needs_dep, false, sizeof(needs_dep));
3049 memset(needs_dep, true, write_len);
3050
3051 clear_deps_for_inst_src(inst, needs_dep, first_write_grf, write_len);
3052
3053 /* Walk backwards looking for writes to registers we're writing which
3054 * aren't read since being written. If we hit the start of the program,
3055 * we assume that there are no outstanding dependencies on entry to the
3056 * program.
3057 */
3058 foreach_inst_in_block_reverse_starting_from(fs_inst, scan_inst, inst) {
3059 /* If we hit control flow, assume that there *are* outstanding
3060 * dependencies, and force their cleanup before our instruction.
3061 */
3062 if (block->start() == scan_inst && block->num != 0) {
3063 for (int i = 0; i < write_len; i++) {
3064 if (needs_dep[i])
3065 DEP_RESOLVE_MOV(fs_builder(this, block, inst),
3066 first_write_grf + i);
3067 }
3068 return;
3069 }
3070
3071 /* We insert our reads as late as possible on the assumption that any
3072 * instruction but a MOV that might have left us an outstanding
3073 * dependency has more latency than a MOV.
3074 */
3075 if (scan_inst->dst.file == VGRF) {
3076 for (unsigned i = 0; i < regs_written(scan_inst); i++) {
3077 int reg = scan_inst->dst.nr + i;
3078
3079 if (reg >= first_write_grf &&
3080 reg < first_write_grf + write_len &&
3081 needs_dep[reg - first_write_grf]) {
3082 DEP_RESOLVE_MOV(fs_builder(this, block, inst), reg);
3083 needs_dep[reg - first_write_grf] = false;
3084 if (scan_inst->exec_size == 16)
3085 needs_dep[reg - first_write_grf + 1] = false;
3086 }
3087 }
3088 }
3089
3090 /* Clear the flag for registers that actually got read (as expected). */
3091 clear_deps_for_inst_src(scan_inst, needs_dep, first_write_grf, write_len);
3092
3093 /* Continue the loop only if we haven't resolved all the dependencies */
3094 int i;
3095 for (i = 0; i < write_len; i++) {
3096 if (needs_dep[i])
3097 break;
3098 }
3099 if (i == write_len)
3100 return;
3101 }
3102 }
3103
3104 /**
3105 * Implements this workaround for the original 965:
3106 *
3107 * "[DevBW, DevCL] Errata: A destination register from a send can not be
3108 * used as a destination register until after it has been sourced by an
3109 * instruction with a different destination register.
3110 */
3111 void
3112 fs_visitor::insert_gen4_post_send_dependency_workarounds(bblock_t *block, fs_inst *inst)
3113 {
3114 int write_len = regs_written(inst);
3115 int first_write_grf = inst->dst.nr;
3116 bool needs_dep[BRW_MAX_MRF(devinfo->gen)];
3117 assert(write_len < (int)sizeof(needs_dep) - 1);
3118
3119 memset(needs_dep, false, sizeof(needs_dep));
3120 memset(needs_dep, true, write_len);
3121 /* Walk forwards looking for writes to registers we're writing which aren't
3122 * read before being written.
3123 */
3124 foreach_inst_in_block_starting_from(fs_inst, scan_inst, inst) {
3125 /* If we hit control flow, force resolve all remaining dependencies. */
3126 if (block->end() == scan_inst && block->num != cfg->num_blocks - 1) {
3127 for (int i = 0; i < write_len; i++) {
3128 if (needs_dep[i])
3129 DEP_RESOLVE_MOV(fs_builder(this, block, scan_inst),
3130 first_write_grf + i);
3131 }
3132 return;
3133 }
3134
3135 /* Clear the flag for registers that actually got read (as expected). */
3136 clear_deps_for_inst_src(scan_inst, needs_dep, first_write_grf, write_len);
3137
3138 /* We insert our reads as late as possible since they're reading the
3139 * result of a SEND, which has massive latency.
3140 */
3141 if (scan_inst->dst.file == VGRF &&
3142 scan_inst->dst.nr >= first_write_grf &&
3143 scan_inst->dst.nr < first_write_grf + write_len &&
3144 needs_dep[scan_inst->dst.nr - first_write_grf]) {
3145 DEP_RESOLVE_MOV(fs_builder(this, block, scan_inst),
3146 scan_inst->dst.nr);
3147 needs_dep[scan_inst->dst.nr - first_write_grf] = false;
3148 }
3149
3150 /* Continue the loop only if we haven't resolved all the dependencies */
3151 int i;
3152 for (i = 0; i < write_len; i++) {
3153 if (needs_dep[i])
3154 break;
3155 }
3156 if (i == write_len)
3157 return;
3158 }
3159 }
3160
3161 void
3162 fs_visitor::insert_gen4_send_dependency_workarounds()
3163 {
3164 if (devinfo->gen != 4 || devinfo->is_g4x)
3165 return;
3166
3167 bool progress = false;
3168
3169 /* Note that we're done with register allocation, so GRF fs_regs always
3170 * have a .reg_offset of 0.
3171 */
3172
3173 foreach_block_and_inst(block, fs_inst, inst, cfg) {
3174 if (inst->mlen != 0 && inst->dst.file == VGRF) {
3175 insert_gen4_pre_send_dependency_workarounds(block, inst);
3176 insert_gen4_post_send_dependency_workarounds(block, inst);
3177 progress = true;
3178 }
3179 }
3180
3181 if (progress)
3182 invalidate_live_intervals();
3183 }
3184
3185 /**
3186 * Turns the generic expression-style uniform pull constant load instruction
3187 * into a hardware-specific series of instructions for loading a pull
3188 * constant.
3189 *
3190 * The expression style allows the CSE pass before this to optimize out
3191 * repeated loads from the same offset, and gives the pre-register-allocation
3192 * scheduling full flexibility, while the conversion to native instructions
3193 * allows the post-register-allocation scheduler the best information
3194 * possible.
3195 *
3196 * Note that execution masking for setting up pull constant loads is special:
3197 * the channels that need to be written are unrelated to the current execution
3198 * mask, since a later instruction will use one of the result channels as a
3199 * source operand for all 8 or 16 of its channels.
3200 */
3201 void
3202 fs_visitor::lower_uniform_pull_constant_loads()
3203 {
3204 foreach_block_and_inst (block, fs_inst, inst, cfg) {
3205 if (inst->opcode != FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD)
3206 continue;
3207
3208 if (devinfo->gen >= 7) {
3209 /* The offset arg is a vec4-aligned immediate byte offset. */
3210 fs_reg const_offset_reg = inst->src[1];
3211 assert(const_offset_reg.file == IMM &&
3212 const_offset_reg.type == BRW_REGISTER_TYPE_UD);
3213 assert(const_offset_reg.ud % 16 == 0);
3214
3215 fs_reg payload, offset;
3216 if (devinfo->gen >= 9) {
3217 /* We have to use a message header on Skylake to get SIMD4x2
3218 * mode. Reserve space for the register.
3219 */
3220 offset = payload = fs_reg(VGRF, alloc.allocate(2));
3221 offset.offset += REG_SIZE;
3222 inst->mlen = 2;
3223 } else {
3224 offset = payload = fs_reg(VGRF, alloc.allocate(1));
3225 inst->mlen = 1;
3226 }
3227
3228 /* This is actually going to be a MOV, but since only the first dword
3229 * is accessed, we have a special opcode to do just that one. Note
3230 * that this needs to be an operation that will be considered a def
3231 * by live variable analysis, or register allocation will explode.
3232 */
3233 fs_inst *setup = new(mem_ctx) fs_inst(FS_OPCODE_SET_SIMD4X2_OFFSET,
3234 8, offset, const_offset_reg);
3235 setup->force_writemask_all = true;
3236
3237 setup->ir = inst->ir;
3238 setup->annotation = inst->annotation;
3239 inst->insert_before(block, setup);
3240
3241 /* Similarly, this will only populate the first 4 channels of the
3242 * result register (since we only use smear values from 0-3), but we
3243 * don't tell the optimizer.
3244 */
3245 inst->opcode = FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD_GEN7;
3246 inst->src[1] = payload;
3247
3248 invalidate_live_intervals();
3249 } else {
3250 /* Before register allocation, we didn't tell the scheduler about the
3251 * MRF we use. We know it's safe to use this MRF because nothing
3252 * else does except for register spill/unspill, which generates and
3253 * uses its MRF within a single IR instruction.
3254 */
3255 inst->base_mrf = FIRST_PULL_LOAD_MRF(devinfo->gen) + 1;
3256 inst->mlen = 1;
3257 }
3258 }
3259 }
3260
3261 bool
3262 fs_visitor::lower_load_payload()
3263 {
3264 bool progress = false;
3265
3266 foreach_block_and_inst_safe (block, fs_inst, inst, cfg) {
3267 if (inst->opcode != SHADER_OPCODE_LOAD_PAYLOAD)
3268 continue;
3269
3270 assert(inst->dst.file == MRF || inst->dst.file == VGRF);
3271 assert(inst->saturate == false);
3272 fs_reg dst = inst->dst;
3273
3274 /* Get rid of COMPR4. We'll add it back in if we need it */
3275 if (dst.file == MRF)
3276 dst.nr = dst.nr & ~BRW_MRF_COMPR4;
3277
3278 const fs_builder ibld(this, block, inst);
3279 const fs_builder hbld = ibld.exec_all().group(8, 0);
3280
3281 for (uint8_t i = 0; i < inst->header_size; i++) {
3282 if (inst->src[i].file != BAD_FILE) {
3283 fs_reg mov_dst = retype(dst, BRW_REGISTER_TYPE_UD);
3284 fs_reg mov_src = retype(inst->src[i], BRW_REGISTER_TYPE_UD);
3285 hbld.MOV(mov_dst, mov_src);
3286 }
3287 dst = offset(dst, hbld, 1);
3288 }
3289
3290 if (inst->dst.file == MRF && (inst->dst.nr & BRW_MRF_COMPR4) &&
3291 inst->exec_size > 8) {
3292 /* In this case, the payload portion of the LOAD_PAYLOAD isn't
3293 * a straightforward copy. Instead, the result of the
3294 * LOAD_PAYLOAD is treated as interleaved and the first four
3295 * non-header sources are unpacked as:
3296 *
3297 * m + 0: r0
3298 * m + 1: g0
3299 * m + 2: b0
3300 * m + 3: a0
3301 * m + 4: r1
3302 * m + 5: g1
3303 * m + 6: b1
3304 * m + 7: a1
3305 *
3306 * This is used for gen <= 5 fb writes.
3307 */
3308 assert(inst->exec_size == 16);
3309 assert(inst->header_size + 4 <= inst->sources);
3310 for (uint8_t i = inst->header_size; i < inst->header_size + 4; i++) {
3311 if (inst->src[i].file != BAD_FILE) {
3312 if (devinfo->has_compr4) {
3313 fs_reg compr4_dst = retype(dst, inst->src[i].type);
3314 compr4_dst.nr |= BRW_MRF_COMPR4;
3315 ibld.MOV(compr4_dst, inst->src[i]);
3316 } else {
3317 /* Platform doesn't have COMPR4. We have to fake it */
3318 fs_reg mov_dst = retype(dst, inst->src[i].type);
3319 ibld.half(0).MOV(mov_dst, half(inst->src[i], 0));
3320 mov_dst.nr += 4;
3321 ibld.half(1).MOV(mov_dst, half(inst->src[i], 1));
3322 }
3323 }
3324
3325 dst.nr++;
3326 }
3327
3328 /* The loop above only ever incremented us through the first set
3329 * of 4 registers. However, thanks to the magic of COMPR4, we
3330 * actually wrote to the first 8 registers, so we need to take
3331 * that into account now.
3332 */
3333 dst.nr += 4;
3334
3335 /* The COMPR4 code took care of the first 4 sources. We'll let
3336 * the regular path handle any remaining sources. Yes, we are
3337 * modifying the instruction but we're about to delete it so
3338 * this really doesn't hurt anything.
3339 */
3340 inst->header_size += 4;
3341 }
3342
3343 for (uint8_t i = inst->header_size; i < inst->sources; i++) {
3344 if (inst->src[i].file != BAD_FILE)
3345 ibld.MOV(retype(dst, inst->src[i].type), inst->src[i]);
3346 dst = offset(dst, ibld, 1);
3347 }
3348
3349 inst->remove(block);
3350 progress = true;
3351 }
3352
3353 if (progress)
3354 invalidate_live_intervals();
3355
3356 return progress;
3357 }
3358
3359 bool
3360 fs_visitor::lower_integer_multiplication()
3361 {
3362 bool progress = false;
3363
3364 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
3365 const fs_builder ibld(this, block, inst);
3366
3367 if (inst->opcode == BRW_OPCODE_MUL) {
3368 if (inst->dst.is_accumulator() ||
3369 (inst->dst.type != BRW_REGISTER_TYPE_D &&
3370 inst->dst.type != BRW_REGISTER_TYPE_UD))
3371 continue;
3372
3373 /* Gen8's MUL instruction can do a 32-bit x 32-bit -> 32-bit
3374 * operation directly, but CHV/BXT cannot.
3375 */
3376 if (devinfo->gen >= 8 &&
3377 !devinfo->is_cherryview && !devinfo->is_broxton)
3378 continue;
3379
3380 if (inst->src[1].file == IMM &&
3381 inst->src[1].ud < (1 << 16)) {
3382 /* The MUL instruction isn't commutative. On Gen <= 6, only the low
3383 * 16-bits of src0 are read, and on Gen >= 7 only the low 16-bits of
3384 * src1 are used.
3385 *
3386 * If multiplying by an immediate value that fits in 16-bits, do a
3387 * single MUL instruction with that value in the proper location.
3388 */
3389 if (devinfo->gen < 7) {
3390 fs_reg imm(VGRF, alloc.allocate(dispatch_width / 8),
3391 inst->dst.type);
3392 ibld.MOV(imm, inst->src[1]);
3393 ibld.MUL(inst->dst, imm, inst->src[0]);
3394 } else {
3395 const bool ud = (inst->src[1].type == BRW_REGISTER_TYPE_UD);
3396 ibld.MUL(inst->dst, inst->src[0],
3397 ud ? brw_imm_uw(inst->src[1].ud)
3398 : brw_imm_w(inst->src[1].d));
3399 }
3400 } else {
3401 /* Gen < 8 (and some Gen8+ low-power parts like Cherryview) cannot
3402 * do 32-bit integer multiplication in one instruction, but instead
3403 * must do a sequence (which actually calculates a 64-bit result):
3404 *
3405 * mul(8) acc0<1>D g3<8,8,1>D g4<8,8,1>D
3406 * mach(8) null g3<8,8,1>D g4<8,8,1>D
3407 * mov(8) g2<1>D acc0<8,8,1>D
3408 *
3409 * But on Gen > 6, the ability to use second accumulator register
3410 * (acc1) for non-float data types was removed, preventing a simple
3411 * implementation in SIMD16. A 16-channel result can be calculated by
3412 * executing the three instructions twice in SIMD8, once with quarter
3413 * control of 1Q for the first eight channels and again with 2Q for
3414 * the second eight channels.
3415 *
3416 * Which accumulator register is implicitly accessed (by AccWrEnable
3417 * for instance) is determined by the quarter control. Unfortunately
3418 * Ivybridge (and presumably Baytrail) has a hardware bug in which an
3419 * implicit accumulator access by an instruction with 2Q will access
3420 * acc1 regardless of whether the data type is usable in acc1.
3421 *
3422 * Specifically, the 2Q mach(8) writes acc1 which does not exist for
3423 * integer data types.
3424 *
3425 * Since we only want the low 32-bits of the result, we can do two
3426 * 32-bit x 16-bit multiplies (like the mul and mach are doing), and
3427 * adjust the high result and add them (like the mach is doing):
3428 *
3429 * mul(8) g7<1>D g3<8,8,1>D g4.0<8,8,1>UW
3430 * mul(8) g8<1>D g3<8,8,1>D g4.1<8,8,1>UW
3431 * shl(8) g9<1>D g8<8,8,1>D 16D
3432 * add(8) g2<1>D g7<8,8,1>D g8<8,8,1>D
3433 *
3434 * We avoid the shl instruction by realizing that we only want to add
3435 * the low 16-bits of the "high" result to the high 16-bits of the
3436 * "low" result and using proper regioning on the add:
3437 *
3438 * mul(8) g7<1>D g3<8,8,1>D g4.0<16,8,2>UW
3439 * mul(8) g8<1>D g3<8,8,1>D g4.1<16,8,2>UW
3440 * add(8) g7.1<2>UW g7.1<16,8,2>UW g8<16,8,2>UW
3441 *
3442 * Since it does not use the (single) accumulator register, we can
3443 * schedule multi-component multiplications much better.
3444 */
3445
3446 fs_reg orig_dst = inst->dst;
3447 if (orig_dst.is_null() || orig_dst.file == MRF) {
3448 inst->dst = fs_reg(VGRF, alloc.allocate(dispatch_width / 8),
3449 inst->dst.type);
3450 }
3451 fs_reg low = inst->dst;
3452 fs_reg high(VGRF, alloc.allocate(dispatch_width / 8),
3453 inst->dst.type);
3454
3455 if (devinfo->gen >= 7) {
3456 if (inst->src[1].file == IMM) {
3457 ibld.MUL(low, inst->src[0],
3458 brw_imm_uw(inst->src[1].ud & 0xffff));
3459 ibld.MUL(high, inst->src[0],
3460 brw_imm_uw(inst->src[1].ud >> 16));
3461 } else {
3462 ibld.MUL(low, inst->src[0],
3463 subscript(inst->src[1], BRW_REGISTER_TYPE_UW, 0));
3464 ibld.MUL(high, inst->src[0],
3465 subscript(inst->src[1], BRW_REGISTER_TYPE_UW, 1));
3466 }
3467 } else {
3468 ibld.MUL(low, subscript(inst->src[0], BRW_REGISTER_TYPE_UW, 0),
3469 inst->src[1]);
3470 ibld.MUL(high, subscript(inst->src[0], BRW_REGISTER_TYPE_UW, 1),
3471 inst->src[1]);
3472 }
3473
3474 ibld.ADD(subscript(inst->dst, BRW_REGISTER_TYPE_UW, 1),
3475 subscript(low, BRW_REGISTER_TYPE_UW, 1),
3476 subscript(high, BRW_REGISTER_TYPE_UW, 0));
3477
3478 if (inst->conditional_mod || orig_dst.file == MRF) {
3479 set_condmod(inst->conditional_mod,
3480 ibld.MOV(orig_dst, inst->dst));
3481 }
3482 }
3483
3484 } else if (inst->opcode == SHADER_OPCODE_MULH) {
3485 /* Should have been lowered to 8-wide. */
3486 assert(inst->exec_size <= get_lowered_simd_width(devinfo, inst));
3487 const fs_reg acc = retype(brw_acc_reg(inst->exec_size),
3488 inst->dst.type);
3489 fs_inst *mul = ibld.MUL(acc, inst->src[0], inst->src[1]);
3490 fs_inst *mach = ibld.MACH(inst->dst, inst->src[0], inst->src[1]);
3491
3492 if (devinfo->gen >= 8) {
3493 /* Until Gen8, integer multiplies read 32-bits from one source,
3494 * and 16-bits from the other, and relying on the MACH instruction
3495 * to generate the high bits of the result.
3496 *
3497 * On Gen8, the multiply instruction does a full 32x32-bit
3498 * multiply, but in order to do a 64-bit multiply we can simulate
3499 * the previous behavior and then use a MACH instruction.
3500 *
3501 * FINISHME: Don't use source modifiers on src1.
3502 */
3503 assert(mul->src[1].type == BRW_REGISTER_TYPE_D ||
3504 mul->src[1].type == BRW_REGISTER_TYPE_UD);
3505 mul->src[1].type = BRW_REGISTER_TYPE_UW;
3506 mul->src[1].stride *= 2;
3507
3508 } else if (devinfo->gen == 7 && !devinfo->is_haswell &&
3509 inst->group > 0) {
3510 /* Among other things the quarter control bits influence which
3511 * accumulator register is used by the hardware for instructions
3512 * that access the accumulator implicitly (e.g. MACH). A
3513 * second-half instruction would normally map to acc1, which
3514 * doesn't exist on Gen7 and up (the hardware does emulate it for
3515 * floating-point instructions *only* by taking advantage of the
3516 * extra precision of acc0 not normally used for floating point
3517 * arithmetic).
3518 *
3519 * HSW and up are careful enough not to try to access an
3520 * accumulator register that doesn't exist, but on earlier Gen7
3521 * hardware we need to make sure that the quarter control bits are
3522 * zero to avoid non-deterministic behaviour and emit an extra MOV
3523 * to get the result masked correctly according to the current
3524 * channel enables.
3525 */
3526 mach->group = 0;
3527 mach->force_writemask_all = true;
3528 mach->dst = ibld.vgrf(inst->dst.type);
3529 ibld.MOV(inst->dst, mach->dst);
3530 }
3531 } else {
3532 continue;
3533 }
3534
3535 inst->remove(block);
3536 progress = true;
3537 }
3538
3539 if (progress)
3540 invalidate_live_intervals();
3541
3542 return progress;
3543 }
3544
3545 bool
3546 fs_visitor::lower_minmax()
3547 {
3548 assert(devinfo->gen < 6);
3549
3550 bool progress = false;
3551
3552 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
3553 const fs_builder ibld(this, block, inst);
3554
3555 if (inst->opcode == BRW_OPCODE_SEL &&
3556 inst->predicate == BRW_PREDICATE_NONE) {
3557 /* FIXME: Using CMP doesn't preserve the NaN propagation semantics of
3558 * the original SEL.L/GE instruction
3559 */
3560 ibld.CMP(ibld.null_reg_d(), inst->src[0], inst->src[1],
3561 inst->conditional_mod);
3562 inst->predicate = BRW_PREDICATE_NORMAL;
3563 inst->conditional_mod = BRW_CONDITIONAL_NONE;
3564
3565 progress = true;
3566 }
3567 }
3568
3569 if (progress)
3570 invalidate_live_intervals();
3571
3572 return progress;
3573 }
3574
3575 static void
3576 setup_color_payload(const fs_builder &bld, const brw_wm_prog_key *key,
3577 fs_reg *dst, fs_reg color, unsigned components)
3578 {
3579 if (key->clamp_fragment_color) {
3580 fs_reg tmp = bld.vgrf(BRW_REGISTER_TYPE_F, 4);
3581 assert(color.type == BRW_REGISTER_TYPE_F);
3582
3583 for (unsigned i = 0; i < components; i++)
3584 set_saturate(true,
3585 bld.MOV(offset(tmp, bld, i), offset(color, bld, i)));
3586
3587 color = tmp;
3588 }
3589
3590 for (unsigned i = 0; i < components; i++)
3591 dst[i] = offset(color, bld, i);
3592 }
3593
3594 static void
3595 lower_fb_write_logical_send(const fs_builder &bld, fs_inst *inst,
3596 const brw_wm_prog_data *prog_data,
3597 const brw_wm_prog_key *key,
3598 const fs_visitor::thread_payload &payload)
3599 {
3600 assert(inst->src[FB_WRITE_LOGICAL_SRC_COMPONENTS].file == IMM);
3601 const gen_device_info *devinfo = bld.shader->devinfo;
3602 const fs_reg &color0 = inst->src[FB_WRITE_LOGICAL_SRC_COLOR0];
3603 const fs_reg &color1 = inst->src[FB_WRITE_LOGICAL_SRC_COLOR1];
3604 const fs_reg &src0_alpha = inst->src[FB_WRITE_LOGICAL_SRC_SRC0_ALPHA];
3605 const fs_reg &src_depth = inst->src[FB_WRITE_LOGICAL_SRC_SRC_DEPTH];
3606 const fs_reg &dst_depth = inst->src[FB_WRITE_LOGICAL_SRC_DST_DEPTH];
3607 const fs_reg &src_stencil = inst->src[FB_WRITE_LOGICAL_SRC_SRC_STENCIL];
3608 fs_reg sample_mask = inst->src[FB_WRITE_LOGICAL_SRC_OMASK];
3609 const unsigned components =
3610 inst->src[FB_WRITE_LOGICAL_SRC_COMPONENTS].ud;
3611
3612 /* We can potentially have a message length of up to 15, so we have to set
3613 * base_mrf to either 0 or 1 in order to fit in m0..m15.
3614 */
3615 fs_reg sources[15];
3616 int header_size = 2, payload_header_size;
3617 unsigned length = 0;
3618
3619 /* From the Sandy Bridge PRM, volume 4, page 198:
3620 *
3621 * "Dispatched Pixel Enables. One bit per pixel indicating
3622 * which pixels were originally enabled when the thread was
3623 * dispatched. This field is only required for the end-of-
3624 * thread message and on all dual-source messages."
3625 */
3626 if (devinfo->gen >= 6 &&
3627 (devinfo->is_haswell || devinfo->gen >= 8 || !prog_data->uses_kill) &&
3628 color1.file == BAD_FILE &&
3629 key->nr_color_regions == 1) {
3630 header_size = 0;
3631 }
3632
3633 if (header_size != 0) {
3634 assert(header_size == 2);
3635 /* Allocate 2 registers for a header */
3636 length += 2;
3637 }
3638
3639 if (payload.aa_dest_stencil_reg) {
3640 sources[length] = fs_reg(VGRF, bld.shader->alloc.allocate(1));
3641 bld.group(8, 0).exec_all().annotate("FB write stencil/AA alpha")
3642 .MOV(sources[length],
3643 fs_reg(brw_vec8_grf(payload.aa_dest_stencil_reg, 0)));
3644 length++;
3645 }
3646
3647 if (sample_mask.file != BAD_FILE) {
3648 sources[length] = fs_reg(VGRF, bld.shader->alloc.allocate(1),
3649 BRW_REGISTER_TYPE_UD);
3650
3651 /* Hand over gl_SampleMask. Only the lower 16 bits of each channel are
3652 * relevant. Since it's unsigned single words one vgrf is always
3653 * 16-wide, but only the lower or higher 8 channels will be used by the
3654 * hardware when doing a SIMD8 write depending on whether we have
3655 * selected the subspans for the first or second half respectively.
3656 */
3657 assert(sample_mask.file != BAD_FILE && type_sz(sample_mask.type) == 4);
3658 sample_mask.type = BRW_REGISTER_TYPE_UW;
3659 sample_mask.stride *= 2;
3660
3661 bld.exec_all().annotate("FB write oMask")
3662 .MOV(horiz_offset(retype(sources[length], BRW_REGISTER_TYPE_UW),
3663 inst->group),
3664 sample_mask);
3665 length++;
3666 }
3667
3668 payload_header_size = length;
3669
3670 if (src0_alpha.file != BAD_FILE) {
3671 /* FIXME: This is being passed at the wrong location in the payload and
3672 * doesn't work when gl_SampleMask and MRTs are used simultaneously.
3673 * It's supposed to be immediately before oMask but there seems to be no
3674 * reasonable way to pass them in the correct order because LOAD_PAYLOAD
3675 * requires header sources to form a contiguous segment at the beginning
3676 * of the message and src0_alpha has per-channel semantics.
3677 */
3678 setup_color_payload(bld, key, &sources[length], src0_alpha, 1);
3679 length++;
3680 }
3681
3682 setup_color_payload(bld, key, &sources[length], color0, components);
3683 length += 4;
3684
3685 if (color1.file != BAD_FILE) {
3686 setup_color_payload(bld, key, &sources[length], color1, components);
3687 length += 4;
3688 }
3689
3690 if (src_depth.file != BAD_FILE) {
3691 sources[length] = src_depth;
3692 length++;
3693 }
3694
3695 if (dst_depth.file != BAD_FILE) {
3696 sources[length] = dst_depth;
3697 length++;
3698 }
3699
3700 if (src_stencil.file != BAD_FILE) {
3701 assert(devinfo->gen >= 9);
3702 assert(bld.dispatch_width() != 16);
3703
3704 /* XXX: src_stencil is only available on gen9+. dst_depth is never
3705 * available on gen9+. As such it's impossible to have both enabled at the
3706 * same time and therefore length cannot overrun the array.
3707 */
3708 assert(length < 15);
3709
3710 sources[length] = bld.vgrf(BRW_REGISTER_TYPE_UD);
3711 bld.exec_all().annotate("FB write OS")
3712 .MOV(retype(sources[length], BRW_REGISTER_TYPE_UB),
3713 subscript(src_stencil, BRW_REGISTER_TYPE_UB, 0));
3714 length++;
3715 }
3716
3717 fs_inst *load;
3718 if (devinfo->gen >= 7) {
3719 /* Send from the GRF */
3720 fs_reg payload = fs_reg(VGRF, -1, BRW_REGISTER_TYPE_F);
3721 load = bld.LOAD_PAYLOAD(payload, sources, length, payload_header_size);
3722 payload.nr = bld.shader->alloc.allocate(regs_written(load));
3723 load->dst = payload;
3724
3725 inst->src[0] = payload;
3726 inst->resize_sources(1);
3727 } else {
3728 /* Send from the MRF */
3729 load = bld.LOAD_PAYLOAD(fs_reg(MRF, 1, BRW_REGISTER_TYPE_F),
3730 sources, length, payload_header_size);
3731
3732 /* On pre-SNB, we have to interlace the color values. LOAD_PAYLOAD
3733 * will do this for us if we just give it a COMPR4 destination.
3734 */
3735 if (devinfo->gen < 6 && bld.dispatch_width() == 16)
3736 load->dst.nr |= BRW_MRF_COMPR4;
3737
3738 inst->resize_sources(0);
3739 inst->base_mrf = 1;
3740 }
3741
3742 inst->opcode = FS_OPCODE_FB_WRITE;
3743 inst->mlen = regs_written(load);
3744 inst->header_size = header_size;
3745 }
3746
3747 static void
3748 lower_fb_read_logical_send(const fs_builder &bld, fs_inst *inst)
3749 {
3750 const fs_builder &ubld = bld.exec_all();
3751 const unsigned length = 2;
3752 const fs_reg header = ubld.group(8, 0).vgrf(BRW_REGISTER_TYPE_UD, length);
3753
3754 ubld.group(16, 0)
3755 .MOV(header, retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD));
3756
3757 inst->resize_sources(1);
3758 inst->src[0] = header;
3759 inst->opcode = FS_OPCODE_FB_READ;
3760 inst->mlen = length;
3761 inst->header_size = length;
3762 }
3763
3764 static void
3765 lower_sampler_logical_send_gen4(const fs_builder &bld, fs_inst *inst, opcode op,
3766 const fs_reg &coordinate,
3767 const fs_reg &shadow_c,
3768 const fs_reg &lod, const fs_reg &lod2,
3769 const fs_reg &surface,
3770 const fs_reg &sampler,
3771 unsigned coord_components,
3772 unsigned grad_components)
3773 {
3774 const bool has_lod = (op == SHADER_OPCODE_TXL || op == FS_OPCODE_TXB ||
3775 op == SHADER_OPCODE_TXF || op == SHADER_OPCODE_TXS);
3776 fs_reg msg_begin(MRF, 1, BRW_REGISTER_TYPE_F);
3777 fs_reg msg_end = msg_begin;
3778
3779 /* g0 header. */
3780 msg_end = offset(msg_end, bld.group(8, 0), 1);
3781
3782 for (unsigned i = 0; i < coord_components; i++)
3783 bld.MOV(retype(offset(msg_end, bld, i), coordinate.type),
3784 offset(coordinate, bld, i));
3785
3786 msg_end = offset(msg_end, bld, coord_components);
3787
3788 /* Messages other than SAMPLE and RESINFO in SIMD16 and TXD in SIMD8
3789 * require all three components to be present and zero if they are unused.
3790 */
3791 if (coord_components > 0 &&
3792 (has_lod || shadow_c.file != BAD_FILE ||
3793 (op == SHADER_OPCODE_TEX && bld.dispatch_width() == 8))) {
3794 for (unsigned i = coord_components; i < 3; i++)
3795 bld.MOV(offset(msg_end, bld, i), brw_imm_f(0.0f));
3796
3797 msg_end = offset(msg_end, bld, 3 - coord_components);
3798 }
3799
3800 if (op == SHADER_OPCODE_TXD) {
3801 /* TXD unsupported in SIMD16 mode. */
3802 assert(bld.dispatch_width() == 8);
3803
3804 /* the slots for u and v are always present, but r is optional */
3805 if (coord_components < 2)
3806 msg_end = offset(msg_end, bld, 2 - coord_components);
3807
3808 /* P = u, v, r
3809 * dPdx = dudx, dvdx, drdx
3810 * dPdy = dudy, dvdy, drdy
3811 *
3812 * 1-arg: Does not exist.
3813 *
3814 * 2-arg: dudx dvdx dudy dvdy
3815 * dPdx.x dPdx.y dPdy.x dPdy.y
3816 * m4 m5 m6 m7
3817 *
3818 * 3-arg: dudx dvdx drdx dudy dvdy drdy
3819 * dPdx.x dPdx.y dPdx.z dPdy.x dPdy.y dPdy.z
3820 * m5 m6 m7 m8 m9 m10
3821 */
3822 for (unsigned i = 0; i < grad_components; i++)
3823 bld.MOV(offset(msg_end, bld, i), offset(lod, bld, i));
3824
3825 msg_end = offset(msg_end, bld, MAX2(grad_components, 2));
3826
3827 for (unsigned i = 0; i < grad_components; i++)
3828 bld.MOV(offset(msg_end, bld, i), offset(lod2, bld, i));
3829
3830 msg_end = offset(msg_end, bld, MAX2(grad_components, 2));
3831 }
3832
3833 if (has_lod) {
3834 /* Bias/LOD with shadow comparitor is unsupported in SIMD16 -- *Without*
3835 * shadow comparitor (including RESINFO) it's unsupported in SIMD8 mode.
3836 */
3837 assert(shadow_c.file != BAD_FILE ? bld.dispatch_width() == 8 :
3838 bld.dispatch_width() == 16);
3839
3840 const brw_reg_type type =
3841 (op == SHADER_OPCODE_TXF || op == SHADER_OPCODE_TXS ?
3842 BRW_REGISTER_TYPE_UD : BRW_REGISTER_TYPE_F);
3843 bld.MOV(retype(msg_end, type), lod);
3844 msg_end = offset(msg_end, bld, 1);
3845 }
3846
3847 if (shadow_c.file != BAD_FILE) {
3848 if (op == SHADER_OPCODE_TEX && bld.dispatch_width() == 8) {
3849 /* There's no plain shadow compare message, so we use shadow
3850 * compare with a bias of 0.0.
3851 */
3852 bld.MOV(msg_end, brw_imm_f(0.0f));
3853 msg_end = offset(msg_end, bld, 1);
3854 }
3855
3856 bld.MOV(msg_end, shadow_c);
3857 msg_end = offset(msg_end, bld, 1);
3858 }
3859
3860 inst->opcode = op;
3861 inst->src[0] = reg_undef;
3862 inst->src[1] = surface;
3863 inst->src[2] = sampler;
3864 inst->resize_sources(3);
3865 inst->base_mrf = msg_begin.nr;
3866 inst->mlen = msg_end.nr - msg_begin.nr;
3867 inst->header_size = 1;
3868 }
3869
3870 static void
3871 lower_sampler_logical_send_gen5(const fs_builder &bld, fs_inst *inst, opcode op,
3872 const fs_reg &coordinate,
3873 const fs_reg &shadow_c,
3874 const fs_reg &lod, const fs_reg &lod2,
3875 const fs_reg &sample_index,
3876 const fs_reg &surface,
3877 const fs_reg &sampler,
3878 const fs_reg &offset_value,
3879 unsigned coord_components,
3880 unsigned grad_components)
3881 {
3882 fs_reg message(MRF, 2, BRW_REGISTER_TYPE_F);
3883 fs_reg msg_coords = message;
3884 unsigned header_size = 0;
3885
3886 if (offset_value.file != BAD_FILE) {
3887 /* The offsets set up by the visitor are in the m1 header, so we can't
3888 * go headerless.
3889 */
3890 header_size = 1;
3891 message.nr--;
3892 }
3893
3894 for (unsigned i = 0; i < coord_components; i++)
3895 bld.MOV(retype(offset(msg_coords, bld, i), coordinate.type),
3896 offset(coordinate, bld, i));
3897
3898 fs_reg msg_end = offset(msg_coords, bld, coord_components);
3899 fs_reg msg_lod = offset(msg_coords, bld, 4);
3900
3901 if (shadow_c.file != BAD_FILE) {
3902 fs_reg msg_shadow = msg_lod;
3903 bld.MOV(msg_shadow, shadow_c);
3904 msg_lod = offset(msg_shadow, bld, 1);
3905 msg_end = msg_lod;
3906 }
3907
3908 switch (op) {
3909 case SHADER_OPCODE_TXL:
3910 case FS_OPCODE_TXB:
3911 bld.MOV(msg_lod, lod);
3912 msg_end = offset(msg_lod, bld, 1);
3913 break;
3914 case SHADER_OPCODE_TXD:
3915 /**
3916 * P = u, v, r
3917 * dPdx = dudx, dvdx, drdx
3918 * dPdy = dudy, dvdy, drdy
3919 *
3920 * Load up these values:
3921 * - dudx dudy dvdx dvdy drdx drdy
3922 * - dPdx.x dPdy.x dPdx.y dPdy.y dPdx.z dPdy.z
3923 */
3924 msg_end = msg_lod;
3925 for (unsigned i = 0; i < grad_components; i++) {
3926 bld.MOV(msg_end, offset(lod, bld, i));
3927 msg_end = offset(msg_end, bld, 1);
3928
3929 bld.MOV(msg_end, offset(lod2, bld, i));
3930 msg_end = offset(msg_end, bld, 1);
3931 }
3932 break;
3933 case SHADER_OPCODE_TXS:
3934 msg_lod = retype(msg_end, BRW_REGISTER_TYPE_UD);
3935 bld.MOV(msg_lod, lod);
3936 msg_end = offset(msg_lod, bld, 1);
3937 break;
3938 case SHADER_OPCODE_TXF:
3939 msg_lod = offset(msg_coords, bld, 3);
3940 bld.MOV(retype(msg_lod, BRW_REGISTER_TYPE_UD), lod);
3941 msg_end = offset(msg_lod, bld, 1);
3942 break;
3943 case SHADER_OPCODE_TXF_CMS:
3944 msg_lod = offset(msg_coords, bld, 3);
3945 /* lod */
3946 bld.MOV(retype(msg_lod, BRW_REGISTER_TYPE_UD), brw_imm_ud(0u));
3947 /* sample index */
3948 bld.MOV(retype(offset(msg_lod, bld, 1), BRW_REGISTER_TYPE_UD), sample_index);
3949 msg_end = offset(msg_lod, bld, 2);
3950 break;
3951 default:
3952 break;
3953 }
3954
3955 inst->opcode = op;
3956 inst->src[0] = reg_undef;
3957 inst->src[1] = surface;
3958 inst->src[2] = sampler;
3959 inst->resize_sources(3);
3960 inst->base_mrf = message.nr;
3961 inst->mlen = msg_end.nr - message.nr;
3962 inst->header_size = header_size;
3963
3964 /* Message length > MAX_SAMPLER_MESSAGE_SIZE disallowed by hardware. */
3965 assert(inst->mlen <= MAX_SAMPLER_MESSAGE_SIZE);
3966 }
3967
3968 static bool
3969 is_high_sampler(const struct gen_device_info *devinfo, const fs_reg &sampler)
3970 {
3971 if (devinfo->gen < 8 && !devinfo->is_haswell)
3972 return false;
3973
3974 return sampler.file != IMM || sampler.ud >= 16;
3975 }
3976
3977 static void
3978 lower_sampler_logical_send_gen7(const fs_builder &bld, fs_inst *inst, opcode op,
3979 const fs_reg &coordinate,
3980 const fs_reg &shadow_c,
3981 fs_reg lod, const fs_reg &lod2,
3982 const fs_reg &sample_index,
3983 const fs_reg &mcs,
3984 const fs_reg &surface,
3985 const fs_reg &sampler,
3986 const fs_reg &offset_value,
3987 unsigned coord_components,
3988 unsigned grad_components)
3989 {
3990 const gen_device_info *devinfo = bld.shader->devinfo;
3991 unsigned reg_width = bld.dispatch_width() / 8;
3992 unsigned header_size = 0, length = 0;
3993 fs_reg sources[MAX_SAMPLER_MESSAGE_SIZE];
3994 for (unsigned i = 0; i < ARRAY_SIZE(sources); i++)
3995 sources[i] = bld.vgrf(BRW_REGISTER_TYPE_F);
3996
3997 if (op == SHADER_OPCODE_TG4 || op == SHADER_OPCODE_TG4_OFFSET ||
3998 offset_value.file != BAD_FILE || inst->eot ||
3999 op == SHADER_OPCODE_SAMPLEINFO ||
4000 is_high_sampler(devinfo, sampler)) {
4001 /* For general texture offsets (no txf workaround), we need a header to
4002 * put them in. Note that we're only reserving space for it in the
4003 * message payload as it will be initialized implicitly by the
4004 * generator.
4005 *
4006 * TG4 needs to place its channel select in the header, for interaction
4007 * with ARB_texture_swizzle. The sampler index is only 4-bits, so for
4008 * larger sampler numbers we need to offset the Sampler State Pointer in
4009 * the header.
4010 */
4011 header_size = 1;
4012 sources[0] = fs_reg();
4013 length++;
4014
4015 /* If we're requesting fewer than four channels worth of response,
4016 * and we have an explicit header, we need to set up the sampler
4017 * writemask. It's reversed from normal: 1 means "don't write".
4018 */
4019 if (!inst->eot && regs_written(inst) != 4 * reg_width) {
4020 assert(regs_written(inst) % reg_width == 0);
4021 unsigned mask = ~((1 << (regs_written(inst) / reg_width)) - 1) & 0xf;
4022 inst->offset |= mask << 12;
4023 }
4024 }
4025
4026 if (shadow_c.file != BAD_FILE) {
4027 bld.MOV(sources[length], shadow_c);
4028 length++;
4029 }
4030
4031 bool coordinate_done = false;
4032
4033 /* Set up the LOD info */
4034 switch (op) {
4035 case FS_OPCODE_TXB:
4036 case SHADER_OPCODE_TXL:
4037 if (devinfo->gen >= 9 && op == SHADER_OPCODE_TXL && lod.is_zero()) {
4038 op = SHADER_OPCODE_TXL_LZ;
4039 break;
4040 }
4041 bld.MOV(sources[length], lod);
4042 length++;
4043 break;
4044 case SHADER_OPCODE_TXD:
4045 /* TXD should have been lowered in SIMD16 mode. */
4046 assert(bld.dispatch_width() == 8);
4047
4048 /* Load dPdx and the coordinate together:
4049 * [hdr], [ref], x, dPdx.x, dPdy.x, y, dPdx.y, dPdy.y, z, dPdx.z, dPdy.z
4050 */
4051 for (unsigned i = 0; i < coord_components; i++) {
4052 bld.MOV(sources[length++], offset(coordinate, bld, i));
4053
4054 /* For cube map array, the coordinate is (u,v,r,ai) but there are
4055 * only derivatives for (u, v, r).
4056 */
4057 if (i < grad_components) {
4058 bld.MOV(sources[length++], offset(lod, bld, i));
4059 bld.MOV(sources[length++], offset(lod2, bld, i));
4060 }
4061 }
4062
4063 coordinate_done = true;
4064 break;
4065 case SHADER_OPCODE_TXS:
4066 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_UD), lod);
4067 length++;
4068 break;
4069 case SHADER_OPCODE_TXF:
4070 /* Unfortunately, the parameters for LD are intermixed: u, lod, v, r.
4071 * On Gen9 they are u, v, lod, r
4072 */
4073 bld.MOV(retype(sources[length++], BRW_REGISTER_TYPE_D), coordinate);
4074
4075 if (devinfo->gen >= 9) {
4076 if (coord_components >= 2) {
4077 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_D),
4078 offset(coordinate, bld, 1));
4079 } else {
4080 sources[length] = brw_imm_d(0);
4081 }
4082 length++;
4083 }
4084
4085 if (devinfo->gen >= 9 && lod.is_zero()) {
4086 op = SHADER_OPCODE_TXF_LZ;
4087 } else {
4088 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_D), lod);
4089 length++;
4090 }
4091
4092 for (unsigned i = devinfo->gen >= 9 ? 2 : 1; i < coord_components; i++)
4093 bld.MOV(retype(sources[length++], BRW_REGISTER_TYPE_D),
4094 offset(coordinate, bld, i));
4095
4096 coordinate_done = true;
4097 break;
4098
4099 case SHADER_OPCODE_TXF_CMS:
4100 case SHADER_OPCODE_TXF_CMS_W:
4101 case SHADER_OPCODE_TXF_UMS:
4102 case SHADER_OPCODE_TXF_MCS:
4103 if (op == SHADER_OPCODE_TXF_UMS ||
4104 op == SHADER_OPCODE_TXF_CMS ||
4105 op == SHADER_OPCODE_TXF_CMS_W) {
4106 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_UD), sample_index);
4107 length++;
4108 }
4109
4110 if (op == SHADER_OPCODE_TXF_CMS || op == SHADER_OPCODE_TXF_CMS_W) {
4111 /* Data from the multisample control surface. */
4112 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_UD), mcs);
4113 length++;
4114
4115 /* On Gen9+ we'll use ld2dms_w instead which has two registers for
4116 * the MCS data.
4117 */
4118 if (op == SHADER_OPCODE_TXF_CMS_W) {
4119 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_UD),
4120 mcs.file == IMM ?
4121 mcs :
4122 offset(mcs, bld, 1));
4123 length++;
4124 }
4125 }
4126
4127 /* There is no offsetting for this message; just copy in the integer
4128 * texture coordinates.
4129 */
4130 for (unsigned i = 0; i < coord_components; i++)
4131 bld.MOV(retype(sources[length++], BRW_REGISTER_TYPE_D),
4132 offset(coordinate, bld, i));
4133
4134 coordinate_done = true;
4135 break;
4136 case SHADER_OPCODE_TG4_OFFSET:
4137 /* More crazy intermixing */
4138 for (unsigned i = 0; i < 2; i++) /* u, v */
4139 bld.MOV(sources[length++], offset(coordinate, bld, i));
4140
4141 for (unsigned i = 0; i < 2; i++) /* offu, offv */
4142 bld.MOV(retype(sources[length++], BRW_REGISTER_TYPE_D),
4143 offset(offset_value, bld, i));
4144
4145 if (coord_components == 3) /* r if present */
4146 bld.MOV(sources[length++], offset(coordinate, bld, 2));
4147
4148 coordinate_done = true;
4149 break;
4150 default:
4151 break;
4152 }
4153
4154 /* Set up the coordinate (except for cases where it was done above) */
4155 if (!coordinate_done) {
4156 for (unsigned i = 0; i < coord_components; i++)
4157 bld.MOV(sources[length++], offset(coordinate, bld, i));
4158 }
4159
4160 int mlen;
4161 if (reg_width == 2)
4162 mlen = length * reg_width - header_size;
4163 else
4164 mlen = length * reg_width;
4165
4166 const fs_reg src_payload = fs_reg(VGRF, bld.shader->alloc.allocate(mlen),
4167 BRW_REGISTER_TYPE_F);
4168 bld.LOAD_PAYLOAD(src_payload, sources, length, header_size);
4169
4170 /* Generate the SEND. */
4171 inst->opcode = op;
4172 inst->src[0] = src_payload;
4173 inst->src[1] = surface;
4174 inst->src[2] = sampler;
4175 inst->resize_sources(3);
4176 inst->mlen = mlen;
4177 inst->header_size = header_size;
4178
4179 /* Message length > MAX_SAMPLER_MESSAGE_SIZE disallowed by hardware. */
4180 assert(inst->mlen <= MAX_SAMPLER_MESSAGE_SIZE);
4181 }
4182
4183 static void
4184 lower_sampler_logical_send(const fs_builder &bld, fs_inst *inst, opcode op)
4185 {
4186 const gen_device_info *devinfo = bld.shader->devinfo;
4187 const fs_reg &coordinate = inst->src[TEX_LOGICAL_SRC_COORDINATE];
4188 const fs_reg &shadow_c = inst->src[TEX_LOGICAL_SRC_SHADOW_C];
4189 const fs_reg &lod = inst->src[TEX_LOGICAL_SRC_LOD];
4190 const fs_reg &lod2 = inst->src[TEX_LOGICAL_SRC_LOD2];
4191 const fs_reg &sample_index = inst->src[TEX_LOGICAL_SRC_SAMPLE_INDEX];
4192 const fs_reg &mcs = inst->src[TEX_LOGICAL_SRC_MCS];
4193 const fs_reg &surface = inst->src[TEX_LOGICAL_SRC_SURFACE];
4194 const fs_reg &sampler = inst->src[TEX_LOGICAL_SRC_SAMPLER];
4195 const fs_reg &offset_value = inst->src[TEX_LOGICAL_SRC_OFFSET_VALUE];
4196 assert(inst->src[TEX_LOGICAL_SRC_COORD_COMPONENTS].file == IMM);
4197 const unsigned coord_components = inst->src[TEX_LOGICAL_SRC_COORD_COMPONENTS].ud;
4198 assert(inst->src[TEX_LOGICAL_SRC_GRAD_COMPONENTS].file == IMM);
4199 const unsigned grad_components = inst->src[TEX_LOGICAL_SRC_GRAD_COMPONENTS].ud;
4200
4201 if (devinfo->gen >= 7) {
4202 lower_sampler_logical_send_gen7(bld, inst, op, coordinate,
4203 shadow_c, lod, lod2, sample_index,
4204 mcs, surface, sampler, offset_value,
4205 coord_components, grad_components);
4206 } else if (devinfo->gen >= 5) {
4207 lower_sampler_logical_send_gen5(bld, inst, op, coordinate,
4208 shadow_c, lod, lod2, sample_index,
4209 surface, sampler, offset_value,
4210 coord_components, grad_components);
4211 } else {
4212 lower_sampler_logical_send_gen4(bld, inst, op, coordinate,
4213 shadow_c, lod, lod2,
4214 surface, sampler,
4215 coord_components, grad_components);
4216 }
4217 }
4218
4219 /**
4220 * Initialize the header present in some typed and untyped surface
4221 * messages.
4222 */
4223 static fs_reg
4224 emit_surface_header(const fs_builder &bld, const fs_reg &sample_mask)
4225 {
4226 fs_builder ubld = bld.exec_all().group(8, 0);
4227 const fs_reg dst = ubld.vgrf(BRW_REGISTER_TYPE_UD);
4228 ubld.MOV(dst, brw_imm_d(0));
4229 ubld.MOV(component(dst, 7), sample_mask);
4230 return dst;
4231 }
4232
4233 static void
4234 lower_surface_logical_send(const fs_builder &bld, fs_inst *inst, opcode op,
4235 const fs_reg &sample_mask)
4236 {
4237 /* Get the logical send arguments. */
4238 const fs_reg &addr = inst->src[0];
4239 const fs_reg &src = inst->src[1];
4240 const fs_reg &surface = inst->src[2];
4241 const UNUSED fs_reg &dims = inst->src[3];
4242 const fs_reg &arg = inst->src[4];
4243
4244 /* Calculate the total number of components of the payload. */
4245 const unsigned addr_sz = inst->components_read(0);
4246 const unsigned src_sz = inst->components_read(1);
4247 const unsigned header_sz = (sample_mask.file == BAD_FILE ? 0 : 1);
4248 const unsigned sz = header_sz + addr_sz + src_sz;
4249
4250 /* Allocate space for the payload. */
4251 fs_reg *const components = new fs_reg[sz];
4252 const fs_reg payload = bld.vgrf(BRW_REGISTER_TYPE_UD, sz);
4253 unsigned n = 0;
4254
4255 /* Construct the payload. */
4256 if (header_sz)
4257 components[n++] = emit_surface_header(bld, sample_mask);
4258
4259 for (unsigned i = 0; i < addr_sz; i++)
4260 components[n++] = offset(addr, bld, i);
4261
4262 for (unsigned i = 0; i < src_sz; i++)
4263 components[n++] = offset(src, bld, i);
4264
4265 bld.LOAD_PAYLOAD(payload, components, sz, header_sz);
4266
4267 /* Update the original instruction. */
4268 inst->opcode = op;
4269 inst->mlen = header_sz + (addr_sz + src_sz) * inst->exec_size / 8;
4270 inst->header_size = header_sz;
4271
4272 inst->src[0] = payload;
4273 inst->src[1] = surface;
4274 inst->src[2] = arg;
4275 inst->resize_sources(3);
4276
4277 delete[] components;
4278 }
4279
4280 static void
4281 lower_varying_pull_constant_logical_send(const fs_builder &bld, fs_inst *inst)
4282 {
4283 const gen_device_info *devinfo = bld.shader->devinfo;
4284
4285 if (devinfo->gen >= 7) {
4286 /* We are switching the instruction from an ALU-like instruction to a
4287 * send-from-grf instruction. Since sends can't handle strides or
4288 * source modifiers, we have to make a copy of the offset source.
4289 */
4290 fs_reg tmp = bld.vgrf(BRW_REGISTER_TYPE_UD);
4291 bld.MOV(tmp, inst->src[1]);
4292 inst->src[1] = tmp;
4293
4294 inst->opcode = FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_GEN7;
4295
4296 } else {
4297 const fs_reg payload(MRF, FIRST_PULL_LOAD_MRF(devinfo->gen),
4298 BRW_REGISTER_TYPE_UD);
4299
4300 bld.MOV(byte_offset(payload, REG_SIZE), inst->src[1]);
4301
4302 inst->opcode = FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_GEN4;
4303 inst->resize_sources(1);
4304 inst->base_mrf = payload.nr;
4305 inst->header_size = 1;
4306 inst->mlen = 1 + inst->exec_size / 8;
4307 }
4308 }
4309
4310 static void
4311 lower_math_logical_send(const fs_builder &bld, fs_inst *inst)
4312 {
4313 assert(bld.shader->devinfo->gen < 6);
4314
4315 inst->base_mrf = 2;
4316 inst->mlen = inst->sources * inst->exec_size / 8;
4317
4318 if (inst->sources > 1) {
4319 /* From the Ironlake PRM, Volume 4, Part 1, Section 6.1.13
4320 * "Message Payload":
4321 *
4322 * "Operand0[7]. For the INT DIV functions, this operand is the
4323 * denominator."
4324 * ...
4325 * "Operand1[7]. For the INT DIV functions, this operand is the
4326 * numerator."
4327 */
4328 const bool is_int_div = inst->opcode != SHADER_OPCODE_POW;
4329 const fs_reg src0 = is_int_div ? inst->src[1] : inst->src[0];
4330 const fs_reg src1 = is_int_div ? inst->src[0] : inst->src[1];
4331
4332 inst->resize_sources(1);
4333 inst->src[0] = src0;
4334
4335 assert(inst->exec_size == 8);
4336 bld.MOV(fs_reg(MRF, inst->base_mrf + 1, src1.type), src1);
4337 }
4338 }
4339
4340 bool
4341 fs_visitor::lower_logical_sends()
4342 {
4343 bool progress = false;
4344
4345 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
4346 const fs_builder ibld(this, block, inst);
4347
4348 switch (inst->opcode) {
4349 case FS_OPCODE_FB_WRITE_LOGICAL:
4350 assert(stage == MESA_SHADER_FRAGMENT);
4351 lower_fb_write_logical_send(ibld, inst,
4352 (const brw_wm_prog_data *)prog_data,
4353 (const brw_wm_prog_key *)key,
4354 payload);
4355 break;
4356
4357 case FS_OPCODE_FB_READ_LOGICAL:
4358 lower_fb_read_logical_send(ibld, inst);
4359 break;
4360
4361 case SHADER_OPCODE_TEX_LOGICAL:
4362 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TEX);
4363 break;
4364
4365 case SHADER_OPCODE_TXD_LOGICAL:
4366 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXD);
4367 break;
4368
4369 case SHADER_OPCODE_TXF_LOGICAL:
4370 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXF);
4371 break;
4372
4373 case SHADER_OPCODE_TXL_LOGICAL:
4374 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXL);
4375 break;
4376
4377 case SHADER_OPCODE_TXS_LOGICAL:
4378 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXS);
4379 break;
4380
4381 case FS_OPCODE_TXB_LOGICAL:
4382 lower_sampler_logical_send(ibld, inst, FS_OPCODE_TXB);
4383 break;
4384
4385 case SHADER_OPCODE_TXF_CMS_LOGICAL:
4386 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXF_CMS);
4387 break;
4388
4389 case SHADER_OPCODE_TXF_CMS_W_LOGICAL:
4390 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXF_CMS_W);
4391 break;
4392
4393 case SHADER_OPCODE_TXF_UMS_LOGICAL:
4394 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXF_UMS);
4395 break;
4396
4397 case SHADER_OPCODE_TXF_MCS_LOGICAL:
4398 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXF_MCS);
4399 break;
4400
4401 case SHADER_OPCODE_LOD_LOGICAL:
4402 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_LOD);
4403 break;
4404
4405 case SHADER_OPCODE_TG4_LOGICAL:
4406 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TG4);
4407 break;
4408
4409 case SHADER_OPCODE_TG4_OFFSET_LOGICAL:
4410 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TG4_OFFSET);
4411 break;
4412
4413 case SHADER_OPCODE_SAMPLEINFO_LOGICAL:
4414 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_SAMPLEINFO);
4415 break;
4416
4417 case SHADER_OPCODE_UNTYPED_SURFACE_READ_LOGICAL:
4418 lower_surface_logical_send(ibld, inst,
4419 SHADER_OPCODE_UNTYPED_SURFACE_READ,
4420 fs_reg());
4421 break;
4422
4423 case SHADER_OPCODE_UNTYPED_SURFACE_WRITE_LOGICAL:
4424 lower_surface_logical_send(ibld, inst,
4425 SHADER_OPCODE_UNTYPED_SURFACE_WRITE,
4426 ibld.sample_mask_reg());
4427 break;
4428
4429 case SHADER_OPCODE_UNTYPED_ATOMIC_LOGICAL:
4430 lower_surface_logical_send(ibld, inst,
4431 SHADER_OPCODE_UNTYPED_ATOMIC,
4432 ibld.sample_mask_reg());
4433 break;
4434
4435 case SHADER_OPCODE_TYPED_SURFACE_READ_LOGICAL:
4436 lower_surface_logical_send(ibld, inst,
4437 SHADER_OPCODE_TYPED_SURFACE_READ,
4438 brw_imm_d(0xffff));
4439 break;
4440
4441 case SHADER_OPCODE_TYPED_SURFACE_WRITE_LOGICAL:
4442 lower_surface_logical_send(ibld, inst,
4443 SHADER_OPCODE_TYPED_SURFACE_WRITE,
4444 ibld.sample_mask_reg());
4445 break;
4446
4447 case SHADER_OPCODE_TYPED_ATOMIC_LOGICAL:
4448 lower_surface_logical_send(ibld, inst,
4449 SHADER_OPCODE_TYPED_ATOMIC,
4450 ibld.sample_mask_reg());
4451 break;
4452
4453 case FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_LOGICAL:
4454 lower_varying_pull_constant_logical_send(ibld, inst);
4455 break;
4456
4457 case SHADER_OPCODE_RCP:
4458 case SHADER_OPCODE_RSQ:
4459 case SHADER_OPCODE_SQRT:
4460 case SHADER_OPCODE_EXP2:
4461 case SHADER_OPCODE_LOG2:
4462 case SHADER_OPCODE_SIN:
4463 case SHADER_OPCODE_COS:
4464 case SHADER_OPCODE_POW:
4465 case SHADER_OPCODE_INT_QUOTIENT:
4466 case SHADER_OPCODE_INT_REMAINDER:
4467 /* The math opcodes are overloaded for the send-like and
4468 * expression-like instructions which seems kind of icky. Gen6+ has
4469 * a native (but rather quirky) MATH instruction so we don't need to
4470 * do anything here. On Gen4-5 we'll have to lower the Gen6-like
4471 * logical instructions (which we can easily recognize because they
4472 * have mlen = 0) into send-like virtual instructions.
4473 */
4474 if (devinfo->gen < 6 && inst->mlen == 0) {
4475 lower_math_logical_send(ibld, inst);
4476 break;
4477
4478 } else {
4479 continue;
4480 }
4481
4482 default:
4483 continue;
4484 }
4485
4486 progress = true;
4487 }
4488
4489 if (progress)
4490 invalidate_live_intervals();
4491
4492 return progress;
4493 }
4494
4495 /**
4496 * Get the closest allowed SIMD width for instruction \p inst accounting for
4497 * some common regioning and execution control restrictions that apply to FPU
4498 * instructions. These restrictions don't necessarily have any relevance to
4499 * instructions not executed by the FPU pipeline like extended math, control
4500 * flow or send message instructions.
4501 *
4502 * For virtual opcodes it's really up to the instruction -- In some cases
4503 * (e.g. where a virtual instruction unrolls into a simple sequence of FPU
4504 * instructions) it may simplify virtual instruction lowering if we can
4505 * enforce FPU-like regioning restrictions already on the virtual instruction,
4506 * in other cases (e.g. virtual send-like instructions) this may be
4507 * excessively restrictive.
4508 */
4509 static unsigned
4510 get_fpu_lowered_simd_width(const struct gen_device_info *devinfo,
4511 const fs_inst *inst)
4512 {
4513 /* Maximum execution size representable in the instruction controls. */
4514 unsigned max_width = MIN2(32, inst->exec_size);
4515
4516 /* According to the PRMs:
4517 * "A. In Direct Addressing mode, a source cannot span more than 2
4518 * adjacent GRF registers.
4519 * B. A destination cannot span more than 2 adjacent GRF registers."
4520 *
4521 * Look for the source or destination with the largest register region
4522 * which is the one that is going to limit the overall execution size of
4523 * the instruction due to this rule.
4524 */
4525 unsigned reg_count = DIV_ROUND_UP(inst->size_written, REG_SIZE);
4526
4527 for (unsigned i = 0; i < inst->sources; i++)
4528 reg_count = MAX2(reg_count, DIV_ROUND_UP(inst->size_read(i), REG_SIZE));
4529
4530 /* Calculate the maximum execution size of the instruction based on the
4531 * factor by which it goes over the hardware limit of 2 GRFs.
4532 */
4533 if (reg_count > 2)
4534 max_width = MIN2(max_width, inst->exec_size / DIV_ROUND_UP(reg_count, 2));
4535
4536 /* According to the IVB PRMs:
4537 * "When destination spans two registers, the source MUST span two
4538 * registers. The exception to the above rule:
4539 *
4540 * - When source is scalar, the source registers are not incremented.
4541 * - When source is packed integer Word and destination is packed
4542 * integer DWord, the source register is not incremented but the
4543 * source sub register is incremented."
4544 *
4545 * The hardware specs from Gen4 to Gen7.5 mention similar regioning
4546 * restrictions. The code below intentionally doesn't check whether the
4547 * destination type is integer because empirically the hardware doesn't
4548 * seem to care what the actual type is as long as it's dword-aligned.
4549 */
4550 if (devinfo->gen < 8) {
4551 for (unsigned i = 0; i < inst->sources; i++) {
4552 if (inst->size_written > REG_SIZE &&
4553 inst->size_read(i) != 0 && inst->size_read(i) <= REG_SIZE &&
4554 !is_uniform(inst->src[i]) &&
4555 !(type_sz(inst->dst.type) == 4 && inst->dst.stride == 1 &&
4556 type_sz(inst->src[i].type) == 2 && inst->src[i].stride == 1)) {
4557 const unsigned reg_count = DIV_ROUND_UP(inst->size_written, REG_SIZE);
4558 max_width = MIN2(max_width, inst->exec_size / reg_count);
4559 }
4560 }
4561 }
4562
4563 /* From the IVB PRMs:
4564 * "When an instruction is SIMD32, the low 16 bits of the execution mask
4565 * are applied for both halves of the SIMD32 instruction. If different
4566 * execution mask channels are required, split the instruction into two
4567 * SIMD16 instructions."
4568 *
4569 * There is similar text in the HSW PRMs. Gen4-6 don't even implement
4570 * 32-wide control flow support in hardware and will behave similarly.
4571 */
4572 if (devinfo->gen < 8 && !inst->force_writemask_all)
4573 max_width = MIN2(max_width, 16);
4574
4575 /* From the IVB PRMs (applies to HSW too):
4576 * "Instructions with condition modifiers must not use SIMD32."
4577 *
4578 * From the BDW PRMs (applies to later hardware too):
4579 * "Ternary instruction with condition modifiers must not use SIMD32."
4580 */
4581 if (inst->conditional_mod && (devinfo->gen < 8 || inst->is_3src(devinfo)))
4582 max_width = MIN2(max_width, 16);
4583
4584 /* From the IVB PRMs (applies to other devices that don't have the
4585 * gen_device_info::supports_simd16_3src flag set):
4586 * "In Align16 access mode, SIMD16 is not allowed for DW operations and
4587 * SIMD8 is not allowed for DF operations."
4588 */
4589 if (inst->is_3src(devinfo) && !devinfo->supports_simd16_3src)
4590 max_width = MIN2(max_width, inst->exec_size / reg_count);
4591
4592 /* Pre-Gen8 EUs are hardwired to use the QtrCtrl+1 (where QtrCtrl is
4593 * the 8-bit quarter of the execution mask signals specified in the
4594 * instruction control fields) for the second compressed half of any
4595 * single-precision instruction (for double-precision instructions
4596 * it's hardwired to use NibCtrl+1, at least on HSW), which means that
4597 * the EU will apply the wrong execution controls for the second
4598 * sequential GRF write if the number of channels per GRF is not exactly
4599 * eight in single-precision mode (or four in double-float mode).
4600 *
4601 * In this situation we calculate the maximum size of the split
4602 * instructions so they only ever write to a single register.
4603 */
4604 if (devinfo->gen < 8 && inst->size_written > REG_SIZE &&
4605 !inst->force_writemask_all) {
4606 const unsigned channels_per_grf = inst->exec_size /
4607 DIV_ROUND_UP(inst->size_written, REG_SIZE);
4608 unsigned exec_type_size = 0;
4609 for (int i = 0; i < inst->sources; i++) {
4610 if (inst->src[i].file != BAD_FILE)
4611 exec_type_size = MAX2(exec_type_size, type_sz(inst->src[i].type));
4612 }
4613 assert(exec_type_size);
4614
4615 /* The hardware shifts exactly 8 channels per compressed half of the
4616 * instruction in single-precision mode and exactly 4 in double-precision.
4617 */
4618 if (channels_per_grf != (exec_type_size == 8 ? 4 : 8))
4619 max_width = MIN2(max_width, channels_per_grf);
4620 }
4621
4622 /* Only power-of-two execution sizes are representable in the instruction
4623 * control fields.
4624 */
4625 return 1 << _mesa_logbase2(max_width);
4626 }
4627
4628 /**
4629 * Get the maximum allowed SIMD width for instruction \p inst accounting for
4630 * various payload size restrictions that apply to sampler message
4631 * instructions.
4632 *
4633 * This is only intended to provide a maximum theoretical bound for the
4634 * execution size of the message based on the number of argument components
4635 * alone, which in most cases will determine whether the SIMD8 or SIMD16
4636 * variant of the message can be used, though some messages may have
4637 * additional restrictions not accounted for here (e.g. pre-ILK hardware uses
4638 * the message length to determine the exact SIMD width and argument count,
4639 * which makes a number of sampler message combinations impossible to
4640 * represent).
4641 */
4642 static unsigned
4643 get_sampler_lowered_simd_width(const struct gen_device_info *devinfo,
4644 const fs_inst *inst)
4645 {
4646 /* Calculate the number of coordinate components that have to be present
4647 * assuming that additional arguments follow the texel coordinates in the
4648 * message payload. On IVB+ there is no need for padding, on ILK-SNB we
4649 * need to pad to four or three components depending on the message,
4650 * pre-ILK we need to pad to at most three components.
4651 */
4652 const unsigned req_coord_components =
4653 (devinfo->gen >= 7 ||
4654 !inst->components_read(TEX_LOGICAL_SRC_COORDINATE)) ? 0 :
4655 (devinfo->gen >= 5 && inst->opcode != SHADER_OPCODE_TXF_LOGICAL &&
4656 inst->opcode != SHADER_OPCODE_TXF_CMS_LOGICAL) ? 4 :
4657 3;
4658
4659 /* On Gen9+ the LOD argument is for free if we're able to use the LZ
4660 * variant of the TXL or TXF message.
4661 */
4662 const bool implicit_lod = devinfo->gen >= 9 &&
4663 (inst->opcode == SHADER_OPCODE_TXL ||
4664 inst->opcode == SHADER_OPCODE_TXF) &&
4665 inst->src[TEX_LOGICAL_SRC_LOD].is_zero();
4666
4667 /* Calculate the total number of argument components that need to be passed
4668 * to the sampler unit.
4669 */
4670 const unsigned num_payload_components =
4671 MAX2(inst->components_read(TEX_LOGICAL_SRC_COORDINATE),
4672 req_coord_components) +
4673 inst->components_read(TEX_LOGICAL_SRC_SHADOW_C) +
4674 (implicit_lod ? 0 : inst->components_read(TEX_LOGICAL_SRC_LOD)) +
4675 inst->components_read(TEX_LOGICAL_SRC_LOD2) +
4676 inst->components_read(TEX_LOGICAL_SRC_SAMPLE_INDEX) +
4677 (inst->opcode == SHADER_OPCODE_TG4_OFFSET_LOGICAL ?
4678 inst->components_read(TEX_LOGICAL_SRC_OFFSET_VALUE) : 0) +
4679 inst->components_read(TEX_LOGICAL_SRC_MCS);
4680
4681 /* SIMD16 messages with more than five arguments exceed the maximum message
4682 * size supported by the sampler, regardless of whether a header is
4683 * provided or not.
4684 */
4685 return MIN2(inst->exec_size,
4686 num_payload_components > MAX_SAMPLER_MESSAGE_SIZE / 2 ? 8 : 16);
4687 }
4688
4689 /**
4690 * Get the closest native SIMD width supported by the hardware for instruction
4691 * \p inst. The instruction will be left untouched by
4692 * fs_visitor::lower_simd_width() if the returned value is equal to the
4693 * original execution size.
4694 */
4695 static unsigned
4696 get_lowered_simd_width(const struct gen_device_info *devinfo,
4697 const fs_inst *inst)
4698 {
4699 switch (inst->opcode) {
4700 case BRW_OPCODE_MOV:
4701 case BRW_OPCODE_SEL:
4702 case BRW_OPCODE_NOT:
4703 case BRW_OPCODE_AND:
4704 case BRW_OPCODE_OR:
4705 case BRW_OPCODE_XOR:
4706 case BRW_OPCODE_SHR:
4707 case BRW_OPCODE_SHL:
4708 case BRW_OPCODE_ASR:
4709 case BRW_OPCODE_CMPN:
4710 case BRW_OPCODE_CSEL:
4711 case BRW_OPCODE_F32TO16:
4712 case BRW_OPCODE_F16TO32:
4713 case BRW_OPCODE_BFREV:
4714 case BRW_OPCODE_BFE:
4715 case BRW_OPCODE_ADD:
4716 case BRW_OPCODE_MUL:
4717 case BRW_OPCODE_AVG:
4718 case BRW_OPCODE_FRC:
4719 case BRW_OPCODE_RNDU:
4720 case BRW_OPCODE_RNDD:
4721 case BRW_OPCODE_RNDE:
4722 case BRW_OPCODE_RNDZ:
4723 case BRW_OPCODE_LZD:
4724 case BRW_OPCODE_FBH:
4725 case BRW_OPCODE_FBL:
4726 case BRW_OPCODE_CBIT:
4727 case BRW_OPCODE_SAD2:
4728 case BRW_OPCODE_MAD:
4729 case BRW_OPCODE_LRP:
4730 case FS_OPCODE_PACK:
4731 return get_fpu_lowered_simd_width(devinfo, inst);
4732
4733 case BRW_OPCODE_CMP: {
4734 /* The Ivybridge/BayTrail WaCMPInstFlagDepClearedEarly workaround says that
4735 * when the destination is a GRF the dependency-clear bit on the flag
4736 * register is cleared early.
4737 *
4738 * Suggested workarounds are to disable coissuing CMP instructions
4739 * or to split CMP(16) instructions into two CMP(8) instructions.
4740 *
4741 * We choose to split into CMP(8) instructions since disabling
4742 * coissuing would affect CMP instructions not otherwise affected by
4743 * the errata.
4744 */
4745 const unsigned max_width = (devinfo->gen == 7 && !devinfo->is_haswell &&
4746 !inst->dst.is_null() ? 8 : ~0);
4747 return MIN2(max_width, get_fpu_lowered_simd_width(devinfo, inst));
4748 }
4749 case BRW_OPCODE_BFI1:
4750 case BRW_OPCODE_BFI2:
4751 /* The Haswell WaForceSIMD8ForBFIInstruction workaround says that we
4752 * should
4753 * "Force BFI instructions to be executed always in SIMD8."
4754 */
4755 return MIN2(devinfo->is_haswell ? 8 : ~0u,
4756 get_fpu_lowered_simd_width(devinfo, inst));
4757
4758 case BRW_OPCODE_IF:
4759 assert(inst->src[0].file == BAD_FILE || inst->exec_size <= 16);
4760 return inst->exec_size;
4761
4762 case SHADER_OPCODE_RCP:
4763 case SHADER_OPCODE_RSQ:
4764 case SHADER_OPCODE_SQRT:
4765 case SHADER_OPCODE_EXP2:
4766 case SHADER_OPCODE_LOG2:
4767 case SHADER_OPCODE_SIN:
4768 case SHADER_OPCODE_COS:
4769 /* Unary extended math instructions are limited to SIMD8 on Gen4 and
4770 * Gen6.
4771 */
4772 return (devinfo->gen >= 7 ? MIN2(16, inst->exec_size) :
4773 devinfo->gen == 5 || devinfo->is_g4x ? MIN2(16, inst->exec_size) :
4774 MIN2(8, inst->exec_size));
4775
4776 case SHADER_OPCODE_POW:
4777 /* SIMD16 is only allowed on Gen7+. */
4778 return (devinfo->gen >= 7 ? MIN2(16, inst->exec_size) :
4779 MIN2(8, inst->exec_size));
4780
4781 case SHADER_OPCODE_INT_QUOTIENT:
4782 case SHADER_OPCODE_INT_REMAINDER:
4783 /* Integer division is limited to SIMD8 on all generations. */
4784 return MIN2(8, inst->exec_size);
4785
4786 case FS_OPCODE_LINTERP:
4787 case FS_OPCODE_GET_BUFFER_SIZE:
4788 case FS_OPCODE_DDX_COARSE:
4789 case FS_OPCODE_DDX_FINE:
4790 case FS_OPCODE_DDY_COARSE:
4791 case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD:
4792 case FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_GEN7:
4793 case FS_OPCODE_PACK_HALF_2x16_SPLIT:
4794 case FS_OPCODE_UNPACK_HALF_2x16_SPLIT_X:
4795 case FS_OPCODE_UNPACK_HALF_2x16_SPLIT_Y:
4796 case FS_OPCODE_INTERPOLATE_AT_SAMPLE:
4797 case FS_OPCODE_INTERPOLATE_AT_SHARED_OFFSET:
4798 case FS_OPCODE_INTERPOLATE_AT_PER_SLOT_OFFSET:
4799 return MIN2(16, inst->exec_size);
4800
4801 case FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_LOGICAL:
4802 /* Pre-ILK hardware doesn't have a SIMD8 variant of the texel fetch
4803 * message used to implement varying pull constant loads, so expand it
4804 * to SIMD16. An alternative with longer message payload length but
4805 * shorter return payload would be to use the SIMD8 sampler message that
4806 * takes (header, u, v, r) as parameters instead of (header, u).
4807 */
4808 return (devinfo->gen == 4 ? 16 : MIN2(16, inst->exec_size));
4809
4810 case FS_OPCODE_DDY_FINE:
4811 /* The implementation of this virtual opcode may require emitting
4812 * compressed Align16 instructions, which are severely limited on some
4813 * generations.
4814 *
4815 * From the Ivy Bridge PRM, volume 4 part 3, section 3.3.9 (Register
4816 * Region Restrictions):
4817 *
4818 * "In Align16 access mode, SIMD16 is not allowed for DW operations
4819 * and SIMD8 is not allowed for DF operations."
4820 *
4821 * In this context, "DW operations" means "operations acting on 32-bit
4822 * values", so it includes operations on floats.
4823 *
4824 * Gen4 has a similar restriction. From the i965 PRM, section 11.5.3
4825 * (Instruction Compression -> Rules and Restrictions):
4826 *
4827 * "A compressed instruction must be in Align1 access mode. Align16
4828 * mode instructions cannot be compressed."
4829 *
4830 * Similar text exists in the g45 PRM.
4831 *
4832 * Empirically, compressed align16 instructions using odd register
4833 * numbers don't appear to work on Sandybridge either.
4834 */
4835 return (devinfo->gen == 4 || devinfo->gen == 6 ||
4836 (devinfo->gen == 7 && !devinfo->is_haswell) ?
4837 MIN2(8, inst->exec_size) : MIN2(16, inst->exec_size));
4838
4839 case SHADER_OPCODE_MULH:
4840 /* MULH is lowered to the MUL/MACH sequence using the accumulator, which
4841 * is 8-wide on Gen7+.
4842 */
4843 return (devinfo->gen >= 7 ? 8 :
4844 get_fpu_lowered_simd_width(devinfo, inst));
4845
4846 case FS_OPCODE_FB_WRITE_LOGICAL:
4847 /* Gen6 doesn't support SIMD16 depth writes but we cannot handle them
4848 * here.
4849 */
4850 assert(devinfo->gen != 6 ||
4851 inst->src[FB_WRITE_LOGICAL_SRC_SRC_DEPTH].file == BAD_FILE ||
4852 inst->exec_size == 8);
4853 /* Dual-source FB writes are unsupported in SIMD16 mode. */
4854 return (inst->src[FB_WRITE_LOGICAL_SRC_COLOR1].file != BAD_FILE ?
4855 8 : MIN2(16, inst->exec_size));
4856
4857 case FS_OPCODE_FB_READ_LOGICAL:
4858 return MIN2(16, inst->exec_size);
4859
4860 case SHADER_OPCODE_TEX_LOGICAL:
4861 case SHADER_OPCODE_TXF_CMS_LOGICAL:
4862 case SHADER_OPCODE_TXF_UMS_LOGICAL:
4863 case SHADER_OPCODE_TXF_MCS_LOGICAL:
4864 case SHADER_OPCODE_LOD_LOGICAL:
4865 case SHADER_OPCODE_TG4_LOGICAL:
4866 case SHADER_OPCODE_SAMPLEINFO_LOGICAL:
4867 case SHADER_OPCODE_TXF_CMS_W_LOGICAL:
4868 case SHADER_OPCODE_TG4_OFFSET_LOGICAL:
4869 return get_sampler_lowered_simd_width(devinfo, inst);
4870
4871 case SHADER_OPCODE_TXD_LOGICAL:
4872 /* TXD is unsupported in SIMD16 mode. */
4873 return 8;
4874
4875 case SHADER_OPCODE_TXL_LOGICAL:
4876 case FS_OPCODE_TXB_LOGICAL:
4877 /* Only one execution size is representable pre-ILK depending on whether
4878 * the shadow reference argument is present.
4879 */
4880 if (devinfo->gen == 4)
4881 return inst->src[TEX_LOGICAL_SRC_SHADOW_C].file == BAD_FILE ? 16 : 8;
4882 else
4883 return get_sampler_lowered_simd_width(devinfo, inst);
4884
4885 case SHADER_OPCODE_TXF_LOGICAL:
4886 case SHADER_OPCODE_TXS_LOGICAL:
4887 /* Gen4 doesn't have SIMD8 variants for the RESINFO and LD-with-LOD
4888 * messages. Use SIMD16 instead.
4889 */
4890 if (devinfo->gen == 4)
4891 return 16;
4892 else
4893 return get_sampler_lowered_simd_width(devinfo, inst);
4894
4895 case SHADER_OPCODE_TYPED_ATOMIC_LOGICAL:
4896 case SHADER_OPCODE_TYPED_SURFACE_READ_LOGICAL:
4897 case SHADER_OPCODE_TYPED_SURFACE_WRITE_LOGICAL:
4898 return 8;
4899
4900 case SHADER_OPCODE_UNTYPED_ATOMIC_LOGICAL:
4901 case SHADER_OPCODE_UNTYPED_SURFACE_READ_LOGICAL:
4902 case SHADER_OPCODE_UNTYPED_SURFACE_WRITE_LOGICAL:
4903 return MIN2(16, inst->exec_size);
4904
4905 case SHADER_OPCODE_URB_READ_SIMD8:
4906 case SHADER_OPCODE_URB_READ_SIMD8_PER_SLOT:
4907 case SHADER_OPCODE_URB_WRITE_SIMD8:
4908 case SHADER_OPCODE_URB_WRITE_SIMD8_PER_SLOT:
4909 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED:
4910 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED_PER_SLOT:
4911 return MIN2(8, inst->exec_size);
4912
4913 case SHADER_OPCODE_MOV_INDIRECT:
4914 /* Prior to Broadwell, we only have 8 address subregisters */
4915 return MIN3(devinfo->gen >= 8 ? 16 : 8,
4916 2 * REG_SIZE / (inst->dst.stride * type_sz(inst->dst.type)),
4917 inst->exec_size);
4918
4919 case SHADER_OPCODE_LOAD_PAYLOAD: {
4920 const unsigned reg_count =
4921 DIV_ROUND_UP(inst->dst.component_size(inst->exec_size), REG_SIZE);
4922
4923 if (reg_count > 2) {
4924 /* Only LOAD_PAYLOAD instructions with per-channel destination region
4925 * can be easily lowered (which excludes headers and heterogeneous
4926 * types).
4927 */
4928 assert(!inst->header_size);
4929 for (unsigned i = 0; i < inst->sources; i++)
4930 assert(type_sz(inst->dst.type) == type_sz(inst->src[i].type) ||
4931 inst->src[i].file == BAD_FILE);
4932
4933 return inst->exec_size / DIV_ROUND_UP(reg_count, 2);
4934 } else {
4935 return inst->exec_size;
4936 }
4937 }
4938 default:
4939 return inst->exec_size;
4940 }
4941 }
4942
4943 /**
4944 * Return true if splitting out the group of channels of instruction \p inst
4945 * given by lbld.group() requires allocating a temporary for the i-th source
4946 * of the lowered instruction.
4947 */
4948 static inline bool
4949 needs_src_copy(const fs_builder &lbld, const fs_inst *inst, unsigned i)
4950 {
4951 return !(is_periodic(inst->src[i], lbld.dispatch_width()) ||
4952 (inst->components_read(i) == 1 &&
4953 lbld.dispatch_width() <= inst->exec_size));
4954 }
4955
4956 /**
4957 * Extract the data that would be consumed by the channel group given by
4958 * lbld.group() from the i-th source region of instruction \p inst and return
4959 * it as result in packed form. If any copy instructions are required they
4960 * will be emitted before the given \p inst in \p block.
4961 */
4962 static fs_reg
4963 emit_unzip(const fs_builder &lbld, bblock_t *block, fs_inst *inst,
4964 unsigned i)
4965 {
4966 /* Specified channel group from the source region. */
4967 const fs_reg src = horiz_offset(inst->src[i], lbld.group());
4968
4969 if (needs_src_copy(lbld, inst, i)) {
4970 /* Builder of the right width to perform the copy avoiding uninitialized
4971 * data if the lowered execution size is greater than the original
4972 * execution size of the instruction.
4973 */
4974 const fs_builder cbld = lbld.group(MIN2(lbld.dispatch_width(),
4975 inst->exec_size), 0);
4976 const fs_reg tmp = lbld.vgrf(inst->src[i].type, inst->components_read(i));
4977
4978 for (unsigned k = 0; k < inst->components_read(i); ++k)
4979 cbld.at(block, inst)
4980 .MOV(offset(tmp, lbld, k), offset(src, inst->exec_size, k));
4981
4982 return tmp;
4983
4984 } else if (is_periodic(inst->src[i], lbld.dispatch_width())) {
4985 /* The source is invariant for all dispatch_width-wide groups of the
4986 * original region.
4987 */
4988 return inst->src[i];
4989
4990 } else {
4991 /* We can just point the lowered instruction at the right channel group
4992 * from the original region.
4993 */
4994 return src;
4995 }
4996 }
4997
4998 /**
4999 * Return true if splitting out the group of channels of instruction \p inst
5000 * given by lbld.group() requires allocating a temporary for the destination
5001 * of the lowered instruction and copying the data back to the original
5002 * destination region.
5003 */
5004 static inline bool
5005 needs_dst_copy(const fs_builder &lbld, const fs_inst *inst)
5006 {
5007 /* If the instruction writes more than one component we'll have to shuffle
5008 * the results of multiple lowered instructions in order to make sure that
5009 * they end up arranged correctly in the original destination region.
5010 */
5011 if (inst->size_written > inst->dst.component_size(inst->exec_size))
5012 return true;
5013
5014 /* If the lowered execution size is larger than the original the result of
5015 * the instruction won't fit in the original destination, so we'll have to
5016 * allocate a temporary in any case.
5017 */
5018 if (lbld.dispatch_width() > inst->exec_size)
5019 return true;
5020
5021 for (unsigned i = 0; i < inst->sources; i++) {
5022 /* If we already made a copy of the source for other reasons there won't
5023 * be any overlap with the destination.
5024 */
5025 if (needs_src_copy(lbld, inst, i))
5026 continue;
5027
5028 /* In order to keep the logic simple we emit a copy whenever the
5029 * destination region doesn't exactly match an overlapping source, which
5030 * may point at the source and destination not being aligned group by
5031 * group which could cause one of the lowered instructions to overwrite
5032 * the data read from the same source by other lowered instructions.
5033 */
5034 if (regions_overlap(inst->dst, inst->size_written,
5035 inst->src[i], inst->size_read(i)) &&
5036 !inst->dst.equals(inst->src[i]))
5037 return true;
5038 }
5039
5040 return false;
5041 }
5042
5043 /**
5044 * Insert data from a packed temporary into the channel group given by
5045 * lbld.group() of the destination region of instruction \p inst and return
5046 * the temporary as result. If any copy instructions are required they will
5047 * be emitted around the given \p inst in \p block.
5048 */
5049 static fs_reg
5050 emit_zip(const fs_builder &lbld, bblock_t *block, fs_inst *inst)
5051 {
5052 /* Builder of the right width to perform the copy avoiding uninitialized
5053 * data if the lowered execution size is greater than the original
5054 * execution size of the instruction.
5055 */
5056 const fs_builder cbld = lbld.group(MIN2(lbld.dispatch_width(),
5057 inst->exec_size), 0);
5058
5059 /* Specified channel group from the destination region. */
5060 const fs_reg dst = horiz_offset(inst->dst, lbld.group());
5061 const unsigned dst_size = inst->size_written /
5062 inst->dst.component_size(inst->exec_size);
5063
5064 if (needs_dst_copy(lbld, inst)) {
5065 const fs_reg tmp = lbld.vgrf(inst->dst.type, dst_size);
5066
5067 if (inst->predicate) {
5068 /* Handle predication by copying the original contents of
5069 * the destination into the temporary before emitting the
5070 * lowered instruction.
5071 */
5072 for (unsigned k = 0; k < dst_size; ++k)
5073 cbld.at(block, inst)
5074 .MOV(offset(tmp, lbld, k), offset(dst, inst->exec_size, k));
5075 }
5076
5077 for (unsigned k = 0; k < dst_size; ++k)
5078 cbld.at(block, inst->next)
5079 .MOV(offset(dst, inst->exec_size, k), offset(tmp, lbld, k));
5080
5081 return tmp;
5082
5083 } else {
5084 /* No need to allocate a temporary for the lowered instruction, just
5085 * take the right group of channels from the original region.
5086 */
5087 return dst;
5088 }
5089 }
5090
5091 bool
5092 fs_visitor::lower_simd_width()
5093 {
5094 bool progress = false;
5095
5096 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
5097 const unsigned lower_width = get_lowered_simd_width(devinfo, inst);
5098
5099 if (lower_width != inst->exec_size) {
5100 /* Builder matching the original instruction. We may also need to
5101 * emit an instruction of width larger than the original, set the
5102 * execution size of the builder to the highest of both for now so
5103 * we're sure that both cases can be handled.
5104 */
5105 const unsigned max_width = MAX2(inst->exec_size, lower_width);
5106 const fs_builder ibld = bld.at(block, inst)
5107 .exec_all(inst->force_writemask_all)
5108 .group(max_width, inst->group / max_width);
5109
5110 /* Split the copies in chunks of the execution width of either the
5111 * original or the lowered instruction, whichever is lower.
5112 */
5113 const unsigned n = DIV_ROUND_UP(inst->exec_size, lower_width);
5114 const unsigned dst_size = inst->size_written /
5115 inst->dst.component_size(inst->exec_size);
5116
5117 assert(!inst->writes_accumulator && !inst->mlen);
5118
5119 for (unsigned i = 0; i < n; i++) {
5120 /* Emit a copy of the original instruction with the lowered width.
5121 * If the EOT flag was set throw it away except for the last
5122 * instruction to avoid killing the thread prematurely.
5123 */
5124 fs_inst split_inst = *inst;
5125 split_inst.exec_size = lower_width;
5126 split_inst.eot = inst->eot && i == n - 1;
5127
5128 /* Select the correct channel enables for the i-th group, then
5129 * transform the sources and destination and emit the lowered
5130 * instruction.
5131 */
5132 const fs_builder lbld = ibld.group(lower_width, i);
5133
5134 for (unsigned j = 0; j < inst->sources; j++)
5135 split_inst.src[j] = emit_unzip(lbld, block, inst, j);
5136
5137 split_inst.dst = emit_zip(lbld, block, inst);
5138 split_inst.size_written =
5139 split_inst.dst.component_size(lower_width) * dst_size;
5140
5141 lbld.emit(split_inst);
5142 }
5143
5144 inst->remove(block);
5145 progress = true;
5146 }
5147 }
5148
5149 if (progress)
5150 invalidate_live_intervals();
5151
5152 return progress;
5153 }
5154
5155 void
5156 fs_visitor::dump_instructions()
5157 {
5158 dump_instructions(NULL);
5159 }
5160
5161 void
5162 fs_visitor::dump_instructions(const char *name)
5163 {
5164 FILE *file = stderr;
5165 if (name && geteuid() != 0) {
5166 file = fopen(name, "w");
5167 if (!file)
5168 file = stderr;
5169 }
5170
5171 if (cfg) {
5172 calculate_register_pressure();
5173 int ip = 0, max_pressure = 0;
5174 foreach_block_and_inst(block, backend_instruction, inst, cfg) {
5175 max_pressure = MAX2(max_pressure, regs_live_at_ip[ip]);
5176 fprintf(file, "{%3d} %4d: ", regs_live_at_ip[ip], ip);
5177 dump_instruction(inst, file);
5178 ip++;
5179 }
5180 fprintf(file, "Maximum %3d registers live at once.\n", max_pressure);
5181 } else {
5182 int ip = 0;
5183 foreach_in_list(backend_instruction, inst, &instructions) {
5184 fprintf(file, "%4d: ", ip++);
5185 dump_instruction(inst, file);
5186 }
5187 }
5188
5189 if (file != stderr) {
5190 fclose(file);
5191 }
5192 }
5193
5194 void
5195 fs_visitor::dump_instruction(backend_instruction *be_inst)
5196 {
5197 dump_instruction(be_inst, stderr);
5198 }
5199
5200 void
5201 fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
5202 {
5203 fs_inst *inst = (fs_inst *)be_inst;
5204
5205 if (inst->predicate) {
5206 fprintf(file, "(%cf0.%d) ",
5207 inst->predicate_inverse ? '-' : '+',
5208 inst->flag_subreg);
5209 }
5210
5211 fprintf(file, "%s", brw_instruction_name(devinfo, inst->opcode));
5212 if (inst->saturate)
5213 fprintf(file, ".sat");
5214 if (inst->conditional_mod) {
5215 fprintf(file, "%s", conditional_modifier[inst->conditional_mod]);
5216 if (!inst->predicate &&
5217 (devinfo->gen < 5 || (inst->opcode != BRW_OPCODE_SEL &&
5218 inst->opcode != BRW_OPCODE_IF &&
5219 inst->opcode != BRW_OPCODE_WHILE))) {
5220 fprintf(file, ".f0.%d", inst->flag_subreg);
5221 }
5222 }
5223 fprintf(file, "(%d) ", inst->exec_size);
5224
5225 if (inst->mlen) {
5226 fprintf(file, "(mlen: %d) ", inst->mlen);
5227 }
5228
5229 if (inst->eot) {
5230 fprintf(file, "(EOT) ");
5231 }
5232
5233 switch (inst->dst.file) {
5234 case VGRF:
5235 fprintf(file, "vgrf%d", inst->dst.nr);
5236 break;
5237 case FIXED_GRF:
5238 fprintf(file, "g%d", inst->dst.nr);
5239 break;
5240 case MRF:
5241 fprintf(file, "m%d", inst->dst.nr);
5242 break;
5243 case BAD_FILE:
5244 fprintf(file, "(null)");
5245 break;
5246 case UNIFORM:
5247 fprintf(file, "***u%d***", inst->dst.nr);
5248 break;
5249 case ATTR:
5250 fprintf(file, "***attr%d***", inst->dst.nr);
5251 break;
5252 case ARF:
5253 switch (inst->dst.nr) {
5254 case BRW_ARF_NULL:
5255 fprintf(file, "null");
5256 break;
5257 case BRW_ARF_ADDRESS:
5258 fprintf(file, "a0.%d", inst->dst.subnr);
5259 break;
5260 case BRW_ARF_ACCUMULATOR:
5261 fprintf(file, "acc%d", inst->dst.subnr);
5262 break;
5263 case BRW_ARF_FLAG:
5264 fprintf(file, "f%d.%d", inst->dst.nr & 0xf, inst->dst.subnr);
5265 break;
5266 default:
5267 fprintf(file, "arf%d.%d", inst->dst.nr & 0xf, inst->dst.subnr);
5268 break;
5269 }
5270 break;
5271 case IMM:
5272 unreachable("not reached");
5273 }
5274
5275 if (inst->dst.offset ||
5276 (inst->dst.file == VGRF &&
5277 alloc.sizes[inst->dst.nr] * REG_SIZE != inst->size_written)) {
5278 const unsigned reg_size = (inst->dst.file == UNIFORM ? 4 : REG_SIZE);
5279 fprintf(file, "+%d.%d", inst->dst.offset / reg_size,
5280 inst->dst.offset % reg_size);
5281 }
5282
5283 if (inst->dst.stride != 1)
5284 fprintf(file, "<%u>", inst->dst.stride);
5285 fprintf(file, ":%s, ", brw_reg_type_letters(inst->dst.type));
5286
5287 for (int i = 0; i < inst->sources; i++) {
5288 if (inst->src[i].negate)
5289 fprintf(file, "-");
5290 if (inst->src[i].abs)
5291 fprintf(file, "|");
5292 switch (inst->src[i].file) {
5293 case VGRF:
5294 fprintf(file, "vgrf%d", inst->src[i].nr);
5295 break;
5296 case FIXED_GRF:
5297 fprintf(file, "g%d", inst->src[i].nr);
5298 break;
5299 case MRF:
5300 fprintf(file, "***m%d***", inst->src[i].nr);
5301 break;
5302 case ATTR:
5303 fprintf(file, "attr%d", inst->src[i].nr);
5304 break;
5305 case UNIFORM:
5306 fprintf(file, "u%d", inst->src[i].nr);
5307 break;
5308 case BAD_FILE:
5309 fprintf(file, "(null)");
5310 break;
5311 case IMM:
5312 switch (inst->src[i].type) {
5313 case BRW_REGISTER_TYPE_F:
5314 fprintf(file, "%-gf", inst->src[i].f);
5315 break;
5316 case BRW_REGISTER_TYPE_DF:
5317 fprintf(file, "%fdf", inst->src[i].df);
5318 break;
5319 case BRW_REGISTER_TYPE_W:
5320 case BRW_REGISTER_TYPE_D:
5321 fprintf(file, "%dd", inst->src[i].d);
5322 break;
5323 case BRW_REGISTER_TYPE_UW:
5324 case BRW_REGISTER_TYPE_UD:
5325 fprintf(file, "%uu", inst->src[i].ud);
5326 break;
5327 case BRW_REGISTER_TYPE_VF:
5328 fprintf(file, "[%-gF, %-gF, %-gF, %-gF]",
5329 brw_vf_to_float((inst->src[i].ud >> 0) & 0xff),
5330 brw_vf_to_float((inst->src[i].ud >> 8) & 0xff),
5331 brw_vf_to_float((inst->src[i].ud >> 16) & 0xff),
5332 brw_vf_to_float((inst->src[i].ud >> 24) & 0xff));
5333 break;
5334 default:
5335 fprintf(file, "???");
5336 break;
5337 }
5338 break;
5339 case ARF:
5340 switch (inst->src[i].nr) {
5341 case BRW_ARF_NULL:
5342 fprintf(file, "null");
5343 break;
5344 case BRW_ARF_ADDRESS:
5345 fprintf(file, "a0.%d", inst->src[i].subnr);
5346 break;
5347 case BRW_ARF_ACCUMULATOR:
5348 fprintf(file, "acc%d", inst->src[i].subnr);
5349 break;
5350 case BRW_ARF_FLAG:
5351 fprintf(file, "f%d.%d", inst->src[i].nr & 0xf, inst->src[i].subnr);
5352 break;
5353 default:
5354 fprintf(file, "arf%d.%d", inst->src[i].nr & 0xf, inst->src[i].subnr);
5355 break;
5356 }
5357 break;
5358 }
5359
5360 if (inst->src[i].offset ||
5361 (inst->src[i].file == VGRF &&
5362 alloc.sizes[inst->src[i].nr] * REG_SIZE != inst->size_read(i))) {
5363 const unsigned reg_size = (inst->src[i].file == UNIFORM ? 4 : REG_SIZE);
5364 fprintf(file, "+%d.%d", inst->src[i].offset / reg_size,
5365 inst->src[i].offset % reg_size);
5366 }
5367
5368 if (inst->src[i].abs)
5369 fprintf(file, "|");
5370
5371 if (inst->src[i].file != IMM) {
5372 unsigned stride;
5373 if (inst->src[i].file == ARF || inst->src[i].file == FIXED_GRF) {
5374 unsigned hstride = inst->src[i].hstride;
5375 stride = (hstride == 0 ? 0 : (1 << (hstride - 1)));
5376 } else {
5377 stride = inst->src[i].stride;
5378 }
5379 if (stride != 1)
5380 fprintf(file, "<%u>", stride);
5381
5382 fprintf(file, ":%s", brw_reg_type_letters(inst->src[i].type));
5383 }
5384
5385 if (i < inst->sources - 1 && inst->src[i + 1].file != BAD_FILE)
5386 fprintf(file, ", ");
5387 }
5388
5389 fprintf(file, " ");
5390
5391 if (inst->force_writemask_all)
5392 fprintf(file, "NoMask ");
5393
5394 if (inst->exec_size != dispatch_width)
5395 fprintf(file, "group%d ", inst->group);
5396
5397 fprintf(file, "\n");
5398 }
5399
5400 /**
5401 * Possibly returns an instruction that set up @param reg.
5402 *
5403 * Sometimes we want to take the result of some expression/variable
5404 * dereference tree and rewrite the instruction generating the result
5405 * of the tree. When processing the tree, we know that the
5406 * instructions generated are all writing temporaries that are dead
5407 * outside of this tree. So, if we have some instructions that write
5408 * a temporary, we're free to point that temp write somewhere else.
5409 *
5410 * Note that this doesn't guarantee that the instruction generated
5411 * only reg -- it might be the size=4 destination of a texture instruction.
5412 */
5413 fs_inst *
5414 fs_visitor::get_instruction_generating_reg(fs_inst *start,
5415 fs_inst *end,
5416 const fs_reg &reg)
5417 {
5418 if (end == start ||
5419 end->is_partial_write() ||
5420 !reg.equals(end->dst)) {
5421 return NULL;
5422 } else {
5423 return end;
5424 }
5425 }
5426
5427 void
5428 fs_visitor::setup_fs_payload_gen6()
5429 {
5430 assert(stage == MESA_SHADER_FRAGMENT);
5431 brw_wm_prog_data *prog_data = (brw_wm_prog_data*) this->prog_data;
5432
5433 unsigned barycentric_interp_modes =
5434 (stage == MESA_SHADER_FRAGMENT) ?
5435 ((brw_wm_prog_data*) this->prog_data)->barycentric_interp_modes : 0;
5436
5437 assert(devinfo->gen >= 6);
5438
5439 /* R0-1: masks, pixel X/Y coordinates. */
5440 payload.num_regs = 2;
5441 /* R2: only for 32-pixel dispatch.*/
5442
5443 /* R3-26: barycentric interpolation coordinates. These appear in the
5444 * same order that they appear in the brw_barycentric_mode
5445 * enum. Each set of coordinates occupies 2 registers if dispatch width
5446 * == 8 and 4 registers if dispatch width == 16. Coordinates only
5447 * appear if they were enabled using the "Barycentric Interpolation
5448 * Mode" bits in WM_STATE.
5449 */
5450 for (int i = 0; i < BRW_BARYCENTRIC_MODE_COUNT; ++i) {
5451 if (barycentric_interp_modes & (1 << i)) {
5452 payload.barycentric_coord_reg[i] = payload.num_regs;
5453 payload.num_regs += 2;
5454 if (dispatch_width == 16) {
5455 payload.num_regs += 2;
5456 }
5457 }
5458 }
5459
5460 /* R27: interpolated depth if uses source depth */
5461 prog_data->uses_src_depth =
5462 (nir->info.inputs_read & (1 << VARYING_SLOT_POS)) != 0;
5463 if (prog_data->uses_src_depth) {
5464 payload.source_depth_reg = payload.num_regs;
5465 payload.num_regs++;
5466 if (dispatch_width == 16) {
5467 /* R28: interpolated depth if not SIMD8. */
5468 payload.num_regs++;
5469 }
5470 }
5471
5472 /* R29: interpolated W set if GEN6_WM_USES_SOURCE_W. */
5473 prog_data->uses_src_w =
5474 (nir->info.inputs_read & (1 << VARYING_SLOT_POS)) != 0;
5475 if (prog_data->uses_src_w) {
5476 payload.source_w_reg = payload.num_regs;
5477 payload.num_regs++;
5478 if (dispatch_width == 16) {
5479 /* R30: interpolated W if not SIMD8. */
5480 payload.num_regs++;
5481 }
5482 }
5483
5484 /* R31: MSAA position offsets. */
5485 if (prog_data->persample_dispatch &&
5486 (nir->info.system_values_read & SYSTEM_BIT_SAMPLE_POS)) {
5487 /* From the Ivy Bridge PRM documentation for 3DSTATE_PS:
5488 *
5489 * "MSDISPMODE_PERSAMPLE is required in order to select
5490 * POSOFFSET_SAMPLE"
5491 *
5492 * So we can only really get sample positions if we are doing real
5493 * per-sample dispatch. If we need gl_SamplePosition and we don't have
5494 * persample dispatch, we hard-code it to 0.5.
5495 */
5496 prog_data->uses_pos_offset = true;
5497 payload.sample_pos_reg = payload.num_regs;
5498 payload.num_regs++;
5499 }
5500
5501 /* R32: MSAA input coverage mask */
5502 prog_data->uses_sample_mask =
5503 (nir->info.system_values_read & SYSTEM_BIT_SAMPLE_MASK_IN) != 0;
5504 if (prog_data->uses_sample_mask) {
5505 assert(devinfo->gen >= 7);
5506 payload.sample_mask_in_reg = payload.num_regs;
5507 payload.num_regs++;
5508 if (dispatch_width == 16) {
5509 /* R33: input coverage mask if not SIMD8. */
5510 payload.num_regs++;
5511 }
5512 }
5513
5514 /* R34-: bary for 32-pixel. */
5515 /* R58-59: interp W for 32-pixel. */
5516
5517 if (nir->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_DEPTH)) {
5518 source_depth_to_render_target = true;
5519 }
5520 }
5521
5522 void
5523 fs_visitor::setup_vs_payload()
5524 {
5525 /* R0: thread header, R1: urb handles */
5526 payload.num_regs = 2;
5527 }
5528
5529 void
5530 fs_visitor::setup_gs_payload()
5531 {
5532 assert(stage == MESA_SHADER_GEOMETRY);
5533
5534 struct brw_gs_prog_data *gs_prog_data =
5535 (struct brw_gs_prog_data *) prog_data;
5536 struct brw_vue_prog_data *vue_prog_data =
5537 (struct brw_vue_prog_data *) prog_data;
5538
5539 /* R0: thread header, R1: output URB handles */
5540 payload.num_regs = 2;
5541
5542 if (gs_prog_data->include_primitive_id) {
5543 /* R2: Primitive ID 0..7 */
5544 payload.num_regs++;
5545 }
5546
5547 /* Use a maximum of 24 registers for push-model inputs. */
5548 const unsigned max_push_components = 24;
5549
5550 /* If pushing our inputs would take too many registers, reduce the URB read
5551 * length (which is in HWords, or 8 registers), and resort to pulling.
5552 *
5553 * Note that the GS reads <URB Read Length> HWords for every vertex - so we
5554 * have to multiply by VerticesIn to obtain the total storage requirement.
5555 */
5556 if (8 * vue_prog_data->urb_read_length * nir->info.gs.vertices_in >
5557 max_push_components || gs_prog_data->invocations > 1) {
5558 gs_prog_data->base.include_vue_handles = true;
5559
5560 /* R3..RN: ICP Handles for each incoming vertex (when using pull model) */
5561 payload.num_regs += nir->info.gs.vertices_in;
5562
5563 vue_prog_data->urb_read_length =
5564 ROUND_DOWN_TO(max_push_components / nir->info.gs.vertices_in, 8) / 8;
5565 }
5566 }
5567
5568 void
5569 fs_visitor::setup_cs_payload()
5570 {
5571 assert(devinfo->gen >= 7);
5572 payload.num_regs = 1;
5573 }
5574
5575 void
5576 fs_visitor::calculate_register_pressure()
5577 {
5578 invalidate_live_intervals();
5579 calculate_live_intervals();
5580
5581 unsigned num_instructions = 0;
5582 foreach_block(block, cfg)
5583 num_instructions += block->instructions.length();
5584
5585 regs_live_at_ip = rzalloc_array(mem_ctx, int, num_instructions);
5586
5587 for (unsigned reg = 0; reg < alloc.count; reg++) {
5588 for (int ip = virtual_grf_start[reg]; ip <= virtual_grf_end[reg]; ip++)
5589 regs_live_at_ip[ip] += alloc.sizes[reg];
5590 }
5591 }
5592
5593 /**
5594 * Look for repeated FS_OPCODE_MOV_DISPATCH_TO_FLAGS and drop the later ones.
5595 *
5596 * The needs_unlit_centroid_workaround ends up producing one of these per
5597 * channel of centroid input, so it's good to clean them up.
5598 *
5599 * An assumption here is that nothing ever modifies the dispatched pixels
5600 * value that FS_OPCODE_MOV_DISPATCH_TO_FLAGS reads from, but the hardware
5601 * dictates that anyway.
5602 */
5603 bool
5604 fs_visitor::opt_drop_redundant_mov_to_flags()
5605 {
5606 bool flag_mov_found[2] = {false};
5607 bool progress = false;
5608
5609 /* Instructions removed by this pass can only be added if this were true */
5610 if (!devinfo->needs_unlit_centroid_workaround)
5611 return false;
5612
5613 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
5614 if (inst->is_control_flow()) {
5615 memset(flag_mov_found, 0, sizeof(flag_mov_found));
5616 } else if (inst->opcode == FS_OPCODE_MOV_DISPATCH_TO_FLAGS) {
5617 if (!flag_mov_found[inst->flag_subreg]) {
5618 flag_mov_found[inst->flag_subreg] = true;
5619 } else {
5620 inst->remove(block);
5621 progress = true;
5622 }
5623 } else if (inst->flags_written()) {
5624 flag_mov_found[inst->flag_subreg] = false;
5625 }
5626 }
5627
5628 return progress;
5629 }
5630
5631 void
5632 fs_visitor::optimize()
5633 {
5634 /* Start by validating the shader we currently have. */
5635 validate();
5636
5637 /* bld is the common builder object pointing at the end of the program we
5638 * used to translate it into i965 IR. For the optimization and lowering
5639 * passes coming next, any code added after the end of the program without
5640 * having explicitly called fs_builder::at() clearly points at a mistake.
5641 * Ideally optimization passes wouldn't be part of the visitor so they
5642 * wouldn't have access to bld at all, but they do, so just in case some
5643 * pass forgets to ask for a location explicitly set it to NULL here to
5644 * make it trip. The dispatch width is initialized to a bogus value to
5645 * make sure that optimizations set the execution controls explicitly to
5646 * match the code they are manipulating instead of relying on the defaults.
5647 */
5648 bld = fs_builder(this, 64);
5649
5650 assign_constant_locations();
5651 lower_constant_loads();
5652
5653 validate();
5654
5655 split_virtual_grfs();
5656 validate();
5657
5658 #define OPT(pass, args...) ({ \
5659 pass_num++; \
5660 bool this_progress = pass(args); \
5661 \
5662 if (unlikely(INTEL_DEBUG & DEBUG_OPTIMIZER) && this_progress) { \
5663 char filename[64]; \
5664 snprintf(filename, 64, "%s%d-%s-%02d-%02d-" #pass, \
5665 stage_abbrev, dispatch_width, nir->info.name, iteration, pass_num); \
5666 \
5667 backend_shader::dump_instructions(filename); \
5668 } \
5669 \
5670 validate(); \
5671 \
5672 progress = progress || this_progress; \
5673 this_progress; \
5674 })
5675
5676 if (unlikely(INTEL_DEBUG & DEBUG_OPTIMIZER)) {
5677 char filename[64];
5678 snprintf(filename, 64, "%s%d-%s-00-00-start",
5679 stage_abbrev, dispatch_width, nir->info.name);
5680
5681 backend_shader::dump_instructions(filename);
5682 }
5683
5684 bool progress = false;
5685 int iteration = 0;
5686 int pass_num = 0;
5687
5688 OPT(opt_drop_redundant_mov_to_flags);
5689
5690 do {
5691 progress = false;
5692 pass_num = 0;
5693 iteration++;
5694
5695 OPT(remove_duplicate_mrf_writes);
5696
5697 OPT(opt_algebraic);
5698 OPT(opt_cse);
5699 OPT(opt_copy_propagate);
5700 OPT(opt_predicated_break, this);
5701 OPT(opt_cmod_propagation);
5702 OPT(dead_code_eliminate);
5703 OPT(opt_peephole_sel);
5704 OPT(dead_control_flow_eliminate, this);
5705 OPT(opt_register_renaming);
5706 OPT(opt_saturate_propagation);
5707 OPT(register_coalesce);
5708 OPT(compute_to_mrf);
5709 OPT(eliminate_find_live_channel);
5710
5711 OPT(compact_virtual_grfs);
5712 } while (progress);
5713
5714 progress = false;
5715 pass_num = 0;
5716
5717 if (OPT(lower_pack)) {
5718 OPT(register_coalesce);
5719 OPT(dead_code_eliminate);
5720 }
5721
5722 if (OPT(lower_d2x)) {
5723 OPT(opt_copy_propagate);
5724 OPT(dead_code_eliminate);
5725 }
5726
5727 OPT(lower_simd_width);
5728
5729 /* After SIMD lowering just in case we had to unroll the EOT send. */
5730 OPT(opt_sampler_eot);
5731
5732 OPT(lower_logical_sends);
5733
5734 if (progress) {
5735 OPT(opt_copy_propagate);
5736 /* Only run after logical send lowering because it's easier to implement
5737 * in terms of physical sends.
5738 */
5739 if (OPT(opt_zero_samples))
5740 OPT(opt_copy_propagate);
5741 /* Run after logical send lowering to give it a chance to CSE the
5742 * LOAD_PAYLOAD instructions created to construct the payloads of
5743 * e.g. texturing messages in cases where it wasn't possible to CSE the
5744 * whole logical instruction.
5745 */
5746 OPT(opt_cse);
5747 OPT(register_coalesce);
5748 OPT(compute_to_mrf);
5749 OPT(dead_code_eliminate);
5750 OPT(remove_duplicate_mrf_writes);
5751 OPT(opt_peephole_sel);
5752 }
5753
5754 OPT(opt_redundant_discard_jumps);
5755
5756 if (OPT(lower_load_payload)) {
5757 split_virtual_grfs();
5758 OPT(register_coalesce);
5759 OPT(compute_to_mrf);
5760 OPT(dead_code_eliminate);
5761 }
5762
5763 OPT(opt_combine_constants);
5764 OPT(lower_integer_multiplication);
5765
5766 if (devinfo->gen <= 5 && OPT(lower_minmax)) {
5767 OPT(opt_cmod_propagation);
5768 OPT(opt_cse);
5769 OPT(opt_copy_propagate);
5770 OPT(dead_code_eliminate);
5771 }
5772
5773 lower_uniform_pull_constant_loads();
5774
5775 validate();
5776 }
5777
5778 /**
5779 * Three source instruction must have a GRF/MRF destination register.
5780 * ARF NULL is not allowed. Fix that up by allocating a temporary GRF.
5781 */
5782 void
5783 fs_visitor::fixup_3src_null_dest()
5784 {
5785 bool progress = false;
5786
5787 foreach_block_and_inst_safe (block, fs_inst, inst, cfg) {
5788 if (inst->is_3src(devinfo) && inst->dst.is_null()) {
5789 inst->dst = fs_reg(VGRF, alloc.allocate(dispatch_width / 8),
5790 inst->dst.type);
5791 progress = true;
5792 }
5793 }
5794
5795 if (progress)
5796 invalidate_live_intervals();
5797 }
5798
5799 void
5800 fs_visitor::allocate_registers(bool allow_spilling)
5801 {
5802 bool allocated_without_spills;
5803
5804 static const enum instruction_scheduler_mode pre_modes[] = {
5805 SCHEDULE_PRE,
5806 SCHEDULE_PRE_NON_LIFO,
5807 SCHEDULE_PRE_LIFO,
5808 };
5809
5810 bool spill_all = allow_spilling && (INTEL_DEBUG & DEBUG_SPILL_FS);
5811
5812 /* Try each scheduling heuristic to see if it can successfully register
5813 * allocate without spilling. They should be ordered by decreasing
5814 * performance but increasing likelihood of allocating.
5815 */
5816 for (unsigned i = 0; i < ARRAY_SIZE(pre_modes); i++) {
5817 schedule_instructions(pre_modes[i]);
5818
5819 if (0) {
5820 assign_regs_trivial();
5821 allocated_without_spills = true;
5822 } else {
5823 allocated_without_spills = assign_regs(false, spill_all);
5824 }
5825 if (allocated_without_spills)
5826 break;
5827 }
5828
5829 if (!allocated_without_spills) {
5830 if (!allow_spilling)
5831 fail("Failure to register allocate and spilling is not allowed.");
5832
5833 /* We assume that any spilling is worse than just dropping back to
5834 * SIMD8. There's probably actually some intermediate point where
5835 * SIMD16 with a couple of spills is still better.
5836 */
5837 if (dispatch_width > min_dispatch_width) {
5838 fail("Failure to register allocate. Reduce number of "
5839 "live scalar values to avoid this.");
5840 } else {
5841 compiler->shader_perf_log(log_data,
5842 "%s shader triggered register spilling. "
5843 "Try reducing the number of live scalar "
5844 "values to improve performance.\n",
5845 stage_name);
5846 }
5847
5848 /* Since we're out of heuristics, just go spill registers until we
5849 * get an allocation.
5850 */
5851 while (!assign_regs(true, spill_all)) {
5852 if (failed)
5853 break;
5854 }
5855 }
5856
5857 /* This must come after all optimization and register allocation, since
5858 * it inserts dead code that happens to have side effects, and it does
5859 * so based on the actual physical registers in use.
5860 */
5861 insert_gen4_send_dependency_workarounds();
5862
5863 if (failed)
5864 return;
5865
5866 schedule_instructions(SCHEDULE_POST);
5867
5868 if (last_scratch > 0) {
5869 unsigned max_scratch_size = 2 * 1024 * 1024;
5870
5871 prog_data->total_scratch = brw_get_scratch_size(last_scratch);
5872
5873 if (stage == MESA_SHADER_COMPUTE) {
5874 if (devinfo->is_haswell) {
5875 /* According to the MEDIA_VFE_STATE's "Per Thread Scratch Space"
5876 * field documentation, Haswell supports a minimum of 2kB of
5877 * scratch space for compute shaders, unlike every other stage
5878 * and platform.
5879 */
5880 prog_data->total_scratch = MAX2(prog_data->total_scratch, 2048);
5881 } else if (devinfo->gen <= 7) {
5882 /* According to the MEDIA_VFE_STATE's "Per Thread Scratch Space"
5883 * field documentation, platforms prior to Haswell measure scratch
5884 * size linearly with a range of [1kB, 12kB] and 1kB granularity.
5885 */
5886 prog_data->total_scratch = ALIGN(last_scratch, 1024);
5887 max_scratch_size = 12 * 1024;
5888 }
5889 }
5890
5891 /* We currently only support up to 2MB of scratch space. If we
5892 * need to support more eventually, the documentation suggests
5893 * that we could allocate a larger buffer, and partition it out
5894 * ourselves. We'd just have to undo the hardware's address
5895 * calculation by subtracting (FFTID * Per Thread Scratch Space)
5896 * and then add FFTID * (Larger Per Thread Scratch Space).
5897 *
5898 * See 3D-Media-GPGPU Engine > Media GPGPU Pipeline >
5899 * Thread Group Tracking > Local Memory/Scratch Space.
5900 */
5901 assert(prog_data->total_scratch < max_scratch_size);
5902 }
5903 }
5904
5905 bool
5906 fs_visitor::run_vs(gl_clip_plane *clip_planes)
5907 {
5908 assert(stage == MESA_SHADER_VERTEX);
5909
5910 setup_vs_payload();
5911
5912 if (shader_time_index >= 0)
5913 emit_shader_time_begin();
5914
5915 emit_nir_code();
5916
5917 if (failed)
5918 return false;
5919
5920 compute_clip_distance(clip_planes);
5921
5922 emit_urb_writes();
5923
5924 if (shader_time_index >= 0)
5925 emit_shader_time_end();
5926
5927 calculate_cfg();
5928
5929 optimize();
5930
5931 assign_curb_setup();
5932 assign_vs_urb_setup();
5933
5934 fixup_3src_null_dest();
5935 allocate_registers(true);
5936
5937 return !failed;
5938 }
5939
5940 bool
5941 fs_visitor::run_tcs_single_patch()
5942 {
5943 assert(stage == MESA_SHADER_TESS_CTRL);
5944
5945 struct brw_tcs_prog_data *tcs_prog_data =
5946 (struct brw_tcs_prog_data *) prog_data;
5947
5948 /* r1-r4 contain the ICP handles. */
5949 payload.num_regs = 5;
5950
5951 if (shader_time_index >= 0)
5952 emit_shader_time_begin();
5953
5954 /* Initialize gl_InvocationID */
5955 fs_reg channels_uw = bld.vgrf(BRW_REGISTER_TYPE_UW);
5956 fs_reg channels_ud = bld.vgrf(BRW_REGISTER_TYPE_UD);
5957 bld.MOV(channels_uw, fs_reg(brw_imm_uv(0x76543210)));
5958 bld.MOV(channels_ud, channels_uw);
5959
5960 if (tcs_prog_data->instances == 1) {
5961 invocation_id = channels_ud;
5962 } else {
5963 invocation_id = bld.vgrf(BRW_REGISTER_TYPE_UD);
5964
5965 /* Get instance number from g0.2 bits 23:17, and multiply it by 8. */
5966 fs_reg t = bld.vgrf(BRW_REGISTER_TYPE_UD);
5967 fs_reg instance_times_8 = bld.vgrf(BRW_REGISTER_TYPE_UD);
5968 bld.AND(t, fs_reg(retype(brw_vec1_grf(0, 2), BRW_REGISTER_TYPE_UD)),
5969 brw_imm_ud(INTEL_MASK(23, 17)));
5970 bld.SHR(instance_times_8, t, brw_imm_ud(17 - 3));
5971
5972 bld.ADD(invocation_id, instance_times_8, channels_ud);
5973 }
5974
5975 /* Fix the disptach mask */
5976 if (nir->info.tcs.vertices_out % 8) {
5977 bld.CMP(bld.null_reg_ud(), invocation_id,
5978 brw_imm_ud(nir->info.tcs.vertices_out), BRW_CONDITIONAL_L);
5979 bld.IF(BRW_PREDICATE_NORMAL);
5980 }
5981
5982 emit_nir_code();
5983
5984 if (nir->info.tcs.vertices_out % 8) {
5985 bld.emit(BRW_OPCODE_ENDIF);
5986 }
5987
5988 /* Emit EOT write; set TR DS Cache bit */
5989 fs_reg srcs[3] = {
5990 fs_reg(retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_UD)),
5991 fs_reg(brw_imm_ud(WRITEMASK_X << 16)),
5992 fs_reg(brw_imm_ud(0)),
5993 };
5994 fs_reg payload = bld.vgrf(BRW_REGISTER_TYPE_UD, 3);
5995 bld.LOAD_PAYLOAD(payload, srcs, 3, 2);
5996
5997 fs_inst *inst = bld.emit(SHADER_OPCODE_URB_WRITE_SIMD8_MASKED,
5998 bld.null_reg_ud(), payload);
5999 inst->mlen = 3;
6000 inst->eot = true;
6001
6002 if (shader_time_index >= 0)
6003 emit_shader_time_end();
6004
6005 if (failed)
6006 return false;
6007
6008 calculate_cfg();
6009
6010 optimize();
6011
6012 assign_curb_setup();
6013 assign_tcs_single_patch_urb_setup();
6014
6015 fixup_3src_null_dest();
6016 allocate_registers(true);
6017
6018 return !failed;
6019 }
6020
6021 bool
6022 fs_visitor::run_tes()
6023 {
6024 assert(stage == MESA_SHADER_TESS_EVAL);
6025
6026 /* R0: thread header, R1-3: gl_TessCoord.xyz, R4: URB handles */
6027 payload.num_regs = 5;
6028
6029 if (shader_time_index >= 0)
6030 emit_shader_time_begin();
6031
6032 emit_nir_code();
6033
6034 if (failed)
6035 return false;
6036
6037 emit_urb_writes();
6038
6039 if (shader_time_index >= 0)
6040 emit_shader_time_end();
6041
6042 calculate_cfg();
6043
6044 optimize();
6045
6046 assign_curb_setup();
6047 assign_tes_urb_setup();
6048
6049 fixup_3src_null_dest();
6050 allocate_registers(true);
6051
6052 return !failed;
6053 }
6054
6055 bool
6056 fs_visitor::run_gs()
6057 {
6058 assert(stage == MESA_SHADER_GEOMETRY);
6059
6060 setup_gs_payload();
6061
6062 this->final_gs_vertex_count = vgrf(glsl_type::uint_type);
6063
6064 if (gs_compile->control_data_header_size_bits > 0) {
6065 /* Create a VGRF to store accumulated control data bits. */
6066 this->control_data_bits = vgrf(glsl_type::uint_type);
6067
6068 /* If we're outputting more than 32 control data bits, then EmitVertex()
6069 * will set control_data_bits to 0 after emitting the first vertex.
6070 * Otherwise, we need to initialize it to 0 here.
6071 */
6072 if (gs_compile->control_data_header_size_bits <= 32) {
6073 const fs_builder abld = bld.annotate("initialize control data bits");
6074 abld.MOV(this->control_data_bits, brw_imm_ud(0u));
6075 }
6076 }
6077
6078 if (shader_time_index >= 0)
6079 emit_shader_time_begin();
6080
6081 emit_nir_code();
6082
6083 emit_gs_thread_end();
6084
6085 if (shader_time_index >= 0)
6086 emit_shader_time_end();
6087
6088 if (failed)
6089 return false;
6090
6091 calculate_cfg();
6092
6093 optimize();
6094
6095 assign_curb_setup();
6096 assign_gs_urb_setup();
6097
6098 fixup_3src_null_dest();
6099 allocate_registers(true);
6100
6101 return !failed;
6102 }
6103
6104 bool
6105 fs_visitor::run_fs(bool allow_spilling, bool do_rep_send)
6106 {
6107 brw_wm_prog_data *wm_prog_data = (brw_wm_prog_data *) this->prog_data;
6108 brw_wm_prog_key *wm_key = (brw_wm_prog_key *) this->key;
6109
6110 assert(stage == MESA_SHADER_FRAGMENT);
6111
6112 if (devinfo->gen >= 6)
6113 setup_fs_payload_gen6();
6114 else
6115 setup_fs_payload_gen4();
6116
6117 if (0) {
6118 emit_dummy_fs();
6119 } else if (do_rep_send) {
6120 assert(dispatch_width == 16);
6121 emit_repclear_shader();
6122 } else {
6123 if (shader_time_index >= 0)
6124 emit_shader_time_begin();
6125
6126 calculate_urb_setup();
6127 if (nir->info.inputs_read > 0 ||
6128 (nir->info.outputs_read > 0 && !wm_key->coherent_fb_fetch)) {
6129 if (devinfo->gen < 6)
6130 emit_interpolation_setup_gen4();
6131 else
6132 emit_interpolation_setup_gen6();
6133 }
6134
6135 /* We handle discards by keeping track of the still-live pixels in f0.1.
6136 * Initialize it with the dispatched pixels.
6137 */
6138 if (wm_prog_data->uses_kill) {
6139 fs_inst *discard_init = bld.emit(FS_OPCODE_MOV_DISPATCH_TO_FLAGS);
6140 discard_init->flag_subreg = 1;
6141 }
6142
6143 /* Generate FS IR for main(). (the visitor only descends into
6144 * functions called "main").
6145 */
6146 emit_nir_code();
6147
6148 if (failed)
6149 return false;
6150
6151 if (wm_prog_data->uses_kill)
6152 bld.emit(FS_OPCODE_PLACEHOLDER_HALT);
6153
6154 if (wm_key->alpha_test_func)
6155 emit_alpha_test();
6156
6157 emit_fb_writes();
6158
6159 if (shader_time_index >= 0)
6160 emit_shader_time_end();
6161
6162 calculate_cfg();
6163
6164 optimize();
6165
6166 assign_curb_setup();
6167 assign_urb_setup();
6168
6169 fixup_3src_null_dest();
6170 allocate_registers(allow_spilling);
6171
6172 if (failed)
6173 return false;
6174 }
6175
6176 return !failed;
6177 }
6178
6179 bool
6180 fs_visitor::run_cs()
6181 {
6182 assert(stage == MESA_SHADER_COMPUTE);
6183
6184 setup_cs_payload();
6185
6186 if (shader_time_index >= 0)
6187 emit_shader_time_begin();
6188
6189 if (devinfo->is_haswell && prog_data->total_shared > 0) {
6190 /* Move SLM index from g0.0[27:24] to sr0.1[11:8] */
6191 const fs_builder abld = bld.exec_all().group(1, 0);
6192 abld.MOV(retype(suboffset(brw_sr0_reg(), 1), BRW_REGISTER_TYPE_UW),
6193 suboffset(retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_UW), 1));
6194 }
6195
6196 emit_nir_code();
6197
6198 if (failed)
6199 return false;
6200
6201 emit_cs_terminate();
6202
6203 if (shader_time_index >= 0)
6204 emit_shader_time_end();
6205
6206 calculate_cfg();
6207
6208 optimize();
6209
6210 assign_curb_setup();
6211
6212 fixup_3src_null_dest();
6213 allocate_registers(true);
6214
6215 if (failed)
6216 return false;
6217
6218 return !failed;
6219 }
6220
6221 /**
6222 * Return a bitfield where bit n is set if barycentric interpolation mode n
6223 * (see enum brw_barycentric_mode) is needed by the fragment shader.
6224 *
6225 * We examine the load_barycentric intrinsics rather than looking at input
6226 * variables so that we catch interpolateAtCentroid() messages too, which
6227 * also need the BRW_BARYCENTRIC_[NON]PERSPECTIVE_CENTROID mode set up.
6228 */
6229 static unsigned
6230 brw_compute_barycentric_interp_modes(const struct gen_device_info *devinfo,
6231 const nir_shader *shader)
6232 {
6233 unsigned barycentric_interp_modes = 0;
6234
6235 nir_foreach_function(f, shader) {
6236 if (!f->impl)
6237 continue;
6238
6239 nir_foreach_block(block, f->impl) {
6240 nir_foreach_instr(instr, block) {
6241 if (instr->type != nir_instr_type_intrinsic)
6242 continue;
6243
6244 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
6245 if (intrin->intrinsic != nir_intrinsic_load_interpolated_input)
6246 continue;
6247
6248 /* Ignore WPOS; it doesn't require interpolation. */
6249 if (nir_intrinsic_base(intrin) == VARYING_SLOT_POS)
6250 continue;
6251
6252 intrin = nir_instr_as_intrinsic(intrin->src[0].ssa->parent_instr);
6253 enum glsl_interp_mode interp = (enum glsl_interp_mode)
6254 nir_intrinsic_interp_mode(intrin);
6255 nir_intrinsic_op bary_op = intrin->intrinsic;
6256 enum brw_barycentric_mode bary =
6257 brw_barycentric_mode(interp, bary_op);
6258
6259 barycentric_interp_modes |= 1 << bary;
6260
6261 if (devinfo->needs_unlit_centroid_workaround &&
6262 bary_op == nir_intrinsic_load_barycentric_centroid)
6263 barycentric_interp_modes |= 1 << centroid_to_pixel(bary);
6264 }
6265 }
6266 }
6267
6268 return barycentric_interp_modes;
6269 }
6270
6271 static void
6272 brw_compute_flat_inputs(struct brw_wm_prog_data *prog_data,
6273 const nir_shader *shader)
6274 {
6275 prog_data->flat_inputs = 0;
6276
6277 nir_foreach_variable(var, &shader->inputs) {
6278 int input_index = prog_data->urb_setup[var->data.location];
6279
6280 if (input_index < 0)
6281 continue;
6282
6283 /* flat shading */
6284 if (var->data.interpolation == INTERP_MODE_FLAT)
6285 prog_data->flat_inputs |= (1 << input_index);
6286 }
6287 }
6288
6289 static uint8_t
6290 computed_depth_mode(const nir_shader *shader)
6291 {
6292 if (shader->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_DEPTH)) {
6293 switch (shader->info.fs.depth_layout) {
6294 case FRAG_DEPTH_LAYOUT_NONE:
6295 case FRAG_DEPTH_LAYOUT_ANY:
6296 return BRW_PSCDEPTH_ON;
6297 case FRAG_DEPTH_LAYOUT_GREATER:
6298 return BRW_PSCDEPTH_ON_GE;
6299 case FRAG_DEPTH_LAYOUT_LESS:
6300 return BRW_PSCDEPTH_ON_LE;
6301 case FRAG_DEPTH_LAYOUT_UNCHANGED:
6302 return BRW_PSCDEPTH_OFF;
6303 }
6304 }
6305 return BRW_PSCDEPTH_OFF;
6306 }
6307
6308 /**
6309 * Move load_interpolated_input with simple (payload-based) barycentric modes
6310 * to the top of the program so we don't emit multiple PLNs for the same input.
6311 *
6312 * This works around CSE not being able to handle non-dominating cases
6313 * such as:
6314 *
6315 * if (...) {
6316 * interpolate input
6317 * } else {
6318 * interpolate the same exact input
6319 * }
6320 *
6321 * This should be replaced by global value numbering someday.
6322 */
6323 void
6324 move_interpolation_to_top(nir_shader *nir)
6325 {
6326 nir_foreach_function(f, nir) {
6327 if (!f->impl)
6328 continue;
6329
6330 nir_block *top = nir_start_block(f->impl);
6331 exec_node *cursor_node = NULL;
6332
6333 nir_foreach_block(block, f->impl) {
6334 if (block == top)
6335 continue;
6336
6337 nir_foreach_instr_safe(instr, block) {
6338 if (instr->type != nir_instr_type_intrinsic)
6339 continue;
6340
6341 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
6342 if (intrin->intrinsic != nir_intrinsic_load_interpolated_input)
6343 continue;
6344 nir_intrinsic_instr *bary_intrinsic =
6345 nir_instr_as_intrinsic(intrin->src[0].ssa->parent_instr);
6346 nir_intrinsic_op op = bary_intrinsic->intrinsic;
6347
6348 /* Leave interpolateAtSample/Offset() where they are. */
6349 if (op == nir_intrinsic_load_barycentric_at_sample ||
6350 op == nir_intrinsic_load_barycentric_at_offset)
6351 continue;
6352
6353 nir_instr *move[3] = {
6354 &bary_intrinsic->instr,
6355 intrin->src[1].ssa->parent_instr,
6356 instr
6357 };
6358
6359 for (unsigned i = 0; i < ARRAY_SIZE(move); i++) {
6360 if (move[i]->block != top) {
6361 move[i]->block = top;
6362 exec_node_remove(&move[i]->node);
6363 if (cursor_node) {
6364 exec_node_insert_after(cursor_node, &move[i]->node);
6365 } else {
6366 exec_list_push_head(&top->instr_list, &move[i]->node);
6367 }
6368 cursor_node = &move[i]->node;
6369 }
6370 }
6371 }
6372 }
6373 nir_metadata_preserve(f->impl, (nir_metadata)
6374 ((unsigned) nir_metadata_block_index |
6375 (unsigned) nir_metadata_dominance));
6376 }
6377 }
6378
6379 /**
6380 * Apply default interpolation settings to FS inputs which don't specify any.
6381 */
6382 static void
6383 brw_nir_set_default_interpolation(const struct gen_device_info *devinfo,
6384 struct nir_shader *nir,
6385 bool api_flat_shade,
6386 bool per_sample_interpolation)
6387 {
6388 assert(nir->stage == MESA_SHADER_FRAGMENT);
6389
6390 nir_foreach_variable(var, &nir->inputs) {
6391 /* Apply default interpolation mode.
6392 *
6393 * Everything defaults to smooth except for the legacy GL color
6394 * built-in variables, which might be flat depending on API state.
6395 */
6396 if (var->data.interpolation == INTERP_MODE_NONE) {
6397 const bool flat = api_flat_shade &&
6398 (var->data.location == VARYING_SLOT_COL0 ||
6399 var->data.location == VARYING_SLOT_COL1);
6400
6401 var->data.interpolation = flat ? INTERP_MODE_FLAT
6402 : INTERP_MODE_SMOOTH;
6403 }
6404
6405 /* Apply 'sample' if necessary for API state. */
6406 if (per_sample_interpolation &&
6407 var->data.interpolation != INTERP_MODE_FLAT) {
6408 var->data.centroid = false;
6409 var->data.sample = true;
6410 }
6411
6412 /* On Ironlake and below, there is only one interpolation mode.
6413 * Centroid interpolation doesn't mean anything on this hardware --
6414 * there is no multisampling.
6415 */
6416 if (devinfo->gen < 6) {
6417 var->data.centroid = false;
6418 var->data.sample = false;
6419 }
6420 }
6421 }
6422
6423 /**
6424 * Demote per-sample barycentric intrinsics to centroid.
6425 *
6426 * Useful when rendering to a non-multisampled buffer.
6427 */
6428 static void
6429 demote_sample_qualifiers(nir_shader *nir)
6430 {
6431 nir_foreach_function(f, nir) {
6432 if (!f->impl)
6433 continue;
6434
6435 nir_builder b;
6436 nir_builder_init(&b, f->impl);
6437
6438 nir_foreach_block(block, f->impl) {
6439 nir_foreach_instr_safe(instr, block) {
6440 if (instr->type != nir_instr_type_intrinsic)
6441 continue;
6442
6443 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
6444 if (intrin->intrinsic != nir_intrinsic_load_barycentric_sample &&
6445 intrin->intrinsic != nir_intrinsic_load_barycentric_at_sample)
6446 continue;
6447
6448 b.cursor = nir_before_instr(instr);
6449 nir_ssa_def *centroid =
6450 nir_load_barycentric(&b, nir_intrinsic_load_barycentric_centroid,
6451 nir_intrinsic_interp_mode(intrin));
6452 nir_ssa_def_rewrite_uses(&intrin->dest.ssa,
6453 nir_src_for_ssa(centroid));
6454 nir_instr_remove(instr);
6455 }
6456 }
6457
6458 nir_metadata_preserve(f->impl, (nir_metadata)
6459 ((unsigned) nir_metadata_block_index |
6460 (unsigned) nir_metadata_dominance));
6461 }
6462 }
6463
6464 const unsigned *
6465 brw_compile_fs(const struct brw_compiler *compiler, void *log_data,
6466 void *mem_ctx,
6467 const struct brw_wm_prog_key *key,
6468 struct brw_wm_prog_data *prog_data,
6469 const nir_shader *src_shader,
6470 struct gl_program *prog,
6471 int shader_time_index8, int shader_time_index16,
6472 bool allow_spilling,
6473 bool use_rep_send,
6474 unsigned *final_assembly_size,
6475 char **error_str)
6476 {
6477 nir_shader *shader = nir_shader_clone(mem_ctx, src_shader);
6478 shader = brw_nir_apply_sampler_key(shader, compiler->devinfo, &key->tex,
6479 true);
6480 brw_nir_set_default_interpolation(compiler->devinfo, shader,
6481 key->flat_shade, key->persample_interp);
6482 brw_nir_lower_fs_inputs(shader);
6483 brw_nir_lower_fs_outputs(shader);
6484 if (!key->multisample_fbo)
6485 NIR_PASS_V(shader, demote_sample_qualifiers);
6486 NIR_PASS_V(shader, move_interpolation_to_top);
6487 shader = brw_postprocess_nir(shader, compiler->devinfo, true);
6488
6489 /* key->alpha_test_func means simulating alpha testing via discards,
6490 * so the shader definitely kills pixels.
6491 */
6492 prog_data->uses_kill = shader->info.fs.uses_discard || key->alpha_test_func;
6493 prog_data->uses_omask = key->multisample_fbo &&
6494 shader->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_SAMPLE_MASK);
6495 prog_data->computed_depth_mode = computed_depth_mode(shader);
6496 prog_data->computed_stencil =
6497 shader->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_STENCIL);
6498
6499 prog_data->persample_dispatch =
6500 key->multisample_fbo &&
6501 (key->persample_interp ||
6502 (shader->info.system_values_read & (SYSTEM_BIT_SAMPLE_ID |
6503 SYSTEM_BIT_SAMPLE_POS)) ||
6504 shader->info.fs.uses_sample_qualifier ||
6505 shader->info.outputs_read);
6506
6507 prog_data->early_fragment_tests = shader->info.fs.early_fragment_tests;
6508
6509 prog_data->barycentric_interp_modes =
6510 brw_compute_barycentric_interp_modes(compiler->devinfo, shader);
6511
6512 cfg_t *simd8_cfg = NULL, *simd16_cfg = NULL;
6513 uint8_t simd8_grf_start = 0, simd16_grf_start = 0;
6514 unsigned simd8_grf_used = 0, simd16_grf_used = 0;
6515
6516 fs_visitor v8(compiler, log_data, mem_ctx, key,
6517 &prog_data->base, prog, shader, 8,
6518 shader_time_index8);
6519 if (!v8.run_fs(allow_spilling, false /* do_rep_send */)) {
6520 if (error_str)
6521 *error_str = ralloc_strdup(mem_ctx, v8.fail_msg);
6522
6523 return NULL;
6524 } else if (likely(!(INTEL_DEBUG & DEBUG_NO8))) {
6525 simd8_cfg = v8.cfg;
6526 simd8_grf_start = v8.payload.num_regs;
6527 simd8_grf_used = v8.grf_used;
6528 }
6529
6530 if (v8.max_dispatch_width >= 16 &&
6531 likely(!(INTEL_DEBUG & DEBUG_NO16) || use_rep_send)) {
6532 /* Try a SIMD16 compile */
6533 fs_visitor v16(compiler, log_data, mem_ctx, key,
6534 &prog_data->base, prog, shader, 16,
6535 shader_time_index16);
6536 v16.import_uniforms(&v8);
6537 if (!v16.run_fs(allow_spilling, use_rep_send)) {
6538 compiler->shader_perf_log(log_data,
6539 "SIMD16 shader failed to compile: %s",
6540 v16.fail_msg);
6541 } else {
6542 simd16_cfg = v16.cfg;
6543 simd16_grf_start = v16.payload.num_regs;
6544 simd16_grf_used = v16.grf_used;
6545 }
6546 }
6547
6548 /* When the caller requests a repclear shader, they want SIMD16-only */
6549 if (use_rep_send)
6550 simd8_cfg = NULL;
6551
6552 /* Prior to Iron Lake, the PS had a single shader offset with a jump table
6553 * at the top to select the shader. We've never implemented that.
6554 * Instead, we just give them exactly one shader and we pick the widest one
6555 * available.
6556 */
6557 if (compiler->devinfo->gen < 5 && simd16_cfg)
6558 simd8_cfg = NULL;
6559
6560 if (prog_data->persample_dispatch) {
6561 /* Starting with SandyBridge (where we first get MSAA), the different
6562 * pixel dispatch combinations are grouped into classifications A
6563 * through F (SNB PRM Vol. 2 Part 1 Section 7.7.1). On all hardware
6564 * generations, the only configurations supporting persample dispatch
6565 * are are this in which only one dispatch width is enabled.
6566 *
6567 * If computed depth is enabled, SNB only allows SIMD8 while IVB+
6568 * allow SIMD8 or SIMD16 so we choose SIMD16 if available.
6569 */
6570 if (compiler->devinfo->gen == 6 &&
6571 prog_data->computed_depth_mode != BRW_PSCDEPTH_OFF) {
6572 simd16_cfg = NULL;
6573 } else if (simd16_cfg) {
6574 simd8_cfg = NULL;
6575 }
6576 }
6577
6578 /* We have to compute the flat inputs after the visitor is finished running
6579 * because it relies on prog_data->urb_setup which is computed in
6580 * fs_visitor::calculate_urb_setup().
6581 */
6582 brw_compute_flat_inputs(prog_data, shader);
6583
6584 fs_generator g(compiler, log_data, mem_ctx, (void *) key, &prog_data->base,
6585 v8.promoted_constants, v8.runtime_check_aads_emit,
6586 MESA_SHADER_FRAGMENT);
6587
6588 if (unlikely(INTEL_DEBUG & DEBUG_WM)) {
6589 g.enable_debug(ralloc_asprintf(mem_ctx, "%s fragment shader %s",
6590 shader->info.label ? shader->info.label :
6591 "unnamed",
6592 shader->info.name));
6593 }
6594
6595 if (simd8_cfg) {
6596 prog_data->dispatch_8 = true;
6597 g.generate_code(simd8_cfg, 8);
6598 prog_data->base.dispatch_grf_start_reg = simd8_grf_start;
6599 prog_data->reg_blocks_0 = brw_register_blocks(simd8_grf_used);
6600
6601 if (simd16_cfg) {
6602 prog_data->dispatch_16 = true;
6603 prog_data->prog_offset_2 = g.generate_code(simd16_cfg, 16);
6604 prog_data->dispatch_grf_start_reg_2 = simd16_grf_start;
6605 prog_data->reg_blocks_2 = brw_register_blocks(simd16_grf_used);
6606 }
6607 } else if (simd16_cfg) {
6608 prog_data->dispatch_16 = true;
6609 g.generate_code(simd16_cfg, 16);
6610 prog_data->base.dispatch_grf_start_reg = simd16_grf_start;
6611 prog_data->reg_blocks_0 = brw_register_blocks(simd16_grf_used);
6612 }
6613
6614 return g.get_assembly(final_assembly_size);
6615 }
6616
6617 fs_reg *
6618 fs_visitor::emit_cs_work_group_id_setup()
6619 {
6620 assert(stage == MESA_SHADER_COMPUTE);
6621
6622 fs_reg *reg = new(this->mem_ctx) fs_reg(vgrf(glsl_type::uvec3_type));
6623
6624 struct brw_reg r0_1(retype(brw_vec1_grf(0, 1), BRW_REGISTER_TYPE_UD));
6625 struct brw_reg r0_6(retype(brw_vec1_grf(0, 6), BRW_REGISTER_TYPE_UD));
6626 struct brw_reg r0_7(retype(brw_vec1_grf(0, 7), BRW_REGISTER_TYPE_UD));
6627
6628 bld.MOV(*reg, r0_1);
6629 bld.MOV(offset(*reg, bld, 1), r0_6);
6630 bld.MOV(offset(*reg, bld, 2), r0_7);
6631
6632 return reg;
6633 }
6634
6635 static void
6636 fill_push_const_block_info(struct brw_push_const_block *block, unsigned dwords)
6637 {
6638 block->dwords = dwords;
6639 block->regs = DIV_ROUND_UP(dwords, 8);
6640 block->size = block->regs * 32;
6641 }
6642
6643 static void
6644 cs_fill_push_const_info(const struct gen_device_info *devinfo,
6645 struct brw_cs_prog_data *cs_prog_data)
6646 {
6647 const struct brw_stage_prog_data *prog_data =
6648 (struct brw_stage_prog_data*) cs_prog_data;
6649 bool fill_thread_id =
6650 cs_prog_data->thread_local_id_index >= 0 &&
6651 cs_prog_data->thread_local_id_index < (int)prog_data->nr_params;
6652 bool cross_thread_supported = devinfo->gen > 7 || devinfo->is_haswell;
6653
6654 /* The thread ID should be stored in the last param dword */
6655 assert(prog_data->nr_params > 0 || !fill_thread_id);
6656 assert(!fill_thread_id ||
6657 cs_prog_data->thread_local_id_index ==
6658 (int)prog_data->nr_params - 1);
6659
6660 unsigned cross_thread_dwords, per_thread_dwords;
6661 if (!cross_thread_supported) {
6662 cross_thread_dwords = 0u;
6663 per_thread_dwords = prog_data->nr_params;
6664 } else if (fill_thread_id) {
6665 /* Fill all but the last register with cross-thread payload */
6666 cross_thread_dwords = 8 * (cs_prog_data->thread_local_id_index / 8);
6667 per_thread_dwords = prog_data->nr_params - cross_thread_dwords;
6668 assert(per_thread_dwords > 0 && per_thread_dwords <= 8);
6669 } else {
6670 /* Fill all data using cross-thread payload */
6671 cross_thread_dwords = prog_data->nr_params;
6672 per_thread_dwords = 0u;
6673 }
6674
6675 fill_push_const_block_info(&cs_prog_data->push.cross_thread, cross_thread_dwords);
6676 fill_push_const_block_info(&cs_prog_data->push.per_thread, per_thread_dwords);
6677
6678 unsigned total_dwords =
6679 (cs_prog_data->push.per_thread.size * cs_prog_data->threads +
6680 cs_prog_data->push.cross_thread.size) / 4;
6681 fill_push_const_block_info(&cs_prog_data->push.total, total_dwords);
6682
6683 assert(cs_prog_data->push.cross_thread.dwords % 8 == 0 ||
6684 cs_prog_data->push.per_thread.size == 0);
6685 assert(cs_prog_data->push.cross_thread.dwords +
6686 cs_prog_data->push.per_thread.dwords ==
6687 prog_data->nr_params);
6688 }
6689
6690 static void
6691 cs_set_simd_size(struct brw_cs_prog_data *cs_prog_data, unsigned size)
6692 {
6693 cs_prog_data->simd_size = size;
6694 unsigned group_size = cs_prog_data->local_size[0] *
6695 cs_prog_data->local_size[1] * cs_prog_data->local_size[2];
6696 cs_prog_data->threads = (group_size + size - 1) / size;
6697 }
6698
6699 const unsigned *
6700 brw_compile_cs(const struct brw_compiler *compiler, void *log_data,
6701 void *mem_ctx,
6702 const struct brw_cs_prog_key *key,
6703 struct brw_cs_prog_data *prog_data,
6704 const nir_shader *src_shader,
6705 int shader_time_index,
6706 unsigned *final_assembly_size,
6707 char **error_str)
6708 {
6709 nir_shader *shader = nir_shader_clone(mem_ctx, src_shader);
6710 shader = brw_nir_apply_sampler_key(shader, compiler->devinfo, &key->tex,
6711 true);
6712 brw_nir_lower_cs_shared(shader);
6713 prog_data->base.total_shared += shader->num_shared;
6714
6715 /* Now that we cloned the nir_shader, we can update num_uniforms based on
6716 * the thread_local_id_index.
6717 */
6718 assert(prog_data->thread_local_id_index >= 0);
6719 shader->num_uniforms =
6720 MAX2(shader->num_uniforms,
6721 (unsigned)4 * (prog_data->thread_local_id_index + 1));
6722
6723 brw_nir_lower_intrinsics(shader, &prog_data->base);
6724 shader = brw_postprocess_nir(shader, compiler->devinfo, true);
6725
6726 prog_data->local_size[0] = shader->info.cs.local_size[0];
6727 prog_data->local_size[1] = shader->info.cs.local_size[1];
6728 prog_data->local_size[2] = shader->info.cs.local_size[2];
6729 unsigned local_workgroup_size =
6730 shader->info.cs.local_size[0] * shader->info.cs.local_size[1] *
6731 shader->info.cs.local_size[2];
6732
6733 unsigned max_cs_threads = compiler->devinfo->max_cs_threads;
6734 unsigned simd_required = DIV_ROUND_UP(local_workgroup_size, max_cs_threads);
6735
6736 cfg_t *cfg = NULL;
6737 const char *fail_msg = NULL;
6738
6739 /* Now the main event: Visit the shader IR and generate our CS IR for it.
6740 */
6741 fs_visitor v8(compiler, log_data, mem_ctx, key, &prog_data->base,
6742 NULL, /* Never used in core profile */
6743 shader, 8, shader_time_index);
6744 if (simd_required <= 8) {
6745 if (!v8.run_cs()) {
6746 fail_msg = v8.fail_msg;
6747 } else {
6748 cfg = v8.cfg;
6749 cs_set_simd_size(prog_data, 8);
6750 cs_fill_push_const_info(compiler->devinfo, prog_data);
6751 prog_data->base.dispatch_grf_start_reg = v8.payload.num_regs;
6752 }
6753 }
6754
6755 fs_visitor v16(compiler, log_data, mem_ctx, key, &prog_data->base,
6756 NULL, /* Never used in core profile */
6757 shader, 16, shader_time_index);
6758 if (likely(!(INTEL_DEBUG & DEBUG_NO16)) &&
6759 !fail_msg && v8.max_dispatch_width >= 16 &&
6760 simd_required <= 16) {
6761 /* Try a SIMD16 compile */
6762 if (simd_required <= 8)
6763 v16.import_uniforms(&v8);
6764 if (!v16.run_cs()) {
6765 compiler->shader_perf_log(log_data,
6766 "SIMD16 shader failed to compile: %s",
6767 v16.fail_msg);
6768 if (!cfg) {
6769 fail_msg =
6770 "Couldn't generate SIMD16 program and not "
6771 "enough threads for SIMD8";
6772 }
6773 } else {
6774 cfg = v16.cfg;
6775 cs_set_simd_size(prog_data, 16);
6776 cs_fill_push_const_info(compiler->devinfo, prog_data);
6777 prog_data->dispatch_grf_start_reg_16 = v16.payload.num_regs;
6778 }
6779 }
6780
6781 fs_visitor v32(compiler, log_data, mem_ctx, key, &prog_data->base,
6782 NULL, /* Never used in core profile */
6783 shader, 32, shader_time_index);
6784 if (!fail_msg && v8.max_dispatch_width >= 32 &&
6785 (simd_required > 16 || (INTEL_DEBUG & DEBUG_DO32))) {
6786 /* Try a SIMD32 compile */
6787 if (simd_required <= 8)
6788 v32.import_uniforms(&v8);
6789 else if (simd_required <= 16)
6790 v32.import_uniforms(&v16);
6791
6792 if (!v32.run_cs()) {
6793 compiler->shader_perf_log(log_data,
6794 "SIMD32 shader failed to compile: %s",
6795 v16.fail_msg);
6796 if (!cfg) {
6797 fail_msg =
6798 "Couldn't generate SIMD32 program and not "
6799 "enough threads for SIMD16";
6800 }
6801 } else {
6802 cfg = v32.cfg;
6803 cs_set_simd_size(prog_data, 32);
6804 cs_fill_push_const_info(compiler->devinfo, prog_data);
6805 }
6806 }
6807
6808 if (unlikely(cfg == NULL)) {
6809 assert(fail_msg);
6810 if (error_str)
6811 *error_str = ralloc_strdup(mem_ctx, fail_msg);
6812
6813 return NULL;
6814 }
6815
6816 fs_generator g(compiler, log_data, mem_ctx, (void*) key, &prog_data->base,
6817 v8.promoted_constants, v8.runtime_check_aads_emit,
6818 MESA_SHADER_COMPUTE);
6819 if (INTEL_DEBUG & DEBUG_CS) {
6820 char *name = ralloc_asprintf(mem_ctx, "%s compute shader %s",
6821 shader->info.label ? shader->info.label :
6822 "unnamed",
6823 shader->info.name);
6824 g.enable_debug(name);
6825 }
6826
6827 g.generate_code(cfg, prog_data->simd_size);
6828
6829 return g.get_assembly(final_assembly_size);
6830 }