0d3d6137058f66dc4fb5e4a23e154f9a07dd40f0
[mesa.git] / src / intel / compiler / 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_eu.h"
33 #include "brw_fs.h"
34 #include "brw_nir.h"
35 #include "brw_vec4_gs_visitor.h"
36 #include "brw_cfg.h"
37 #include "brw_dead_control_flow.h"
38 #include "dev/gen_debug.h"
39 #include "compiler/glsl_types.h"
40 #include "compiler/nir/nir_builder.h"
41 #include "program/prog_parameter.h"
42 #include "util/u_math.h"
43
44 using namespace brw;
45
46 static unsigned get_lowered_simd_width(const struct gen_device_info *devinfo,
47 const fs_inst *inst);
48
49 void
50 fs_inst::init(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
51 const fs_reg *src, unsigned sources)
52 {
53 memset((void*)this, 0, sizeof(*this));
54
55 this->src = new fs_reg[MAX2(sources, 3)];
56 for (unsigned i = 0; i < sources; i++)
57 this->src[i] = src[i];
58
59 this->opcode = opcode;
60 this->dst = dst;
61 this->sources = sources;
62 this->exec_size = exec_size;
63 this->base_mrf = -1;
64
65 assert(dst.file != IMM && dst.file != UNIFORM);
66
67 assert(this->exec_size != 0);
68
69 this->conditional_mod = BRW_CONDITIONAL_NONE;
70
71 /* This will be the case for almost all instructions. */
72 switch (dst.file) {
73 case VGRF:
74 case ARF:
75 case FIXED_GRF:
76 case MRF:
77 case ATTR:
78 this->size_written = dst.component_size(exec_size);
79 break;
80 case BAD_FILE:
81 this->size_written = 0;
82 break;
83 case IMM:
84 case UNIFORM:
85 unreachable("Invalid destination register file");
86 }
87
88 this->writes_accumulator = false;
89 }
90
91 fs_inst::fs_inst()
92 {
93 init(BRW_OPCODE_NOP, 8, dst, NULL, 0);
94 }
95
96 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_size)
97 {
98 init(opcode, exec_size, reg_undef, NULL, 0);
99 }
100
101 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst)
102 {
103 init(opcode, exec_size, dst, NULL, 0);
104 }
105
106 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
107 const fs_reg &src0)
108 {
109 const fs_reg src[1] = { src0 };
110 init(opcode, exec_size, dst, src, 1);
111 }
112
113 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
114 const fs_reg &src0, const fs_reg &src1)
115 {
116 const fs_reg src[2] = { src0, src1 };
117 init(opcode, exec_size, dst, src, 2);
118 }
119
120 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
121 const fs_reg &src0, const fs_reg &src1, const fs_reg &src2)
122 {
123 const fs_reg src[3] = { src0, src1, src2 };
124 init(opcode, exec_size, dst, src, 3);
125 }
126
127 fs_inst::fs_inst(enum opcode opcode, uint8_t exec_width, const fs_reg &dst,
128 const fs_reg src[], unsigned sources)
129 {
130 init(opcode, exec_width, dst, src, sources);
131 }
132
133 fs_inst::fs_inst(const fs_inst &that)
134 {
135 memcpy((void*)this, &that, sizeof(that));
136
137 this->src = new fs_reg[MAX2(that.sources, 3)];
138
139 for (unsigned i = 0; i < that.sources; i++)
140 this->src[i] = that.src[i];
141 }
142
143 fs_inst::~fs_inst()
144 {
145 delete[] this->src;
146 }
147
148 void
149 fs_inst::resize_sources(uint8_t num_sources)
150 {
151 if (this->sources != num_sources) {
152 fs_reg *src = new fs_reg[MAX2(num_sources, 3)];
153
154 for (unsigned i = 0; i < MIN2(this->sources, num_sources); ++i)
155 src[i] = this->src[i];
156
157 delete[] this->src;
158 this->src = src;
159 this->sources = num_sources;
160 }
161 }
162
163 void
164 fs_visitor::VARYING_PULL_CONSTANT_LOAD(const fs_builder &bld,
165 const fs_reg &dst,
166 const fs_reg &surf_index,
167 const fs_reg &varying_offset,
168 uint32_t const_offset)
169 {
170 /* We have our constant surface use a pitch of 4 bytes, so our index can
171 * be any component of a vector, and then we load 4 contiguous
172 * components starting from that.
173 *
174 * We break down the const_offset to a portion added to the variable offset
175 * and a portion done using fs_reg::offset, which means that if you have
176 * GLSL using something like "uniform vec4 a[20]; gl_FragColor = a[i]",
177 * we'll temporarily generate 4 vec4 loads from offset i * 4, and CSE can
178 * later notice that those loads are all the same and eliminate the
179 * redundant ones.
180 */
181 fs_reg vec4_offset = vgrf(glsl_type::uint_type);
182 bld.ADD(vec4_offset, varying_offset, brw_imm_ud(const_offset & ~0xf));
183
184 /* The pull load message will load a vec4 (16 bytes). If we are loading
185 * a double this means we are only loading 2 elements worth of data.
186 * We also want to use a 32-bit data type for the dst of the load operation
187 * so other parts of the driver don't get confused about the size of the
188 * result.
189 */
190 fs_reg vec4_result = bld.vgrf(BRW_REGISTER_TYPE_F, 4);
191 fs_inst *inst = bld.emit(FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_LOGICAL,
192 vec4_result, surf_index, vec4_offset);
193 inst->size_written = 4 * vec4_result.component_size(inst->exec_size);
194
195 shuffle_from_32bit_read(bld, dst, vec4_result,
196 (const_offset & 0xf) / type_sz(dst.type), 1);
197 }
198
199 /**
200 * A helper for MOV generation for fixing up broken hardware SEND dependency
201 * handling.
202 */
203 void
204 fs_visitor::DEP_RESOLVE_MOV(const fs_builder &bld, int grf)
205 {
206 /* The caller always wants uncompressed to emit the minimal extra
207 * dependencies, and to avoid having to deal with aligning its regs to 2.
208 */
209 const fs_builder ubld = bld.annotate("send dependency resolve")
210 .half(0);
211
212 ubld.MOV(ubld.null_reg_f(), fs_reg(VGRF, grf, BRW_REGISTER_TYPE_F));
213 }
214
215 bool
216 fs_inst::is_send_from_grf() const
217 {
218 switch (opcode) {
219 case SHADER_OPCODE_SEND:
220 case SHADER_OPCODE_SHADER_TIME_ADD:
221 case FS_OPCODE_INTERPOLATE_AT_SAMPLE:
222 case FS_OPCODE_INTERPOLATE_AT_SHARED_OFFSET:
223 case FS_OPCODE_INTERPOLATE_AT_PER_SLOT_OFFSET:
224 case SHADER_OPCODE_URB_WRITE_SIMD8:
225 case SHADER_OPCODE_URB_WRITE_SIMD8_PER_SLOT:
226 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED:
227 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED_PER_SLOT:
228 case SHADER_OPCODE_URB_READ_SIMD8:
229 case SHADER_OPCODE_URB_READ_SIMD8_PER_SLOT:
230 case SHADER_OPCODE_INTERLOCK:
231 case SHADER_OPCODE_MEMORY_FENCE:
232 case SHADER_OPCODE_BARRIER:
233 return true;
234 case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD:
235 return src[1].file == VGRF;
236 case FS_OPCODE_FB_WRITE:
237 case FS_OPCODE_FB_READ:
238 return src[0].file == VGRF;
239 default:
240 if (is_tex())
241 return src[0].file == VGRF;
242
243 return false;
244 }
245 }
246
247 bool
248 fs_inst::is_control_source(unsigned arg) const
249 {
250 switch (opcode) {
251 case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD:
252 case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD_GEN7:
253 case FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_GEN4:
254 return arg == 0;
255
256 case SHADER_OPCODE_BROADCAST:
257 case SHADER_OPCODE_SHUFFLE:
258 case SHADER_OPCODE_QUAD_SWIZZLE:
259 case FS_OPCODE_INTERPOLATE_AT_SAMPLE:
260 case FS_OPCODE_INTERPOLATE_AT_SHARED_OFFSET:
261 case FS_OPCODE_INTERPOLATE_AT_PER_SLOT_OFFSET:
262 case SHADER_OPCODE_GET_BUFFER_SIZE:
263 return arg == 1;
264
265 case SHADER_OPCODE_MOV_INDIRECT:
266 case SHADER_OPCODE_CLUSTER_BROADCAST:
267 case SHADER_OPCODE_TEX:
268 case FS_OPCODE_TXB:
269 case SHADER_OPCODE_TXD:
270 case SHADER_OPCODE_TXF:
271 case SHADER_OPCODE_TXF_LZ:
272 case SHADER_OPCODE_TXF_CMS:
273 case SHADER_OPCODE_TXF_CMS_W:
274 case SHADER_OPCODE_TXF_UMS:
275 case SHADER_OPCODE_TXF_MCS:
276 case SHADER_OPCODE_TXL:
277 case SHADER_OPCODE_TXL_LZ:
278 case SHADER_OPCODE_TXS:
279 case SHADER_OPCODE_LOD:
280 case SHADER_OPCODE_TG4:
281 case SHADER_OPCODE_TG4_OFFSET:
282 case SHADER_OPCODE_SAMPLEINFO:
283 return arg == 1 || arg == 2;
284
285 case SHADER_OPCODE_SEND:
286 return arg == 0 || arg == 1;
287
288 default:
289 return false;
290 }
291 }
292
293 bool
294 fs_inst::is_payload(unsigned arg) const
295 {
296 switch (opcode) {
297 case FS_OPCODE_FB_WRITE:
298 case FS_OPCODE_FB_READ:
299 case SHADER_OPCODE_URB_WRITE_SIMD8:
300 case SHADER_OPCODE_URB_WRITE_SIMD8_PER_SLOT:
301 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED:
302 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED_PER_SLOT:
303 case SHADER_OPCODE_URB_READ_SIMD8:
304 case SHADER_OPCODE_URB_READ_SIMD8_PER_SLOT:
305 case VEC4_OPCODE_UNTYPED_ATOMIC:
306 case VEC4_OPCODE_UNTYPED_SURFACE_READ:
307 case VEC4_OPCODE_UNTYPED_SURFACE_WRITE:
308 case FS_OPCODE_INTERPOLATE_AT_PER_SLOT_OFFSET:
309 case SHADER_OPCODE_SHADER_TIME_ADD:
310 case FS_OPCODE_INTERPOLATE_AT_SAMPLE:
311 case FS_OPCODE_INTERPOLATE_AT_SHARED_OFFSET:
312 case SHADER_OPCODE_INTERLOCK:
313 case SHADER_OPCODE_MEMORY_FENCE:
314 case SHADER_OPCODE_BARRIER:
315 return arg == 0;
316
317 case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD_GEN7:
318 return arg == 1;
319
320 case SHADER_OPCODE_SEND:
321 return arg == 2 || arg == 3;
322
323 default:
324 if (is_tex())
325 return arg == 0;
326 else
327 return false;
328 }
329 }
330
331 /**
332 * Returns true if this instruction's sources and destinations cannot
333 * safely be the same register.
334 *
335 * In most cases, a register can be written over safely by the same
336 * instruction that is its last use. For a single instruction, the
337 * sources are dereferenced before writing of the destination starts
338 * (naturally).
339 *
340 * However, there are a few cases where this can be problematic:
341 *
342 * - Virtual opcodes that translate to multiple instructions in the
343 * code generator: if src == dst and one instruction writes the
344 * destination before a later instruction reads the source, then
345 * src will have been clobbered.
346 *
347 * - SIMD16 compressed instructions with certain regioning (see below).
348 *
349 * The register allocator uses this information to set up conflicts between
350 * GRF sources and the destination.
351 */
352 bool
353 fs_inst::has_source_and_destination_hazard() const
354 {
355 switch (opcode) {
356 case FS_OPCODE_PACK_HALF_2x16_SPLIT:
357 /* Multiple partial writes to the destination */
358 return true;
359 case SHADER_OPCODE_SHUFFLE:
360 /* This instruction returns an arbitrary channel from the source and
361 * gets split into smaller instructions in the generator. It's possible
362 * that one of the instructions will read from a channel corresponding
363 * to an earlier instruction.
364 */
365 case SHADER_OPCODE_SEL_EXEC:
366 /* This is implemented as
367 *
368 * mov(16) g4<1>D 0D { align1 WE_all 1H };
369 * mov(16) g4<1>D g5<8,8,1>D { align1 1H }
370 *
371 * Because the source is only read in the second instruction, the first
372 * may stomp all over it.
373 */
374 return true;
375 case SHADER_OPCODE_QUAD_SWIZZLE:
376 switch (src[1].ud) {
377 case BRW_SWIZZLE_XXXX:
378 case BRW_SWIZZLE_YYYY:
379 case BRW_SWIZZLE_ZZZZ:
380 case BRW_SWIZZLE_WWWW:
381 case BRW_SWIZZLE_XXZZ:
382 case BRW_SWIZZLE_YYWW:
383 case BRW_SWIZZLE_XYXY:
384 case BRW_SWIZZLE_ZWZW:
385 /* These can be implemented as a single Align1 region on all
386 * platforms, so there's never a hazard between source and
387 * destination. C.f. fs_generator::generate_quad_swizzle().
388 */
389 return false;
390 default:
391 return !is_uniform(src[0]);
392 }
393 default:
394 /* The SIMD16 compressed instruction
395 *
396 * add(16) g4<1>F g4<8,8,1>F g6<8,8,1>F
397 *
398 * is actually decoded in hardware as:
399 *
400 * add(8) g4<1>F g4<8,8,1>F g6<8,8,1>F
401 * add(8) g5<1>F g5<8,8,1>F g7<8,8,1>F
402 *
403 * Which is safe. However, if we have uniform accesses
404 * happening, we get into trouble:
405 *
406 * add(8) g4<1>F g4<0,1,0>F g6<8,8,1>F
407 * add(8) g5<1>F g4<0,1,0>F g7<8,8,1>F
408 *
409 * Now our destination for the first instruction overwrote the
410 * second instruction's src0, and we get garbage for those 8
411 * pixels. There's a similar issue for the pre-gen6
412 * pixel_x/pixel_y, which are registers of 16-bit values and thus
413 * would get stomped by the first decode as well.
414 */
415 if (exec_size == 16) {
416 for (int i = 0; i < sources; i++) {
417 if (src[i].file == VGRF && (src[i].stride == 0 ||
418 src[i].type == BRW_REGISTER_TYPE_UW ||
419 src[i].type == BRW_REGISTER_TYPE_W ||
420 src[i].type == BRW_REGISTER_TYPE_UB ||
421 src[i].type == BRW_REGISTER_TYPE_B)) {
422 return true;
423 }
424 }
425 }
426 return false;
427 }
428 }
429
430 bool
431 fs_inst::is_copy_payload(const brw::simple_allocator &grf_alloc) const
432 {
433 if (this->opcode != SHADER_OPCODE_LOAD_PAYLOAD)
434 return false;
435
436 fs_reg reg = this->src[0];
437 if (reg.file != VGRF || reg.offset != 0 || reg.stride != 1)
438 return false;
439
440 if (grf_alloc.sizes[reg.nr] * REG_SIZE != this->size_written)
441 return false;
442
443 for (int i = 0; i < this->sources; i++) {
444 reg.type = this->src[i].type;
445 if (!this->src[i].equals(reg))
446 return false;
447
448 if (i < this->header_size) {
449 reg.offset += REG_SIZE;
450 } else {
451 reg = horiz_offset(reg, this->exec_size);
452 }
453 }
454
455 return true;
456 }
457
458 bool
459 fs_inst::can_do_source_mods(const struct gen_device_info *devinfo) const
460 {
461 if (devinfo->gen == 6 && is_math())
462 return false;
463
464 if (is_send_from_grf())
465 return false;
466
467 /* From GEN:BUG:1604601757:
468 *
469 * "When multiplying a DW and any lower precision integer, source modifier
470 * is not supported."
471 */
472 if (devinfo->gen >= 12 && (opcode == BRW_OPCODE_MUL ||
473 opcode == BRW_OPCODE_MAD)) {
474 const brw_reg_type exec_type = get_exec_type(this);
475 const unsigned min_type_sz = opcode == BRW_OPCODE_MAD ?
476 MIN2(type_sz(src[1].type), type_sz(src[2].type)) :
477 MIN2(type_sz(src[0].type), type_sz(src[1].type));
478
479 if (brw_reg_type_is_integer(exec_type) &&
480 type_sz(exec_type) >= 4 &&
481 type_sz(exec_type) != min_type_sz)
482 return false;
483 }
484
485 if (!backend_instruction::can_do_source_mods())
486 return false;
487
488 return true;
489 }
490
491 bool
492 fs_inst::can_do_cmod()
493 {
494 if (!backend_instruction::can_do_cmod())
495 return false;
496
497 /* The accumulator result appears to get used for the conditional modifier
498 * generation. When negating a UD value, there is a 33rd bit generated for
499 * the sign in the accumulator value, so now you can't check, for example,
500 * equality with a 32-bit value. See piglit fs-op-neg-uvec4.
501 */
502 for (unsigned i = 0; i < sources; i++) {
503 if (type_is_unsigned_int(src[i].type) && src[i].negate)
504 return false;
505 }
506
507 return true;
508 }
509
510 bool
511 fs_inst::can_change_types() const
512 {
513 return dst.type == src[0].type &&
514 !src[0].abs && !src[0].negate && !saturate &&
515 (opcode == BRW_OPCODE_MOV ||
516 (opcode == BRW_OPCODE_SEL &&
517 dst.type == src[1].type &&
518 predicate != BRW_PREDICATE_NONE &&
519 !src[1].abs && !src[1].negate));
520 }
521
522 void
523 fs_reg::init()
524 {
525 memset((void*)this, 0, sizeof(*this));
526 type = BRW_REGISTER_TYPE_UD;
527 stride = 1;
528 }
529
530 /** Generic unset register constructor. */
531 fs_reg::fs_reg()
532 {
533 init();
534 this->file = BAD_FILE;
535 }
536
537 fs_reg::fs_reg(struct ::brw_reg reg) :
538 backend_reg(reg)
539 {
540 this->offset = 0;
541 this->stride = 1;
542 if (this->file == IMM &&
543 (this->type != BRW_REGISTER_TYPE_V &&
544 this->type != BRW_REGISTER_TYPE_UV &&
545 this->type != BRW_REGISTER_TYPE_VF)) {
546 this->stride = 0;
547 }
548 }
549
550 bool
551 fs_reg::equals(const fs_reg &r) const
552 {
553 return (this->backend_reg::equals(r) &&
554 stride == r.stride);
555 }
556
557 bool
558 fs_reg::negative_equals(const fs_reg &r) const
559 {
560 return (this->backend_reg::negative_equals(r) &&
561 stride == r.stride);
562 }
563
564 bool
565 fs_reg::is_contiguous() const
566 {
567 return stride == 1;
568 }
569
570 unsigned
571 fs_reg::component_size(unsigned width) const
572 {
573 const unsigned stride = ((file != ARF && file != FIXED_GRF) ? this->stride :
574 hstride == 0 ? 0 :
575 1 << (hstride - 1));
576 return MAX2(width * stride, 1) * type_sz(type);
577 }
578
579 extern "C" int
580 type_size_scalar(const struct glsl_type *type, bool bindless)
581 {
582 unsigned int size, i;
583
584 switch (type->base_type) {
585 case GLSL_TYPE_UINT:
586 case GLSL_TYPE_INT:
587 case GLSL_TYPE_FLOAT:
588 case GLSL_TYPE_BOOL:
589 return type->components();
590 case GLSL_TYPE_UINT16:
591 case GLSL_TYPE_INT16:
592 case GLSL_TYPE_FLOAT16:
593 return DIV_ROUND_UP(type->components(), 2);
594 case GLSL_TYPE_UINT8:
595 case GLSL_TYPE_INT8:
596 return DIV_ROUND_UP(type->components(), 4);
597 case GLSL_TYPE_DOUBLE:
598 case GLSL_TYPE_UINT64:
599 case GLSL_TYPE_INT64:
600 return type->components() * 2;
601 case GLSL_TYPE_ARRAY:
602 return type_size_scalar(type->fields.array, bindless) * type->length;
603 case GLSL_TYPE_STRUCT:
604 case GLSL_TYPE_INTERFACE:
605 size = 0;
606 for (i = 0; i < type->length; i++) {
607 size += type_size_scalar(type->fields.structure[i].type, bindless);
608 }
609 return size;
610 case GLSL_TYPE_SAMPLER:
611 case GLSL_TYPE_IMAGE:
612 if (bindless)
613 return type->components() * 2;
614 case GLSL_TYPE_ATOMIC_UINT:
615 /* Samplers, atomics, and images take up no register space, since
616 * they're baked in at link time.
617 */
618 return 0;
619 case GLSL_TYPE_SUBROUTINE:
620 return 1;
621 case GLSL_TYPE_VOID:
622 case GLSL_TYPE_ERROR:
623 case GLSL_TYPE_FUNCTION:
624 unreachable("not reached");
625 }
626
627 return 0;
628 }
629
630 /**
631 * Create a MOV to read the timestamp register.
632 */
633 fs_reg
634 fs_visitor::get_timestamp(const fs_builder &bld)
635 {
636 assert(devinfo->gen >= 7);
637
638 fs_reg ts = fs_reg(retype(brw_vec4_reg(BRW_ARCHITECTURE_REGISTER_FILE,
639 BRW_ARF_TIMESTAMP,
640 0),
641 BRW_REGISTER_TYPE_UD));
642
643 fs_reg dst = fs_reg(VGRF, alloc.allocate(1), BRW_REGISTER_TYPE_UD);
644
645 /* We want to read the 3 fields we care about even if it's not enabled in
646 * the dispatch.
647 */
648 bld.group(4, 0).exec_all().MOV(dst, ts);
649
650 return dst;
651 }
652
653 void
654 fs_visitor::emit_shader_time_begin()
655 {
656 /* We want only the low 32 bits of the timestamp. Since it's running
657 * at the GPU clock rate of ~1.2ghz, it will roll over every ~3 seconds,
658 * which is plenty of time for our purposes. It is identical across the
659 * EUs, but since it's tracking GPU core speed it will increment at a
660 * varying rate as render P-states change.
661 */
662 shader_start_time = component(
663 get_timestamp(bld.annotate("shader time start")), 0);
664 }
665
666 void
667 fs_visitor::emit_shader_time_end()
668 {
669 /* Insert our code just before the final SEND with EOT. */
670 exec_node *end = this->instructions.get_tail();
671 assert(end && ((fs_inst *) end)->eot);
672 const fs_builder ibld = bld.annotate("shader time end")
673 .exec_all().at(NULL, end);
674 const fs_reg timestamp = get_timestamp(ibld);
675
676 /* We only use the low 32 bits of the timestamp - see
677 * emit_shader_time_begin()).
678 *
679 * We could also check if render P-states have changed (or anything
680 * else that might disrupt timing) by setting smear to 2 and checking if
681 * that field is != 0.
682 */
683 const fs_reg shader_end_time = component(timestamp, 0);
684
685 /* Check that there weren't any timestamp reset events (assuming these
686 * were the only two timestamp reads that happened).
687 */
688 const fs_reg reset = component(timestamp, 2);
689 set_condmod(BRW_CONDITIONAL_Z,
690 ibld.AND(ibld.null_reg_ud(), reset, brw_imm_ud(1u)));
691 ibld.IF(BRW_PREDICATE_NORMAL);
692
693 fs_reg start = shader_start_time;
694 start.negate = true;
695 const fs_reg diff = component(fs_reg(VGRF, alloc.allocate(1),
696 BRW_REGISTER_TYPE_UD),
697 0);
698 const fs_builder cbld = ibld.group(1, 0);
699 cbld.group(1, 0).ADD(diff, start, shader_end_time);
700
701 /* If there were no instructions between the two timestamp gets, the diff
702 * is 2 cycles. Remove that overhead, so I can forget about that when
703 * trying to determine the time taken for single instructions.
704 */
705 cbld.ADD(diff, diff, brw_imm_ud(-2u));
706 SHADER_TIME_ADD(cbld, 0, diff);
707 SHADER_TIME_ADD(cbld, 1, brw_imm_ud(1u));
708 ibld.emit(BRW_OPCODE_ELSE);
709 SHADER_TIME_ADD(cbld, 2, brw_imm_ud(1u));
710 ibld.emit(BRW_OPCODE_ENDIF);
711 }
712
713 void
714 fs_visitor::SHADER_TIME_ADD(const fs_builder &bld,
715 int shader_time_subindex,
716 fs_reg value)
717 {
718 int index = shader_time_index * 3 + shader_time_subindex;
719 struct brw_reg offset = brw_imm_d(index * BRW_SHADER_TIME_STRIDE);
720
721 fs_reg payload;
722 if (dispatch_width == 8)
723 payload = vgrf(glsl_type::uvec2_type);
724 else
725 payload = vgrf(glsl_type::uint_type);
726
727 bld.emit(SHADER_OPCODE_SHADER_TIME_ADD, fs_reg(), payload, offset, value);
728 }
729
730 void
731 fs_visitor::vfail(const char *format, va_list va)
732 {
733 char *msg;
734
735 if (failed)
736 return;
737
738 failed = true;
739
740 msg = ralloc_vasprintf(mem_ctx, format, va);
741 msg = ralloc_asprintf(mem_ctx, "%s compile failed: %s\n", stage_abbrev, msg);
742
743 this->fail_msg = msg;
744
745 if (debug_enabled) {
746 fprintf(stderr, "%s", msg);
747 }
748 }
749
750 void
751 fs_visitor::fail(const char *format, ...)
752 {
753 va_list va;
754
755 va_start(va, format);
756 vfail(format, va);
757 va_end(va);
758 }
759
760 /**
761 * Mark this program as impossible to compile with dispatch width greater
762 * than n.
763 *
764 * During the SIMD8 compile (which happens first), we can detect and flag
765 * things that are unsupported in SIMD16+ mode, so the compiler can skip the
766 * SIMD16+ compile altogether.
767 *
768 * During a compile of dispatch width greater than n (if one happens anyway),
769 * this just calls fail().
770 */
771 void
772 fs_visitor::limit_dispatch_width(unsigned n, const char *msg)
773 {
774 if (dispatch_width > n) {
775 fail("%s", msg);
776 } else {
777 max_dispatch_width = n;
778 compiler->shader_perf_log(log_data,
779 "Shader dispatch width limited to SIMD%d: %s",
780 n, msg);
781 }
782 }
783
784 /**
785 * Returns true if the instruction has a flag that means it won't
786 * update an entire destination register.
787 *
788 * For example, dead code elimination and live variable analysis want to know
789 * when a write to a variable screens off any preceding values that were in
790 * it.
791 */
792 bool
793 fs_inst::is_partial_write() const
794 {
795 return ((this->predicate && this->opcode != BRW_OPCODE_SEL) ||
796 (this->exec_size * type_sz(this->dst.type)) < 32 ||
797 !this->dst.is_contiguous() ||
798 this->dst.offset % REG_SIZE != 0);
799 }
800
801 unsigned
802 fs_inst::components_read(unsigned i) const
803 {
804 /* Return zero if the source is not present. */
805 if (src[i].file == BAD_FILE)
806 return 0;
807
808 switch (opcode) {
809 case FS_OPCODE_LINTERP:
810 if (i == 0)
811 return 2;
812 else
813 return 1;
814
815 case FS_OPCODE_PIXEL_X:
816 case FS_OPCODE_PIXEL_Y:
817 assert(i == 0);
818 return 2;
819
820 case FS_OPCODE_FB_WRITE_LOGICAL:
821 assert(src[FB_WRITE_LOGICAL_SRC_COMPONENTS].file == IMM);
822 /* First/second FB write color. */
823 if (i < 2)
824 return src[FB_WRITE_LOGICAL_SRC_COMPONENTS].ud;
825 else
826 return 1;
827
828 case SHADER_OPCODE_TEX_LOGICAL:
829 case SHADER_OPCODE_TXD_LOGICAL:
830 case SHADER_OPCODE_TXF_LOGICAL:
831 case SHADER_OPCODE_TXL_LOGICAL:
832 case SHADER_OPCODE_TXS_LOGICAL:
833 case SHADER_OPCODE_IMAGE_SIZE_LOGICAL:
834 case FS_OPCODE_TXB_LOGICAL:
835 case SHADER_OPCODE_TXF_CMS_LOGICAL:
836 case SHADER_OPCODE_TXF_CMS_W_LOGICAL:
837 case SHADER_OPCODE_TXF_UMS_LOGICAL:
838 case SHADER_OPCODE_TXF_MCS_LOGICAL:
839 case SHADER_OPCODE_LOD_LOGICAL:
840 case SHADER_OPCODE_TG4_LOGICAL:
841 case SHADER_OPCODE_TG4_OFFSET_LOGICAL:
842 case SHADER_OPCODE_SAMPLEINFO_LOGICAL:
843 assert(src[TEX_LOGICAL_SRC_COORD_COMPONENTS].file == IMM &&
844 src[TEX_LOGICAL_SRC_GRAD_COMPONENTS].file == IMM);
845 /* Texture coordinates. */
846 if (i == TEX_LOGICAL_SRC_COORDINATE)
847 return src[TEX_LOGICAL_SRC_COORD_COMPONENTS].ud;
848 /* Texture derivatives. */
849 else if ((i == TEX_LOGICAL_SRC_LOD || i == TEX_LOGICAL_SRC_LOD2) &&
850 opcode == SHADER_OPCODE_TXD_LOGICAL)
851 return src[TEX_LOGICAL_SRC_GRAD_COMPONENTS].ud;
852 /* Texture offset. */
853 else if (i == TEX_LOGICAL_SRC_TG4_OFFSET)
854 return 2;
855 /* MCS */
856 else if (i == TEX_LOGICAL_SRC_MCS && opcode == SHADER_OPCODE_TXF_CMS_W_LOGICAL)
857 return 2;
858 else
859 return 1;
860
861 case SHADER_OPCODE_UNTYPED_SURFACE_READ_LOGICAL:
862 case SHADER_OPCODE_TYPED_SURFACE_READ_LOGICAL:
863 assert(src[SURFACE_LOGICAL_SRC_IMM_DIMS].file == IMM);
864 /* Surface coordinates. */
865 if (i == SURFACE_LOGICAL_SRC_ADDRESS)
866 return src[SURFACE_LOGICAL_SRC_IMM_DIMS].ud;
867 /* Surface operation source (ignored for reads). */
868 else if (i == SURFACE_LOGICAL_SRC_DATA)
869 return 0;
870 else
871 return 1;
872
873 case SHADER_OPCODE_UNTYPED_SURFACE_WRITE_LOGICAL:
874 case SHADER_OPCODE_TYPED_SURFACE_WRITE_LOGICAL:
875 assert(src[SURFACE_LOGICAL_SRC_IMM_DIMS].file == IMM &&
876 src[SURFACE_LOGICAL_SRC_IMM_ARG].file == IMM);
877 /* Surface coordinates. */
878 if (i == SURFACE_LOGICAL_SRC_ADDRESS)
879 return src[SURFACE_LOGICAL_SRC_IMM_DIMS].ud;
880 /* Surface operation source. */
881 else if (i == SURFACE_LOGICAL_SRC_DATA)
882 return src[SURFACE_LOGICAL_SRC_IMM_ARG].ud;
883 else
884 return 1;
885
886 case SHADER_OPCODE_A64_UNTYPED_READ_LOGICAL:
887 assert(src[2].file == IMM);
888 return 1;
889
890 case SHADER_OPCODE_A64_UNTYPED_WRITE_LOGICAL:
891 assert(src[2].file == IMM);
892 return i == 1 ? src[2].ud : 1;
893
894 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_LOGICAL:
895 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_INT64_LOGICAL:
896 assert(src[2].file == IMM);
897 if (i == 1) {
898 /* Data source */
899 const unsigned op = src[2].ud;
900 switch (op) {
901 case BRW_AOP_INC:
902 case BRW_AOP_DEC:
903 case BRW_AOP_PREDEC:
904 return 0;
905 case BRW_AOP_CMPWR:
906 return 2;
907 default:
908 return 1;
909 }
910 } else {
911 return 1;
912 }
913
914 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_FLOAT_LOGICAL:
915 assert(src[2].file == IMM);
916 if (i == 1) {
917 /* Data source */
918 const unsigned op = src[2].ud;
919 return op == BRW_AOP_FCMPWR ? 2 : 1;
920 } else {
921 return 1;
922 }
923
924 case SHADER_OPCODE_BYTE_SCATTERED_READ_LOGICAL:
925 case SHADER_OPCODE_DWORD_SCATTERED_READ_LOGICAL:
926 /* Scattered logical opcodes use the following params:
927 * src[0] Surface coordinates
928 * src[1] Surface operation source (ignored for reads)
929 * src[2] Surface
930 * src[3] IMM with always 1 dimension.
931 * src[4] IMM with arg bitsize for scattered read/write 8, 16, 32
932 */
933 assert(src[SURFACE_LOGICAL_SRC_IMM_DIMS].file == IMM &&
934 src[SURFACE_LOGICAL_SRC_IMM_ARG].file == IMM);
935 return i == SURFACE_LOGICAL_SRC_DATA ? 0 : 1;
936
937 case SHADER_OPCODE_BYTE_SCATTERED_WRITE_LOGICAL:
938 case SHADER_OPCODE_DWORD_SCATTERED_WRITE_LOGICAL:
939 assert(src[SURFACE_LOGICAL_SRC_IMM_DIMS].file == IMM &&
940 src[SURFACE_LOGICAL_SRC_IMM_ARG].file == IMM);
941 return 1;
942
943 case SHADER_OPCODE_UNTYPED_ATOMIC_LOGICAL:
944 case SHADER_OPCODE_TYPED_ATOMIC_LOGICAL: {
945 assert(src[SURFACE_LOGICAL_SRC_IMM_DIMS].file == IMM &&
946 src[SURFACE_LOGICAL_SRC_IMM_ARG].file == IMM);
947 const unsigned op = src[SURFACE_LOGICAL_SRC_IMM_ARG].ud;
948 /* Surface coordinates. */
949 if (i == SURFACE_LOGICAL_SRC_ADDRESS)
950 return src[SURFACE_LOGICAL_SRC_IMM_DIMS].ud;
951 /* Surface operation source. */
952 else if (i == SURFACE_LOGICAL_SRC_DATA && op == BRW_AOP_CMPWR)
953 return 2;
954 else if (i == SURFACE_LOGICAL_SRC_DATA &&
955 (op == BRW_AOP_INC || op == BRW_AOP_DEC || op == BRW_AOP_PREDEC))
956 return 0;
957 else
958 return 1;
959 }
960 case FS_OPCODE_INTERPOLATE_AT_PER_SLOT_OFFSET:
961 return (i == 0 ? 2 : 1);
962
963 case SHADER_OPCODE_UNTYPED_ATOMIC_FLOAT_LOGICAL: {
964 assert(src[SURFACE_LOGICAL_SRC_IMM_DIMS].file == IMM &&
965 src[SURFACE_LOGICAL_SRC_IMM_ARG].file == IMM);
966 const unsigned op = src[SURFACE_LOGICAL_SRC_IMM_ARG].ud;
967 /* Surface coordinates. */
968 if (i == SURFACE_LOGICAL_SRC_ADDRESS)
969 return src[SURFACE_LOGICAL_SRC_IMM_DIMS].ud;
970 /* Surface operation source. */
971 else if (i == SURFACE_LOGICAL_SRC_DATA && op == BRW_AOP_FCMPWR)
972 return 2;
973 else
974 return 1;
975 }
976
977 default:
978 return 1;
979 }
980 }
981
982 unsigned
983 fs_inst::size_read(int arg) const
984 {
985 switch (opcode) {
986 case SHADER_OPCODE_SEND:
987 if (arg == 2) {
988 return mlen * REG_SIZE;
989 } else if (arg == 3) {
990 return ex_mlen * REG_SIZE;
991 }
992 break;
993
994 case FS_OPCODE_FB_WRITE:
995 case FS_OPCODE_REP_FB_WRITE:
996 if (arg == 0) {
997 if (base_mrf >= 0)
998 return src[0].file == BAD_FILE ? 0 : 2 * REG_SIZE;
999 else
1000 return mlen * REG_SIZE;
1001 }
1002 break;
1003
1004 case FS_OPCODE_FB_READ:
1005 case SHADER_OPCODE_URB_WRITE_SIMD8:
1006 case SHADER_OPCODE_URB_WRITE_SIMD8_PER_SLOT:
1007 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED:
1008 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED_PER_SLOT:
1009 case SHADER_OPCODE_URB_READ_SIMD8:
1010 case SHADER_OPCODE_URB_READ_SIMD8_PER_SLOT:
1011 case FS_OPCODE_INTERPOLATE_AT_SAMPLE:
1012 case FS_OPCODE_INTERPOLATE_AT_SHARED_OFFSET:
1013 if (arg == 0)
1014 return mlen * REG_SIZE;
1015 break;
1016
1017 case FS_OPCODE_SET_SAMPLE_ID:
1018 if (arg == 1)
1019 return 1;
1020 break;
1021
1022 case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD_GEN7:
1023 /* The payload is actually stored in src1 */
1024 if (arg == 1)
1025 return mlen * REG_SIZE;
1026 break;
1027
1028 case FS_OPCODE_LINTERP:
1029 if (arg == 1)
1030 return 16;
1031 break;
1032
1033 case SHADER_OPCODE_LOAD_PAYLOAD:
1034 if (arg < this->header_size)
1035 return REG_SIZE;
1036 break;
1037
1038 case CS_OPCODE_CS_TERMINATE:
1039 case SHADER_OPCODE_BARRIER:
1040 return REG_SIZE;
1041
1042 case SHADER_OPCODE_MOV_INDIRECT:
1043 if (arg == 0) {
1044 assert(src[2].file == IMM);
1045 return src[2].ud;
1046 }
1047 break;
1048
1049 default:
1050 if (is_tex() && arg == 0 && src[0].file == VGRF)
1051 return mlen * REG_SIZE;
1052 break;
1053 }
1054
1055 switch (src[arg].file) {
1056 case UNIFORM:
1057 case IMM:
1058 return components_read(arg) * type_sz(src[arg].type);
1059 case BAD_FILE:
1060 case ARF:
1061 case FIXED_GRF:
1062 case VGRF:
1063 case ATTR:
1064 return components_read(arg) * src[arg].component_size(exec_size);
1065 case MRF:
1066 unreachable("MRF registers are not allowed as sources");
1067 }
1068 return 0;
1069 }
1070
1071 namespace {
1072 unsigned
1073 predicate_width(brw_predicate predicate)
1074 {
1075 switch (predicate) {
1076 case BRW_PREDICATE_NONE: return 1;
1077 case BRW_PREDICATE_NORMAL: return 1;
1078 case BRW_PREDICATE_ALIGN1_ANY2H: return 2;
1079 case BRW_PREDICATE_ALIGN1_ALL2H: return 2;
1080 case BRW_PREDICATE_ALIGN1_ANY4H: return 4;
1081 case BRW_PREDICATE_ALIGN1_ALL4H: return 4;
1082 case BRW_PREDICATE_ALIGN1_ANY8H: return 8;
1083 case BRW_PREDICATE_ALIGN1_ALL8H: return 8;
1084 case BRW_PREDICATE_ALIGN1_ANY16H: return 16;
1085 case BRW_PREDICATE_ALIGN1_ALL16H: return 16;
1086 case BRW_PREDICATE_ALIGN1_ANY32H: return 32;
1087 case BRW_PREDICATE_ALIGN1_ALL32H: return 32;
1088 default: unreachable("Unsupported predicate");
1089 }
1090 }
1091
1092 /* Return the subset of flag registers that an instruction could
1093 * potentially read or write based on the execution controls and flag
1094 * subregister number of the instruction.
1095 */
1096 unsigned
1097 flag_mask(const fs_inst *inst, unsigned width)
1098 {
1099 assert(util_is_power_of_two_nonzero(width));
1100 const unsigned start = (inst->flag_subreg * 16 + inst->group) &
1101 ~(width - 1);
1102 const unsigned end = start + ALIGN(inst->exec_size, width);
1103 return ((1 << DIV_ROUND_UP(end, 8)) - 1) & ~((1 << (start / 8)) - 1);
1104 }
1105
1106 unsigned
1107 bit_mask(unsigned n)
1108 {
1109 return (n >= CHAR_BIT * sizeof(bit_mask(n)) ? ~0u : (1u << n) - 1);
1110 }
1111
1112 unsigned
1113 flag_mask(const fs_reg &r, unsigned sz)
1114 {
1115 if (r.file == ARF) {
1116 const unsigned start = (r.nr - BRW_ARF_FLAG) * 4 + r.subnr;
1117 const unsigned end = start + sz;
1118 return bit_mask(end) & ~bit_mask(start);
1119 } else {
1120 return 0;
1121 }
1122 }
1123 }
1124
1125 unsigned
1126 fs_inst::flags_read(const gen_device_info *devinfo) const
1127 {
1128 if (predicate == BRW_PREDICATE_ALIGN1_ANYV ||
1129 predicate == BRW_PREDICATE_ALIGN1_ALLV) {
1130 /* The vertical predication modes combine corresponding bits from
1131 * f0.0 and f1.0 on Gen7+, and f0.0 and f0.1 on older hardware.
1132 */
1133 const unsigned shift = devinfo->gen >= 7 ? 4 : 2;
1134 return flag_mask(this, 1) << shift | flag_mask(this, 1);
1135 } else if (predicate) {
1136 return flag_mask(this, predicate_width(predicate));
1137 } else {
1138 unsigned mask = 0;
1139 for (int i = 0; i < sources; i++) {
1140 mask |= flag_mask(src[i], size_read(i));
1141 }
1142 return mask;
1143 }
1144 }
1145
1146 unsigned
1147 fs_inst::flags_written() const
1148 {
1149 if ((conditional_mod && (opcode != BRW_OPCODE_SEL &&
1150 opcode != BRW_OPCODE_CSEL &&
1151 opcode != BRW_OPCODE_IF &&
1152 opcode != BRW_OPCODE_WHILE)) ||
1153 opcode == SHADER_OPCODE_FIND_LIVE_CHANNEL ||
1154 opcode == FS_OPCODE_FB_WRITE) {
1155 return flag_mask(this, 1);
1156 } else {
1157 return flag_mask(dst, size_written);
1158 }
1159 }
1160
1161 /**
1162 * Returns how many MRFs an FS opcode will write over.
1163 *
1164 * Note that this is not the 0 or 1 implied writes in an actual gen
1165 * instruction -- the FS opcodes often generate MOVs in addition.
1166 */
1167 int
1168 fs_visitor::implied_mrf_writes(const fs_inst *inst) const
1169 {
1170 if (inst->mlen == 0)
1171 return 0;
1172
1173 if (inst->base_mrf == -1)
1174 return 0;
1175
1176 switch (inst->opcode) {
1177 case SHADER_OPCODE_RCP:
1178 case SHADER_OPCODE_RSQ:
1179 case SHADER_OPCODE_SQRT:
1180 case SHADER_OPCODE_EXP2:
1181 case SHADER_OPCODE_LOG2:
1182 case SHADER_OPCODE_SIN:
1183 case SHADER_OPCODE_COS:
1184 return 1 * dispatch_width / 8;
1185 case SHADER_OPCODE_POW:
1186 case SHADER_OPCODE_INT_QUOTIENT:
1187 case SHADER_OPCODE_INT_REMAINDER:
1188 return 2 * dispatch_width / 8;
1189 case SHADER_OPCODE_TEX:
1190 case FS_OPCODE_TXB:
1191 case SHADER_OPCODE_TXD:
1192 case SHADER_OPCODE_TXF:
1193 case SHADER_OPCODE_TXF_CMS:
1194 case SHADER_OPCODE_TXF_MCS:
1195 case SHADER_OPCODE_TG4:
1196 case SHADER_OPCODE_TG4_OFFSET:
1197 case SHADER_OPCODE_TXL:
1198 case SHADER_OPCODE_TXS:
1199 case SHADER_OPCODE_LOD:
1200 case SHADER_OPCODE_SAMPLEINFO:
1201 return 1;
1202 case FS_OPCODE_FB_WRITE:
1203 case FS_OPCODE_REP_FB_WRITE:
1204 return inst->src[0].file == BAD_FILE ? 0 : 2;
1205 case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD:
1206 case SHADER_OPCODE_GEN4_SCRATCH_READ:
1207 return 1;
1208 case FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_GEN4:
1209 return inst->mlen;
1210 case SHADER_OPCODE_GEN4_SCRATCH_WRITE:
1211 return inst->mlen;
1212 default:
1213 unreachable("not reached");
1214 }
1215 }
1216
1217 fs_reg
1218 fs_visitor::vgrf(const glsl_type *const type)
1219 {
1220 int reg_width = dispatch_width / 8;
1221 return fs_reg(VGRF,
1222 alloc.allocate(type_size_scalar(type, false) * reg_width),
1223 brw_type_for_base_type(type));
1224 }
1225
1226 fs_reg::fs_reg(enum brw_reg_file file, int nr)
1227 {
1228 init();
1229 this->file = file;
1230 this->nr = nr;
1231 this->type = BRW_REGISTER_TYPE_F;
1232 this->stride = (file == UNIFORM ? 0 : 1);
1233 }
1234
1235 fs_reg::fs_reg(enum brw_reg_file file, int nr, enum brw_reg_type type)
1236 {
1237 init();
1238 this->file = file;
1239 this->nr = nr;
1240 this->type = type;
1241 this->stride = (file == UNIFORM ? 0 : 1);
1242 }
1243
1244 /* For SIMD16, we need to follow from the uniform setup of SIMD8 dispatch.
1245 * This brings in those uniform definitions
1246 */
1247 void
1248 fs_visitor::import_uniforms(fs_visitor *v)
1249 {
1250 this->push_constant_loc = v->push_constant_loc;
1251 this->pull_constant_loc = v->pull_constant_loc;
1252 this->uniforms = v->uniforms;
1253 this->subgroup_id = v->subgroup_id;
1254 }
1255
1256 void
1257 fs_visitor::emit_fragcoord_interpolation(fs_reg wpos)
1258 {
1259 assert(stage == MESA_SHADER_FRAGMENT);
1260
1261 /* gl_FragCoord.x */
1262 bld.MOV(wpos, this->pixel_x);
1263 wpos = offset(wpos, bld, 1);
1264
1265 /* gl_FragCoord.y */
1266 bld.MOV(wpos, this->pixel_y);
1267 wpos = offset(wpos, bld, 1);
1268
1269 /* gl_FragCoord.z */
1270 if (devinfo->gen >= 6) {
1271 bld.MOV(wpos, fetch_payload_reg(bld, payload.source_depth_reg));
1272 } else {
1273 bld.emit(FS_OPCODE_LINTERP, wpos,
1274 this->delta_xy[BRW_BARYCENTRIC_PERSPECTIVE_PIXEL],
1275 component(interp_reg(VARYING_SLOT_POS, 2), 0));
1276 }
1277 wpos = offset(wpos, bld, 1);
1278
1279 /* gl_FragCoord.w: Already set up in emit_interpolation */
1280 bld.MOV(wpos, this->wpos_w);
1281 }
1282
1283 enum brw_barycentric_mode
1284 brw_barycentric_mode(enum glsl_interp_mode mode, nir_intrinsic_op op)
1285 {
1286 /* Barycentric modes don't make sense for flat inputs. */
1287 assert(mode != INTERP_MODE_FLAT);
1288
1289 unsigned bary;
1290 switch (op) {
1291 case nir_intrinsic_load_barycentric_pixel:
1292 case nir_intrinsic_load_barycentric_at_offset:
1293 bary = BRW_BARYCENTRIC_PERSPECTIVE_PIXEL;
1294 break;
1295 case nir_intrinsic_load_barycentric_centroid:
1296 bary = BRW_BARYCENTRIC_PERSPECTIVE_CENTROID;
1297 break;
1298 case nir_intrinsic_load_barycentric_sample:
1299 case nir_intrinsic_load_barycentric_at_sample:
1300 bary = BRW_BARYCENTRIC_PERSPECTIVE_SAMPLE;
1301 break;
1302 default:
1303 unreachable("invalid intrinsic");
1304 }
1305
1306 if (mode == INTERP_MODE_NOPERSPECTIVE)
1307 bary += 3;
1308
1309 return (enum brw_barycentric_mode) bary;
1310 }
1311
1312 /**
1313 * Turn one of the two CENTROID barycentric modes into PIXEL mode.
1314 */
1315 static enum brw_barycentric_mode
1316 centroid_to_pixel(enum brw_barycentric_mode bary)
1317 {
1318 assert(bary == BRW_BARYCENTRIC_PERSPECTIVE_CENTROID ||
1319 bary == BRW_BARYCENTRIC_NONPERSPECTIVE_CENTROID);
1320 return (enum brw_barycentric_mode) ((unsigned) bary - 1);
1321 }
1322
1323 fs_reg *
1324 fs_visitor::emit_frontfacing_interpolation()
1325 {
1326 fs_reg *reg = new(this->mem_ctx) fs_reg(vgrf(glsl_type::bool_type));
1327
1328 if (devinfo->gen >= 12) {
1329 fs_reg g1 = fs_reg(retype(brw_vec1_grf(1, 1), BRW_REGISTER_TYPE_W));
1330
1331 fs_reg tmp = bld.vgrf(BRW_REGISTER_TYPE_W);
1332 bld.ASR(tmp, g1, brw_imm_d(15));
1333 bld.NOT(*reg, tmp);
1334 } else if (devinfo->gen >= 6) {
1335 /* Bit 15 of g0.0 is 0 if the polygon is front facing. We want to create
1336 * a boolean result from this (~0/true or 0/false).
1337 *
1338 * We can use the fact that bit 15 is the MSB of g0.0:W to accomplish
1339 * this task in only one instruction:
1340 * - a negation source modifier will flip the bit; and
1341 * - a W -> D type conversion will sign extend the bit into the high
1342 * word of the destination.
1343 *
1344 * An ASR 15 fills the low word of the destination.
1345 */
1346 fs_reg g0 = fs_reg(retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_W));
1347 g0.negate = true;
1348
1349 bld.ASR(*reg, g0, brw_imm_d(15));
1350 } else {
1351 /* Bit 31 of g1.6 is 0 if the polygon is front facing. We want to create
1352 * a boolean result from this (1/true or 0/false).
1353 *
1354 * Like in the above case, since the bit is the MSB of g1.6:UD we can use
1355 * the negation source modifier to flip it. Unfortunately the SHR
1356 * instruction only operates on UD (or D with an abs source modifier)
1357 * sources without negation.
1358 *
1359 * Instead, use ASR (which will give ~0/true or 0/false).
1360 */
1361 fs_reg g1_6 = fs_reg(retype(brw_vec1_grf(1, 6), BRW_REGISTER_TYPE_D));
1362 g1_6.negate = true;
1363
1364 bld.ASR(*reg, g1_6, brw_imm_d(31));
1365 }
1366
1367 return reg;
1368 }
1369
1370 void
1371 fs_visitor::compute_sample_position(fs_reg dst, fs_reg int_sample_pos)
1372 {
1373 assert(stage == MESA_SHADER_FRAGMENT);
1374 struct brw_wm_prog_data *wm_prog_data = brw_wm_prog_data(this->prog_data);
1375 assert(dst.type == BRW_REGISTER_TYPE_F);
1376
1377 if (wm_prog_data->persample_dispatch) {
1378 /* Convert int_sample_pos to floating point */
1379 bld.MOV(dst, int_sample_pos);
1380 /* Scale to the range [0, 1] */
1381 bld.MUL(dst, dst, brw_imm_f(1 / 16.0f));
1382 }
1383 else {
1384 /* From ARB_sample_shading specification:
1385 * "When rendering to a non-multisample buffer, or if multisample
1386 * rasterization is disabled, gl_SamplePosition will always be
1387 * (0.5, 0.5).
1388 */
1389 bld.MOV(dst, brw_imm_f(0.5f));
1390 }
1391 }
1392
1393 fs_reg *
1394 fs_visitor::emit_samplepos_setup()
1395 {
1396 assert(devinfo->gen >= 6);
1397
1398 const fs_builder abld = bld.annotate("compute sample position");
1399 fs_reg *reg = new(this->mem_ctx) fs_reg(vgrf(glsl_type::vec2_type));
1400 fs_reg pos = *reg;
1401 fs_reg int_sample_x = vgrf(glsl_type::int_type);
1402 fs_reg int_sample_y = vgrf(glsl_type::int_type);
1403
1404 /* WM will be run in MSDISPMODE_PERSAMPLE. So, only one of SIMD8 or SIMD16
1405 * mode will be enabled.
1406 *
1407 * From the Ivy Bridge PRM, volume 2 part 1, page 344:
1408 * R31.1:0 Position Offset X/Y for Slot[3:0]
1409 * R31.3:2 Position Offset X/Y for Slot[7:4]
1410 * .....
1411 *
1412 * The X, Y sample positions come in as bytes in thread payload. So, read
1413 * the positions using vstride=16, width=8, hstride=2.
1414 */
1415 const fs_reg sample_pos_reg =
1416 fetch_payload_reg(abld, payload.sample_pos_reg, BRW_REGISTER_TYPE_W);
1417
1418 /* Compute gl_SamplePosition.x */
1419 abld.MOV(int_sample_x, subscript(sample_pos_reg, BRW_REGISTER_TYPE_B, 0));
1420 compute_sample_position(offset(pos, abld, 0), int_sample_x);
1421
1422 /* Compute gl_SamplePosition.y */
1423 abld.MOV(int_sample_y, subscript(sample_pos_reg, BRW_REGISTER_TYPE_B, 1));
1424 compute_sample_position(offset(pos, abld, 1), int_sample_y);
1425 return reg;
1426 }
1427
1428 fs_reg *
1429 fs_visitor::emit_sampleid_setup()
1430 {
1431 assert(stage == MESA_SHADER_FRAGMENT);
1432 brw_wm_prog_key *key = (brw_wm_prog_key*) this->key;
1433 assert(devinfo->gen >= 6);
1434
1435 const fs_builder abld = bld.annotate("compute sample id");
1436 fs_reg *reg = new(this->mem_ctx) fs_reg(vgrf(glsl_type::uint_type));
1437
1438 if (!key->multisample_fbo) {
1439 /* As per GL_ARB_sample_shading specification:
1440 * "When rendering to a non-multisample buffer, or if multisample
1441 * rasterization is disabled, gl_SampleID will always be zero."
1442 */
1443 abld.MOV(*reg, brw_imm_d(0));
1444 } else if (devinfo->gen >= 8) {
1445 /* Sample ID comes in as 4-bit numbers in g1.0:
1446 *
1447 * 15:12 Slot 3 SampleID (only used in SIMD16)
1448 * 11:8 Slot 2 SampleID (only used in SIMD16)
1449 * 7:4 Slot 1 SampleID
1450 * 3:0 Slot 0 SampleID
1451 *
1452 * Each slot corresponds to four channels, so we want to replicate each
1453 * half-byte value to 4 channels in a row:
1454 *
1455 * dst+0: .7 .6 .5 .4 .3 .2 .1 .0
1456 * 7:4 7:4 7:4 7:4 3:0 3:0 3:0 3:0
1457 *
1458 * dst+1: .7 .6 .5 .4 .3 .2 .1 .0 (if SIMD16)
1459 * 15:12 15:12 15:12 15:12 11:8 11:8 11:8 11:8
1460 *
1461 * First, we read g1.0 with a <1,8,0>UB region, causing the first 8
1462 * channels to read the first byte (7:0), and the second group of 8
1463 * channels to read the second byte (15:8). Then, we shift right by
1464 * a vector immediate of <4, 4, 4, 4, 0, 0, 0, 0>, moving the slot 1 / 3
1465 * values into place. Finally, we AND with 0xf to keep the low nibble.
1466 *
1467 * shr(16) tmp<1>W g1.0<1,8,0>B 0x44440000:V
1468 * and(16) dst<1>D tmp<8,8,1>W 0xf:W
1469 *
1470 * TODO: These payload bits exist on Gen7 too, but they appear to always
1471 * be zero, so this code fails to work. We should find out why.
1472 */
1473 const fs_reg tmp = abld.vgrf(BRW_REGISTER_TYPE_UW);
1474
1475 for (unsigned i = 0; i < DIV_ROUND_UP(dispatch_width, 16); i++) {
1476 const fs_builder hbld = abld.group(MIN2(16, dispatch_width), i);
1477 hbld.SHR(offset(tmp, hbld, i),
1478 stride(retype(brw_vec1_grf(1 + i, 0), BRW_REGISTER_TYPE_UB),
1479 1, 8, 0),
1480 brw_imm_v(0x44440000));
1481 }
1482
1483 abld.AND(*reg, tmp, brw_imm_w(0xf));
1484 } else {
1485 const fs_reg t1 = component(abld.vgrf(BRW_REGISTER_TYPE_UD), 0);
1486 const fs_reg t2 = abld.vgrf(BRW_REGISTER_TYPE_UW);
1487
1488 /* The PS will be run in MSDISPMODE_PERSAMPLE. For example with
1489 * 8x multisampling, subspan 0 will represent sample N (where N
1490 * is 0, 2, 4 or 6), subspan 1 will represent sample 1, 3, 5 or
1491 * 7. We can find the value of N by looking at R0.0 bits 7:6
1492 * ("Starting Sample Pair Index (SSPI)") and multiplying by two
1493 * (since samples are always delivered in pairs). That is, we
1494 * compute 2*((R0.0 & 0xc0) >> 6) == (R0.0 & 0xc0) >> 5. Then
1495 * we need to add N to the sequence (0, 0, 0, 0, 1, 1, 1, 1) in
1496 * case of SIMD8 and sequence (0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2,
1497 * 2, 3, 3, 3, 3) in case of SIMD16. We compute this sequence by
1498 * populating a temporary variable with the sequence (0, 1, 2, 3),
1499 * and then reading from it using vstride=1, width=4, hstride=0.
1500 * These computations hold good for 4x multisampling as well.
1501 *
1502 * For 2x MSAA and SIMD16, we want to use the sequence (0, 1, 0, 1):
1503 * the first four slots are sample 0 of subspan 0; the next four
1504 * are sample 1 of subspan 0; the third group is sample 0 of
1505 * subspan 1, and finally sample 1 of subspan 1.
1506 */
1507
1508 /* SKL+ has an extra bit for the Starting Sample Pair Index to
1509 * accomodate 16x MSAA.
1510 */
1511 abld.exec_all().group(1, 0)
1512 .AND(t1, fs_reg(retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_UD)),
1513 brw_imm_ud(0xc0));
1514 abld.exec_all().group(1, 0).SHR(t1, t1, brw_imm_d(5));
1515
1516 /* This works for SIMD8-SIMD16. It also works for SIMD32 but only if we
1517 * can assume 4x MSAA. Disallow it on IVB+
1518 *
1519 * FINISHME: One day, we could come up with a way to do this that
1520 * actually works on gen7.
1521 */
1522 if (devinfo->gen >= 7)
1523 limit_dispatch_width(16, "gl_SampleId is unsupported in SIMD32 on gen7");
1524 abld.exec_all().group(8, 0).MOV(t2, brw_imm_v(0x32103210));
1525
1526 /* This special instruction takes care of setting vstride=1,
1527 * width=4, hstride=0 of t2 during an ADD instruction.
1528 */
1529 abld.emit(FS_OPCODE_SET_SAMPLE_ID, *reg, t1, t2);
1530 }
1531
1532 return reg;
1533 }
1534
1535 fs_reg *
1536 fs_visitor::emit_samplemaskin_setup()
1537 {
1538 assert(stage == MESA_SHADER_FRAGMENT);
1539 struct brw_wm_prog_data *wm_prog_data = brw_wm_prog_data(this->prog_data);
1540 assert(devinfo->gen >= 6);
1541
1542 fs_reg *reg = new(this->mem_ctx) fs_reg(vgrf(glsl_type::int_type));
1543
1544 fs_reg coverage_mask =
1545 fetch_payload_reg(bld, payload.sample_mask_in_reg, BRW_REGISTER_TYPE_D);
1546
1547 if (wm_prog_data->persample_dispatch) {
1548 /* gl_SampleMaskIn[] comes from two sources: the input coverage mask,
1549 * and a mask representing which sample is being processed by the
1550 * current shader invocation.
1551 *
1552 * From the OES_sample_variables specification:
1553 * "When per-sample shading is active due to the use of a fragment input
1554 * qualified by "sample" or due to the use of the gl_SampleID or
1555 * gl_SamplePosition variables, only the bit for the current sample is
1556 * set in gl_SampleMaskIn."
1557 */
1558 const fs_builder abld = bld.annotate("compute gl_SampleMaskIn");
1559
1560 if (nir_system_values[SYSTEM_VALUE_SAMPLE_ID].file == BAD_FILE)
1561 nir_system_values[SYSTEM_VALUE_SAMPLE_ID] = *emit_sampleid_setup();
1562
1563 fs_reg one = vgrf(glsl_type::int_type);
1564 fs_reg enabled_mask = vgrf(glsl_type::int_type);
1565 abld.MOV(one, brw_imm_d(1));
1566 abld.SHL(enabled_mask, one, nir_system_values[SYSTEM_VALUE_SAMPLE_ID]);
1567 abld.AND(*reg, enabled_mask, coverage_mask);
1568 } else {
1569 /* In per-pixel mode, the coverage mask is sufficient. */
1570 *reg = coverage_mask;
1571 }
1572 return reg;
1573 }
1574
1575 fs_reg
1576 fs_visitor::resolve_source_modifiers(const fs_reg &src)
1577 {
1578 if (!src.abs && !src.negate)
1579 return src;
1580
1581 fs_reg temp = bld.vgrf(src.type);
1582 bld.MOV(temp, src);
1583
1584 return temp;
1585 }
1586
1587 void
1588 fs_visitor::emit_discard_jump()
1589 {
1590 assert(brw_wm_prog_data(this->prog_data)->uses_kill);
1591
1592 /* For performance, after a discard, jump to the end of the
1593 * shader if all relevant channels have been discarded.
1594 */
1595 fs_inst *discard_jump = bld.emit(FS_OPCODE_DISCARD_JUMP);
1596 discard_jump->flag_subreg = 1;
1597
1598 discard_jump->predicate = BRW_PREDICATE_ALIGN1_ANY4H;
1599 discard_jump->predicate_inverse = true;
1600 }
1601
1602 void
1603 fs_visitor::emit_gs_thread_end()
1604 {
1605 assert(stage == MESA_SHADER_GEOMETRY);
1606
1607 struct brw_gs_prog_data *gs_prog_data = brw_gs_prog_data(prog_data);
1608
1609 if (gs_compile->control_data_header_size_bits > 0) {
1610 emit_gs_control_data_bits(this->final_gs_vertex_count);
1611 }
1612
1613 const fs_builder abld = bld.annotate("thread end");
1614 fs_inst *inst;
1615
1616 if (gs_prog_data->static_vertex_count != -1) {
1617 foreach_in_list_reverse(fs_inst, prev, &this->instructions) {
1618 if (prev->opcode == SHADER_OPCODE_URB_WRITE_SIMD8 ||
1619 prev->opcode == SHADER_OPCODE_URB_WRITE_SIMD8_MASKED ||
1620 prev->opcode == SHADER_OPCODE_URB_WRITE_SIMD8_PER_SLOT ||
1621 prev->opcode == SHADER_OPCODE_URB_WRITE_SIMD8_MASKED_PER_SLOT) {
1622 prev->eot = true;
1623
1624 /* Delete now dead instructions. */
1625 foreach_in_list_reverse_safe(exec_node, dead, &this->instructions) {
1626 if (dead == prev)
1627 break;
1628 dead->remove();
1629 }
1630 return;
1631 } else if (prev->is_control_flow() || prev->has_side_effects()) {
1632 break;
1633 }
1634 }
1635 fs_reg hdr = abld.vgrf(BRW_REGISTER_TYPE_UD, 1);
1636 abld.MOV(hdr, fs_reg(retype(brw_vec8_grf(1, 0), BRW_REGISTER_TYPE_UD)));
1637 inst = abld.emit(SHADER_OPCODE_URB_WRITE_SIMD8, reg_undef, hdr);
1638 inst->mlen = 1;
1639 } else {
1640 fs_reg payload = abld.vgrf(BRW_REGISTER_TYPE_UD, 2);
1641 fs_reg *sources = ralloc_array(mem_ctx, fs_reg, 2);
1642 sources[0] = fs_reg(retype(brw_vec8_grf(1, 0), BRW_REGISTER_TYPE_UD));
1643 sources[1] = this->final_gs_vertex_count;
1644 abld.LOAD_PAYLOAD(payload, sources, 2, 2);
1645 inst = abld.emit(SHADER_OPCODE_URB_WRITE_SIMD8, reg_undef, payload);
1646 inst->mlen = 2;
1647 }
1648 inst->eot = true;
1649 inst->offset = 0;
1650 }
1651
1652 void
1653 fs_visitor::assign_curb_setup()
1654 {
1655 unsigned uniform_push_length = DIV_ROUND_UP(stage_prog_data->nr_params, 8);
1656
1657 unsigned ubo_push_length = 0;
1658 unsigned ubo_push_start[4];
1659 for (int i = 0; i < 4; i++) {
1660 ubo_push_start[i] = 8 * (ubo_push_length + uniform_push_length);
1661 ubo_push_length += stage_prog_data->ubo_ranges[i].length;
1662 }
1663
1664 prog_data->curb_read_length = uniform_push_length + ubo_push_length;
1665
1666 /* Map the offsets in the UNIFORM file to fixed HW regs. */
1667 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1668 for (unsigned int i = 0; i < inst->sources; i++) {
1669 if (inst->src[i].file == UNIFORM) {
1670 int uniform_nr = inst->src[i].nr + inst->src[i].offset / 4;
1671 int constant_nr;
1672 if (inst->src[i].nr >= UBO_START) {
1673 /* constant_nr is in 32-bit units, the rest are in bytes */
1674 constant_nr = ubo_push_start[inst->src[i].nr - UBO_START] +
1675 inst->src[i].offset / 4;
1676 } else if (uniform_nr >= 0 && uniform_nr < (int) uniforms) {
1677 constant_nr = push_constant_loc[uniform_nr];
1678 } else {
1679 /* Section 5.11 of the OpenGL 4.1 spec says:
1680 * "Out-of-bounds reads return undefined values, which include
1681 * values from other variables of the active program or zero."
1682 * Just return the first push constant.
1683 */
1684 constant_nr = 0;
1685 }
1686
1687 struct brw_reg brw_reg = brw_vec1_grf(payload.num_regs +
1688 constant_nr / 8,
1689 constant_nr % 8);
1690 brw_reg.abs = inst->src[i].abs;
1691 brw_reg.negate = inst->src[i].negate;
1692
1693 assert(inst->src[i].stride == 0);
1694 inst->src[i] = byte_offset(
1695 retype(brw_reg, inst->src[i].type),
1696 inst->src[i].offset % 4);
1697 }
1698 }
1699 }
1700
1701 /* This may be updated in assign_urb_setup or assign_vs_urb_setup. */
1702 this->first_non_payload_grf = payload.num_regs + prog_data->curb_read_length;
1703 }
1704
1705 static void
1706 calculate_urb_setup(const struct gen_device_info *devinfo,
1707 const struct brw_wm_prog_key *key,
1708 struct brw_wm_prog_data *prog_data,
1709 const nir_shader *nir)
1710 {
1711 memset(prog_data->urb_setup, -1,
1712 sizeof(prog_data->urb_setup[0]) * VARYING_SLOT_MAX);
1713
1714 int urb_next = 0;
1715 /* Figure out where each of the incoming setup attributes lands. */
1716 if (devinfo->gen >= 6) {
1717 if (util_bitcount64(nir->info.inputs_read &
1718 BRW_FS_VARYING_INPUT_MASK) <= 16) {
1719 /* The SF/SBE pipeline stage can do arbitrary rearrangement of the
1720 * first 16 varying inputs, so we can put them wherever we want.
1721 * Just put them in order.
1722 *
1723 * This is useful because it means that (a) inputs not used by the
1724 * fragment shader won't take up valuable register space, and (b) we
1725 * won't have to recompile the fragment shader if it gets paired with
1726 * a different vertex (or geometry) shader.
1727 */
1728 for (unsigned int i = 0; i < VARYING_SLOT_MAX; i++) {
1729 if (nir->info.inputs_read & BRW_FS_VARYING_INPUT_MASK &
1730 BITFIELD64_BIT(i)) {
1731 prog_data->urb_setup[i] = urb_next++;
1732 }
1733 }
1734 } else {
1735 /* We have enough input varyings that the SF/SBE pipeline stage can't
1736 * arbitrarily rearrange them to suit our whim; we have to put them
1737 * in an order that matches the output of the previous pipeline stage
1738 * (geometry or vertex shader).
1739 */
1740 struct brw_vue_map prev_stage_vue_map;
1741 brw_compute_vue_map(devinfo, &prev_stage_vue_map,
1742 key->input_slots_valid,
1743 nir->info.separate_shader);
1744
1745 int first_slot =
1746 brw_compute_first_urb_slot_required(nir->info.inputs_read,
1747 &prev_stage_vue_map);
1748
1749 assert(prev_stage_vue_map.num_slots <= first_slot + 32);
1750 for (int slot = first_slot; slot < prev_stage_vue_map.num_slots;
1751 slot++) {
1752 int varying = prev_stage_vue_map.slot_to_varying[slot];
1753 if (varying != BRW_VARYING_SLOT_PAD &&
1754 (nir->info.inputs_read & BRW_FS_VARYING_INPUT_MASK &
1755 BITFIELD64_BIT(varying))) {
1756 prog_data->urb_setup[varying] = slot - first_slot;
1757 }
1758 }
1759 urb_next = prev_stage_vue_map.num_slots - first_slot;
1760 }
1761 } else {
1762 /* FINISHME: The sf doesn't map VS->FS inputs for us very well. */
1763 for (unsigned int i = 0; i < VARYING_SLOT_MAX; i++) {
1764 /* Point size is packed into the header, not as a general attribute */
1765 if (i == VARYING_SLOT_PSIZ)
1766 continue;
1767
1768 if (key->input_slots_valid & BITFIELD64_BIT(i)) {
1769 /* The back color slot is skipped when the front color is
1770 * also written to. In addition, some slots can be
1771 * written in the vertex shader and not read in the
1772 * fragment shader. So the register number must always be
1773 * incremented, mapped or not.
1774 */
1775 if (_mesa_varying_slot_in_fs((gl_varying_slot) i))
1776 prog_data->urb_setup[i] = urb_next;
1777 urb_next++;
1778 }
1779 }
1780
1781 /*
1782 * It's a FS only attribute, and we did interpolation for this attribute
1783 * in SF thread. So, count it here, too.
1784 *
1785 * See compile_sf_prog() for more info.
1786 */
1787 if (nir->info.inputs_read & BITFIELD64_BIT(VARYING_SLOT_PNTC))
1788 prog_data->urb_setup[VARYING_SLOT_PNTC] = urb_next++;
1789 }
1790
1791 prog_data->num_varying_inputs = urb_next;
1792 }
1793
1794 void
1795 fs_visitor::assign_urb_setup()
1796 {
1797 assert(stage == MESA_SHADER_FRAGMENT);
1798 struct brw_wm_prog_data *prog_data = brw_wm_prog_data(this->prog_data);
1799
1800 int urb_start = payload.num_regs + prog_data->base.curb_read_length;
1801
1802 /* Offset all the urb_setup[] index by the actual position of the
1803 * setup regs, now that the location of the constants has been chosen.
1804 */
1805 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1806 for (int i = 0; i < inst->sources; i++) {
1807 if (inst->src[i].file == ATTR) {
1808 /* ATTR regs in the FS are in units of logical scalar inputs each
1809 * of which consumes half of a GRF register.
1810 */
1811 assert(inst->src[i].offset < REG_SIZE / 2);
1812 const unsigned grf = urb_start + inst->src[i].nr / 2;
1813 const unsigned offset = (inst->src[i].nr % 2) * (REG_SIZE / 2) +
1814 inst->src[i].offset;
1815 const unsigned width = inst->src[i].stride == 0 ?
1816 1 : MIN2(inst->exec_size, 8);
1817 struct brw_reg reg = stride(
1818 byte_offset(retype(brw_vec8_grf(grf, 0), inst->src[i].type),
1819 offset),
1820 width * inst->src[i].stride,
1821 width, inst->src[i].stride);
1822 reg.abs = inst->src[i].abs;
1823 reg.negate = inst->src[i].negate;
1824 inst->src[i] = reg;
1825 }
1826 }
1827 }
1828
1829 /* Each attribute is 4 setup channels, each of which is half a reg. */
1830 this->first_non_payload_grf += prog_data->num_varying_inputs * 2;
1831 }
1832
1833 void
1834 fs_visitor::convert_attr_sources_to_hw_regs(fs_inst *inst)
1835 {
1836 for (int i = 0; i < inst->sources; i++) {
1837 if (inst->src[i].file == ATTR) {
1838 int grf = payload.num_regs +
1839 prog_data->curb_read_length +
1840 inst->src[i].nr +
1841 inst->src[i].offset / REG_SIZE;
1842
1843 /* As explained at brw_reg_from_fs_reg, From the Haswell PRM:
1844 *
1845 * VertStride must be used to cross GRF register boundaries. This
1846 * rule implies that elements within a 'Width' cannot cross GRF
1847 * boundaries.
1848 *
1849 * So, for registers that are large enough, we have to split the exec
1850 * size in two and trust the compression state to sort it out.
1851 */
1852 unsigned total_size = inst->exec_size *
1853 inst->src[i].stride *
1854 type_sz(inst->src[i].type);
1855
1856 assert(total_size <= 2 * REG_SIZE);
1857 const unsigned exec_size =
1858 (total_size <= REG_SIZE) ? inst->exec_size : inst->exec_size / 2;
1859
1860 unsigned width = inst->src[i].stride == 0 ? 1 : exec_size;
1861 struct brw_reg reg =
1862 stride(byte_offset(retype(brw_vec8_grf(grf, 0), inst->src[i].type),
1863 inst->src[i].offset % REG_SIZE),
1864 exec_size * inst->src[i].stride,
1865 width, inst->src[i].stride);
1866 reg.abs = inst->src[i].abs;
1867 reg.negate = inst->src[i].negate;
1868
1869 inst->src[i] = reg;
1870 }
1871 }
1872 }
1873
1874 void
1875 fs_visitor::assign_vs_urb_setup()
1876 {
1877 struct brw_vs_prog_data *vs_prog_data = brw_vs_prog_data(prog_data);
1878
1879 assert(stage == MESA_SHADER_VERTEX);
1880
1881 /* Each attribute is 4 regs. */
1882 this->first_non_payload_grf += 4 * vs_prog_data->nr_attribute_slots;
1883
1884 assert(vs_prog_data->base.urb_read_length <= 15);
1885
1886 /* Rewrite all ATTR file references to the hw grf that they land in. */
1887 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1888 convert_attr_sources_to_hw_regs(inst);
1889 }
1890 }
1891
1892 void
1893 fs_visitor::assign_tcs_urb_setup()
1894 {
1895 assert(stage == MESA_SHADER_TESS_CTRL);
1896
1897 /* Rewrite all ATTR file references to HW_REGs. */
1898 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1899 convert_attr_sources_to_hw_regs(inst);
1900 }
1901 }
1902
1903 void
1904 fs_visitor::assign_tes_urb_setup()
1905 {
1906 assert(stage == MESA_SHADER_TESS_EVAL);
1907
1908 struct brw_vue_prog_data *vue_prog_data = brw_vue_prog_data(prog_data);
1909
1910 first_non_payload_grf += 8 * vue_prog_data->urb_read_length;
1911
1912 /* Rewrite all ATTR file references to HW_REGs. */
1913 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1914 convert_attr_sources_to_hw_regs(inst);
1915 }
1916 }
1917
1918 void
1919 fs_visitor::assign_gs_urb_setup()
1920 {
1921 assert(stage == MESA_SHADER_GEOMETRY);
1922
1923 struct brw_vue_prog_data *vue_prog_data = brw_vue_prog_data(prog_data);
1924
1925 first_non_payload_grf +=
1926 8 * vue_prog_data->urb_read_length * nir->info.gs.vertices_in;
1927
1928 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1929 /* Rewrite all ATTR file references to GRFs. */
1930 convert_attr_sources_to_hw_regs(inst);
1931 }
1932 }
1933
1934
1935 /**
1936 * Split large virtual GRFs into separate components if we can.
1937 *
1938 * This is mostly duplicated with what brw_fs_vector_splitting does,
1939 * but that's really conservative because it's afraid of doing
1940 * splitting that doesn't result in real progress after the rest of
1941 * the optimization phases, which would cause infinite looping in
1942 * optimization. We can do it once here, safely. This also has the
1943 * opportunity to split interpolated values, or maybe even uniforms,
1944 * which we don't have at the IR level.
1945 *
1946 * We want to split, because virtual GRFs are what we register
1947 * allocate and spill (due to contiguousness requirements for some
1948 * instructions), and they're what we naturally generate in the
1949 * codegen process, but most virtual GRFs don't actually need to be
1950 * contiguous sets of GRFs. If we split, we'll end up with reduced
1951 * live intervals and better dead code elimination and coalescing.
1952 */
1953 void
1954 fs_visitor::split_virtual_grfs()
1955 {
1956 /* Compact the register file so we eliminate dead vgrfs. This
1957 * only defines split points for live registers, so if we have
1958 * too large dead registers they will hit assertions later.
1959 */
1960 compact_virtual_grfs();
1961
1962 int num_vars = this->alloc.count;
1963
1964 /* Count the total number of registers */
1965 int reg_count = 0;
1966 int vgrf_to_reg[num_vars];
1967 for (int i = 0; i < num_vars; i++) {
1968 vgrf_to_reg[i] = reg_count;
1969 reg_count += alloc.sizes[i];
1970 }
1971
1972 /* An array of "split points". For each register slot, this indicates
1973 * if this slot can be separated from the previous slot. Every time an
1974 * instruction uses multiple elements of a register (as a source or
1975 * destination), we mark the used slots as inseparable. Then we go
1976 * through and split the registers into the smallest pieces we can.
1977 */
1978 bool *split_points = new bool[reg_count];
1979 memset(split_points, 0, reg_count * sizeof(*split_points));
1980
1981 /* Mark all used registers as fully splittable */
1982 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1983 if (inst->dst.file == VGRF) {
1984 int reg = vgrf_to_reg[inst->dst.nr];
1985 for (unsigned j = 1; j < this->alloc.sizes[inst->dst.nr]; j++)
1986 split_points[reg + j] = true;
1987 }
1988
1989 for (int i = 0; i < inst->sources; i++) {
1990 if (inst->src[i].file == VGRF) {
1991 int reg = vgrf_to_reg[inst->src[i].nr];
1992 for (unsigned j = 1; j < this->alloc.sizes[inst->src[i].nr]; j++)
1993 split_points[reg + j] = true;
1994 }
1995 }
1996 }
1997
1998 foreach_block_and_inst(block, fs_inst, inst, cfg) {
1999 /* We fix up undef instructions later */
2000 if (inst->opcode == SHADER_OPCODE_UNDEF) {
2001 /* UNDEF instructions are currently only used to undef entire
2002 * registers. We need this invariant later when we split them.
2003 */
2004 assert(inst->dst.file == VGRF);
2005 assert(inst->dst.offset == 0);
2006 assert(inst->size_written == alloc.sizes[inst->dst.nr] * REG_SIZE);
2007 continue;
2008 }
2009
2010 if (inst->dst.file == VGRF) {
2011 int reg = vgrf_to_reg[inst->dst.nr] + inst->dst.offset / REG_SIZE;
2012 for (unsigned j = 1; j < regs_written(inst); j++)
2013 split_points[reg + j] = false;
2014 }
2015 for (int i = 0; i < inst->sources; i++) {
2016 if (inst->src[i].file == VGRF) {
2017 int reg = vgrf_to_reg[inst->src[i].nr] + inst->src[i].offset / REG_SIZE;
2018 for (unsigned j = 1; j < regs_read(inst, i); j++)
2019 split_points[reg + j] = false;
2020 }
2021 }
2022 }
2023
2024 int *new_virtual_grf = new int[reg_count];
2025 int *new_reg_offset = new int[reg_count];
2026
2027 int reg = 0;
2028 for (int i = 0; i < num_vars; i++) {
2029 /* The first one should always be 0 as a quick sanity check. */
2030 assert(split_points[reg] == false);
2031
2032 /* j = 0 case */
2033 new_reg_offset[reg] = 0;
2034 reg++;
2035 int offset = 1;
2036
2037 /* j > 0 case */
2038 for (unsigned j = 1; j < alloc.sizes[i]; j++) {
2039 /* If this is a split point, reset the offset to 0 and allocate a
2040 * new virtual GRF for the previous offset many registers
2041 */
2042 if (split_points[reg]) {
2043 assert(offset <= MAX_VGRF_SIZE);
2044 int grf = alloc.allocate(offset);
2045 for (int k = reg - offset; k < reg; k++)
2046 new_virtual_grf[k] = grf;
2047 offset = 0;
2048 }
2049 new_reg_offset[reg] = offset;
2050 offset++;
2051 reg++;
2052 }
2053
2054 /* The last one gets the original register number */
2055 assert(offset <= MAX_VGRF_SIZE);
2056 alloc.sizes[i] = offset;
2057 for (int k = reg - offset; k < reg; k++)
2058 new_virtual_grf[k] = i;
2059 }
2060 assert(reg == reg_count);
2061
2062 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
2063 if (inst->opcode == SHADER_OPCODE_UNDEF) {
2064 const fs_builder ibld(this, block, inst);
2065 assert(inst->size_written % REG_SIZE == 0);
2066 unsigned reg_offset = 0;
2067 while (reg_offset < inst->size_written / REG_SIZE) {
2068 reg = vgrf_to_reg[inst->dst.nr] + reg_offset;
2069 ibld.UNDEF(fs_reg(VGRF, new_virtual_grf[reg], inst->dst.type));
2070 reg_offset += alloc.sizes[new_virtual_grf[reg]];
2071 }
2072 inst->remove(block);
2073 continue;
2074 }
2075
2076 if (inst->dst.file == VGRF) {
2077 reg = vgrf_to_reg[inst->dst.nr] + inst->dst.offset / REG_SIZE;
2078 inst->dst.nr = new_virtual_grf[reg];
2079 inst->dst.offset = new_reg_offset[reg] * REG_SIZE +
2080 inst->dst.offset % REG_SIZE;
2081 assert((unsigned)new_reg_offset[reg] < alloc.sizes[new_virtual_grf[reg]]);
2082 }
2083 for (int i = 0; i < inst->sources; i++) {
2084 if (inst->src[i].file == VGRF) {
2085 reg = vgrf_to_reg[inst->src[i].nr] + inst->src[i].offset / REG_SIZE;
2086 inst->src[i].nr = new_virtual_grf[reg];
2087 inst->src[i].offset = new_reg_offset[reg] * REG_SIZE +
2088 inst->src[i].offset % REG_SIZE;
2089 assert((unsigned)new_reg_offset[reg] < alloc.sizes[new_virtual_grf[reg]]);
2090 }
2091 }
2092 }
2093 invalidate_live_intervals();
2094
2095 delete[] split_points;
2096 delete[] new_virtual_grf;
2097 delete[] new_reg_offset;
2098 }
2099
2100 /**
2101 * Remove unused virtual GRFs and compact the virtual_grf_* arrays.
2102 *
2103 * During code generation, we create tons of temporary variables, many of
2104 * which get immediately killed and are never used again. Yet, in later
2105 * optimization and analysis passes, such as compute_live_intervals, we need
2106 * to loop over all the virtual GRFs. Compacting them can save a lot of
2107 * overhead.
2108 */
2109 bool
2110 fs_visitor::compact_virtual_grfs()
2111 {
2112 bool progress = false;
2113 int *remap_table = new int[this->alloc.count];
2114 memset(remap_table, -1, this->alloc.count * sizeof(int));
2115
2116 /* Mark which virtual GRFs are used. */
2117 foreach_block_and_inst(block, const fs_inst, inst, cfg) {
2118 if (inst->dst.file == VGRF)
2119 remap_table[inst->dst.nr] = 0;
2120
2121 for (int i = 0; i < inst->sources; i++) {
2122 if (inst->src[i].file == VGRF)
2123 remap_table[inst->src[i].nr] = 0;
2124 }
2125 }
2126
2127 /* Compact the GRF arrays. */
2128 int new_index = 0;
2129 for (unsigned i = 0; i < this->alloc.count; i++) {
2130 if (remap_table[i] == -1) {
2131 /* We just found an unused register. This means that we are
2132 * actually going to compact something.
2133 */
2134 progress = true;
2135 } else {
2136 remap_table[i] = new_index;
2137 alloc.sizes[new_index] = alloc.sizes[i];
2138 invalidate_live_intervals();
2139 ++new_index;
2140 }
2141 }
2142
2143 this->alloc.count = new_index;
2144
2145 /* Patch all the instructions to use the newly renumbered registers */
2146 foreach_block_and_inst(block, fs_inst, inst, cfg) {
2147 if (inst->dst.file == VGRF)
2148 inst->dst.nr = remap_table[inst->dst.nr];
2149
2150 for (int i = 0; i < inst->sources; i++) {
2151 if (inst->src[i].file == VGRF)
2152 inst->src[i].nr = remap_table[inst->src[i].nr];
2153 }
2154 }
2155
2156 /* Patch all the references to delta_xy, since they're used in register
2157 * allocation. If they're unused, switch them to BAD_FILE so we don't
2158 * think some random VGRF is delta_xy.
2159 */
2160 for (unsigned i = 0; i < ARRAY_SIZE(delta_xy); i++) {
2161 if (delta_xy[i].file == VGRF) {
2162 if (remap_table[delta_xy[i].nr] != -1) {
2163 delta_xy[i].nr = remap_table[delta_xy[i].nr];
2164 } else {
2165 delta_xy[i].file = BAD_FILE;
2166 }
2167 }
2168 }
2169
2170 delete[] remap_table;
2171
2172 return progress;
2173 }
2174
2175 static int
2176 get_subgroup_id_param_index(const brw_stage_prog_data *prog_data)
2177 {
2178 if (prog_data->nr_params == 0)
2179 return -1;
2180
2181 /* The local thread id is always the last parameter in the list */
2182 uint32_t last_param = prog_data->param[prog_data->nr_params - 1];
2183 if (last_param == BRW_PARAM_BUILTIN_SUBGROUP_ID)
2184 return prog_data->nr_params - 1;
2185
2186 return -1;
2187 }
2188
2189 /**
2190 * Struct for handling complex alignments.
2191 *
2192 * A complex alignment is stored as multiplier and an offset. A value is
2193 * considered to be aligned if it is {offset} larger than a multiple of {mul}.
2194 * For instance, with an alignment of {8, 2}, cplx_align_apply would do the
2195 * following:
2196 *
2197 * N | cplx_align_apply({8, 2}, N)
2198 * ----+-----------------------------
2199 * 4 | 6
2200 * 6 | 6
2201 * 8 | 14
2202 * 10 | 14
2203 * 12 | 14
2204 * 14 | 14
2205 * 16 | 22
2206 */
2207 struct cplx_align {
2208 unsigned mul:4;
2209 unsigned offset:4;
2210 };
2211
2212 #define CPLX_ALIGN_MAX_MUL 8
2213
2214 static void
2215 cplx_align_assert_sane(struct cplx_align a)
2216 {
2217 assert(a.mul > 0 && util_is_power_of_two_nonzero(a.mul));
2218 assert(a.offset < a.mul);
2219 }
2220
2221 /**
2222 * Combines two alignments to produce a least multiple of sorts.
2223 *
2224 * The returned alignment is the smallest (in terms of multiplier) such that
2225 * anything aligned to both a and b will be aligned to the new alignment.
2226 * This function will assert-fail if a and b are not compatible, i.e. if the
2227 * offset parameters are such that no common alignment is possible.
2228 */
2229 static struct cplx_align
2230 cplx_align_combine(struct cplx_align a, struct cplx_align b)
2231 {
2232 cplx_align_assert_sane(a);
2233 cplx_align_assert_sane(b);
2234
2235 /* Assert that the alignments agree. */
2236 assert((a.offset & (b.mul - 1)) == (b.offset & (a.mul - 1)));
2237
2238 return a.mul > b.mul ? a : b;
2239 }
2240
2241 /**
2242 * Apply a complex alignment
2243 *
2244 * This function will return the smallest number greater than or equal to
2245 * offset that is aligned to align.
2246 */
2247 static unsigned
2248 cplx_align_apply(struct cplx_align align, unsigned offset)
2249 {
2250 return ALIGN(offset - align.offset, align.mul) + align.offset;
2251 }
2252
2253 #define UNIFORM_SLOT_SIZE 4
2254
2255 struct uniform_slot_info {
2256 /** True if the given uniform slot is live */
2257 unsigned is_live:1;
2258
2259 /** True if this slot and the next slot must remain contiguous */
2260 unsigned contiguous:1;
2261
2262 struct cplx_align align;
2263 };
2264
2265 static void
2266 mark_uniform_slots_read(struct uniform_slot_info *slots,
2267 unsigned num_slots, unsigned alignment)
2268 {
2269 assert(alignment > 0 && util_is_power_of_two_nonzero(alignment));
2270 assert(alignment <= CPLX_ALIGN_MAX_MUL);
2271
2272 /* We can't align a slot to anything less than the slot size */
2273 alignment = MAX2(alignment, UNIFORM_SLOT_SIZE);
2274
2275 struct cplx_align align = {alignment, 0};
2276 cplx_align_assert_sane(align);
2277
2278 for (unsigned i = 0; i < num_slots; i++) {
2279 slots[i].is_live = true;
2280 if (i < num_slots - 1)
2281 slots[i].contiguous = true;
2282
2283 align.offset = (i * UNIFORM_SLOT_SIZE) & (align.mul - 1);
2284 if (slots[i].align.mul == 0) {
2285 slots[i].align = align;
2286 } else {
2287 slots[i].align = cplx_align_combine(slots[i].align, align);
2288 }
2289 }
2290 }
2291
2292 /**
2293 * Assign UNIFORM file registers to either push constants or pull constants.
2294 *
2295 * We allow a fragment shader to have more than the specified minimum
2296 * maximum number of fragment shader uniform components (64). If
2297 * there are too many of these, they'd fill up all of register space.
2298 * So, this will push some of them out to the pull constant buffer and
2299 * update the program to load them.
2300 */
2301 void
2302 fs_visitor::assign_constant_locations()
2303 {
2304 /* Only the first compile gets to decide on locations. */
2305 if (push_constant_loc) {
2306 assert(pull_constant_loc);
2307 return;
2308 }
2309
2310 if (compiler->compact_params) {
2311 struct uniform_slot_info slots[uniforms];
2312 memset(slots, 0, sizeof(slots));
2313
2314 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
2315 for (int i = 0 ; i < inst->sources; i++) {
2316 if (inst->src[i].file != UNIFORM)
2317 continue;
2318
2319 /* NIR tightly packs things so the uniform number might not be
2320 * aligned (if we have a double right after a float, for
2321 * instance). This is fine because the process of re-arranging
2322 * them will ensure that things are properly aligned. The offset
2323 * into that uniform, however, must be aligned.
2324 *
2325 * In Vulkan, we have explicit offsets but everything is crammed
2326 * into a single "variable" so inst->src[i].nr will always be 0.
2327 * Everything will be properly aligned relative to that one base.
2328 */
2329 assert(inst->src[i].offset % type_sz(inst->src[i].type) == 0);
2330
2331 unsigned u = inst->src[i].nr +
2332 inst->src[i].offset / UNIFORM_SLOT_SIZE;
2333
2334 if (u >= uniforms)
2335 continue;
2336
2337 unsigned slots_read;
2338 if (inst->opcode == SHADER_OPCODE_MOV_INDIRECT && i == 0) {
2339 slots_read = DIV_ROUND_UP(inst->src[2].ud, UNIFORM_SLOT_SIZE);
2340 } else {
2341 unsigned bytes_read = inst->components_read(i) *
2342 type_sz(inst->src[i].type);
2343 slots_read = DIV_ROUND_UP(bytes_read, UNIFORM_SLOT_SIZE);
2344 }
2345
2346 assert(u + slots_read <= uniforms);
2347 mark_uniform_slots_read(&slots[u], slots_read,
2348 type_sz(inst->src[i].type));
2349 }
2350 }
2351
2352 int subgroup_id_index = get_subgroup_id_param_index(stage_prog_data);
2353
2354 /* Only allow 16 registers (128 uniform components) as push constants.
2355 *
2356 * Just demote the end of the list. We could probably do better
2357 * here, demoting things that are rarely used in the program first.
2358 *
2359 * If changing this value, note the limitation about total_regs in
2360 * brw_curbe.c.
2361 */
2362 unsigned int max_push_components = 16 * 8;
2363 if (subgroup_id_index >= 0)
2364 max_push_components--; /* Save a slot for the thread ID */
2365
2366 /* We push small arrays, but no bigger than 16 floats. This is big
2367 * enough for a vec4 but hopefully not large enough to push out other
2368 * stuff. We should probably use a better heuristic at some point.
2369 */
2370 const unsigned int max_chunk_size = 16;
2371
2372 unsigned int num_push_constants = 0;
2373 unsigned int num_pull_constants = 0;
2374
2375 push_constant_loc = ralloc_array(mem_ctx, int, uniforms);
2376 pull_constant_loc = ralloc_array(mem_ctx, int, uniforms);
2377
2378 /* Default to -1 meaning no location */
2379 memset(push_constant_loc, -1, uniforms * sizeof(*push_constant_loc));
2380 memset(pull_constant_loc, -1, uniforms * sizeof(*pull_constant_loc));
2381
2382 int chunk_start = -1;
2383 struct cplx_align align;
2384 for (unsigned u = 0; u < uniforms; u++) {
2385 if (!slots[u].is_live) {
2386 assert(chunk_start == -1);
2387 continue;
2388 }
2389
2390 /* Skip subgroup_id_index to put it in the last push register. */
2391 if (subgroup_id_index == (int)u)
2392 continue;
2393
2394 if (chunk_start == -1) {
2395 chunk_start = u;
2396 align = slots[u].align;
2397 } else {
2398 /* Offset into the chunk */
2399 unsigned chunk_offset = (u - chunk_start) * UNIFORM_SLOT_SIZE;
2400
2401 /* Shift the slot alignment down by the chunk offset so it is
2402 * comparable with the base chunk alignment.
2403 */
2404 struct cplx_align slot_align = slots[u].align;
2405 slot_align.offset =
2406 (slot_align.offset - chunk_offset) & (align.mul - 1);
2407
2408 align = cplx_align_combine(align, slot_align);
2409 }
2410
2411 /* Sanity check the alignment */
2412 cplx_align_assert_sane(align);
2413
2414 if (slots[u].contiguous)
2415 continue;
2416
2417 /* Adjust the alignment to be in terms of slots, not bytes */
2418 assert((align.mul & (UNIFORM_SLOT_SIZE - 1)) == 0);
2419 assert((align.offset & (UNIFORM_SLOT_SIZE - 1)) == 0);
2420 align.mul /= UNIFORM_SLOT_SIZE;
2421 align.offset /= UNIFORM_SLOT_SIZE;
2422
2423 unsigned push_start_align = cplx_align_apply(align, num_push_constants);
2424 unsigned chunk_size = u - chunk_start + 1;
2425 if ((!compiler->supports_pull_constants && u < UBO_START) ||
2426 (chunk_size < max_chunk_size &&
2427 push_start_align + chunk_size <= max_push_components)) {
2428 /* Align up the number of push constants */
2429 num_push_constants = push_start_align;
2430 for (unsigned i = 0; i < chunk_size; i++)
2431 push_constant_loc[chunk_start + i] = num_push_constants++;
2432 } else {
2433 /* We need to pull this one */
2434 num_pull_constants = cplx_align_apply(align, num_pull_constants);
2435 for (unsigned i = 0; i < chunk_size; i++)
2436 pull_constant_loc[chunk_start + i] = num_pull_constants++;
2437 }
2438
2439 /* Reset the chunk and start again */
2440 chunk_start = -1;
2441 }
2442
2443 /* Add the CS local thread ID uniform at the end of the push constants */
2444 if (subgroup_id_index >= 0)
2445 push_constant_loc[subgroup_id_index] = num_push_constants++;
2446
2447 /* As the uniforms are going to be reordered, stash the old array and
2448 * create two new arrays for push/pull params.
2449 */
2450 uint32_t *param = stage_prog_data->param;
2451 stage_prog_data->nr_params = num_push_constants;
2452 if (num_push_constants) {
2453 stage_prog_data->param = rzalloc_array(mem_ctx, uint32_t,
2454 num_push_constants);
2455 } else {
2456 stage_prog_data->param = NULL;
2457 }
2458 assert(stage_prog_data->nr_pull_params == 0);
2459 assert(stage_prog_data->pull_param == NULL);
2460 if (num_pull_constants > 0) {
2461 stage_prog_data->nr_pull_params = num_pull_constants;
2462 stage_prog_data->pull_param = rzalloc_array(mem_ctx, uint32_t,
2463 num_pull_constants);
2464 }
2465
2466 /* Up until now, the param[] array has been indexed by reg + offset
2467 * of UNIFORM registers. Move pull constants into pull_param[] and
2468 * condense param[] to only contain the uniforms we chose to push.
2469 *
2470 * NOTE: Because we are condensing the params[] array, we know that
2471 * push_constant_loc[i] <= i and we can do it in one smooth loop without
2472 * having to make a copy.
2473 */
2474 for (unsigned int i = 0; i < uniforms; i++) {
2475 uint32_t value = param[i];
2476 if (pull_constant_loc[i] != -1) {
2477 stage_prog_data->pull_param[pull_constant_loc[i]] = value;
2478 } else if (push_constant_loc[i] != -1) {
2479 stage_prog_data->param[push_constant_loc[i]] = value;
2480 }
2481 }
2482 ralloc_free(param);
2483 } else {
2484 /* If we don't want to compact anything, just set up dummy push/pull
2485 * arrays. All the rest of the compiler cares about are these arrays.
2486 */
2487 push_constant_loc = ralloc_array(mem_ctx, int, uniforms);
2488 pull_constant_loc = ralloc_array(mem_ctx, int, uniforms);
2489
2490 for (unsigned u = 0; u < uniforms; u++)
2491 push_constant_loc[u] = u;
2492
2493 memset(pull_constant_loc, -1, uniforms * sizeof(*pull_constant_loc));
2494 }
2495
2496 /* Now that we know how many regular uniforms we'll push, reduce the
2497 * UBO push ranges so we don't exceed the 3DSTATE_CONSTANT limits.
2498 */
2499 unsigned push_length = DIV_ROUND_UP(stage_prog_data->nr_params, 8);
2500 for (int i = 0; i < 4; i++) {
2501 struct brw_ubo_range *range = &prog_data->ubo_ranges[i];
2502
2503 if (push_length + range->length > 64)
2504 range->length = 64 - push_length;
2505
2506 push_length += range->length;
2507 }
2508 assert(push_length <= 64);
2509 }
2510
2511 bool
2512 fs_visitor::get_pull_locs(const fs_reg &src,
2513 unsigned *out_surf_index,
2514 unsigned *out_pull_index)
2515 {
2516 assert(src.file == UNIFORM);
2517
2518 if (src.nr >= UBO_START) {
2519 const struct brw_ubo_range *range =
2520 &prog_data->ubo_ranges[src.nr - UBO_START];
2521
2522 /* If this access is in our (reduced) range, use the push data. */
2523 if (src.offset / 32 < range->length)
2524 return false;
2525
2526 *out_surf_index = prog_data->binding_table.ubo_start + range->block;
2527 *out_pull_index = (32 * range->start + src.offset) / 4;
2528
2529 prog_data->has_ubo_pull = true;
2530 return true;
2531 }
2532
2533 const unsigned location = src.nr + src.offset / 4;
2534
2535 if (location < uniforms && pull_constant_loc[location] != -1) {
2536 /* A regular uniform push constant */
2537 *out_surf_index = stage_prog_data->binding_table.pull_constants_start;
2538 *out_pull_index = pull_constant_loc[location];
2539
2540 prog_data->has_ubo_pull = true;
2541 return true;
2542 }
2543
2544 return false;
2545 }
2546
2547 /**
2548 * Replace UNIFORM register file access with either UNIFORM_PULL_CONSTANT_LOAD
2549 * or VARYING_PULL_CONSTANT_LOAD instructions which load values into VGRFs.
2550 */
2551 void
2552 fs_visitor::lower_constant_loads()
2553 {
2554 unsigned index, pull_index;
2555
2556 foreach_block_and_inst_safe (block, fs_inst, inst, cfg) {
2557 /* Set up the annotation tracking for new generated instructions. */
2558 const fs_builder ibld(this, block, inst);
2559
2560 for (int i = 0; i < inst->sources; i++) {
2561 if (inst->src[i].file != UNIFORM)
2562 continue;
2563
2564 /* We'll handle this case later */
2565 if (inst->opcode == SHADER_OPCODE_MOV_INDIRECT && i == 0)
2566 continue;
2567
2568 if (!get_pull_locs(inst->src[i], &index, &pull_index))
2569 continue;
2570
2571 assert(inst->src[i].stride == 0);
2572
2573 const unsigned block_sz = 64; /* Fetch one cacheline at a time. */
2574 const fs_builder ubld = ibld.exec_all().group(block_sz / 4, 0);
2575 const fs_reg dst = ubld.vgrf(BRW_REGISTER_TYPE_UD);
2576 const unsigned base = pull_index * 4;
2577
2578 ubld.emit(FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD,
2579 dst, brw_imm_ud(index), brw_imm_ud(base & ~(block_sz - 1)));
2580
2581 /* Rewrite the instruction to use the temporary VGRF. */
2582 inst->src[i].file = VGRF;
2583 inst->src[i].nr = dst.nr;
2584 inst->src[i].offset = (base & (block_sz - 1)) +
2585 inst->src[i].offset % 4;
2586 }
2587
2588 if (inst->opcode == SHADER_OPCODE_MOV_INDIRECT &&
2589 inst->src[0].file == UNIFORM) {
2590
2591 if (!get_pull_locs(inst->src[0], &index, &pull_index))
2592 continue;
2593
2594 VARYING_PULL_CONSTANT_LOAD(ibld, inst->dst,
2595 brw_imm_ud(index),
2596 inst->src[1],
2597 pull_index * 4);
2598 inst->remove(block);
2599 }
2600 }
2601 invalidate_live_intervals();
2602 }
2603
2604 bool
2605 fs_visitor::opt_algebraic()
2606 {
2607 bool progress = false;
2608
2609 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
2610 switch (inst->opcode) {
2611 case BRW_OPCODE_MOV:
2612 if (!devinfo->has_64bit_types &&
2613 (inst->dst.type == BRW_REGISTER_TYPE_DF ||
2614 inst->dst.type == BRW_REGISTER_TYPE_UQ ||
2615 inst->dst.type == BRW_REGISTER_TYPE_Q)) {
2616 assert(inst->dst.type == inst->src[0].type);
2617 assert(!inst->saturate);
2618 assert(!inst->src[0].abs);
2619 assert(!inst->src[0].negate);
2620 const brw::fs_builder ibld(this, block, inst);
2621
2622 if (inst->src[0].file == IMM) {
2623 ibld.MOV(subscript(inst->dst, BRW_REGISTER_TYPE_UD, 1),
2624 brw_imm_ud(inst->src[0].u64 >> 32));
2625 ibld.MOV(subscript(inst->dst, BRW_REGISTER_TYPE_UD, 0),
2626 brw_imm_ud(inst->src[0].u64));
2627 } else {
2628 ibld.MOV(subscript(inst->dst, BRW_REGISTER_TYPE_UD, 1),
2629 subscript(inst->src[0], BRW_REGISTER_TYPE_UD, 1));
2630 ibld.MOV(subscript(inst->dst, BRW_REGISTER_TYPE_UD, 0),
2631 subscript(inst->src[0], BRW_REGISTER_TYPE_UD, 0));
2632 }
2633
2634 inst->remove(block);
2635 progress = true;
2636 }
2637
2638 if ((inst->conditional_mod == BRW_CONDITIONAL_Z ||
2639 inst->conditional_mod == BRW_CONDITIONAL_NZ) &&
2640 inst->dst.is_null() &&
2641 (inst->src[0].abs || inst->src[0].negate)) {
2642 inst->src[0].abs = false;
2643 inst->src[0].negate = false;
2644 progress = true;
2645 break;
2646 }
2647
2648 if (inst->src[0].file != IMM)
2649 break;
2650
2651 if (inst->saturate) {
2652 /* Full mixed-type saturates don't happen. However, we can end up
2653 * with things like:
2654 *
2655 * mov.sat(8) g21<1>DF -1F
2656 *
2657 * Other mixed-size-but-same-base-type cases may also be possible.
2658 */
2659 if (inst->dst.type != inst->src[0].type &&
2660 inst->dst.type != BRW_REGISTER_TYPE_DF &&
2661 inst->src[0].type != BRW_REGISTER_TYPE_F)
2662 assert(!"unimplemented: saturate mixed types");
2663
2664 if (brw_saturate_immediate(inst->src[0].type,
2665 &inst->src[0].as_brw_reg())) {
2666 inst->saturate = false;
2667 progress = true;
2668 }
2669 }
2670 break;
2671
2672 case BRW_OPCODE_MUL:
2673 if (inst->src[1].file != IMM)
2674 continue;
2675
2676 /* a * 1.0 = a */
2677 if (inst->src[1].is_one()) {
2678 inst->opcode = BRW_OPCODE_MOV;
2679 inst->src[1] = reg_undef;
2680 progress = true;
2681 break;
2682 }
2683
2684 /* a * -1.0 = -a */
2685 if (inst->src[1].is_negative_one()) {
2686 inst->opcode = BRW_OPCODE_MOV;
2687 inst->src[0].negate = !inst->src[0].negate;
2688 inst->src[1] = reg_undef;
2689 progress = true;
2690 break;
2691 }
2692
2693 if (inst->src[0].file == IMM) {
2694 assert(inst->src[0].type == BRW_REGISTER_TYPE_F);
2695 inst->opcode = BRW_OPCODE_MOV;
2696 inst->src[0].f *= inst->src[1].f;
2697 inst->src[1] = reg_undef;
2698 progress = true;
2699 break;
2700 }
2701 break;
2702 case BRW_OPCODE_ADD:
2703 if (inst->src[1].file != IMM)
2704 continue;
2705
2706 if (inst->src[0].file == IMM) {
2707 assert(inst->src[0].type == BRW_REGISTER_TYPE_F);
2708 inst->opcode = BRW_OPCODE_MOV;
2709 inst->src[0].f += inst->src[1].f;
2710 inst->src[1] = reg_undef;
2711 progress = true;
2712 break;
2713 }
2714 break;
2715 case BRW_OPCODE_OR:
2716 if (inst->src[0].equals(inst->src[1]) ||
2717 inst->src[1].is_zero()) {
2718 /* On Gen8+, the OR instruction can have a source modifier that
2719 * performs logical not on the operand. Cases of 'OR r0, ~r1, 0'
2720 * or 'OR r0, ~r1, ~r1' should become a NOT instead of a MOV.
2721 */
2722 if (inst->src[0].negate) {
2723 inst->opcode = BRW_OPCODE_NOT;
2724 inst->src[0].negate = false;
2725 } else {
2726 inst->opcode = BRW_OPCODE_MOV;
2727 }
2728 inst->src[1] = reg_undef;
2729 progress = true;
2730 break;
2731 }
2732 break;
2733 case BRW_OPCODE_CMP:
2734 if ((inst->conditional_mod == BRW_CONDITIONAL_Z ||
2735 inst->conditional_mod == BRW_CONDITIONAL_NZ) &&
2736 inst->src[1].is_zero() &&
2737 (inst->src[0].abs || inst->src[0].negate)) {
2738 inst->src[0].abs = false;
2739 inst->src[0].negate = false;
2740 progress = true;
2741 break;
2742 }
2743 break;
2744 case BRW_OPCODE_SEL:
2745 if (!devinfo->has_64bit_types &&
2746 (inst->dst.type == BRW_REGISTER_TYPE_DF ||
2747 inst->dst.type == BRW_REGISTER_TYPE_UQ ||
2748 inst->dst.type == BRW_REGISTER_TYPE_Q)) {
2749 assert(inst->dst.type == inst->src[0].type);
2750 assert(!inst->saturate);
2751 assert(!inst->src[0].abs && !inst->src[0].negate);
2752 assert(!inst->src[1].abs && !inst->src[1].negate);
2753 const brw::fs_builder ibld(this, block, inst);
2754
2755 set_predicate(inst->predicate,
2756 ibld.SEL(subscript(inst->dst, BRW_REGISTER_TYPE_UD, 0),
2757 subscript(inst->src[0], BRW_REGISTER_TYPE_UD, 0),
2758 subscript(inst->src[1], BRW_REGISTER_TYPE_UD, 0)));
2759 set_predicate(inst->predicate,
2760 ibld.SEL(subscript(inst->dst, BRW_REGISTER_TYPE_UD, 1),
2761 subscript(inst->src[0], BRW_REGISTER_TYPE_UD, 1),
2762 subscript(inst->src[1], BRW_REGISTER_TYPE_UD, 1)));
2763
2764 inst->remove(block);
2765 progress = true;
2766 }
2767 if (inst->src[0].equals(inst->src[1])) {
2768 inst->opcode = BRW_OPCODE_MOV;
2769 inst->src[1] = reg_undef;
2770 inst->predicate = BRW_PREDICATE_NONE;
2771 inst->predicate_inverse = false;
2772 progress = true;
2773 } else if (inst->saturate && inst->src[1].file == IMM) {
2774 switch (inst->conditional_mod) {
2775 case BRW_CONDITIONAL_LE:
2776 case BRW_CONDITIONAL_L:
2777 switch (inst->src[1].type) {
2778 case BRW_REGISTER_TYPE_F:
2779 if (inst->src[1].f >= 1.0f) {
2780 inst->opcode = BRW_OPCODE_MOV;
2781 inst->src[1] = reg_undef;
2782 inst->conditional_mod = BRW_CONDITIONAL_NONE;
2783 progress = true;
2784 }
2785 break;
2786 default:
2787 break;
2788 }
2789 break;
2790 case BRW_CONDITIONAL_GE:
2791 case BRW_CONDITIONAL_G:
2792 switch (inst->src[1].type) {
2793 case BRW_REGISTER_TYPE_F:
2794 if (inst->src[1].f <= 0.0f) {
2795 inst->opcode = BRW_OPCODE_MOV;
2796 inst->src[1] = reg_undef;
2797 inst->conditional_mod = BRW_CONDITIONAL_NONE;
2798 progress = true;
2799 }
2800 break;
2801 default:
2802 break;
2803 }
2804 default:
2805 break;
2806 }
2807 }
2808 break;
2809 case BRW_OPCODE_MAD:
2810 if (inst->src[0].type != BRW_REGISTER_TYPE_F ||
2811 inst->src[1].type != BRW_REGISTER_TYPE_F ||
2812 inst->src[2].type != BRW_REGISTER_TYPE_F)
2813 break;
2814 if (inst->src[1].is_one()) {
2815 inst->opcode = BRW_OPCODE_ADD;
2816 inst->src[1] = inst->src[2];
2817 inst->src[2] = reg_undef;
2818 progress = true;
2819 } else if (inst->src[2].is_one()) {
2820 inst->opcode = BRW_OPCODE_ADD;
2821 inst->src[2] = reg_undef;
2822 progress = true;
2823 }
2824 break;
2825 case SHADER_OPCODE_BROADCAST:
2826 if (is_uniform(inst->src[0])) {
2827 inst->opcode = BRW_OPCODE_MOV;
2828 inst->sources = 1;
2829 inst->force_writemask_all = true;
2830 progress = true;
2831 } else if (inst->src[1].file == IMM) {
2832 inst->opcode = BRW_OPCODE_MOV;
2833 /* It's possible that the selected component will be too large and
2834 * overflow the register. This can happen if someone does a
2835 * readInvocation() from GLSL or SPIR-V and provides an OOB
2836 * invocationIndex. If this happens and we some how manage
2837 * to constant fold it in and get here, then component() may cause
2838 * us to start reading outside of the VGRF which will lead to an
2839 * assert later. Instead, just let it wrap around if it goes over
2840 * exec_size.
2841 */
2842 const unsigned comp = inst->src[1].ud & (inst->exec_size - 1);
2843 inst->src[0] = component(inst->src[0], comp);
2844 inst->sources = 1;
2845 inst->force_writemask_all = true;
2846 progress = true;
2847 }
2848 break;
2849
2850 case SHADER_OPCODE_SHUFFLE:
2851 if (is_uniform(inst->src[0])) {
2852 inst->opcode = BRW_OPCODE_MOV;
2853 inst->sources = 1;
2854 progress = true;
2855 } else if (inst->src[1].file == IMM) {
2856 inst->opcode = BRW_OPCODE_MOV;
2857 inst->src[0] = component(inst->src[0],
2858 inst->src[1].ud);
2859 inst->sources = 1;
2860 progress = true;
2861 }
2862 break;
2863
2864 default:
2865 break;
2866 }
2867
2868 /* Swap if src[0] is immediate. */
2869 if (progress && inst->is_commutative()) {
2870 if (inst->src[0].file == IMM) {
2871 fs_reg tmp = inst->src[1];
2872 inst->src[1] = inst->src[0];
2873 inst->src[0] = tmp;
2874 }
2875 }
2876 }
2877 return progress;
2878 }
2879
2880 /**
2881 * Optimize sample messages that have constant zero values for the trailing
2882 * texture coordinates. We can just reduce the message length for these
2883 * instructions instead of reserving a register for it. Trailing parameters
2884 * that aren't sent default to zero anyway. This will cause the dead code
2885 * eliminator to remove the MOV instruction that would otherwise be emitted to
2886 * set up the zero value.
2887 */
2888 bool
2889 fs_visitor::opt_zero_samples()
2890 {
2891 /* Gen4 infers the texturing opcode based on the message length so we can't
2892 * change it.
2893 */
2894 if (devinfo->gen < 5)
2895 return false;
2896
2897 bool progress = false;
2898
2899 foreach_block_and_inst(block, fs_inst, inst, cfg) {
2900 if (!inst->is_tex())
2901 continue;
2902
2903 fs_inst *load_payload = (fs_inst *) inst->prev;
2904
2905 if (load_payload->is_head_sentinel() ||
2906 load_payload->opcode != SHADER_OPCODE_LOAD_PAYLOAD)
2907 continue;
2908
2909 /* We don't want to remove the message header or the first parameter.
2910 * Removing the first parameter is not allowed, see the Haswell PRM
2911 * volume 7, page 149:
2912 *
2913 * "Parameter 0 is required except for the sampleinfo message, which
2914 * has no parameter 0"
2915 */
2916 while (inst->mlen > inst->header_size + inst->exec_size / 8 &&
2917 load_payload->src[(inst->mlen - inst->header_size) /
2918 (inst->exec_size / 8) +
2919 inst->header_size - 1].is_zero()) {
2920 inst->mlen -= inst->exec_size / 8;
2921 progress = true;
2922 }
2923 }
2924
2925 if (progress)
2926 invalidate_live_intervals();
2927
2928 return progress;
2929 }
2930
2931 /**
2932 * Optimize sample messages which are followed by the final RT write.
2933 *
2934 * CHV, and GEN9+ can mark a texturing SEND instruction with EOT to have its
2935 * results sent directly to the framebuffer, bypassing the EU. Recognize the
2936 * final texturing results copied to the framebuffer write payload and modify
2937 * them to write to the framebuffer directly.
2938 */
2939 bool
2940 fs_visitor::opt_sampler_eot()
2941 {
2942 brw_wm_prog_key *key = (brw_wm_prog_key*) this->key;
2943
2944 if (stage != MESA_SHADER_FRAGMENT || dispatch_width > 16)
2945 return false;
2946
2947 if (devinfo->gen != 9 && !devinfo->is_cherryview)
2948 return false;
2949
2950 /* FINISHME: It should be possible to implement this optimization when there
2951 * are multiple drawbuffers.
2952 */
2953 if (key->nr_color_regions != 1)
2954 return false;
2955
2956 /* Requires emitting a bunch of saturating MOV instructions during logical
2957 * send lowering to clamp the color payload, which the sampler unit isn't
2958 * going to do for us.
2959 */
2960 if (key->clamp_fragment_color)
2961 return false;
2962
2963 /* Look for a texturing instruction immediately before the final FB_WRITE. */
2964 bblock_t *block = cfg->blocks[cfg->num_blocks - 1];
2965 fs_inst *fb_write = (fs_inst *)block->end();
2966 assert(fb_write->eot);
2967 assert(fb_write->opcode == FS_OPCODE_FB_WRITE_LOGICAL);
2968
2969 /* There wasn't one; nothing to do. */
2970 if (unlikely(fb_write->prev->is_head_sentinel()))
2971 return false;
2972
2973 fs_inst *tex_inst = (fs_inst *) fb_write->prev;
2974
2975 /* 3D Sampler » Messages » Message Format
2976 *
2977 * “Response Length of zero is allowed on all SIMD8* and SIMD16* sampler
2978 * messages except sample+killpix, resinfo, sampleinfo, LOD, and gather4*”
2979 */
2980 if (tex_inst->opcode != SHADER_OPCODE_TEX_LOGICAL &&
2981 tex_inst->opcode != SHADER_OPCODE_TXD_LOGICAL &&
2982 tex_inst->opcode != SHADER_OPCODE_TXF_LOGICAL &&
2983 tex_inst->opcode != SHADER_OPCODE_TXL_LOGICAL &&
2984 tex_inst->opcode != FS_OPCODE_TXB_LOGICAL &&
2985 tex_inst->opcode != SHADER_OPCODE_TXF_CMS_LOGICAL &&
2986 tex_inst->opcode != SHADER_OPCODE_TXF_CMS_W_LOGICAL &&
2987 tex_inst->opcode != SHADER_OPCODE_TXF_UMS_LOGICAL)
2988 return false;
2989
2990 /* XXX - This shouldn't be necessary. */
2991 if (tex_inst->prev->is_head_sentinel())
2992 return false;
2993
2994 /* Check that the FB write sources are fully initialized by the single
2995 * texturing instruction.
2996 */
2997 for (unsigned i = 0; i < FB_WRITE_LOGICAL_NUM_SRCS; i++) {
2998 if (i == FB_WRITE_LOGICAL_SRC_COLOR0) {
2999 if (!fb_write->src[i].equals(tex_inst->dst) ||
3000 fb_write->size_read(i) != tex_inst->size_written)
3001 return false;
3002 } else if (i != FB_WRITE_LOGICAL_SRC_COMPONENTS) {
3003 if (fb_write->src[i].file != BAD_FILE)
3004 return false;
3005 }
3006 }
3007
3008 assert(!tex_inst->eot); /* We can't get here twice */
3009 assert((tex_inst->offset & (0xff << 24)) == 0);
3010
3011 const fs_builder ibld(this, block, tex_inst);
3012
3013 tex_inst->offset |= fb_write->target << 24;
3014 tex_inst->eot = true;
3015 tex_inst->dst = ibld.null_reg_ud();
3016 tex_inst->size_written = 0;
3017 fb_write->remove(cfg->blocks[cfg->num_blocks - 1]);
3018
3019 /* Marking EOT is sufficient, lower_logical_sends() will notice the EOT
3020 * flag and submit a header together with the sampler message as required
3021 * by the hardware.
3022 */
3023 invalidate_live_intervals();
3024 return true;
3025 }
3026
3027 bool
3028 fs_visitor::opt_register_renaming()
3029 {
3030 bool progress = false;
3031 int depth = 0;
3032
3033 unsigned remap[alloc.count];
3034 memset(remap, ~0u, sizeof(unsigned) * alloc.count);
3035
3036 foreach_block_and_inst(block, fs_inst, inst, cfg) {
3037 if (inst->opcode == BRW_OPCODE_IF || inst->opcode == BRW_OPCODE_DO) {
3038 depth++;
3039 } else if (inst->opcode == BRW_OPCODE_ENDIF ||
3040 inst->opcode == BRW_OPCODE_WHILE) {
3041 depth--;
3042 }
3043
3044 /* Rewrite instruction sources. */
3045 for (int i = 0; i < inst->sources; i++) {
3046 if (inst->src[i].file == VGRF &&
3047 remap[inst->src[i].nr] != ~0u &&
3048 remap[inst->src[i].nr] != inst->src[i].nr) {
3049 inst->src[i].nr = remap[inst->src[i].nr];
3050 progress = true;
3051 }
3052 }
3053
3054 const unsigned dst = inst->dst.nr;
3055
3056 if (depth == 0 &&
3057 inst->dst.file == VGRF &&
3058 alloc.sizes[inst->dst.nr] * REG_SIZE == inst->size_written &&
3059 !inst->is_partial_write()) {
3060 if (remap[dst] == ~0u) {
3061 remap[dst] = dst;
3062 } else {
3063 remap[dst] = alloc.allocate(regs_written(inst));
3064 inst->dst.nr = remap[dst];
3065 progress = true;
3066 }
3067 } else if (inst->dst.file == VGRF &&
3068 remap[dst] != ~0u &&
3069 remap[dst] != dst) {
3070 inst->dst.nr = remap[dst];
3071 progress = true;
3072 }
3073 }
3074
3075 if (progress) {
3076 invalidate_live_intervals();
3077
3078 for (unsigned i = 0; i < ARRAY_SIZE(delta_xy); i++) {
3079 if (delta_xy[i].file == VGRF && remap[delta_xy[i].nr] != ~0u) {
3080 delta_xy[i].nr = remap[delta_xy[i].nr];
3081 }
3082 }
3083 }
3084
3085 return progress;
3086 }
3087
3088 /**
3089 * Remove redundant or useless discard jumps.
3090 *
3091 * For example, we can eliminate jumps in the following sequence:
3092 *
3093 * discard-jump (redundant with the next jump)
3094 * discard-jump (useless; jumps to the next instruction)
3095 * placeholder-halt
3096 */
3097 bool
3098 fs_visitor::opt_redundant_discard_jumps()
3099 {
3100 bool progress = false;
3101
3102 bblock_t *last_bblock = cfg->blocks[cfg->num_blocks - 1];
3103
3104 fs_inst *placeholder_halt = NULL;
3105 foreach_inst_in_block_reverse(fs_inst, inst, last_bblock) {
3106 if (inst->opcode == FS_OPCODE_PLACEHOLDER_HALT) {
3107 placeholder_halt = inst;
3108 break;
3109 }
3110 }
3111
3112 if (!placeholder_halt)
3113 return false;
3114
3115 /* Delete any HALTs immediately before the placeholder halt. */
3116 for (fs_inst *prev = (fs_inst *) placeholder_halt->prev;
3117 !prev->is_head_sentinel() && prev->opcode == FS_OPCODE_DISCARD_JUMP;
3118 prev = (fs_inst *) placeholder_halt->prev) {
3119 prev->remove(last_bblock);
3120 progress = true;
3121 }
3122
3123 if (progress)
3124 invalidate_live_intervals();
3125
3126 return progress;
3127 }
3128
3129 /**
3130 * Compute a bitmask with GRF granularity with a bit set for each GRF starting
3131 * from \p r.offset which overlaps the region starting at \p s.offset and
3132 * spanning \p ds bytes.
3133 */
3134 static inline unsigned
3135 mask_relative_to(const fs_reg &r, const fs_reg &s, unsigned ds)
3136 {
3137 const int rel_offset = reg_offset(s) - reg_offset(r);
3138 const int shift = rel_offset / REG_SIZE;
3139 const unsigned n = DIV_ROUND_UP(rel_offset % REG_SIZE + ds, REG_SIZE);
3140 assert(reg_space(r) == reg_space(s) &&
3141 shift >= 0 && shift < int(8 * sizeof(unsigned)));
3142 return ((1 << n) - 1) << shift;
3143 }
3144
3145 bool
3146 fs_visitor::opt_peephole_csel()
3147 {
3148 if (devinfo->gen < 8)
3149 return false;
3150
3151 bool progress = false;
3152
3153 foreach_block_reverse(block, cfg) {
3154 int ip = block->end_ip + 1;
3155
3156 foreach_inst_in_block_reverse_safe(fs_inst, inst, block) {
3157 ip--;
3158
3159 if (inst->opcode != BRW_OPCODE_SEL ||
3160 inst->predicate != BRW_PREDICATE_NORMAL ||
3161 (inst->dst.type != BRW_REGISTER_TYPE_F &&
3162 inst->dst.type != BRW_REGISTER_TYPE_D &&
3163 inst->dst.type != BRW_REGISTER_TYPE_UD))
3164 continue;
3165
3166 /* Because it is a 3-src instruction, CSEL cannot have an immediate
3167 * value as a source, but we can sometimes handle zero.
3168 */
3169 if ((inst->src[0].file != VGRF && inst->src[0].file != ATTR &&
3170 inst->src[0].file != UNIFORM) ||
3171 (inst->src[1].file != VGRF && inst->src[1].file != ATTR &&
3172 inst->src[1].file != UNIFORM && !inst->src[1].is_zero()))
3173 continue;
3174
3175 foreach_inst_in_block_reverse_starting_from(fs_inst, scan_inst, inst) {
3176 if (!scan_inst->flags_written())
3177 continue;
3178
3179 if ((scan_inst->opcode != BRW_OPCODE_CMP &&
3180 scan_inst->opcode != BRW_OPCODE_MOV) ||
3181 scan_inst->predicate != BRW_PREDICATE_NONE ||
3182 (scan_inst->src[0].file != VGRF &&
3183 scan_inst->src[0].file != ATTR &&
3184 scan_inst->src[0].file != UNIFORM) ||
3185 scan_inst->src[0].type != BRW_REGISTER_TYPE_F)
3186 break;
3187
3188 if (scan_inst->opcode == BRW_OPCODE_CMP && !scan_inst->src[1].is_zero())
3189 break;
3190
3191 const brw::fs_builder ibld(this, block, inst);
3192
3193 const enum brw_conditional_mod cond =
3194 inst->predicate_inverse
3195 ? brw_negate_cmod(scan_inst->conditional_mod)
3196 : scan_inst->conditional_mod;
3197
3198 fs_inst *csel_inst = NULL;
3199
3200 if (inst->src[1].file != IMM) {
3201 csel_inst = ibld.CSEL(inst->dst,
3202 inst->src[0],
3203 inst->src[1],
3204 scan_inst->src[0],
3205 cond);
3206 } else if (cond == BRW_CONDITIONAL_NZ) {
3207 /* Consider the sequence
3208 *
3209 * cmp.nz.f0 null<1>F g3<8,8,1>F 0F
3210 * (+f0) sel g124<1>UD g2<8,8,1>UD 0x00000000UD
3211 *
3212 * The sel will pick the immediate value 0 if r0 is ±0.0.
3213 * Therefore, this sequence is equivalent:
3214 *
3215 * cmp.nz.f0 null<1>F g3<8,8,1>F 0F
3216 * (+f0) sel g124<1>F g2<8,8,1>F (abs)g3<8,8,1>F
3217 *
3218 * The abs is ensures that the result is 0UD when g3 is -0.0F.
3219 * By normal cmp-sel merging, this is also equivalent:
3220 *
3221 * csel.nz g124<1>F g2<4,4,1>F (abs)g3<4,4,1>F g3<4,4,1>F
3222 */
3223 csel_inst = ibld.CSEL(inst->dst,
3224 inst->src[0],
3225 scan_inst->src[0],
3226 scan_inst->src[0],
3227 cond);
3228
3229 csel_inst->src[1].abs = true;
3230 }
3231
3232 if (csel_inst != NULL) {
3233 progress = true;
3234 csel_inst->saturate = inst->saturate;
3235 inst->remove(block);
3236 }
3237
3238 break;
3239 }
3240 }
3241 }
3242
3243 return progress;
3244 }
3245
3246 bool
3247 fs_visitor::compute_to_mrf()
3248 {
3249 bool progress = false;
3250 int next_ip = 0;
3251
3252 /* No MRFs on Gen >= 7. */
3253 if (devinfo->gen >= 7)
3254 return false;
3255
3256 calculate_live_intervals();
3257
3258 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
3259 int ip = next_ip;
3260 next_ip++;
3261
3262 if (inst->opcode != BRW_OPCODE_MOV ||
3263 inst->is_partial_write() ||
3264 inst->dst.file != MRF || inst->src[0].file != VGRF ||
3265 inst->dst.type != inst->src[0].type ||
3266 inst->src[0].abs || inst->src[0].negate ||
3267 !inst->src[0].is_contiguous() ||
3268 inst->src[0].offset % REG_SIZE != 0)
3269 continue;
3270
3271 /* Can't compute-to-MRF this GRF if someone else was going to
3272 * read it later.
3273 */
3274 if (this->virtual_grf_end[inst->src[0].nr] > ip)
3275 continue;
3276
3277 /* Found a move of a GRF to a MRF. Let's see if we can go rewrite the
3278 * things that computed the value of all GRFs of the source region. The
3279 * regs_left bitset keeps track of the registers we haven't yet found a
3280 * generating instruction for.
3281 */
3282 unsigned regs_left = (1 << regs_read(inst, 0)) - 1;
3283
3284 foreach_inst_in_block_reverse_starting_from(fs_inst, scan_inst, inst) {
3285 if (regions_overlap(scan_inst->dst, scan_inst->size_written,
3286 inst->src[0], inst->size_read(0))) {
3287 /* Found the last thing to write our reg we want to turn
3288 * into a compute-to-MRF.
3289 */
3290
3291 /* If this one instruction didn't populate all the
3292 * channels, bail. We might be able to rewrite everything
3293 * that writes that reg, but it would require smarter
3294 * tracking.
3295 */
3296 if (scan_inst->is_partial_write())
3297 break;
3298
3299 /* Handling things not fully contained in the source of the copy
3300 * would need us to understand coalescing out more than one MOV at
3301 * a time.
3302 */
3303 if (!region_contained_in(scan_inst->dst, scan_inst->size_written,
3304 inst->src[0], inst->size_read(0)))
3305 break;
3306
3307 /* SEND instructions can't have MRF as a destination. */
3308 if (scan_inst->mlen)
3309 break;
3310
3311 if (devinfo->gen == 6) {
3312 /* gen6 math instructions must have the destination be
3313 * GRF, so no compute-to-MRF for them.
3314 */
3315 if (scan_inst->is_math()) {
3316 break;
3317 }
3318 }
3319
3320 /* Clear the bits for any registers this instruction overwrites. */
3321 regs_left &= ~mask_relative_to(
3322 inst->src[0], scan_inst->dst, scan_inst->size_written);
3323 if (!regs_left)
3324 break;
3325 }
3326
3327 /* We don't handle control flow here. Most computation of
3328 * values that end up in MRFs are shortly before the MRF
3329 * write anyway.
3330 */
3331 if (block->start() == scan_inst)
3332 break;
3333
3334 /* You can't read from an MRF, so if someone else reads our
3335 * MRF's source GRF that we wanted to rewrite, that stops us.
3336 */
3337 bool interfered = false;
3338 for (int i = 0; i < scan_inst->sources; i++) {
3339 if (regions_overlap(scan_inst->src[i], scan_inst->size_read(i),
3340 inst->src[0], inst->size_read(0))) {
3341 interfered = true;
3342 }
3343 }
3344 if (interfered)
3345 break;
3346
3347 if (regions_overlap(scan_inst->dst, scan_inst->size_written,
3348 inst->dst, inst->size_written)) {
3349 /* If somebody else writes our MRF here, we can't
3350 * compute-to-MRF before that.
3351 */
3352 break;
3353 }
3354
3355 if (scan_inst->mlen > 0 && scan_inst->base_mrf != -1 &&
3356 regions_overlap(fs_reg(MRF, scan_inst->base_mrf), scan_inst->mlen * REG_SIZE,
3357 inst->dst, inst->size_written)) {
3358 /* Found a SEND instruction, which means that there are
3359 * live values in MRFs from base_mrf to base_mrf +
3360 * scan_inst->mlen - 1. Don't go pushing our MRF write up
3361 * above it.
3362 */
3363 break;
3364 }
3365 }
3366
3367 if (regs_left)
3368 continue;
3369
3370 /* Found all generating instructions of our MRF's source value, so it
3371 * should be safe to rewrite them to point to the MRF directly.
3372 */
3373 regs_left = (1 << regs_read(inst, 0)) - 1;
3374
3375 foreach_inst_in_block_reverse_starting_from(fs_inst, scan_inst, inst) {
3376 if (regions_overlap(scan_inst->dst, scan_inst->size_written,
3377 inst->src[0], inst->size_read(0))) {
3378 /* Clear the bits for any registers this instruction overwrites. */
3379 regs_left &= ~mask_relative_to(
3380 inst->src[0], scan_inst->dst, scan_inst->size_written);
3381
3382 const unsigned rel_offset = reg_offset(scan_inst->dst) -
3383 reg_offset(inst->src[0]);
3384
3385 if (inst->dst.nr & BRW_MRF_COMPR4) {
3386 /* Apply the same address transformation done by the hardware
3387 * for COMPR4 MRF writes.
3388 */
3389 assert(rel_offset < 2 * REG_SIZE);
3390 scan_inst->dst.nr = inst->dst.nr + rel_offset / REG_SIZE * 4;
3391
3392 /* Clear the COMPR4 bit if the generating instruction is not
3393 * compressed.
3394 */
3395 if (scan_inst->size_written < 2 * REG_SIZE)
3396 scan_inst->dst.nr &= ~BRW_MRF_COMPR4;
3397
3398 } else {
3399 /* Calculate the MRF number the result of this instruction is
3400 * ultimately written to.
3401 */
3402 scan_inst->dst.nr = inst->dst.nr + rel_offset / REG_SIZE;
3403 }
3404
3405 scan_inst->dst.file = MRF;
3406 scan_inst->dst.offset = inst->dst.offset + rel_offset % REG_SIZE;
3407 scan_inst->saturate |= inst->saturate;
3408 if (!regs_left)
3409 break;
3410 }
3411 }
3412
3413 assert(!regs_left);
3414 inst->remove(block);
3415 progress = true;
3416 }
3417
3418 if (progress)
3419 invalidate_live_intervals();
3420
3421 return progress;
3422 }
3423
3424 /**
3425 * Eliminate FIND_LIVE_CHANNEL instructions occurring outside any control
3426 * flow. We could probably do better here with some form of divergence
3427 * analysis.
3428 */
3429 bool
3430 fs_visitor::eliminate_find_live_channel()
3431 {
3432 bool progress = false;
3433 unsigned depth = 0;
3434
3435 if (!brw_stage_has_packed_dispatch(devinfo, stage, stage_prog_data)) {
3436 /* The optimization below assumes that channel zero is live on thread
3437 * dispatch, which may not be the case if the fixed function dispatches
3438 * threads sparsely.
3439 */
3440 return false;
3441 }
3442
3443 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
3444 switch (inst->opcode) {
3445 case BRW_OPCODE_IF:
3446 case BRW_OPCODE_DO:
3447 depth++;
3448 break;
3449
3450 case BRW_OPCODE_ENDIF:
3451 case BRW_OPCODE_WHILE:
3452 depth--;
3453 break;
3454
3455 case FS_OPCODE_DISCARD_JUMP:
3456 /* This can potentially make control flow non-uniform until the end
3457 * of the program.
3458 */
3459 return progress;
3460
3461 case SHADER_OPCODE_FIND_LIVE_CHANNEL:
3462 if (depth == 0) {
3463 inst->opcode = BRW_OPCODE_MOV;
3464 inst->src[0] = brw_imm_ud(0u);
3465 inst->sources = 1;
3466 inst->force_writemask_all = true;
3467 progress = true;
3468 }
3469 break;
3470
3471 default:
3472 break;
3473 }
3474 }
3475
3476 return progress;
3477 }
3478
3479 /**
3480 * Once we've generated code, try to convert normal FS_OPCODE_FB_WRITE
3481 * instructions to FS_OPCODE_REP_FB_WRITE.
3482 */
3483 void
3484 fs_visitor::emit_repclear_shader()
3485 {
3486 brw_wm_prog_key *key = (brw_wm_prog_key*) this->key;
3487 int base_mrf = 0;
3488 int color_mrf = base_mrf + 2;
3489 fs_inst *mov;
3490
3491 if (uniforms > 0) {
3492 mov = bld.exec_all().group(4, 0)
3493 .MOV(brw_message_reg(color_mrf),
3494 fs_reg(UNIFORM, 0, BRW_REGISTER_TYPE_F));
3495 } else {
3496 struct brw_reg reg =
3497 brw_reg(BRW_GENERAL_REGISTER_FILE, 2, 3, 0, 0, BRW_REGISTER_TYPE_F,
3498 BRW_VERTICAL_STRIDE_8, BRW_WIDTH_2, BRW_HORIZONTAL_STRIDE_4,
3499 BRW_SWIZZLE_XYZW, WRITEMASK_XYZW);
3500
3501 mov = bld.exec_all().group(4, 0)
3502 .MOV(vec4(brw_message_reg(color_mrf)), fs_reg(reg));
3503 }
3504
3505 fs_inst *write = NULL;
3506 if (key->nr_color_regions == 1) {
3507 write = bld.emit(FS_OPCODE_REP_FB_WRITE);
3508 write->saturate = key->clamp_fragment_color;
3509 write->base_mrf = color_mrf;
3510 write->target = 0;
3511 write->header_size = 0;
3512 write->mlen = 1;
3513 } else {
3514 assume(key->nr_color_regions > 0);
3515
3516 struct brw_reg header =
3517 retype(brw_message_reg(base_mrf), BRW_REGISTER_TYPE_UD);
3518 bld.exec_all().group(16, 0)
3519 .MOV(header, retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD));
3520
3521 for (int i = 0; i < key->nr_color_regions; ++i) {
3522 if (i > 0) {
3523 bld.exec_all().group(1, 0)
3524 .MOV(component(header, 2), brw_imm_ud(i));
3525 }
3526
3527 write = bld.emit(FS_OPCODE_REP_FB_WRITE);
3528 write->saturate = key->clamp_fragment_color;
3529 write->base_mrf = base_mrf;
3530 write->target = i;
3531 write->header_size = 2;
3532 write->mlen = 3;
3533 }
3534 }
3535 write->eot = true;
3536 write->last_rt = true;
3537
3538 calculate_cfg();
3539
3540 assign_constant_locations();
3541 assign_curb_setup();
3542
3543 /* Now that we have the uniform assigned, go ahead and force it to a vec4. */
3544 if (uniforms > 0) {
3545 assert(mov->src[0].file == FIXED_GRF);
3546 mov->src[0] = brw_vec4_grf(mov->src[0].nr, 0);
3547 }
3548
3549 lower_scoreboard();
3550 }
3551
3552 /**
3553 * Walks through basic blocks, looking for repeated MRF writes and
3554 * removing the later ones.
3555 */
3556 bool
3557 fs_visitor::remove_duplicate_mrf_writes()
3558 {
3559 fs_inst *last_mrf_move[BRW_MAX_MRF(devinfo->gen)];
3560 bool progress = false;
3561
3562 /* Need to update the MRF tracking for compressed instructions. */
3563 if (dispatch_width >= 16)
3564 return false;
3565
3566 memset(last_mrf_move, 0, sizeof(last_mrf_move));
3567
3568 foreach_block_and_inst_safe (block, fs_inst, inst, cfg) {
3569 if (inst->is_control_flow()) {
3570 memset(last_mrf_move, 0, sizeof(last_mrf_move));
3571 }
3572
3573 if (inst->opcode == BRW_OPCODE_MOV &&
3574 inst->dst.file == MRF) {
3575 fs_inst *prev_inst = last_mrf_move[inst->dst.nr];
3576 if (prev_inst && prev_inst->opcode == BRW_OPCODE_MOV &&
3577 inst->dst.equals(prev_inst->dst) &&
3578 inst->src[0].equals(prev_inst->src[0]) &&
3579 inst->saturate == prev_inst->saturate &&
3580 inst->predicate == prev_inst->predicate &&
3581 inst->conditional_mod == prev_inst->conditional_mod &&
3582 inst->exec_size == prev_inst->exec_size) {
3583 inst->remove(block);
3584 progress = true;
3585 continue;
3586 }
3587 }
3588
3589 /* Clear out the last-write records for MRFs that were overwritten. */
3590 if (inst->dst.file == MRF) {
3591 last_mrf_move[inst->dst.nr] = NULL;
3592 }
3593
3594 if (inst->mlen > 0 && inst->base_mrf != -1) {
3595 /* Found a SEND instruction, which will include two or fewer
3596 * implied MRF writes. We could do better here.
3597 */
3598 for (int i = 0; i < implied_mrf_writes(inst); i++) {
3599 last_mrf_move[inst->base_mrf + i] = NULL;
3600 }
3601 }
3602
3603 /* Clear out any MRF move records whose sources got overwritten. */
3604 for (unsigned i = 0; i < ARRAY_SIZE(last_mrf_move); i++) {
3605 if (last_mrf_move[i] &&
3606 regions_overlap(inst->dst, inst->size_written,
3607 last_mrf_move[i]->src[0],
3608 last_mrf_move[i]->size_read(0))) {
3609 last_mrf_move[i] = NULL;
3610 }
3611 }
3612
3613 if (inst->opcode == BRW_OPCODE_MOV &&
3614 inst->dst.file == MRF &&
3615 inst->src[0].file != ARF &&
3616 !inst->is_partial_write()) {
3617 last_mrf_move[inst->dst.nr] = inst;
3618 }
3619 }
3620
3621 if (progress)
3622 invalidate_live_intervals();
3623
3624 return progress;
3625 }
3626
3627 /**
3628 * Rounding modes for conversion instructions are included for each
3629 * conversion, but right now it is a state. So once it is set,
3630 * we don't need to call it again for subsequent calls.
3631 *
3632 * This is useful for vector/matrices conversions, as setting the
3633 * mode once is enough for the full vector/matrix
3634 */
3635 bool
3636 fs_visitor::remove_extra_rounding_modes()
3637 {
3638 bool progress = false;
3639 unsigned execution_mode = this->nir->info.float_controls_execution_mode;
3640
3641 brw_rnd_mode base_mode = BRW_RND_MODE_UNSPECIFIED;
3642 if ((FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP16 |
3643 FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP32 |
3644 FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP64) &
3645 execution_mode)
3646 base_mode = BRW_RND_MODE_RTNE;
3647 if ((FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP16 |
3648 FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP32 |
3649 FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP64) &
3650 execution_mode)
3651 base_mode = BRW_RND_MODE_RTZ;
3652
3653 foreach_block (block, cfg) {
3654 brw_rnd_mode prev_mode = base_mode;
3655
3656 foreach_inst_in_block_safe (fs_inst, inst, block) {
3657 if (inst->opcode == SHADER_OPCODE_RND_MODE) {
3658 assert(inst->src[0].file == BRW_IMMEDIATE_VALUE);
3659 const brw_rnd_mode mode = (brw_rnd_mode) inst->src[0].d;
3660 if (mode == prev_mode) {
3661 inst->remove(block);
3662 progress = true;
3663 } else {
3664 prev_mode = mode;
3665 }
3666 }
3667 }
3668 }
3669
3670 if (progress)
3671 invalidate_live_intervals();
3672
3673 return progress;
3674 }
3675
3676 static void
3677 clear_deps_for_inst_src(fs_inst *inst, bool *deps, int first_grf, int grf_len)
3678 {
3679 /* Clear the flag for registers that actually got read (as expected). */
3680 for (int i = 0; i < inst->sources; i++) {
3681 int grf;
3682 if (inst->src[i].file == VGRF || inst->src[i].file == FIXED_GRF) {
3683 grf = inst->src[i].nr;
3684 } else {
3685 continue;
3686 }
3687
3688 if (grf >= first_grf &&
3689 grf < first_grf + grf_len) {
3690 deps[grf - first_grf] = false;
3691 if (inst->exec_size == 16)
3692 deps[grf - first_grf + 1] = false;
3693 }
3694 }
3695 }
3696
3697 /**
3698 * Implements this workaround for the original 965:
3699 *
3700 * "[DevBW, DevCL] Implementation Restrictions: As the hardware does not
3701 * check for post destination dependencies on this instruction, software
3702 * must ensure that there is no destination hazard for the case of ‘write
3703 * followed by a posted write’ shown in the following example.
3704 *
3705 * 1. mov r3 0
3706 * 2. send r3.xy <rest of send instruction>
3707 * 3. mov r2 r3
3708 *
3709 * Due to no post-destination dependency check on the ‘send’, the above
3710 * code sequence could have two instructions (1 and 2) in flight at the
3711 * same time that both consider ‘r3’ as the target of their final writes.
3712 */
3713 void
3714 fs_visitor::insert_gen4_pre_send_dependency_workarounds(bblock_t *block,
3715 fs_inst *inst)
3716 {
3717 int write_len = regs_written(inst);
3718 int first_write_grf = inst->dst.nr;
3719 bool needs_dep[BRW_MAX_MRF(devinfo->gen)];
3720 assert(write_len < (int)sizeof(needs_dep) - 1);
3721
3722 memset(needs_dep, false, sizeof(needs_dep));
3723 memset(needs_dep, true, write_len);
3724
3725 clear_deps_for_inst_src(inst, needs_dep, first_write_grf, write_len);
3726
3727 /* Walk backwards looking for writes to registers we're writing which
3728 * aren't read since being written. If we hit the start of the program,
3729 * we assume that there are no outstanding dependencies on entry to the
3730 * program.
3731 */
3732 foreach_inst_in_block_reverse_starting_from(fs_inst, scan_inst, inst) {
3733 /* If we hit control flow, assume that there *are* outstanding
3734 * dependencies, and force their cleanup before our instruction.
3735 */
3736 if (block->start() == scan_inst && block->num != 0) {
3737 for (int i = 0; i < write_len; i++) {
3738 if (needs_dep[i])
3739 DEP_RESOLVE_MOV(fs_builder(this, block, inst),
3740 first_write_grf + i);
3741 }
3742 return;
3743 }
3744
3745 /* We insert our reads as late as possible on the assumption that any
3746 * instruction but a MOV that might have left us an outstanding
3747 * dependency has more latency than a MOV.
3748 */
3749 if (scan_inst->dst.file == VGRF) {
3750 for (unsigned i = 0; i < regs_written(scan_inst); i++) {
3751 int reg = scan_inst->dst.nr + i;
3752
3753 if (reg >= first_write_grf &&
3754 reg < first_write_grf + write_len &&
3755 needs_dep[reg - first_write_grf]) {
3756 DEP_RESOLVE_MOV(fs_builder(this, block, inst), reg);
3757 needs_dep[reg - first_write_grf] = false;
3758 if (scan_inst->exec_size == 16)
3759 needs_dep[reg - first_write_grf + 1] = false;
3760 }
3761 }
3762 }
3763
3764 /* Clear the flag for registers that actually got read (as expected). */
3765 clear_deps_for_inst_src(scan_inst, needs_dep, first_write_grf, write_len);
3766
3767 /* Continue the loop only if we haven't resolved all the dependencies */
3768 int i;
3769 for (i = 0; i < write_len; i++) {
3770 if (needs_dep[i])
3771 break;
3772 }
3773 if (i == write_len)
3774 return;
3775 }
3776 }
3777
3778 /**
3779 * Implements this workaround for the original 965:
3780 *
3781 * "[DevBW, DevCL] Errata: A destination register from a send can not be
3782 * used as a destination register until after it has been sourced by an
3783 * instruction with a different destination register.
3784 */
3785 void
3786 fs_visitor::insert_gen4_post_send_dependency_workarounds(bblock_t *block, fs_inst *inst)
3787 {
3788 int write_len = regs_written(inst);
3789 unsigned first_write_grf = inst->dst.nr;
3790 bool needs_dep[BRW_MAX_MRF(devinfo->gen)];
3791 assert(write_len < (int)sizeof(needs_dep) - 1);
3792
3793 memset(needs_dep, false, sizeof(needs_dep));
3794 memset(needs_dep, true, write_len);
3795 /* Walk forwards looking for writes to registers we're writing which aren't
3796 * read before being written.
3797 */
3798 foreach_inst_in_block_starting_from(fs_inst, scan_inst, inst) {
3799 /* If we hit control flow, force resolve all remaining dependencies. */
3800 if (block->end() == scan_inst && block->num != cfg->num_blocks - 1) {
3801 for (int i = 0; i < write_len; i++) {
3802 if (needs_dep[i])
3803 DEP_RESOLVE_MOV(fs_builder(this, block, scan_inst),
3804 first_write_grf + i);
3805 }
3806 return;
3807 }
3808
3809 /* Clear the flag for registers that actually got read (as expected). */
3810 clear_deps_for_inst_src(scan_inst, needs_dep, first_write_grf, write_len);
3811
3812 /* We insert our reads as late as possible since they're reading the
3813 * result of a SEND, which has massive latency.
3814 */
3815 if (scan_inst->dst.file == VGRF &&
3816 scan_inst->dst.nr >= first_write_grf &&
3817 scan_inst->dst.nr < first_write_grf + write_len &&
3818 needs_dep[scan_inst->dst.nr - first_write_grf]) {
3819 DEP_RESOLVE_MOV(fs_builder(this, block, scan_inst),
3820 scan_inst->dst.nr);
3821 needs_dep[scan_inst->dst.nr - first_write_grf] = false;
3822 }
3823
3824 /* Continue the loop only if we haven't resolved all the dependencies */
3825 int i;
3826 for (i = 0; i < write_len; i++) {
3827 if (needs_dep[i])
3828 break;
3829 }
3830 if (i == write_len)
3831 return;
3832 }
3833 }
3834
3835 void
3836 fs_visitor::insert_gen4_send_dependency_workarounds()
3837 {
3838 if (devinfo->gen != 4 || devinfo->is_g4x)
3839 return;
3840
3841 bool progress = false;
3842
3843 foreach_block_and_inst(block, fs_inst, inst, cfg) {
3844 if (inst->mlen != 0 && inst->dst.file == VGRF) {
3845 insert_gen4_pre_send_dependency_workarounds(block, inst);
3846 insert_gen4_post_send_dependency_workarounds(block, inst);
3847 progress = true;
3848 }
3849 }
3850
3851 if (progress)
3852 invalidate_live_intervals();
3853 }
3854
3855 /**
3856 * Turns the generic expression-style uniform pull constant load instruction
3857 * into a hardware-specific series of instructions for loading a pull
3858 * constant.
3859 *
3860 * The expression style allows the CSE pass before this to optimize out
3861 * repeated loads from the same offset, and gives the pre-register-allocation
3862 * scheduling full flexibility, while the conversion to native instructions
3863 * allows the post-register-allocation scheduler the best information
3864 * possible.
3865 *
3866 * Note that execution masking for setting up pull constant loads is special:
3867 * the channels that need to be written are unrelated to the current execution
3868 * mask, since a later instruction will use one of the result channels as a
3869 * source operand for all 8 or 16 of its channels.
3870 */
3871 void
3872 fs_visitor::lower_uniform_pull_constant_loads()
3873 {
3874 foreach_block_and_inst (block, fs_inst, inst, cfg) {
3875 if (inst->opcode != FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD)
3876 continue;
3877
3878 if (devinfo->gen >= 7) {
3879 const fs_builder ubld = fs_builder(this, block, inst).exec_all();
3880 const fs_reg payload = ubld.group(8, 0).vgrf(BRW_REGISTER_TYPE_UD);
3881
3882 ubld.group(8, 0).MOV(payload,
3883 retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD));
3884 ubld.group(1, 0).MOV(component(payload, 2),
3885 brw_imm_ud(inst->src[1].ud / 16));
3886
3887 inst->opcode = FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD_GEN7;
3888 inst->src[1] = payload;
3889 inst->header_size = 1;
3890 inst->mlen = 1;
3891
3892 invalidate_live_intervals();
3893 } else {
3894 /* Before register allocation, we didn't tell the scheduler about the
3895 * MRF we use. We know it's safe to use this MRF because nothing
3896 * else does except for register spill/unspill, which generates and
3897 * uses its MRF within a single IR instruction.
3898 */
3899 inst->base_mrf = FIRST_PULL_LOAD_MRF(devinfo->gen) + 1;
3900 inst->mlen = 1;
3901 }
3902 }
3903 }
3904
3905 bool
3906 fs_visitor::lower_load_payload()
3907 {
3908 bool progress = false;
3909
3910 foreach_block_and_inst_safe (block, fs_inst, inst, cfg) {
3911 if (inst->opcode != SHADER_OPCODE_LOAD_PAYLOAD)
3912 continue;
3913
3914 assert(inst->dst.file == MRF || inst->dst.file == VGRF);
3915 assert(inst->saturate == false);
3916 fs_reg dst = inst->dst;
3917
3918 /* Get rid of COMPR4. We'll add it back in if we need it */
3919 if (dst.file == MRF)
3920 dst.nr = dst.nr & ~BRW_MRF_COMPR4;
3921
3922 const fs_builder ibld(this, block, inst);
3923 const fs_builder hbld = ibld.exec_all().group(8, 0);
3924
3925 for (uint8_t i = 0; i < inst->header_size; i++) {
3926 if (inst->src[i].file != BAD_FILE) {
3927 fs_reg mov_dst = retype(dst, BRW_REGISTER_TYPE_UD);
3928 fs_reg mov_src = retype(inst->src[i], BRW_REGISTER_TYPE_UD);
3929 hbld.MOV(mov_dst, mov_src);
3930 }
3931 dst = offset(dst, hbld, 1);
3932 }
3933
3934 if (inst->dst.file == MRF && (inst->dst.nr & BRW_MRF_COMPR4) &&
3935 inst->exec_size > 8) {
3936 /* In this case, the payload portion of the LOAD_PAYLOAD isn't
3937 * a straightforward copy. Instead, the result of the
3938 * LOAD_PAYLOAD is treated as interleaved and the first four
3939 * non-header sources are unpacked as:
3940 *
3941 * m + 0: r0
3942 * m + 1: g0
3943 * m + 2: b0
3944 * m + 3: a0
3945 * m + 4: r1
3946 * m + 5: g1
3947 * m + 6: b1
3948 * m + 7: a1
3949 *
3950 * This is used for gen <= 5 fb writes.
3951 */
3952 assert(inst->exec_size == 16);
3953 assert(inst->header_size + 4 <= inst->sources);
3954 for (uint8_t i = inst->header_size; i < inst->header_size + 4; i++) {
3955 if (inst->src[i].file != BAD_FILE) {
3956 if (devinfo->has_compr4) {
3957 fs_reg compr4_dst = retype(dst, inst->src[i].type);
3958 compr4_dst.nr |= BRW_MRF_COMPR4;
3959 ibld.MOV(compr4_dst, inst->src[i]);
3960 } else {
3961 /* Platform doesn't have COMPR4. We have to fake it */
3962 fs_reg mov_dst = retype(dst, inst->src[i].type);
3963 ibld.half(0).MOV(mov_dst, half(inst->src[i], 0));
3964 mov_dst.nr += 4;
3965 ibld.half(1).MOV(mov_dst, half(inst->src[i], 1));
3966 }
3967 }
3968
3969 dst.nr++;
3970 }
3971
3972 /* The loop above only ever incremented us through the first set
3973 * of 4 registers. However, thanks to the magic of COMPR4, we
3974 * actually wrote to the first 8 registers, so we need to take
3975 * that into account now.
3976 */
3977 dst.nr += 4;
3978
3979 /* The COMPR4 code took care of the first 4 sources. We'll let
3980 * the regular path handle any remaining sources. Yes, we are
3981 * modifying the instruction but we're about to delete it so
3982 * this really doesn't hurt anything.
3983 */
3984 inst->header_size += 4;
3985 }
3986
3987 for (uint8_t i = inst->header_size; i < inst->sources; i++) {
3988 if (inst->src[i].file != BAD_FILE) {
3989 dst.type = inst->src[i].type;
3990 ibld.MOV(dst, inst->src[i]);
3991 } else {
3992 dst.type = BRW_REGISTER_TYPE_UD;
3993 }
3994 dst = offset(dst, ibld, 1);
3995 }
3996
3997 inst->remove(block);
3998 progress = true;
3999 }
4000
4001 if (progress)
4002 invalidate_live_intervals();
4003
4004 return progress;
4005 }
4006
4007 void
4008 fs_visitor::lower_mul_dword_inst(fs_inst *inst, bblock_t *block)
4009 {
4010 const fs_builder ibld(this, block, inst);
4011
4012 if (inst->src[1].file == IMM && inst->src[1].ud < (1 << 16)) {
4013 /* The MUL instruction isn't commutative. On Gen <= 6, only the low
4014 * 16-bits of src0 are read, and on Gen >= 7 only the low 16-bits of
4015 * src1 are used.
4016 *
4017 * If multiplying by an immediate value that fits in 16-bits, do a
4018 * single MUL instruction with that value in the proper location.
4019 */
4020 if (devinfo->gen < 7) {
4021 fs_reg imm(VGRF, alloc.allocate(dispatch_width / 8), inst->dst.type);
4022 ibld.MOV(imm, inst->src[1]);
4023 ibld.MUL(inst->dst, imm, inst->src[0]);
4024 } else {
4025 const bool ud = (inst->src[1].type == BRW_REGISTER_TYPE_UD);
4026 ibld.MUL(inst->dst, inst->src[0],
4027 ud ? brw_imm_uw(inst->src[1].ud)
4028 : brw_imm_w(inst->src[1].d));
4029 }
4030 } else {
4031 /* Gen < 8 (and some Gen8+ low-power parts like Cherryview) cannot
4032 * do 32-bit integer multiplication in one instruction, but instead
4033 * must do a sequence (which actually calculates a 64-bit result):
4034 *
4035 * mul(8) acc0<1>D g3<8,8,1>D g4<8,8,1>D
4036 * mach(8) null g3<8,8,1>D g4<8,8,1>D
4037 * mov(8) g2<1>D acc0<8,8,1>D
4038 *
4039 * But on Gen > 6, the ability to use second accumulator register
4040 * (acc1) for non-float data types was removed, preventing a simple
4041 * implementation in SIMD16. A 16-channel result can be calculated by
4042 * executing the three instructions twice in SIMD8, once with quarter
4043 * control of 1Q for the first eight channels and again with 2Q for
4044 * the second eight channels.
4045 *
4046 * Which accumulator register is implicitly accessed (by AccWrEnable
4047 * for instance) is determined by the quarter control. Unfortunately
4048 * Ivybridge (and presumably Baytrail) has a hardware bug in which an
4049 * implicit accumulator access by an instruction with 2Q will access
4050 * acc1 regardless of whether the data type is usable in acc1.
4051 *
4052 * Specifically, the 2Q mach(8) writes acc1 which does not exist for
4053 * integer data types.
4054 *
4055 * Since we only want the low 32-bits of the result, we can do two
4056 * 32-bit x 16-bit multiplies (like the mul and mach are doing), and
4057 * adjust the high result and add them (like the mach is doing):
4058 *
4059 * mul(8) g7<1>D g3<8,8,1>D g4.0<8,8,1>UW
4060 * mul(8) g8<1>D g3<8,8,1>D g4.1<8,8,1>UW
4061 * shl(8) g9<1>D g8<8,8,1>D 16D
4062 * add(8) g2<1>D g7<8,8,1>D g8<8,8,1>D
4063 *
4064 * We avoid the shl instruction by realizing that we only want to add
4065 * the low 16-bits of the "high" result to the high 16-bits of the
4066 * "low" result and using proper regioning on the add:
4067 *
4068 * mul(8) g7<1>D g3<8,8,1>D g4.0<16,8,2>UW
4069 * mul(8) g8<1>D g3<8,8,1>D g4.1<16,8,2>UW
4070 * add(8) g7.1<2>UW g7.1<16,8,2>UW g8<16,8,2>UW
4071 *
4072 * Since it does not use the (single) accumulator register, we can
4073 * schedule multi-component multiplications much better.
4074 */
4075
4076 bool needs_mov = false;
4077 fs_reg orig_dst = inst->dst;
4078
4079 /* Get a new VGRF for the "low" 32x16-bit multiplication result if
4080 * reusing the original destination is impossible due to hardware
4081 * restrictions, source/destination overlap, or it being the null
4082 * register.
4083 */
4084 fs_reg low = inst->dst;
4085 if (orig_dst.is_null() || orig_dst.file == MRF ||
4086 regions_overlap(inst->dst, inst->size_written,
4087 inst->src[0], inst->size_read(0)) ||
4088 regions_overlap(inst->dst, inst->size_written,
4089 inst->src[1], inst->size_read(1)) ||
4090 inst->dst.stride >= 4) {
4091 needs_mov = true;
4092 low = fs_reg(VGRF, alloc.allocate(regs_written(inst)),
4093 inst->dst.type);
4094 }
4095
4096 /* Get a new VGRF but keep the same stride as inst->dst */
4097 fs_reg high(VGRF, alloc.allocate(regs_written(inst)), inst->dst.type);
4098 high.stride = inst->dst.stride;
4099 high.offset = inst->dst.offset % REG_SIZE;
4100
4101 if (devinfo->gen >= 7) {
4102 if (inst->src[1].abs)
4103 lower_src_modifiers(this, block, inst, 1);
4104
4105 if (inst->src[1].file == IMM) {
4106 ibld.MUL(low, inst->src[0],
4107 brw_imm_uw(inst->src[1].ud & 0xffff));
4108 ibld.MUL(high, inst->src[0],
4109 brw_imm_uw(inst->src[1].ud >> 16));
4110 } else {
4111 ibld.MUL(low, inst->src[0],
4112 subscript(inst->src[1], BRW_REGISTER_TYPE_UW, 0));
4113 ibld.MUL(high, inst->src[0],
4114 subscript(inst->src[1], BRW_REGISTER_TYPE_UW, 1));
4115 }
4116 } else {
4117 if (inst->src[0].abs)
4118 lower_src_modifiers(this, block, inst, 0);
4119
4120 ibld.MUL(low, subscript(inst->src[0], BRW_REGISTER_TYPE_UW, 0),
4121 inst->src[1]);
4122 ibld.MUL(high, subscript(inst->src[0], BRW_REGISTER_TYPE_UW, 1),
4123 inst->src[1]);
4124 }
4125
4126 ibld.ADD(subscript(low, BRW_REGISTER_TYPE_UW, 1),
4127 subscript(low, BRW_REGISTER_TYPE_UW, 1),
4128 subscript(high, BRW_REGISTER_TYPE_UW, 0));
4129
4130 if (needs_mov || inst->conditional_mod)
4131 set_condmod(inst->conditional_mod, ibld.MOV(orig_dst, low));
4132 }
4133 }
4134
4135 void
4136 fs_visitor::lower_mul_qword_inst(fs_inst *inst, bblock_t *block)
4137 {
4138 const fs_builder ibld(this, block, inst);
4139
4140 /* Considering two 64-bit integers ab and cd where each letter ab
4141 * corresponds to 32 bits, we get a 128-bit result WXYZ. We * cd
4142 * only need to provide the YZ part of the result. -------
4143 * BD
4144 * Only BD needs to be 64 bits. For AD and BC we only care + AD
4145 * about the lower 32 bits (since they are part of the upper + BC
4146 * 32 bits of our result). AC is not needed since it starts + AC
4147 * on the 65th bit of the result. -------
4148 * WXYZ
4149 */
4150 unsigned int q_regs = regs_written(inst);
4151 unsigned int d_regs = (q_regs + 1) / 2;
4152
4153 fs_reg bd(VGRF, alloc.allocate(q_regs), BRW_REGISTER_TYPE_UQ);
4154 fs_reg ad(VGRF, alloc.allocate(d_regs), BRW_REGISTER_TYPE_UD);
4155 fs_reg bc(VGRF, alloc.allocate(d_regs), BRW_REGISTER_TYPE_UD);
4156
4157 /* Here we need the full 64 bit result for 32b * 32b. */
4158 if (devinfo->has_integer_dword_mul) {
4159 ibld.MUL(bd, subscript(inst->src[0], BRW_REGISTER_TYPE_UD, 0),
4160 subscript(inst->src[1], BRW_REGISTER_TYPE_UD, 0));
4161 } else {
4162 fs_reg bd_high(VGRF, alloc.allocate(d_regs), BRW_REGISTER_TYPE_UD);
4163 fs_reg bd_low(VGRF, alloc.allocate(d_regs), BRW_REGISTER_TYPE_UD);
4164 fs_reg acc = retype(brw_acc_reg(inst->exec_size), BRW_REGISTER_TYPE_UD);
4165
4166 fs_inst *mul = ibld.MUL(acc,
4167 subscript(inst->src[0], BRW_REGISTER_TYPE_UD, 0),
4168 subscript(inst->src[1], BRW_REGISTER_TYPE_UW, 0));
4169 mul->writes_accumulator = true;
4170
4171 ibld.MACH(bd_high, subscript(inst->src[0], BRW_REGISTER_TYPE_UD, 0),
4172 subscript(inst->src[1], BRW_REGISTER_TYPE_UD, 0));
4173 ibld.MOV(bd_low, acc);
4174
4175 ibld.MOV(subscript(bd, BRW_REGISTER_TYPE_UD, 0), bd_low);
4176 ibld.MOV(subscript(bd, BRW_REGISTER_TYPE_UD, 1), bd_high);
4177 }
4178
4179 ibld.MUL(ad, subscript(inst->src[0], BRW_REGISTER_TYPE_UD, 1),
4180 subscript(inst->src[1], BRW_REGISTER_TYPE_UD, 0));
4181 ibld.MUL(bc, subscript(inst->src[0], BRW_REGISTER_TYPE_UD, 0),
4182 subscript(inst->src[1], BRW_REGISTER_TYPE_UD, 1));
4183
4184 ibld.ADD(ad, ad, bc);
4185 ibld.ADD(subscript(bd, BRW_REGISTER_TYPE_UD, 1),
4186 subscript(bd, BRW_REGISTER_TYPE_UD, 1), ad);
4187
4188 ibld.MOV(inst->dst, bd);
4189 }
4190
4191 void
4192 fs_visitor::lower_mulh_inst(fs_inst *inst, bblock_t *block)
4193 {
4194 const fs_builder ibld(this, block, inst);
4195
4196 /* According to the BDW+ BSpec page for the "Multiply Accumulate
4197 * High" instruction:
4198 *
4199 * "An added preliminary mov is required for source modification on
4200 * src1:
4201 * mov (8) r3.0<1>:d -r3<8;8,1>:d
4202 * mul (8) acc0:d r2.0<8;8,1>:d r3.0<16;8,2>:uw
4203 * mach (8) r5.0<1>:d r2.0<8;8,1>:d r3.0<8;8,1>:d"
4204 */
4205 if (devinfo->gen >= 8 && (inst->src[1].negate || inst->src[1].abs))
4206 lower_src_modifiers(this, block, inst, 1);
4207
4208 /* Should have been lowered to 8-wide. */
4209 assert(inst->exec_size <= get_lowered_simd_width(devinfo, inst));
4210 const fs_reg acc = retype(brw_acc_reg(inst->exec_size), inst->dst.type);
4211 fs_inst *mul = ibld.MUL(acc, inst->src[0], inst->src[1]);
4212 fs_inst *mach = ibld.MACH(inst->dst, inst->src[0], inst->src[1]);
4213
4214 if (devinfo->gen >= 8) {
4215 /* Until Gen8, integer multiplies read 32-bits from one source,
4216 * and 16-bits from the other, and relying on the MACH instruction
4217 * to generate the high bits of the result.
4218 *
4219 * On Gen8, the multiply instruction does a full 32x32-bit
4220 * multiply, but in order to do a 64-bit multiply we can simulate
4221 * the previous behavior and then use a MACH instruction.
4222 */
4223 assert(mul->src[1].type == BRW_REGISTER_TYPE_D ||
4224 mul->src[1].type == BRW_REGISTER_TYPE_UD);
4225 mul->src[1].type = BRW_REGISTER_TYPE_UW;
4226 mul->src[1].stride *= 2;
4227
4228 if (mul->src[1].file == IMM) {
4229 mul->src[1] = brw_imm_uw(mul->src[1].ud);
4230 }
4231 } else if (devinfo->gen == 7 && !devinfo->is_haswell &&
4232 inst->group > 0) {
4233 /* Among other things the quarter control bits influence which
4234 * accumulator register is used by the hardware for instructions
4235 * that access the accumulator implicitly (e.g. MACH). A
4236 * second-half instruction would normally map to acc1, which
4237 * doesn't exist on Gen7 and up (the hardware does emulate it for
4238 * floating-point instructions *only* by taking advantage of the
4239 * extra precision of acc0 not normally used for floating point
4240 * arithmetic).
4241 *
4242 * HSW and up are careful enough not to try to access an
4243 * accumulator register that doesn't exist, but on earlier Gen7
4244 * hardware we need to make sure that the quarter control bits are
4245 * zero to avoid non-deterministic behaviour and emit an extra MOV
4246 * to get the result masked correctly according to the current
4247 * channel enables.
4248 */
4249 mach->group = 0;
4250 mach->force_writemask_all = true;
4251 mach->dst = ibld.vgrf(inst->dst.type);
4252 ibld.MOV(inst->dst, mach->dst);
4253 }
4254 }
4255
4256 bool
4257 fs_visitor::lower_integer_multiplication()
4258 {
4259 bool progress = false;
4260
4261 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
4262 if (inst->opcode == BRW_OPCODE_MUL) {
4263 if ((inst->dst.type == BRW_REGISTER_TYPE_Q ||
4264 inst->dst.type == BRW_REGISTER_TYPE_UQ) &&
4265 (inst->src[0].type == BRW_REGISTER_TYPE_Q ||
4266 inst->src[0].type == BRW_REGISTER_TYPE_UQ) &&
4267 (inst->src[1].type == BRW_REGISTER_TYPE_Q ||
4268 inst->src[1].type == BRW_REGISTER_TYPE_UQ)) {
4269 lower_mul_qword_inst(inst, block);
4270 inst->remove(block);
4271 progress = true;
4272 } else if (!inst->dst.is_accumulator() &&
4273 (inst->dst.type == BRW_REGISTER_TYPE_D ||
4274 inst->dst.type == BRW_REGISTER_TYPE_UD) &&
4275 !devinfo->has_integer_dword_mul) {
4276 lower_mul_dword_inst(inst, block);
4277 inst->remove(block);
4278 progress = true;
4279 }
4280 } else if (inst->opcode == SHADER_OPCODE_MULH) {
4281 lower_mulh_inst(inst, block);
4282 inst->remove(block);
4283 progress = true;
4284 }
4285
4286 }
4287
4288 if (progress)
4289 invalidate_live_intervals();
4290
4291 return progress;
4292 }
4293
4294 bool
4295 fs_visitor::lower_minmax()
4296 {
4297 assert(devinfo->gen < 6);
4298
4299 bool progress = false;
4300
4301 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
4302 const fs_builder ibld(this, block, inst);
4303
4304 if (inst->opcode == BRW_OPCODE_SEL &&
4305 inst->predicate == BRW_PREDICATE_NONE) {
4306 /* FIXME: Using CMP doesn't preserve the NaN propagation semantics of
4307 * the original SEL.L/GE instruction
4308 */
4309 ibld.CMP(ibld.null_reg_d(), inst->src[0], inst->src[1],
4310 inst->conditional_mod);
4311 inst->predicate = BRW_PREDICATE_NORMAL;
4312 inst->conditional_mod = BRW_CONDITIONAL_NONE;
4313
4314 progress = true;
4315 }
4316 }
4317
4318 if (progress)
4319 invalidate_live_intervals();
4320
4321 return progress;
4322 }
4323
4324 static void
4325 setup_color_payload(const fs_builder &bld, const brw_wm_prog_key *key,
4326 fs_reg *dst, fs_reg color, unsigned components)
4327 {
4328 if (key->clamp_fragment_color) {
4329 fs_reg tmp = bld.vgrf(BRW_REGISTER_TYPE_F, 4);
4330 assert(color.type == BRW_REGISTER_TYPE_F);
4331
4332 for (unsigned i = 0; i < components; i++)
4333 set_saturate(true,
4334 bld.MOV(offset(tmp, bld, i), offset(color, bld, i)));
4335
4336 color = tmp;
4337 }
4338
4339 for (unsigned i = 0; i < components; i++)
4340 dst[i] = offset(color, bld, i);
4341 }
4342
4343 uint32_t
4344 brw_fb_write_msg_control(const fs_inst *inst,
4345 const struct brw_wm_prog_data *prog_data)
4346 {
4347 uint32_t mctl;
4348
4349 if (inst->opcode == FS_OPCODE_REP_FB_WRITE) {
4350 assert(inst->group == 0 && inst->exec_size == 16);
4351 mctl = BRW_DATAPORT_RENDER_TARGET_WRITE_SIMD16_SINGLE_SOURCE_REPLICATED;
4352 } else if (prog_data->dual_src_blend) {
4353 assert(inst->exec_size == 8);
4354
4355 if (inst->group % 16 == 0)
4356 mctl = BRW_DATAPORT_RENDER_TARGET_WRITE_SIMD8_DUAL_SOURCE_SUBSPAN01;
4357 else if (inst->group % 16 == 8)
4358 mctl = BRW_DATAPORT_RENDER_TARGET_WRITE_SIMD8_DUAL_SOURCE_SUBSPAN23;
4359 else
4360 unreachable("Invalid dual-source FB write instruction group");
4361 } else {
4362 assert(inst->group == 0 || (inst->group == 16 && inst->exec_size == 16));
4363
4364 if (inst->exec_size == 16)
4365 mctl = BRW_DATAPORT_RENDER_TARGET_WRITE_SIMD16_SINGLE_SOURCE;
4366 else if (inst->exec_size == 8)
4367 mctl = BRW_DATAPORT_RENDER_TARGET_WRITE_SIMD8_SINGLE_SOURCE_SUBSPAN01;
4368 else
4369 unreachable("Invalid FB write execution size");
4370 }
4371
4372 return mctl;
4373 }
4374
4375 static void
4376 lower_fb_write_logical_send(const fs_builder &bld, fs_inst *inst,
4377 const struct brw_wm_prog_data *prog_data,
4378 const brw_wm_prog_key *key,
4379 const fs_visitor::thread_payload &payload)
4380 {
4381 assert(inst->src[FB_WRITE_LOGICAL_SRC_COMPONENTS].file == IMM);
4382 const gen_device_info *devinfo = bld.shader->devinfo;
4383 const fs_reg &color0 = inst->src[FB_WRITE_LOGICAL_SRC_COLOR0];
4384 const fs_reg &color1 = inst->src[FB_WRITE_LOGICAL_SRC_COLOR1];
4385 const fs_reg &src0_alpha = inst->src[FB_WRITE_LOGICAL_SRC_SRC0_ALPHA];
4386 const fs_reg &src_depth = inst->src[FB_WRITE_LOGICAL_SRC_SRC_DEPTH];
4387 const fs_reg &dst_depth = inst->src[FB_WRITE_LOGICAL_SRC_DST_DEPTH];
4388 const fs_reg &src_stencil = inst->src[FB_WRITE_LOGICAL_SRC_SRC_STENCIL];
4389 fs_reg sample_mask = inst->src[FB_WRITE_LOGICAL_SRC_OMASK];
4390 const unsigned components =
4391 inst->src[FB_WRITE_LOGICAL_SRC_COMPONENTS].ud;
4392
4393 /* We can potentially have a message length of up to 15, so we have to set
4394 * base_mrf to either 0 or 1 in order to fit in m0..m15.
4395 */
4396 fs_reg sources[15];
4397 int header_size = 2, payload_header_size;
4398 unsigned length = 0;
4399
4400 if (devinfo->gen < 6) {
4401 /* TODO: Support SIMD32 on gen4-5 */
4402 assert(bld.group() < 16);
4403
4404 /* For gen4-5, we always have a header consisting of g0 and g1. We have
4405 * an implied MOV from g0,g1 to the start of the message. The MOV from
4406 * g0 is handled by the hardware and the MOV from g1 is provided by the
4407 * generator. This is required because, on gen4-5, the generator may
4408 * generate two write messages with different message lengths in order
4409 * to handle AA data properly.
4410 *
4411 * Also, since the pixel mask goes in the g0 portion of the message and
4412 * since render target writes are the last thing in the shader, we write
4413 * the pixel mask directly into g0 and it will get copied as part of the
4414 * implied write.
4415 */
4416 if (prog_data->uses_kill) {
4417 bld.exec_all().group(1, 0)
4418 .MOV(retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_UW),
4419 brw_flag_reg(0, 1));
4420 }
4421
4422 assert(length == 0);
4423 length = 2;
4424 } else if ((devinfo->gen <= 7 && !devinfo->is_haswell &&
4425 prog_data->uses_kill) ||
4426 (devinfo->gen < 11 &&
4427 (color1.file != BAD_FILE || key->nr_color_regions > 1))) {
4428 /* From the Sandy Bridge PRM, volume 4, page 198:
4429 *
4430 * "Dispatched Pixel Enables. One bit per pixel indicating
4431 * which pixels were originally enabled when the thread was
4432 * dispatched. This field is only required for the end-of-
4433 * thread message and on all dual-source messages."
4434 */
4435 const fs_builder ubld = bld.exec_all().group(8, 0);
4436
4437 fs_reg header = ubld.vgrf(BRW_REGISTER_TYPE_UD, 2);
4438 if (bld.group() < 16) {
4439 /* The header starts off as g0 and g1 for the first half */
4440 ubld.group(16, 0).MOV(header, retype(brw_vec8_grf(0, 0),
4441 BRW_REGISTER_TYPE_UD));
4442 } else {
4443 /* The header starts off as g0 and g2 for the second half */
4444 assert(bld.group() < 32);
4445 const fs_reg header_sources[2] = {
4446 retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD),
4447 retype(brw_vec8_grf(2, 0), BRW_REGISTER_TYPE_UD),
4448 };
4449 ubld.LOAD_PAYLOAD(header, header_sources, 2, 0);
4450 }
4451
4452 uint32_t g00_bits = 0;
4453
4454 /* Set "Source0 Alpha Present to RenderTarget" bit in message
4455 * header.
4456 */
4457 if (inst->target > 0 && prog_data->replicate_alpha)
4458 g00_bits |= 1 << 11;
4459
4460 /* Set computes stencil to render target */
4461 if (prog_data->computed_stencil)
4462 g00_bits |= 1 << 14;
4463
4464 if (g00_bits) {
4465 /* OR extra bits into g0.0 */
4466 ubld.group(1, 0).OR(component(header, 0),
4467 retype(brw_vec1_grf(0, 0),
4468 BRW_REGISTER_TYPE_UD),
4469 brw_imm_ud(g00_bits));
4470 }
4471
4472 /* Set the render target index for choosing BLEND_STATE. */
4473 if (inst->target > 0) {
4474 ubld.group(1, 0).MOV(component(header, 2), brw_imm_ud(inst->target));
4475 }
4476
4477 if (prog_data->uses_kill) {
4478 assert(bld.group() < 16);
4479 ubld.group(1, 0).MOV(retype(component(header, 15),
4480 BRW_REGISTER_TYPE_UW),
4481 brw_flag_reg(0, 1));
4482 }
4483
4484 assert(length == 0);
4485 sources[0] = header;
4486 sources[1] = horiz_offset(header, 8);
4487 length = 2;
4488 }
4489 assert(length == 0 || length == 2);
4490 header_size = length;
4491
4492 if (payload.aa_dest_stencil_reg[0]) {
4493 assert(inst->group < 16);
4494 sources[length] = fs_reg(VGRF, bld.shader->alloc.allocate(1));
4495 bld.group(8, 0).exec_all().annotate("FB write stencil/AA alpha")
4496 .MOV(sources[length],
4497 fs_reg(brw_vec8_grf(payload.aa_dest_stencil_reg[0], 0)));
4498 length++;
4499 }
4500
4501 bool src0_alpha_present = false;
4502
4503 if (src0_alpha.file != BAD_FILE) {
4504 for (unsigned i = 0; i < bld.dispatch_width() / 8; i++) {
4505 const fs_builder &ubld = bld.exec_all().group(8, i)
4506 .annotate("FB write src0 alpha");
4507 const fs_reg tmp = ubld.vgrf(BRW_REGISTER_TYPE_F);
4508 ubld.MOV(tmp, horiz_offset(src0_alpha, i * 8));
4509 setup_color_payload(ubld, key, &sources[length], tmp, 1);
4510 length++;
4511 }
4512 src0_alpha_present = true;
4513 } else if (prog_data->replicate_alpha && inst->target != 0) {
4514 /* Handle the case when fragment shader doesn't write to draw buffer
4515 * zero. No need to call setup_color_payload() for src0_alpha because
4516 * alpha value will be undefined.
4517 */
4518 length += bld.dispatch_width() / 8;
4519 src0_alpha_present = true;
4520 }
4521
4522 if (sample_mask.file != BAD_FILE) {
4523 sources[length] = fs_reg(VGRF, bld.shader->alloc.allocate(1),
4524 BRW_REGISTER_TYPE_UD);
4525
4526 /* Hand over gl_SampleMask. Only the lower 16 bits of each channel are
4527 * relevant. Since it's unsigned single words one vgrf is always
4528 * 16-wide, but only the lower or higher 8 channels will be used by the
4529 * hardware when doing a SIMD8 write depending on whether we have
4530 * selected the subspans for the first or second half respectively.
4531 */
4532 assert(sample_mask.file != BAD_FILE && type_sz(sample_mask.type) == 4);
4533 sample_mask.type = BRW_REGISTER_TYPE_UW;
4534 sample_mask.stride *= 2;
4535
4536 bld.exec_all().annotate("FB write oMask")
4537 .MOV(horiz_offset(retype(sources[length], BRW_REGISTER_TYPE_UW),
4538 inst->group % 16),
4539 sample_mask);
4540 length++;
4541 }
4542
4543 payload_header_size = length;
4544
4545 setup_color_payload(bld, key, &sources[length], color0, components);
4546 length += 4;
4547
4548 if (color1.file != BAD_FILE) {
4549 setup_color_payload(bld, key, &sources[length], color1, components);
4550 length += 4;
4551 }
4552
4553 if (src_depth.file != BAD_FILE) {
4554 sources[length] = src_depth;
4555 length++;
4556 }
4557
4558 if (dst_depth.file != BAD_FILE) {
4559 sources[length] = dst_depth;
4560 length++;
4561 }
4562
4563 if (src_stencil.file != BAD_FILE) {
4564 assert(devinfo->gen >= 9);
4565 assert(bld.dispatch_width() == 8);
4566
4567 /* XXX: src_stencil is only available on gen9+. dst_depth is never
4568 * available on gen9+. As such it's impossible to have both enabled at the
4569 * same time and therefore length cannot overrun the array.
4570 */
4571 assert(length < 15);
4572
4573 sources[length] = bld.vgrf(BRW_REGISTER_TYPE_UD);
4574 bld.exec_all().annotate("FB write OS")
4575 .MOV(retype(sources[length], BRW_REGISTER_TYPE_UB),
4576 subscript(src_stencil, BRW_REGISTER_TYPE_UB, 0));
4577 length++;
4578 }
4579
4580 fs_inst *load;
4581 if (devinfo->gen >= 7) {
4582 /* Send from the GRF */
4583 fs_reg payload = fs_reg(VGRF, -1, BRW_REGISTER_TYPE_F);
4584 load = bld.LOAD_PAYLOAD(payload, sources, length, payload_header_size);
4585 payload.nr = bld.shader->alloc.allocate(regs_written(load));
4586 load->dst = payload;
4587
4588 uint32_t msg_ctl = brw_fb_write_msg_control(inst, prog_data);
4589 uint32_t ex_desc = 0;
4590
4591 inst->desc =
4592 (inst->group / 16) << 11 | /* rt slot group */
4593 brw_dp_write_desc(devinfo, inst->target, msg_ctl,
4594 GEN6_DATAPORT_WRITE_MESSAGE_RENDER_TARGET_WRITE,
4595 inst->last_rt, false);
4596
4597 if (devinfo->gen >= 11) {
4598 /* Set the "Render Target Index" and "Src0 Alpha Present" fields
4599 * in the extended message descriptor, in lieu of using a header.
4600 */
4601 ex_desc = inst->target << 12 | src0_alpha_present << 15;
4602
4603 if (key->nr_color_regions == 0)
4604 ex_desc |= 1 << 20; /* Null Render Target */
4605 }
4606
4607 inst->opcode = SHADER_OPCODE_SEND;
4608 inst->resize_sources(3);
4609 inst->sfid = GEN6_SFID_DATAPORT_RENDER_CACHE;
4610 inst->src[0] = brw_imm_ud(inst->desc);
4611 inst->src[1] = brw_imm_ud(ex_desc);
4612 inst->src[2] = payload;
4613 inst->mlen = regs_written(load);
4614 inst->ex_mlen = 0;
4615 inst->header_size = header_size;
4616 inst->check_tdr = true;
4617 inst->send_has_side_effects = true;
4618 } else {
4619 /* Send from the MRF */
4620 load = bld.LOAD_PAYLOAD(fs_reg(MRF, 1, BRW_REGISTER_TYPE_F),
4621 sources, length, payload_header_size);
4622
4623 /* On pre-SNB, we have to interlace the color values. LOAD_PAYLOAD
4624 * will do this for us if we just give it a COMPR4 destination.
4625 */
4626 if (devinfo->gen < 6 && bld.dispatch_width() == 16)
4627 load->dst.nr |= BRW_MRF_COMPR4;
4628
4629 if (devinfo->gen < 6) {
4630 /* Set up src[0] for the implied MOV from grf0-1 */
4631 inst->resize_sources(1);
4632 inst->src[0] = brw_vec8_grf(0, 0);
4633 } else {
4634 inst->resize_sources(0);
4635 }
4636 inst->base_mrf = 1;
4637 inst->opcode = FS_OPCODE_FB_WRITE;
4638 inst->mlen = regs_written(load);
4639 inst->header_size = header_size;
4640 }
4641 }
4642
4643 static void
4644 lower_fb_read_logical_send(const fs_builder &bld, fs_inst *inst)
4645 {
4646 const fs_builder &ubld = bld.exec_all().group(8, 0);
4647 const unsigned length = 2;
4648 const fs_reg header = ubld.vgrf(BRW_REGISTER_TYPE_UD, length);
4649
4650 if (bld.group() < 16) {
4651 ubld.group(16, 0).MOV(header, retype(brw_vec8_grf(0, 0),
4652 BRW_REGISTER_TYPE_UD));
4653 } else {
4654 assert(bld.group() < 32);
4655 const fs_reg header_sources[] = {
4656 retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD),
4657 retype(brw_vec8_grf(2, 0), BRW_REGISTER_TYPE_UD)
4658 };
4659 ubld.LOAD_PAYLOAD(header, header_sources, ARRAY_SIZE(header_sources), 0);
4660 }
4661
4662 inst->resize_sources(1);
4663 inst->src[0] = header;
4664 inst->opcode = FS_OPCODE_FB_READ;
4665 inst->mlen = length;
4666 inst->header_size = length;
4667 }
4668
4669 static void
4670 lower_sampler_logical_send_gen4(const fs_builder &bld, fs_inst *inst, opcode op,
4671 const fs_reg &coordinate,
4672 const fs_reg &shadow_c,
4673 const fs_reg &lod, const fs_reg &lod2,
4674 const fs_reg &surface,
4675 const fs_reg &sampler,
4676 unsigned coord_components,
4677 unsigned grad_components)
4678 {
4679 const bool has_lod = (op == SHADER_OPCODE_TXL || op == FS_OPCODE_TXB ||
4680 op == SHADER_OPCODE_TXF || op == SHADER_OPCODE_TXS);
4681 fs_reg msg_begin(MRF, 1, BRW_REGISTER_TYPE_F);
4682 fs_reg msg_end = msg_begin;
4683
4684 /* g0 header. */
4685 msg_end = offset(msg_end, bld.group(8, 0), 1);
4686
4687 for (unsigned i = 0; i < coord_components; i++)
4688 bld.MOV(retype(offset(msg_end, bld, i), coordinate.type),
4689 offset(coordinate, bld, i));
4690
4691 msg_end = offset(msg_end, bld, coord_components);
4692
4693 /* Messages other than SAMPLE and RESINFO in SIMD16 and TXD in SIMD8
4694 * require all three components to be present and zero if they are unused.
4695 */
4696 if (coord_components > 0 &&
4697 (has_lod || shadow_c.file != BAD_FILE ||
4698 (op == SHADER_OPCODE_TEX && bld.dispatch_width() == 8))) {
4699 for (unsigned i = coord_components; i < 3; i++)
4700 bld.MOV(offset(msg_end, bld, i), brw_imm_f(0.0f));
4701
4702 msg_end = offset(msg_end, bld, 3 - coord_components);
4703 }
4704
4705 if (op == SHADER_OPCODE_TXD) {
4706 /* TXD unsupported in SIMD16 mode. */
4707 assert(bld.dispatch_width() == 8);
4708
4709 /* the slots for u and v are always present, but r is optional */
4710 if (coord_components < 2)
4711 msg_end = offset(msg_end, bld, 2 - coord_components);
4712
4713 /* P = u, v, r
4714 * dPdx = dudx, dvdx, drdx
4715 * dPdy = dudy, dvdy, drdy
4716 *
4717 * 1-arg: Does not exist.
4718 *
4719 * 2-arg: dudx dvdx dudy dvdy
4720 * dPdx.x dPdx.y dPdy.x dPdy.y
4721 * m4 m5 m6 m7
4722 *
4723 * 3-arg: dudx dvdx drdx dudy dvdy drdy
4724 * dPdx.x dPdx.y dPdx.z dPdy.x dPdy.y dPdy.z
4725 * m5 m6 m7 m8 m9 m10
4726 */
4727 for (unsigned i = 0; i < grad_components; i++)
4728 bld.MOV(offset(msg_end, bld, i), offset(lod, bld, i));
4729
4730 msg_end = offset(msg_end, bld, MAX2(grad_components, 2));
4731
4732 for (unsigned i = 0; i < grad_components; i++)
4733 bld.MOV(offset(msg_end, bld, i), offset(lod2, bld, i));
4734
4735 msg_end = offset(msg_end, bld, MAX2(grad_components, 2));
4736 }
4737
4738 if (has_lod) {
4739 /* Bias/LOD with shadow comparator is unsupported in SIMD16 -- *Without*
4740 * shadow comparator (including RESINFO) it's unsupported in SIMD8 mode.
4741 */
4742 assert(shadow_c.file != BAD_FILE ? bld.dispatch_width() == 8 :
4743 bld.dispatch_width() == 16);
4744
4745 const brw_reg_type type =
4746 (op == SHADER_OPCODE_TXF || op == SHADER_OPCODE_TXS ?
4747 BRW_REGISTER_TYPE_UD : BRW_REGISTER_TYPE_F);
4748 bld.MOV(retype(msg_end, type), lod);
4749 msg_end = offset(msg_end, bld, 1);
4750 }
4751
4752 if (shadow_c.file != BAD_FILE) {
4753 if (op == SHADER_OPCODE_TEX && bld.dispatch_width() == 8) {
4754 /* There's no plain shadow compare message, so we use shadow
4755 * compare with a bias of 0.0.
4756 */
4757 bld.MOV(msg_end, brw_imm_f(0.0f));
4758 msg_end = offset(msg_end, bld, 1);
4759 }
4760
4761 bld.MOV(msg_end, shadow_c);
4762 msg_end = offset(msg_end, bld, 1);
4763 }
4764
4765 inst->opcode = op;
4766 inst->src[0] = reg_undef;
4767 inst->src[1] = surface;
4768 inst->src[2] = sampler;
4769 inst->resize_sources(3);
4770 inst->base_mrf = msg_begin.nr;
4771 inst->mlen = msg_end.nr - msg_begin.nr;
4772 inst->header_size = 1;
4773 }
4774
4775 static void
4776 lower_sampler_logical_send_gen5(const fs_builder &bld, fs_inst *inst, opcode op,
4777 const fs_reg &coordinate,
4778 const fs_reg &shadow_c,
4779 const fs_reg &lod, const fs_reg &lod2,
4780 const fs_reg &sample_index,
4781 const fs_reg &surface,
4782 const fs_reg &sampler,
4783 unsigned coord_components,
4784 unsigned grad_components)
4785 {
4786 fs_reg message(MRF, 2, BRW_REGISTER_TYPE_F);
4787 fs_reg msg_coords = message;
4788 unsigned header_size = 0;
4789
4790 if (inst->offset != 0) {
4791 /* The offsets set up by the visitor are in the m1 header, so we can't
4792 * go headerless.
4793 */
4794 header_size = 1;
4795 message.nr--;
4796 }
4797
4798 for (unsigned i = 0; i < coord_components; i++)
4799 bld.MOV(retype(offset(msg_coords, bld, i), coordinate.type),
4800 offset(coordinate, bld, i));
4801
4802 fs_reg msg_end = offset(msg_coords, bld, coord_components);
4803 fs_reg msg_lod = offset(msg_coords, bld, 4);
4804
4805 if (shadow_c.file != BAD_FILE) {
4806 fs_reg msg_shadow = msg_lod;
4807 bld.MOV(msg_shadow, shadow_c);
4808 msg_lod = offset(msg_shadow, bld, 1);
4809 msg_end = msg_lod;
4810 }
4811
4812 switch (op) {
4813 case SHADER_OPCODE_TXL:
4814 case FS_OPCODE_TXB:
4815 bld.MOV(msg_lod, lod);
4816 msg_end = offset(msg_lod, bld, 1);
4817 break;
4818 case SHADER_OPCODE_TXD:
4819 /**
4820 * P = u, v, r
4821 * dPdx = dudx, dvdx, drdx
4822 * dPdy = dudy, dvdy, drdy
4823 *
4824 * Load up these values:
4825 * - dudx dudy dvdx dvdy drdx drdy
4826 * - dPdx.x dPdy.x dPdx.y dPdy.y dPdx.z dPdy.z
4827 */
4828 msg_end = msg_lod;
4829 for (unsigned i = 0; i < grad_components; i++) {
4830 bld.MOV(msg_end, offset(lod, bld, i));
4831 msg_end = offset(msg_end, bld, 1);
4832
4833 bld.MOV(msg_end, offset(lod2, bld, i));
4834 msg_end = offset(msg_end, bld, 1);
4835 }
4836 break;
4837 case SHADER_OPCODE_TXS:
4838 msg_lod = retype(msg_end, BRW_REGISTER_TYPE_UD);
4839 bld.MOV(msg_lod, lod);
4840 msg_end = offset(msg_lod, bld, 1);
4841 break;
4842 case SHADER_OPCODE_TXF:
4843 msg_lod = offset(msg_coords, bld, 3);
4844 bld.MOV(retype(msg_lod, BRW_REGISTER_TYPE_UD), lod);
4845 msg_end = offset(msg_lod, bld, 1);
4846 break;
4847 case SHADER_OPCODE_TXF_CMS:
4848 msg_lod = offset(msg_coords, bld, 3);
4849 /* lod */
4850 bld.MOV(retype(msg_lod, BRW_REGISTER_TYPE_UD), brw_imm_ud(0u));
4851 /* sample index */
4852 bld.MOV(retype(offset(msg_lod, bld, 1), BRW_REGISTER_TYPE_UD), sample_index);
4853 msg_end = offset(msg_lod, bld, 2);
4854 break;
4855 default:
4856 break;
4857 }
4858
4859 inst->opcode = op;
4860 inst->src[0] = reg_undef;
4861 inst->src[1] = surface;
4862 inst->src[2] = sampler;
4863 inst->resize_sources(3);
4864 inst->base_mrf = message.nr;
4865 inst->mlen = msg_end.nr - message.nr;
4866 inst->header_size = header_size;
4867
4868 /* Message length > MAX_SAMPLER_MESSAGE_SIZE disallowed by hardware. */
4869 assert(inst->mlen <= MAX_SAMPLER_MESSAGE_SIZE);
4870 }
4871
4872 static bool
4873 is_high_sampler(const struct gen_device_info *devinfo, const fs_reg &sampler)
4874 {
4875 if (devinfo->gen < 8 && !devinfo->is_haswell)
4876 return false;
4877
4878 return sampler.file != IMM || sampler.ud >= 16;
4879 }
4880
4881 static unsigned
4882 sampler_msg_type(const gen_device_info *devinfo,
4883 opcode opcode, bool shadow_compare)
4884 {
4885 assert(devinfo->gen >= 5);
4886 switch (opcode) {
4887 case SHADER_OPCODE_TEX:
4888 return shadow_compare ? GEN5_SAMPLER_MESSAGE_SAMPLE_COMPARE :
4889 GEN5_SAMPLER_MESSAGE_SAMPLE;
4890 case FS_OPCODE_TXB:
4891 return shadow_compare ? GEN5_SAMPLER_MESSAGE_SAMPLE_BIAS_COMPARE :
4892 GEN5_SAMPLER_MESSAGE_SAMPLE_BIAS;
4893 case SHADER_OPCODE_TXL:
4894 return shadow_compare ? GEN5_SAMPLER_MESSAGE_SAMPLE_LOD_COMPARE :
4895 GEN5_SAMPLER_MESSAGE_SAMPLE_LOD;
4896 case SHADER_OPCODE_TXL_LZ:
4897 return shadow_compare ? GEN9_SAMPLER_MESSAGE_SAMPLE_C_LZ :
4898 GEN9_SAMPLER_MESSAGE_SAMPLE_LZ;
4899 case SHADER_OPCODE_TXS:
4900 case SHADER_OPCODE_IMAGE_SIZE_LOGICAL:
4901 return GEN5_SAMPLER_MESSAGE_SAMPLE_RESINFO;
4902 case SHADER_OPCODE_TXD:
4903 assert(!shadow_compare || devinfo->gen >= 8 || devinfo->is_haswell);
4904 return shadow_compare ? HSW_SAMPLER_MESSAGE_SAMPLE_DERIV_COMPARE :
4905 GEN5_SAMPLER_MESSAGE_SAMPLE_DERIVS;
4906 case SHADER_OPCODE_TXF:
4907 return GEN5_SAMPLER_MESSAGE_SAMPLE_LD;
4908 case SHADER_OPCODE_TXF_LZ:
4909 assert(devinfo->gen >= 9);
4910 return GEN9_SAMPLER_MESSAGE_SAMPLE_LD_LZ;
4911 case SHADER_OPCODE_TXF_CMS_W:
4912 assert(devinfo->gen >= 9);
4913 return GEN9_SAMPLER_MESSAGE_SAMPLE_LD2DMS_W;
4914 case SHADER_OPCODE_TXF_CMS:
4915 return devinfo->gen >= 7 ? GEN7_SAMPLER_MESSAGE_SAMPLE_LD2DMS :
4916 GEN5_SAMPLER_MESSAGE_SAMPLE_LD;
4917 case SHADER_OPCODE_TXF_UMS:
4918 assert(devinfo->gen >= 7);
4919 return GEN7_SAMPLER_MESSAGE_SAMPLE_LD2DSS;
4920 case SHADER_OPCODE_TXF_MCS:
4921 assert(devinfo->gen >= 7);
4922 return GEN7_SAMPLER_MESSAGE_SAMPLE_LD_MCS;
4923 case SHADER_OPCODE_LOD:
4924 return GEN5_SAMPLER_MESSAGE_LOD;
4925 case SHADER_OPCODE_TG4:
4926 assert(devinfo->gen >= 7);
4927 return shadow_compare ? GEN7_SAMPLER_MESSAGE_SAMPLE_GATHER4_C :
4928 GEN7_SAMPLER_MESSAGE_SAMPLE_GATHER4;
4929 break;
4930 case SHADER_OPCODE_TG4_OFFSET:
4931 assert(devinfo->gen >= 7);
4932 return shadow_compare ? GEN7_SAMPLER_MESSAGE_SAMPLE_GATHER4_PO_C :
4933 GEN7_SAMPLER_MESSAGE_SAMPLE_GATHER4_PO;
4934 case SHADER_OPCODE_SAMPLEINFO:
4935 return GEN6_SAMPLER_MESSAGE_SAMPLE_SAMPLEINFO;
4936 default:
4937 unreachable("not reached");
4938 }
4939 }
4940
4941 static void
4942 lower_sampler_logical_send_gen7(const fs_builder &bld, fs_inst *inst, opcode op,
4943 const fs_reg &coordinate,
4944 const fs_reg &shadow_c,
4945 fs_reg lod, const fs_reg &lod2,
4946 const fs_reg &min_lod,
4947 const fs_reg &sample_index,
4948 const fs_reg &mcs,
4949 const fs_reg &surface,
4950 const fs_reg &sampler,
4951 const fs_reg &surface_handle,
4952 const fs_reg &sampler_handle,
4953 const fs_reg &tg4_offset,
4954 unsigned coord_components,
4955 unsigned grad_components)
4956 {
4957 const gen_device_info *devinfo = bld.shader->devinfo;
4958 const brw_stage_prog_data *prog_data = bld.shader->stage_prog_data;
4959 unsigned reg_width = bld.dispatch_width() / 8;
4960 unsigned header_size = 0, length = 0;
4961 fs_reg sources[MAX_SAMPLER_MESSAGE_SIZE];
4962 for (unsigned i = 0; i < ARRAY_SIZE(sources); i++)
4963 sources[i] = bld.vgrf(BRW_REGISTER_TYPE_F);
4964
4965 /* We must have exactly one of surface/sampler and surface/sampler_handle */
4966 assert((surface.file == BAD_FILE) != (surface_handle.file == BAD_FILE));
4967 assert((sampler.file == BAD_FILE) != (sampler_handle.file == BAD_FILE));
4968
4969 if (op == SHADER_OPCODE_TG4 || op == SHADER_OPCODE_TG4_OFFSET ||
4970 inst->offset != 0 || inst->eot ||
4971 op == SHADER_OPCODE_SAMPLEINFO ||
4972 sampler_handle.file != BAD_FILE ||
4973 is_high_sampler(devinfo, sampler)) {
4974 /* For general texture offsets (no txf workaround), we need a header to
4975 * put them in.
4976 *
4977 * TG4 needs to place its channel select in the header, for interaction
4978 * with ARB_texture_swizzle. The sampler index is only 4-bits, so for
4979 * larger sampler numbers we need to offset the Sampler State Pointer in
4980 * the header.
4981 */
4982 fs_reg header = retype(sources[0], BRW_REGISTER_TYPE_UD);
4983 header_size = 1;
4984 length++;
4985
4986 /* If we're requesting fewer than four channels worth of response,
4987 * and we have an explicit header, we need to set up the sampler
4988 * writemask. It's reversed from normal: 1 means "don't write".
4989 */
4990 if (!inst->eot && regs_written(inst) != 4 * reg_width) {
4991 assert(regs_written(inst) % reg_width == 0);
4992 unsigned mask = ~((1 << (regs_written(inst) / reg_width)) - 1) & 0xf;
4993 inst->offset |= mask << 12;
4994 }
4995
4996 /* Build the actual header */
4997 const fs_builder ubld = bld.exec_all().group(8, 0);
4998 const fs_builder ubld1 = ubld.group(1, 0);
4999 ubld.MOV(header, retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD));
5000 if (inst->offset) {
5001 ubld1.MOV(component(header, 2), brw_imm_ud(inst->offset));
5002 } else if (bld.shader->stage != MESA_SHADER_VERTEX &&
5003 bld.shader->stage != MESA_SHADER_FRAGMENT) {
5004 /* The vertex and fragment stages have g0.2 set to 0, so
5005 * header0.2 is 0 when g0 is copied. Other stages may not, so we
5006 * must set it to 0 to avoid setting undesirable bits in the
5007 * message.
5008 */
5009 ubld1.MOV(component(header, 2), brw_imm_ud(0));
5010 }
5011
5012 if (sampler_handle.file != BAD_FILE) {
5013 /* Bindless sampler handles aren't relative to the sampler state
5014 * pointer passed into the shader through SAMPLER_STATE_POINTERS_*.
5015 * Instead, it's an absolute pointer relative to dynamic state base
5016 * address.
5017 *
5018 * Sampler states are 16 bytes each and the pointer we give here has
5019 * to be 32-byte aligned. In order to avoid more indirect messages
5020 * than required, we assume that all bindless sampler states are
5021 * 32-byte aligned. This sacrifices a bit of general state base
5022 * address space but means we can do something more efficient in the
5023 * shader.
5024 */
5025 ubld1.MOV(component(header, 3), sampler_handle);
5026 } else if (is_high_sampler(devinfo, sampler)) {
5027 if (sampler.file == BRW_IMMEDIATE_VALUE) {
5028 assert(sampler.ud >= 16);
5029 const int sampler_state_size = 16; /* 16 bytes */
5030
5031 ubld1.ADD(component(header, 3),
5032 retype(brw_vec1_grf(0, 3), BRW_REGISTER_TYPE_UD),
5033 brw_imm_ud(16 * (sampler.ud / 16) * sampler_state_size));
5034 } else {
5035 fs_reg tmp = ubld1.vgrf(BRW_REGISTER_TYPE_UD);
5036 ubld1.AND(tmp, sampler, brw_imm_ud(0x0f0));
5037 ubld1.SHL(tmp, tmp, brw_imm_ud(4));
5038 ubld1.ADD(component(header, 3),
5039 retype(brw_vec1_grf(0, 3), BRW_REGISTER_TYPE_UD),
5040 tmp);
5041 }
5042 }
5043 }
5044
5045 if (shadow_c.file != BAD_FILE) {
5046 bld.MOV(sources[length], shadow_c);
5047 length++;
5048 }
5049
5050 bool coordinate_done = false;
5051
5052 /* Set up the LOD info */
5053 switch (op) {
5054 case FS_OPCODE_TXB:
5055 case SHADER_OPCODE_TXL:
5056 if (devinfo->gen >= 9 && op == SHADER_OPCODE_TXL && lod.is_zero()) {
5057 op = SHADER_OPCODE_TXL_LZ;
5058 break;
5059 }
5060 bld.MOV(sources[length], lod);
5061 length++;
5062 break;
5063 case SHADER_OPCODE_TXD:
5064 /* TXD should have been lowered in SIMD16 mode. */
5065 assert(bld.dispatch_width() == 8);
5066
5067 /* Load dPdx and the coordinate together:
5068 * [hdr], [ref], x, dPdx.x, dPdy.x, y, dPdx.y, dPdy.y, z, dPdx.z, dPdy.z
5069 */
5070 for (unsigned i = 0; i < coord_components; i++) {
5071 bld.MOV(sources[length++], offset(coordinate, bld, i));
5072
5073 /* For cube map array, the coordinate is (u,v,r,ai) but there are
5074 * only derivatives for (u, v, r).
5075 */
5076 if (i < grad_components) {
5077 bld.MOV(sources[length++], offset(lod, bld, i));
5078 bld.MOV(sources[length++], offset(lod2, bld, i));
5079 }
5080 }
5081
5082 coordinate_done = true;
5083 break;
5084 case SHADER_OPCODE_TXS:
5085 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_UD), lod);
5086 length++;
5087 break;
5088 case SHADER_OPCODE_IMAGE_SIZE_LOGICAL:
5089 /* We need an LOD; just use 0 */
5090 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_UD), brw_imm_ud(0));
5091 length++;
5092 break;
5093 case SHADER_OPCODE_TXF:
5094 /* Unfortunately, the parameters for LD are intermixed: u, lod, v, r.
5095 * On Gen9 they are u, v, lod, r
5096 */
5097 bld.MOV(retype(sources[length++], BRW_REGISTER_TYPE_D), coordinate);
5098
5099 if (devinfo->gen >= 9) {
5100 if (coord_components >= 2) {
5101 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_D),
5102 offset(coordinate, bld, 1));
5103 } else {
5104 sources[length] = brw_imm_d(0);
5105 }
5106 length++;
5107 }
5108
5109 if (devinfo->gen >= 9 && lod.is_zero()) {
5110 op = SHADER_OPCODE_TXF_LZ;
5111 } else {
5112 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_D), lod);
5113 length++;
5114 }
5115
5116 for (unsigned i = devinfo->gen >= 9 ? 2 : 1; i < coord_components; i++)
5117 bld.MOV(retype(sources[length++], BRW_REGISTER_TYPE_D),
5118 offset(coordinate, bld, i));
5119
5120 coordinate_done = true;
5121 break;
5122
5123 case SHADER_OPCODE_TXF_CMS:
5124 case SHADER_OPCODE_TXF_CMS_W:
5125 case SHADER_OPCODE_TXF_UMS:
5126 case SHADER_OPCODE_TXF_MCS:
5127 if (op == SHADER_OPCODE_TXF_UMS ||
5128 op == SHADER_OPCODE_TXF_CMS ||
5129 op == SHADER_OPCODE_TXF_CMS_W) {
5130 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_UD), sample_index);
5131 length++;
5132 }
5133
5134 if (op == SHADER_OPCODE_TXF_CMS || op == SHADER_OPCODE_TXF_CMS_W) {
5135 /* Data from the multisample control surface. */
5136 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_UD), mcs);
5137 length++;
5138
5139 /* On Gen9+ we'll use ld2dms_w instead which has two registers for
5140 * the MCS data.
5141 */
5142 if (op == SHADER_OPCODE_TXF_CMS_W) {
5143 bld.MOV(retype(sources[length], BRW_REGISTER_TYPE_UD),
5144 mcs.file == IMM ?
5145 mcs :
5146 offset(mcs, bld, 1));
5147 length++;
5148 }
5149 }
5150
5151 /* There is no offsetting for this message; just copy in the integer
5152 * texture coordinates.
5153 */
5154 for (unsigned i = 0; i < coord_components; i++)
5155 bld.MOV(retype(sources[length++], BRW_REGISTER_TYPE_D),
5156 offset(coordinate, bld, i));
5157
5158 coordinate_done = true;
5159 break;
5160 case SHADER_OPCODE_TG4_OFFSET:
5161 /* More crazy intermixing */
5162 for (unsigned i = 0; i < 2; i++) /* u, v */
5163 bld.MOV(sources[length++], offset(coordinate, bld, i));
5164
5165 for (unsigned i = 0; i < 2; i++) /* offu, offv */
5166 bld.MOV(retype(sources[length++], BRW_REGISTER_TYPE_D),
5167 offset(tg4_offset, bld, i));
5168
5169 if (coord_components == 3) /* r if present */
5170 bld.MOV(sources[length++], offset(coordinate, bld, 2));
5171
5172 coordinate_done = true;
5173 break;
5174 default:
5175 break;
5176 }
5177
5178 /* Set up the coordinate (except for cases where it was done above) */
5179 if (!coordinate_done) {
5180 for (unsigned i = 0; i < coord_components; i++)
5181 bld.MOV(sources[length++], offset(coordinate, bld, i));
5182 }
5183
5184 if (min_lod.file != BAD_FILE) {
5185 /* Account for all of the missing coordinate sources */
5186 length += 4 - coord_components;
5187 if (op == SHADER_OPCODE_TXD)
5188 length += (3 - grad_components) * 2;
5189
5190 bld.MOV(sources[length++], min_lod);
5191 }
5192
5193 unsigned mlen;
5194 if (reg_width == 2)
5195 mlen = length * reg_width - header_size;
5196 else
5197 mlen = length * reg_width;
5198
5199 const fs_reg src_payload = fs_reg(VGRF, bld.shader->alloc.allocate(mlen),
5200 BRW_REGISTER_TYPE_F);
5201 bld.LOAD_PAYLOAD(src_payload, sources, length, header_size);
5202
5203 /* Generate the SEND. */
5204 inst->opcode = SHADER_OPCODE_SEND;
5205 inst->mlen = mlen;
5206 inst->header_size = header_size;
5207
5208 const unsigned msg_type =
5209 sampler_msg_type(devinfo, op, inst->shadow_compare);
5210 const unsigned simd_mode =
5211 inst->exec_size <= 8 ? BRW_SAMPLER_SIMD_MODE_SIMD8 :
5212 BRW_SAMPLER_SIMD_MODE_SIMD16;
5213
5214 uint32_t base_binding_table_index;
5215 switch (op) {
5216 case SHADER_OPCODE_TG4:
5217 case SHADER_OPCODE_TG4_OFFSET:
5218 base_binding_table_index = prog_data->binding_table.gather_texture_start;
5219 break;
5220 case SHADER_OPCODE_IMAGE_SIZE_LOGICAL:
5221 base_binding_table_index = prog_data->binding_table.image_start;
5222 break;
5223 default:
5224 base_binding_table_index = prog_data->binding_table.texture_start;
5225 break;
5226 }
5227
5228 inst->sfid = BRW_SFID_SAMPLER;
5229 if (surface.file == IMM &&
5230 (sampler.file == IMM || sampler_handle.file != BAD_FILE)) {
5231 inst->desc = brw_sampler_desc(devinfo,
5232 surface.ud + base_binding_table_index,
5233 sampler.file == IMM ? sampler.ud % 16 : 0,
5234 msg_type,
5235 simd_mode,
5236 0 /* return_format unused on gen7+ */);
5237 inst->src[0] = brw_imm_ud(0);
5238 inst->src[1] = brw_imm_ud(0); /* ex_desc */
5239 } else if (surface_handle.file != BAD_FILE) {
5240 /* Bindless surface */
5241 assert(devinfo->gen >= 9);
5242 inst->desc = brw_sampler_desc(devinfo,
5243 GEN9_BTI_BINDLESS,
5244 sampler.file == IMM ? sampler.ud % 16 : 0,
5245 msg_type,
5246 simd_mode,
5247 0 /* return_format unused on gen7+ */);
5248
5249 /* For bindless samplers, the entire address is included in the message
5250 * header so we can leave the portion in the message descriptor 0.
5251 */
5252 if (sampler_handle.file != BAD_FILE || sampler.file == IMM) {
5253 inst->src[0] = brw_imm_ud(0);
5254 } else {
5255 const fs_builder ubld = bld.group(1, 0).exec_all();
5256 fs_reg desc = ubld.vgrf(BRW_REGISTER_TYPE_UD);
5257 ubld.SHL(desc, sampler, brw_imm_ud(8));
5258 inst->src[0] = desc;
5259 }
5260
5261 /* We assume that the driver provided the handle in the top 20 bits so
5262 * we can use the surface handle directly as the extended descriptor.
5263 */
5264 inst->src[1] = retype(surface_handle, BRW_REGISTER_TYPE_UD);
5265 } else {
5266 /* Immediate portion of the descriptor */
5267 inst->desc = brw_sampler_desc(devinfo,
5268 0, /* surface */
5269 0, /* sampler */
5270 msg_type,
5271 simd_mode,
5272 0 /* return_format unused on gen7+ */);
5273 const fs_builder ubld = bld.group(1, 0).exec_all();
5274 fs_reg desc = ubld.vgrf(BRW_REGISTER_TYPE_UD);
5275 if (surface.equals(sampler)) {
5276 /* This case is common in GL */
5277 ubld.MUL(desc, surface, brw_imm_ud(0x101));
5278 } else {
5279 if (sampler_handle.file != BAD_FILE) {
5280 ubld.MOV(desc, surface);
5281 } else if (sampler.file == IMM) {
5282 ubld.OR(desc, surface, brw_imm_ud(sampler.ud << 8));
5283 } else {
5284 ubld.SHL(desc, sampler, brw_imm_ud(8));
5285 ubld.OR(desc, desc, surface);
5286 }
5287 }
5288 if (base_binding_table_index)
5289 ubld.ADD(desc, desc, brw_imm_ud(base_binding_table_index));
5290 ubld.AND(desc, desc, brw_imm_ud(0xfff));
5291
5292 inst->src[0] = component(desc, 0);
5293 inst->src[1] = brw_imm_ud(0); /* ex_desc */
5294 }
5295
5296 inst->src[2] = src_payload;
5297 inst->resize_sources(3);
5298
5299 if (inst->eot) {
5300 /* EOT sampler messages don't make sense to split because it would
5301 * involve ending half of the thread early.
5302 */
5303 assert(inst->group == 0);
5304 /* We need to use SENDC for EOT sampler messages */
5305 inst->check_tdr = true;
5306 inst->send_has_side_effects = true;
5307 }
5308
5309 /* Message length > MAX_SAMPLER_MESSAGE_SIZE disallowed by hardware. */
5310 assert(inst->mlen <= MAX_SAMPLER_MESSAGE_SIZE);
5311 }
5312
5313 static void
5314 lower_sampler_logical_send(const fs_builder &bld, fs_inst *inst, opcode op)
5315 {
5316 const gen_device_info *devinfo = bld.shader->devinfo;
5317 const fs_reg &coordinate = inst->src[TEX_LOGICAL_SRC_COORDINATE];
5318 const fs_reg &shadow_c = inst->src[TEX_LOGICAL_SRC_SHADOW_C];
5319 const fs_reg &lod = inst->src[TEX_LOGICAL_SRC_LOD];
5320 const fs_reg &lod2 = inst->src[TEX_LOGICAL_SRC_LOD2];
5321 const fs_reg &min_lod = inst->src[TEX_LOGICAL_SRC_MIN_LOD];
5322 const fs_reg &sample_index = inst->src[TEX_LOGICAL_SRC_SAMPLE_INDEX];
5323 const fs_reg &mcs = inst->src[TEX_LOGICAL_SRC_MCS];
5324 const fs_reg &surface = inst->src[TEX_LOGICAL_SRC_SURFACE];
5325 const fs_reg &sampler = inst->src[TEX_LOGICAL_SRC_SAMPLER];
5326 const fs_reg &surface_handle = inst->src[TEX_LOGICAL_SRC_SURFACE_HANDLE];
5327 const fs_reg &sampler_handle = inst->src[TEX_LOGICAL_SRC_SAMPLER_HANDLE];
5328 const fs_reg &tg4_offset = inst->src[TEX_LOGICAL_SRC_TG4_OFFSET];
5329 assert(inst->src[TEX_LOGICAL_SRC_COORD_COMPONENTS].file == IMM);
5330 const unsigned coord_components = inst->src[TEX_LOGICAL_SRC_COORD_COMPONENTS].ud;
5331 assert(inst->src[TEX_LOGICAL_SRC_GRAD_COMPONENTS].file == IMM);
5332 const unsigned grad_components = inst->src[TEX_LOGICAL_SRC_GRAD_COMPONENTS].ud;
5333
5334 if (devinfo->gen >= 7) {
5335 lower_sampler_logical_send_gen7(bld, inst, op, coordinate,
5336 shadow_c, lod, lod2, min_lod,
5337 sample_index,
5338 mcs, surface, sampler,
5339 surface_handle, sampler_handle,
5340 tg4_offset,
5341 coord_components, grad_components);
5342 } else if (devinfo->gen >= 5) {
5343 lower_sampler_logical_send_gen5(bld, inst, op, coordinate,
5344 shadow_c, lod, lod2, sample_index,
5345 surface, sampler,
5346 coord_components, grad_components);
5347 } else {
5348 lower_sampler_logical_send_gen4(bld, inst, op, coordinate,
5349 shadow_c, lod, lod2,
5350 surface, sampler,
5351 coord_components, grad_components);
5352 }
5353 }
5354
5355 static void
5356 lower_surface_logical_send(const fs_builder &bld, fs_inst *inst)
5357 {
5358 const gen_device_info *devinfo = bld.shader->devinfo;
5359
5360 /* Get the logical send arguments. */
5361 const fs_reg &addr = inst->src[SURFACE_LOGICAL_SRC_ADDRESS];
5362 const fs_reg &src = inst->src[SURFACE_LOGICAL_SRC_DATA];
5363 const fs_reg &surface = inst->src[SURFACE_LOGICAL_SRC_SURFACE];
5364 const fs_reg &surface_handle = inst->src[SURFACE_LOGICAL_SRC_SURFACE_HANDLE];
5365 const UNUSED fs_reg &dims = inst->src[SURFACE_LOGICAL_SRC_IMM_DIMS];
5366 const fs_reg &arg = inst->src[SURFACE_LOGICAL_SRC_IMM_ARG];
5367 assert(arg.file == IMM);
5368
5369 /* We must have exactly one of surface and surface_handle */
5370 assert((surface.file == BAD_FILE) != (surface_handle.file == BAD_FILE));
5371
5372 /* Calculate the total number of components of the payload. */
5373 const unsigned addr_sz = inst->components_read(SURFACE_LOGICAL_SRC_ADDRESS);
5374 const unsigned src_sz = inst->components_read(SURFACE_LOGICAL_SRC_DATA);
5375
5376 const bool is_typed_access =
5377 inst->opcode == SHADER_OPCODE_TYPED_SURFACE_READ_LOGICAL ||
5378 inst->opcode == SHADER_OPCODE_TYPED_SURFACE_WRITE_LOGICAL ||
5379 inst->opcode == SHADER_OPCODE_TYPED_ATOMIC_LOGICAL;
5380
5381 const bool is_surface_access = is_typed_access ||
5382 inst->opcode == SHADER_OPCODE_UNTYPED_SURFACE_READ_LOGICAL ||
5383 inst->opcode == SHADER_OPCODE_UNTYPED_SURFACE_WRITE_LOGICAL ||
5384 inst->opcode == SHADER_OPCODE_UNTYPED_ATOMIC_LOGICAL;
5385
5386 const bool is_stateless =
5387 surface.file == IMM && (surface.ud == BRW_BTI_STATELESS ||
5388 surface.ud == GEN8_BTI_STATELESS_NON_COHERENT);
5389
5390 const bool has_side_effects = inst->has_side_effects();
5391 fs_reg sample_mask = has_side_effects ? bld.sample_mask_reg() :
5392 fs_reg(brw_imm_d(0xffff));
5393
5394 /* From the BDW PRM Volume 7, page 147:
5395 *
5396 * "For the Data Cache Data Port*, the header must be present for the
5397 * following message types: [...] Typed read/write/atomics"
5398 *
5399 * Earlier generations have a similar wording. Because of this restriction
5400 * we don't attempt to implement sample masks via predication for such
5401 * messages prior to Gen9, since we have to provide a header anyway. On
5402 * Gen11+ the header has been removed so we can only use predication.
5403 *
5404 * For all stateless A32 messages, we also need a header
5405 */
5406 fs_reg header;
5407 if ((devinfo->gen < 9 && is_typed_access) || is_stateless) {
5408 fs_builder ubld = bld.exec_all().group(8, 0);
5409 header = ubld.vgrf(BRW_REGISTER_TYPE_UD);
5410 ubld.MOV(header, brw_imm_d(0));
5411 if (is_stateless) {
5412 /* Both the typed and scattered byte/dword A32 messages take a buffer
5413 * base address in R0.5:[31:0] (See MH1_A32_PSM for typed messages or
5414 * MH_A32_GO for byte/dword scattered messages in the SKL PRM Vol. 2d
5415 * for more details.) This is conveniently where the HW places the
5416 * scratch surface base address.
5417 *
5418 * From the SKL PRM Vol. 7 "Per-Thread Scratch Space":
5419 *
5420 * "When a thread becomes 'active' it is allocated a portion of
5421 * scratch space, sized according to PerThreadScratchSpace. The
5422 * starting location of each thread’s scratch space allocation,
5423 * ScratchSpaceOffset, is passed in the thread payload in
5424 * R0.5[31:10] and is specified as a 1KB-granular offset from the
5425 * GeneralStateBaseAddress. The computation of ScratchSpaceOffset
5426 * includes the starting address of the stage’s scratch space
5427 * allocation, as programmed by ScratchSpaceBasePointer."
5428 *
5429 * The base address is passed in bits R0.5[31:10] and the bottom 10
5430 * bits of R0.5 are used for other things. Therefore, we have to
5431 * mask off the bottom 10 bits so that we don't get a garbage base
5432 * address.
5433 */
5434 ubld.group(1, 0).AND(component(header, 5),
5435 retype(brw_vec1_grf(0, 5), BRW_REGISTER_TYPE_UD),
5436 brw_imm_ud(0xfffffc00));
5437 }
5438 if (is_surface_access)
5439 ubld.group(1, 0).MOV(component(header, 7), sample_mask);
5440 }
5441 const unsigned header_sz = header.file != BAD_FILE ? 1 : 0;
5442
5443 fs_reg payload, payload2;
5444 unsigned mlen, ex_mlen = 0;
5445 if (devinfo->gen >= 9 &&
5446 (src.file == BAD_FILE || header.file == BAD_FILE)) {
5447 /* We have split sends on gen9 and above */
5448 if (header.file == BAD_FILE) {
5449 payload = bld.move_to_vgrf(addr, addr_sz);
5450 payload2 = bld.move_to_vgrf(src, src_sz);
5451 mlen = addr_sz * (inst->exec_size / 8);
5452 ex_mlen = src_sz * (inst->exec_size / 8);
5453 } else {
5454 assert(src.file == BAD_FILE);
5455 payload = header;
5456 payload2 = bld.move_to_vgrf(addr, addr_sz);
5457 mlen = header_sz;
5458 ex_mlen = addr_sz * (inst->exec_size / 8);
5459 }
5460 } else {
5461 /* Allocate space for the payload. */
5462 const unsigned sz = header_sz + addr_sz + src_sz;
5463 payload = bld.vgrf(BRW_REGISTER_TYPE_UD, sz);
5464 fs_reg *const components = new fs_reg[sz];
5465 unsigned n = 0;
5466
5467 /* Construct the payload. */
5468 if (header.file != BAD_FILE)
5469 components[n++] = header;
5470
5471 for (unsigned i = 0; i < addr_sz; i++)
5472 components[n++] = offset(addr, bld, i);
5473
5474 for (unsigned i = 0; i < src_sz; i++)
5475 components[n++] = offset(src, bld, i);
5476
5477 bld.LOAD_PAYLOAD(payload, components, sz, header_sz);
5478 mlen = header_sz + (addr_sz + src_sz) * inst->exec_size / 8;
5479
5480 delete[] components;
5481 }
5482
5483 /* Predicate the instruction on the sample mask if no header is
5484 * provided.
5485 */
5486 if ((header.file == BAD_FILE || !is_surface_access) &&
5487 sample_mask.file != BAD_FILE && sample_mask.file != IMM) {
5488 const fs_builder ubld = bld.group(1, 0).exec_all();
5489 if (inst->predicate) {
5490 assert(inst->predicate == BRW_PREDICATE_NORMAL);
5491 assert(!inst->predicate_inverse);
5492 assert(inst->flag_subreg < 2);
5493 /* Combine the sample mask with the existing predicate by using a
5494 * vertical predication mode.
5495 */
5496 inst->predicate = BRW_PREDICATE_ALIGN1_ALLV;
5497 ubld.MOV(retype(brw_flag_subreg(inst->flag_subreg + 2),
5498 sample_mask.type),
5499 sample_mask);
5500 } else {
5501 inst->flag_subreg = 2;
5502 inst->predicate = BRW_PREDICATE_NORMAL;
5503 inst->predicate_inverse = false;
5504 ubld.MOV(retype(brw_flag_subreg(inst->flag_subreg), sample_mask.type),
5505 sample_mask);
5506 }
5507 }
5508
5509 uint32_t sfid;
5510 switch (inst->opcode) {
5511 case SHADER_OPCODE_BYTE_SCATTERED_WRITE_LOGICAL:
5512 case SHADER_OPCODE_BYTE_SCATTERED_READ_LOGICAL:
5513 /* Byte scattered opcodes go through the normal data cache */
5514 sfid = GEN7_SFID_DATAPORT_DATA_CACHE;
5515 break;
5516
5517 case SHADER_OPCODE_DWORD_SCATTERED_READ_LOGICAL:
5518 case SHADER_OPCODE_DWORD_SCATTERED_WRITE_LOGICAL:
5519 sfid = devinfo->gen >= 7 ? GEN7_SFID_DATAPORT_DATA_CACHE :
5520 devinfo->gen >= 6 ? GEN6_SFID_DATAPORT_RENDER_CACHE :
5521 BRW_DATAPORT_READ_TARGET_RENDER_CACHE;
5522 break;
5523
5524 case SHADER_OPCODE_UNTYPED_SURFACE_READ_LOGICAL:
5525 case SHADER_OPCODE_UNTYPED_SURFACE_WRITE_LOGICAL:
5526 case SHADER_OPCODE_UNTYPED_ATOMIC_LOGICAL:
5527 case SHADER_OPCODE_UNTYPED_ATOMIC_FLOAT_LOGICAL:
5528 /* Untyped Surface messages go through the data cache but the SFID value
5529 * changed on Haswell.
5530 */
5531 sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
5532 HSW_SFID_DATAPORT_DATA_CACHE_1 :
5533 GEN7_SFID_DATAPORT_DATA_CACHE);
5534 break;
5535
5536 case SHADER_OPCODE_TYPED_SURFACE_READ_LOGICAL:
5537 case SHADER_OPCODE_TYPED_SURFACE_WRITE_LOGICAL:
5538 case SHADER_OPCODE_TYPED_ATOMIC_LOGICAL:
5539 /* Typed surface messages go through the render cache on IVB and the
5540 * data cache on HSW+.
5541 */
5542 sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
5543 HSW_SFID_DATAPORT_DATA_CACHE_1 :
5544 GEN6_SFID_DATAPORT_RENDER_CACHE);
5545 break;
5546
5547 default:
5548 unreachable("Unsupported surface opcode");
5549 }
5550
5551 uint32_t desc;
5552 switch (inst->opcode) {
5553 case SHADER_OPCODE_UNTYPED_SURFACE_READ_LOGICAL:
5554 desc = brw_dp_untyped_surface_rw_desc(devinfo, inst->exec_size,
5555 arg.ud, /* num_channels */
5556 false /* write */);
5557 break;
5558
5559 case SHADER_OPCODE_UNTYPED_SURFACE_WRITE_LOGICAL:
5560 desc = brw_dp_untyped_surface_rw_desc(devinfo, inst->exec_size,
5561 arg.ud, /* num_channels */
5562 true /* write */);
5563 break;
5564
5565 case SHADER_OPCODE_BYTE_SCATTERED_READ_LOGICAL:
5566 desc = brw_dp_byte_scattered_rw_desc(devinfo, inst->exec_size,
5567 arg.ud, /* bit_size */
5568 false /* write */);
5569 break;
5570
5571 case SHADER_OPCODE_BYTE_SCATTERED_WRITE_LOGICAL:
5572 desc = brw_dp_byte_scattered_rw_desc(devinfo, inst->exec_size,
5573 arg.ud, /* bit_size */
5574 true /* write */);
5575 break;
5576
5577 case SHADER_OPCODE_DWORD_SCATTERED_READ_LOGICAL:
5578 assert(arg.ud == 32); /* bit_size */
5579 desc = brw_dp_dword_scattered_rw_desc(devinfo, inst->exec_size,
5580 false /* write */);
5581 break;
5582
5583 case SHADER_OPCODE_DWORD_SCATTERED_WRITE_LOGICAL:
5584 assert(arg.ud == 32); /* bit_size */
5585 desc = brw_dp_dword_scattered_rw_desc(devinfo, inst->exec_size,
5586 true /* write */);
5587 break;
5588
5589 case SHADER_OPCODE_UNTYPED_ATOMIC_LOGICAL:
5590 desc = brw_dp_untyped_atomic_desc(devinfo, inst->exec_size,
5591 arg.ud, /* atomic_op */
5592 !inst->dst.is_null());
5593 break;
5594
5595 case SHADER_OPCODE_UNTYPED_ATOMIC_FLOAT_LOGICAL:
5596 desc = brw_dp_untyped_atomic_float_desc(devinfo, inst->exec_size,
5597 arg.ud, /* atomic_op */
5598 !inst->dst.is_null());
5599 break;
5600
5601 case SHADER_OPCODE_TYPED_SURFACE_READ_LOGICAL:
5602 desc = brw_dp_typed_surface_rw_desc(devinfo, inst->exec_size, inst->group,
5603 arg.ud, /* num_channels */
5604 false /* write */);
5605 break;
5606
5607 case SHADER_OPCODE_TYPED_SURFACE_WRITE_LOGICAL:
5608 desc = brw_dp_typed_surface_rw_desc(devinfo, inst->exec_size, inst->group,
5609 arg.ud, /* num_channels */
5610 true /* write */);
5611 break;
5612
5613 case SHADER_OPCODE_TYPED_ATOMIC_LOGICAL:
5614 desc = brw_dp_typed_atomic_desc(devinfo, inst->exec_size, inst->group,
5615 arg.ud, /* atomic_op */
5616 !inst->dst.is_null());
5617 break;
5618
5619 default:
5620 unreachable("Unknown surface logical instruction");
5621 }
5622
5623 /* Update the original instruction. */
5624 inst->opcode = SHADER_OPCODE_SEND;
5625 inst->mlen = mlen;
5626 inst->ex_mlen = ex_mlen;
5627 inst->header_size = header_sz;
5628 inst->send_has_side_effects = has_side_effects;
5629 inst->send_is_volatile = !has_side_effects;
5630
5631 /* Set up SFID and descriptors */
5632 inst->sfid = sfid;
5633 inst->desc = desc;
5634 if (surface.file == IMM) {
5635 inst->desc |= surface.ud & 0xff;
5636 inst->src[0] = brw_imm_ud(0);
5637 inst->src[1] = brw_imm_ud(0); /* ex_desc */
5638 } else if (surface_handle.file != BAD_FILE) {
5639 /* Bindless surface */
5640 assert(devinfo->gen >= 9);
5641 inst->desc |= GEN9_BTI_BINDLESS;
5642 inst->src[0] = brw_imm_ud(0);
5643
5644 /* We assume that the driver provided the handle in the top 20 bits so
5645 * we can use the surface handle directly as the extended descriptor.
5646 */
5647 inst->src[1] = retype(surface_handle, BRW_REGISTER_TYPE_UD);
5648 } else {
5649 const fs_builder ubld = bld.exec_all().group(1, 0);
5650 fs_reg tmp = ubld.vgrf(BRW_REGISTER_TYPE_UD);
5651 ubld.AND(tmp, surface, brw_imm_ud(0xff));
5652 inst->src[0] = component(tmp, 0);
5653 inst->src[1] = brw_imm_ud(0); /* ex_desc */
5654 }
5655
5656 /* Finally, the payload */
5657 inst->src[2] = payload;
5658 inst->src[3] = payload2;
5659
5660 inst->resize_sources(4);
5661 }
5662
5663 static void
5664 lower_a64_logical_send(const fs_builder &bld, fs_inst *inst)
5665 {
5666 const gen_device_info *devinfo = bld.shader->devinfo;
5667
5668 const fs_reg &addr = inst->src[0];
5669 const fs_reg &src = inst->src[1];
5670 const unsigned src_comps = inst->components_read(1);
5671 assert(inst->src[2].file == IMM);
5672 const unsigned arg = inst->src[2].ud;
5673 const bool has_side_effects = inst->has_side_effects();
5674
5675 /* If the surface message has side effects and we're a fragment shader, we
5676 * have to predicate with the sample mask to avoid helper invocations.
5677 */
5678 if (has_side_effects && bld.shader->stage == MESA_SHADER_FRAGMENT) {
5679 inst->flag_subreg = 2;
5680 inst->predicate = BRW_PREDICATE_NORMAL;
5681 inst->predicate_inverse = false;
5682
5683 fs_reg sample_mask = bld.sample_mask_reg();
5684 const fs_builder ubld = bld.group(1, 0).exec_all();
5685 ubld.MOV(retype(brw_flag_subreg(inst->flag_subreg), sample_mask.type),
5686 sample_mask);
5687 }
5688
5689 fs_reg payload, payload2;
5690 unsigned mlen, ex_mlen = 0;
5691 if (devinfo->gen >= 9) {
5692 /* On Skylake and above, we have SENDS */
5693 mlen = 2 * (inst->exec_size / 8);
5694 ex_mlen = src_comps * type_sz(src.type) * inst->exec_size / REG_SIZE;
5695 payload = retype(bld.move_to_vgrf(addr, 1), BRW_REGISTER_TYPE_UD);
5696 payload2 = retype(bld.move_to_vgrf(src, src_comps),
5697 BRW_REGISTER_TYPE_UD);
5698 } else {
5699 /* Add two because the address is 64-bit */
5700 const unsigned dwords = 2 + src_comps;
5701 mlen = dwords * (inst->exec_size / 8);
5702
5703 fs_reg sources[5];
5704
5705 sources[0] = addr;
5706
5707 for (unsigned i = 0; i < src_comps; i++)
5708 sources[1 + i] = offset(src, bld, i);
5709
5710 payload = bld.vgrf(BRW_REGISTER_TYPE_UD, dwords);
5711 bld.LOAD_PAYLOAD(payload, sources, 1 + src_comps, 0);
5712 }
5713
5714 uint32_t desc;
5715 switch (inst->opcode) {
5716 case SHADER_OPCODE_A64_UNTYPED_READ_LOGICAL:
5717 desc = brw_dp_a64_untyped_surface_rw_desc(devinfo, inst->exec_size,
5718 arg, /* num_channels */
5719 false /* write */);
5720 break;
5721
5722 case SHADER_OPCODE_A64_UNTYPED_WRITE_LOGICAL:
5723 desc = brw_dp_a64_untyped_surface_rw_desc(devinfo, inst->exec_size,
5724 arg, /* num_channels */
5725 true /* write */);
5726 break;
5727
5728 case SHADER_OPCODE_A64_BYTE_SCATTERED_READ_LOGICAL:
5729 desc = brw_dp_a64_byte_scattered_rw_desc(devinfo, inst->exec_size,
5730 arg, /* bit_size */
5731 false /* write */);
5732 break;
5733
5734 case SHADER_OPCODE_A64_BYTE_SCATTERED_WRITE_LOGICAL:
5735 desc = brw_dp_a64_byte_scattered_rw_desc(devinfo, inst->exec_size,
5736 arg, /* bit_size */
5737 true /* write */);
5738 break;
5739
5740 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_LOGICAL:
5741 desc = brw_dp_a64_untyped_atomic_desc(devinfo, inst->exec_size, 32,
5742 arg, /* atomic_op */
5743 !inst->dst.is_null());
5744 break;
5745
5746 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_INT64_LOGICAL:
5747 desc = brw_dp_a64_untyped_atomic_desc(devinfo, inst->exec_size, 64,
5748 arg, /* atomic_op */
5749 !inst->dst.is_null());
5750 break;
5751
5752
5753 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_FLOAT_LOGICAL:
5754 desc = brw_dp_a64_untyped_atomic_float_desc(devinfo, inst->exec_size,
5755 arg, /* atomic_op */
5756 !inst->dst.is_null());
5757 break;
5758
5759 default:
5760 unreachable("Unknown A64 logical instruction");
5761 }
5762
5763 /* Update the original instruction. */
5764 inst->opcode = SHADER_OPCODE_SEND;
5765 inst->mlen = mlen;
5766 inst->ex_mlen = ex_mlen;
5767 inst->header_size = 0;
5768 inst->send_has_side_effects = has_side_effects;
5769 inst->send_is_volatile = !has_side_effects;
5770
5771 /* Set up SFID and descriptors */
5772 inst->sfid = HSW_SFID_DATAPORT_DATA_CACHE_1;
5773 inst->desc = desc;
5774 inst->resize_sources(4);
5775 inst->src[0] = brw_imm_ud(0); /* desc */
5776 inst->src[1] = brw_imm_ud(0); /* ex_desc */
5777 inst->src[2] = payload;
5778 inst->src[3] = payload2;
5779 }
5780
5781 static void
5782 lower_varying_pull_constant_logical_send(const fs_builder &bld, fs_inst *inst)
5783 {
5784 const gen_device_info *devinfo = bld.shader->devinfo;
5785
5786 if (devinfo->gen >= 7) {
5787 fs_reg index = inst->src[0];
5788 /* We are switching the instruction from an ALU-like instruction to a
5789 * send-from-grf instruction. Since sends can't handle strides or
5790 * source modifiers, we have to make a copy of the offset source.
5791 */
5792 fs_reg offset = bld.vgrf(BRW_REGISTER_TYPE_UD);
5793 bld.MOV(offset, inst->src[1]);
5794
5795 const unsigned simd_mode =
5796 inst->exec_size <= 8 ? BRW_SAMPLER_SIMD_MODE_SIMD8 :
5797 BRW_SAMPLER_SIMD_MODE_SIMD16;
5798
5799 inst->opcode = SHADER_OPCODE_SEND;
5800 inst->mlen = inst->exec_size / 8;
5801 inst->resize_sources(3);
5802
5803 inst->sfid = BRW_SFID_SAMPLER;
5804 inst->desc = brw_sampler_desc(devinfo, 0, 0,
5805 GEN5_SAMPLER_MESSAGE_SAMPLE_LD,
5806 simd_mode, 0);
5807 if (index.file == IMM) {
5808 inst->desc |= index.ud & 0xff;
5809 inst->src[0] = brw_imm_ud(0);
5810 } else {
5811 const fs_builder ubld = bld.exec_all().group(1, 0);
5812 fs_reg tmp = ubld.vgrf(BRW_REGISTER_TYPE_UD);
5813 ubld.AND(tmp, index, brw_imm_ud(0xff));
5814 inst->src[0] = component(tmp, 0);
5815 }
5816 inst->src[1] = brw_imm_ud(0); /* ex_desc */
5817 inst->src[2] = offset; /* payload */
5818 } else {
5819 const fs_reg payload(MRF, FIRST_PULL_LOAD_MRF(devinfo->gen),
5820 BRW_REGISTER_TYPE_UD);
5821
5822 bld.MOV(byte_offset(payload, REG_SIZE), inst->src[1]);
5823
5824 inst->opcode = FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_GEN4;
5825 inst->resize_sources(1);
5826 inst->base_mrf = payload.nr;
5827 inst->header_size = 1;
5828 inst->mlen = 1 + inst->exec_size / 8;
5829 }
5830 }
5831
5832 static void
5833 lower_math_logical_send(const fs_builder &bld, fs_inst *inst)
5834 {
5835 assert(bld.shader->devinfo->gen < 6);
5836
5837 inst->base_mrf = 2;
5838 inst->mlen = inst->sources * inst->exec_size / 8;
5839
5840 if (inst->sources > 1) {
5841 /* From the Ironlake PRM, Volume 4, Part 1, Section 6.1.13
5842 * "Message Payload":
5843 *
5844 * "Operand0[7]. For the INT DIV functions, this operand is the
5845 * denominator."
5846 * ...
5847 * "Operand1[7]. For the INT DIV functions, this operand is the
5848 * numerator."
5849 */
5850 const bool is_int_div = inst->opcode != SHADER_OPCODE_POW;
5851 const fs_reg src0 = is_int_div ? inst->src[1] : inst->src[0];
5852 const fs_reg src1 = is_int_div ? inst->src[0] : inst->src[1];
5853
5854 inst->resize_sources(1);
5855 inst->src[0] = src0;
5856
5857 assert(inst->exec_size == 8);
5858 bld.MOV(fs_reg(MRF, inst->base_mrf + 1, src1.type), src1);
5859 }
5860 }
5861
5862 bool
5863 fs_visitor::lower_logical_sends()
5864 {
5865 bool progress = false;
5866
5867 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
5868 const fs_builder ibld(this, block, inst);
5869
5870 switch (inst->opcode) {
5871 case FS_OPCODE_FB_WRITE_LOGICAL:
5872 assert(stage == MESA_SHADER_FRAGMENT);
5873 lower_fb_write_logical_send(ibld, inst,
5874 brw_wm_prog_data(prog_data),
5875 (const brw_wm_prog_key *)key,
5876 payload);
5877 break;
5878
5879 case FS_OPCODE_FB_READ_LOGICAL:
5880 lower_fb_read_logical_send(ibld, inst);
5881 break;
5882
5883 case SHADER_OPCODE_TEX_LOGICAL:
5884 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TEX);
5885 break;
5886
5887 case SHADER_OPCODE_TXD_LOGICAL:
5888 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXD);
5889 break;
5890
5891 case SHADER_OPCODE_TXF_LOGICAL:
5892 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXF);
5893 break;
5894
5895 case SHADER_OPCODE_TXL_LOGICAL:
5896 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXL);
5897 break;
5898
5899 case SHADER_OPCODE_TXS_LOGICAL:
5900 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXS);
5901 break;
5902
5903 case SHADER_OPCODE_IMAGE_SIZE_LOGICAL:
5904 lower_sampler_logical_send(ibld, inst,
5905 SHADER_OPCODE_IMAGE_SIZE_LOGICAL);
5906 break;
5907
5908 case FS_OPCODE_TXB_LOGICAL:
5909 lower_sampler_logical_send(ibld, inst, FS_OPCODE_TXB);
5910 break;
5911
5912 case SHADER_OPCODE_TXF_CMS_LOGICAL:
5913 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXF_CMS);
5914 break;
5915
5916 case SHADER_OPCODE_TXF_CMS_W_LOGICAL:
5917 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXF_CMS_W);
5918 break;
5919
5920 case SHADER_OPCODE_TXF_UMS_LOGICAL:
5921 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXF_UMS);
5922 break;
5923
5924 case SHADER_OPCODE_TXF_MCS_LOGICAL:
5925 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TXF_MCS);
5926 break;
5927
5928 case SHADER_OPCODE_LOD_LOGICAL:
5929 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_LOD);
5930 break;
5931
5932 case SHADER_OPCODE_TG4_LOGICAL:
5933 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TG4);
5934 break;
5935
5936 case SHADER_OPCODE_TG4_OFFSET_LOGICAL:
5937 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_TG4_OFFSET);
5938 break;
5939
5940 case SHADER_OPCODE_SAMPLEINFO_LOGICAL:
5941 lower_sampler_logical_send(ibld, inst, SHADER_OPCODE_SAMPLEINFO);
5942 break;
5943
5944 case SHADER_OPCODE_UNTYPED_SURFACE_READ_LOGICAL:
5945 case SHADER_OPCODE_UNTYPED_SURFACE_WRITE_LOGICAL:
5946 case SHADER_OPCODE_BYTE_SCATTERED_READ_LOGICAL:
5947 case SHADER_OPCODE_BYTE_SCATTERED_WRITE_LOGICAL:
5948 case SHADER_OPCODE_DWORD_SCATTERED_READ_LOGICAL:
5949 case SHADER_OPCODE_DWORD_SCATTERED_WRITE_LOGICAL:
5950 case SHADER_OPCODE_UNTYPED_ATOMIC_LOGICAL:
5951 case SHADER_OPCODE_UNTYPED_ATOMIC_FLOAT_LOGICAL:
5952 case SHADER_OPCODE_TYPED_SURFACE_READ_LOGICAL:
5953 case SHADER_OPCODE_TYPED_SURFACE_WRITE_LOGICAL:
5954 case SHADER_OPCODE_TYPED_ATOMIC_LOGICAL:
5955 lower_surface_logical_send(ibld, inst);
5956 break;
5957
5958 case SHADER_OPCODE_A64_UNTYPED_WRITE_LOGICAL:
5959 case SHADER_OPCODE_A64_UNTYPED_READ_LOGICAL:
5960 case SHADER_OPCODE_A64_BYTE_SCATTERED_WRITE_LOGICAL:
5961 case SHADER_OPCODE_A64_BYTE_SCATTERED_READ_LOGICAL:
5962 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_LOGICAL:
5963 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_INT64_LOGICAL:
5964 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_FLOAT_LOGICAL:
5965 lower_a64_logical_send(ibld, inst);
5966 break;
5967
5968 case FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_LOGICAL:
5969 lower_varying_pull_constant_logical_send(ibld, inst);
5970 break;
5971
5972 case SHADER_OPCODE_RCP:
5973 case SHADER_OPCODE_RSQ:
5974 case SHADER_OPCODE_SQRT:
5975 case SHADER_OPCODE_EXP2:
5976 case SHADER_OPCODE_LOG2:
5977 case SHADER_OPCODE_SIN:
5978 case SHADER_OPCODE_COS:
5979 case SHADER_OPCODE_POW:
5980 case SHADER_OPCODE_INT_QUOTIENT:
5981 case SHADER_OPCODE_INT_REMAINDER:
5982 /* The math opcodes are overloaded for the send-like and
5983 * expression-like instructions which seems kind of icky. Gen6+ has
5984 * a native (but rather quirky) MATH instruction so we don't need to
5985 * do anything here. On Gen4-5 we'll have to lower the Gen6-like
5986 * logical instructions (which we can easily recognize because they
5987 * have mlen = 0) into send-like virtual instructions.
5988 */
5989 if (devinfo->gen < 6 && inst->mlen == 0) {
5990 lower_math_logical_send(ibld, inst);
5991 break;
5992
5993 } else {
5994 continue;
5995 }
5996
5997 default:
5998 continue;
5999 }
6000
6001 progress = true;
6002 }
6003
6004 if (progress)
6005 invalidate_live_intervals();
6006
6007 return progress;
6008 }
6009
6010 static bool
6011 is_mixed_float_with_fp32_dst(const fs_inst *inst)
6012 {
6013 /* This opcode sometimes uses :W type on the source even if the operand is
6014 * a :HF, because in gen7 there is no support for :HF, and thus it uses :W.
6015 */
6016 if (inst->opcode == BRW_OPCODE_F16TO32)
6017 return true;
6018
6019 if (inst->dst.type != BRW_REGISTER_TYPE_F)
6020 return false;
6021
6022 for (int i = 0; i < inst->sources; i++) {
6023 if (inst->src[i].type == BRW_REGISTER_TYPE_HF)
6024 return true;
6025 }
6026
6027 return false;
6028 }
6029
6030 static bool
6031 is_mixed_float_with_packed_fp16_dst(const fs_inst *inst)
6032 {
6033 /* This opcode sometimes uses :W type on the destination even if the
6034 * destination is a :HF, because in gen7 there is no support for :HF, and
6035 * thus it uses :W.
6036 */
6037 if (inst->opcode == BRW_OPCODE_F32TO16 &&
6038 inst->dst.stride == 1)
6039 return true;
6040
6041 if (inst->dst.type != BRW_REGISTER_TYPE_HF ||
6042 inst->dst.stride != 1)
6043 return false;
6044
6045 for (int i = 0; i < inst->sources; i++) {
6046 if (inst->src[i].type == BRW_REGISTER_TYPE_F)
6047 return true;
6048 }
6049
6050 return false;
6051 }
6052
6053 /**
6054 * Get the closest allowed SIMD width for instruction \p inst accounting for
6055 * some common regioning and execution control restrictions that apply to FPU
6056 * instructions. These restrictions don't necessarily have any relevance to
6057 * instructions not executed by the FPU pipeline like extended math, control
6058 * flow or send message instructions.
6059 *
6060 * For virtual opcodes it's really up to the instruction -- In some cases
6061 * (e.g. where a virtual instruction unrolls into a simple sequence of FPU
6062 * instructions) it may simplify virtual instruction lowering if we can
6063 * enforce FPU-like regioning restrictions already on the virtual instruction,
6064 * in other cases (e.g. virtual send-like instructions) this may be
6065 * excessively restrictive.
6066 */
6067 static unsigned
6068 get_fpu_lowered_simd_width(const struct gen_device_info *devinfo,
6069 const fs_inst *inst)
6070 {
6071 /* Maximum execution size representable in the instruction controls. */
6072 unsigned max_width = MIN2(32, inst->exec_size);
6073
6074 /* According to the PRMs:
6075 * "A. In Direct Addressing mode, a source cannot span more than 2
6076 * adjacent GRF registers.
6077 * B. A destination cannot span more than 2 adjacent GRF registers."
6078 *
6079 * Look for the source or destination with the largest register region
6080 * which is the one that is going to limit the overall execution size of
6081 * the instruction due to this rule.
6082 */
6083 unsigned reg_count = DIV_ROUND_UP(inst->size_written, REG_SIZE);
6084
6085 for (unsigned i = 0; i < inst->sources; i++)
6086 reg_count = MAX2(reg_count, DIV_ROUND_UP(inst->size_read(i), REG_SIZE));
6087
6088 /* Calculate the maximum execution size of the instruction based on the
6089 * factor by which it goes over the hardware limit of 2 GRFs.
6090 */
6091 if (reg_count > 2)
6092 max_width = MIN2(max_width, inst->exec_size / DIV_ROUND_UP(reg_count, 2));
6093
6094 /* According to the IVB PRMs:
6095 * "When destination spans two registers, the source MUST span two
6096 * registers. The exception to the above rule:
6097 *
6098 * - When source is scalar, the source registers are not incremented.
6099 * - When source is packed integer Word and destination is packed
6100 * integer DWord, the source register is not incremented but the
6101 * source sub register is incremented."
6102 *
6103 * The hardware specs from Gen4 to Gen7.5 mention similar regioning
6104 * restrictions. The code below intentionally doesn't check whether the
6105 * destination type is integer because empirically the hardware doesn't
6106 * seem to care what the actual type is as long as it's dword-aligned.
6107 */
6108 if (devinfo->gen < 8) {
6109 for (unsigned i = 0; i < inst->sources; i++) {
6110 /* IVB implements DF scalars as <0;2,1> regions. */
6111 const bool is_scalar_exception = is_uniform(inst->src[i]) &&
6112 (devinfo->is_haswell || type_sz(inst->src[i].type) != 8);
6113 const bool is_packed_word_exception =
6114 type_sz(inst->dst.type) == 4 && inst->dst.stride == 1 &&
6115 type_sz(inst->src[i].type) == 2 && inst->src[i].stride == 1;
6116
6117 /* We check size_read(i) against size_written instead of REG_SIZE
6118 * because we want to properly handle SIMD32. In SIMD32, you can end
6119 * up with writes to 4 registers and a source that reads 2 registers
6120 * and we may still need to lower all the way to SIMD8 in that case.
6121 */
6122 if (inst->size_written > REG_SIZE &&
6123 inst->size_read(i) != 0 &&
6124 inst->size_read(i) < inst->size_written &&
6125 !is_scalar_exception && !is_packed_word_exception) {
6126 const unsigned reg_count = DIV_ROUND_UP(inst->size_written, REG_SIZE);
6127 max_width = MIN2(max_width, inst->exec_size / reg_count);
6128 }
6129 }
6130 }
6131
6132 if (devinfo->gen < 6) {
6133 /* From the G45 PRM, Volume 4 Page 361:
6134 *
6135 * "Operand Alignment Rule: With the exceptions listed below, a
6136 * source/destination operand in general should be aligned to even
6137 * 256-bit physical register with a region size equal to two 256-bit
6138 * physical registers."
6139 *
6140 * Normally we enforce this by allocating virtual registers to the
6141 * even-aligned class. But we need to handle payload registers.
6142 */
6143 for (unsigned i = 0; i < inst->sources; i++) {
6144 if (inst->src[i].file == FIXED_GRF && (inst->src[i].nr & 1) &&
6145 inst->size_read(i) > REG_SIZE) {
6146 max_width = MIN2(max_width, 8);
6147 }
6148 }
6149 }
6150
6151 /* From the IVB PRMs:
6152 * "When an instruction is SIMD32, the low 16 bits of the execution mask
6153 * are applied for both halves of the SIMD32 instruction. If different
6154 * execution mask channels are required, split the instruction into two
6155 * SIMD16 instructions."
6156 *
6157 * There is similar text in the HSW PRMs. Gen4-6 don't even implement
6158 * 32-wide control flow support in hardware and will behave similarly.
6159 */
6160 if (devinfo->gen < 8 && !inst->force_writemask_all)
6161 max_width = MIN2(max_width, 16);
6162
6163 /* From the IVB PRMs (applies to HSW too):
6164 * "Instructions with condition modifiers must not use SIMD32."
6165 *
6166 * From the BDW PRMs (applies to later hardware too):
6167 * "Ternary instruction with condition modifiers must not use SIMD32."
6168 */
6169 if (inst->conditional_mod && (devinfo->gen < 8 || inst->is_3src(devinfo)))
6170 max_width = MIN2(max_width, 16);
6171
6172 /* From the IVB PRMs (applies to other devices that don't have the
6173 * gen_device_info::supports_simd16_3src flag set):
6174 * "In Align16 access mode, SIMD16 is not allowed for DW operations and
6175 * SIMD8 is not allowed for DF operations."
6176 */
6177 if (inst->is_3src(devinfo) && !devinfo->supports_simd16_3src)
6178 max_width = MIN2(max_width, inst->exec_size / reg_count);
6179
6180 /* Pre-Gen8 EUs are hardwired to use the QtrCtrl+1 (where QtrCtrl is
6181 * the 8-bit quarter of the execution mask signals specified in the
6182 * instruction control fields) for the second compressed half of any
6183 * single-precision instruction (for double-precision instructions
6184 * it's hardwired to use NibCtrl+1, at least on HSW), which means that
6185 * the EU will apply the wrong execution controls for the second
6186 * sequential GRF write if the number of channels per GRF is not exactly
6187 * eight in single-precision mode (or four in double-float mode).
6188 *
6189 * In this situation we calculate the maximum size of the split
6190 * instructions so they only ever write to a single register.
6191 */
6192 if (devinfo->gen < 8 && inst->size_written > REG_SIZE &&
6193 !inst->force_writemask_all) {
6194 const unsigned channels_per_grf = inst->exec_size /
6195 DIV_ROUND_UP(inst->size_written, REG_SIZE);
6196 const unsigned exec_type_size = get_exec_type_size(inst);
6197 assert(exec_type_size);
6198
6199 /* The hardware shifts exactly 8 channels per compressed half of the
6200 * instruction in single-precision mode and exactly 4 in double-precision.
6201 */
6202 if (channels_per_grf != (exec_type_size == 8 ? 4 : 8))
6203 max_width = MIN2(max_width, channels_per_grf);
6204
6205 /* Lower all non-force_writemask_all DF instructions to SIMD4 on IVB/BYT
6206 * because HW applies the same channel enable signals to both halves of
6207 * the compressed instruction which will be just wrong under
6208 * non-uniform control flow.
6209 */
6210 if (devinfo->gen == 7 && !devinfo->is_haswell &&
6211 (exec_type_size == 8 || type_sz(inst->dst.type) == 8))
6212 max_width = MIN2(max_width, 4);
6213 }
6214
6215 /* From the SKL PRM, Special Restrictions for Handling Mixed Mode
6216 * Float Operations:
6217 *
6218 * "No SIMD16 in mixed mode when destination is f32. Instruction
6219 * execution size must be no more than 8."
6220 *
6221 * FIXME: the simulator doesn't seem to complain if we don't do this and
6222 * empirical testing with existing CTS tests show that they pass just fine
6223 * without implementing this, however, since our interpretation of the PRM
6224 * is that conversion MOVs between HF and F are still mixed-float
6225 * instructions (and therefore subject to this restriction) we decided to
6226 * split them to be safe. Might be useful to do additional investigation to
6227 * lift the restriction if we can ensure that it is safe though, since these
6228 * conversions are common when half-float types are involved since many
6229 * instructions do not support HF types and conversions from/to F are
6230 * required.
6231 */
6232 if (is_mixed_float_with_fp32_dst(inst))
6233 max_width = MIN2(max_width, 8);
6234
6235 /* From the SKL PRM, Special Restrictions for Handling Mixed Mode
6236 * Float Operations:
6237 *
6238 * "No SIMD16 in mixed mode when destination is packed f16 for both
6239 * Align1 and Align16."
6240 */
6241 if (is_mixed_float_with_packed_fp16_dst(inst))
6242 max_width = MIN2(max_width, 8);
6243
6244 /* Only power-of-two execution sizes are representable in the instruction
6245 * control fields.
6246 */
6247 return 1 << _mesa_logbase2(max_width);
6248 }
6249
6250 /**
6251 * Get the maximum allowed SIMD width for instruction \p inst accounting for
6252 * various payload size restrictions that apply to sampler message
6253 * instructions.
6254 *
6255 * This is only intended to provide a maximum theoretical bound for the
6256 * execution size of the message based on the number of argument components
6257 * alone, which in most cases will determine whether the SIMD8 or SIMD16
6258 * variant of the message can be used, though some messages may have
6259 * additional restrictions not accounted for here (e.g. pre-ILK hardware uses
6260 * the message length to determine the exact SIMD width and argument count,
6261 * which makes a number of sampler message combinations impossible to
6262 * represent).
6263 */
6264 static unsigned
6265 get_sampler_lowered_simd_width(const struct gen_device_info *devinfo,
6266 const fs_inst *inst)
6267 {
6268 /* If we have a min_lod parameter on anything other than a simple sample
6269 * message, it will push it over 5 arguments and we have to fall back to
6270 * SIMD8.
6271 */
6272 if (inst->opcode != SHADER_OPCODE_TEX &&
6273 inst->components_read(TEX_LOGICAL_SRC_MIN_LOD))
6274 return 8;
6275
6276 /* Calculate the number of coordinate components that have to be present
6277 * assuming that additional arguments follow the texel coordinates in the
6278 * message payload. On IVB+ there is no need for padding, on ILK-SNB we
6279 * need to pad to four or three components depending on the message,
6280 * pre-ILK we need to pad to at most three components.
6281 */
6282 const unsigned req_coord_components =
6283 (devinfo->gen >= 7 ||
6284 !inst->components_read(TEX_LOGICAL_SRC_COORDINATE)) ? 0 :
6285 (devinfo->gen >= 5 && inst->opcode != SHADER_OPCODE_TXF_LOGICAL &&
6286 inst->opcode != SHADER_OPCODE_TXF_CMS_LOGICAL) ? 4 :
6287 3;
6288
6289 /* On Gen9+ the LOD argument is for free if we're able to use the LZ
6290 * variant of the TXL or TXF message.
6291 */
6292 const bool implicit_lod = devinfo->gen >= 9 &&
6293 (inst->opcode == SHADER_OPCODE_TXL ||
6294 inst->opcode == SHADER_OPCODE_TXF) &&
6295 inst->src[TEX_LOGICAL_SRC_LOD].is_zero();
6296
6297 /* Calculate the total number of argument components that need to be passed
6298 * to the sampler unit.
6299 */
6300 const unsigned num_payload_components =
6301 MAX2(inst->components_read(TEX_LOGICAL_SRC_COORDINATE),
6302 req_coord_components) +
6303 inst->components_read(TEX_LOGICAL_SRC_SHADOW_C) +
6304 (implicit_lod ? 0 : inst->components_read(TEX_LOGICAL_SRC_LOD)) +
6305 inst->components_read(TEX_LOGICAL_SRC_LOD2) +
6306 inst->components_read(TEX_LOGICAL_SRC_SAMPLE_INDEX) +
6307 (inst->opcode == SHADER_OPCODE_TG4_OFFSET_LOGICAL ?
6308 inst->components_read(TEX_LOGICAL_SRC_TG4_OFFSET) : 0) +
6309 inst->components_read(TEX_LOGICAL_SRC_MCS);
6310
6311 /* SIMD16 messages with more than five arguments exceed the maximum message
6312 * size supported by the sampler, regardless of whether a header is
6313 * provided or not.
6314 */
6315 return MIN2(inst->exec_size,
6316 num_payload_components > MAX_SAMPLER_MESSAGE_SIZE / 2 ? 8 : 16);
6317 }
6318
6319 /**
6320 * Get the closest native SIMD width supported by the hardware for instruction
6321 * \p inst. The instruction will be left untouched by
6322 * fs_visitor::lower_simd_width() if the returned value is equal to the
6323 * original execution size.
6324 */
6325 static unsigned
6326 get_lowered_simd_width(const struct gen_device_info *devinfo,
6327 const fs_inst *inst)
6328 {
6329 switch (inst->opcode) {
6330 case BRW_OPCODE_MOV:
6331 case BRW_OPCODE_SEL:
6332 case BRW_OPCODE_NOT:
6333 case BRW_OPCODE_AND:
6334 case BRW_OPCODE_OR:
6335 case BRW_OPCODE_XOR:
6336 case BRW_OPCODE_SHR:
6337 case BRW_OPCODE_SHL:
6338 case BRW_OPCODE_ASR:
6339 case BRW_OPCODE_CMPN:
6340 case BRW_OPCODE_CSEL:
6341 case BRW_OPCODE_F32TO16:
6342 case BRW_OPCODE_F16TO32:
6343 case BRW_OPCODE_BFREV:
6344 case BRW_OPCODE_BFE:
6345 case BRW_OPCODE_ADD:
6346 case BRW_OPCODE_MUL:
6347 case BRW_OPCODE_AVG:
6348 case BRW_OPCODE_FRC:
6349 case BRW_OPCODE_RNDU:
6350 case BRW_OPCODE_RNDD:
6351 case BRW_OPCODE_RNDE:
6352 case BRW_OPCODE_RNDZ:
6353 case BRW_OPCODE_LZD:
6354 case BRW_OPCODE_FBH:
6355 case BRW_OPCODE_FBL:
6356 case BRW_OPCODE_CBIT:
6357 case BRW_OPCODE_SAD2:
6358 case BRW_OPCODE_MAD:
6359 case BRW_OPCODE_LRP:
6360 case FS_OPCODE_PACK:
6361 case SHADER_OPCODE_SEL_EXEC:
6362 case SHADER_OPCODE_CLUSTER_BROADCAST:
6363 return get_fpu_lowered_simd_width(devinfo, inst);
6364
6365 case BRW_OPCODE_CMP: {
6366 /* The Ivybridge/BayTrail WaCMPInstFlagDepClearedEarly workaround says that
6367 * when the destination is a GRF the dependency-clear bit on the flag
6368 * register is cleared early.
6369 *
6370 * Suggested workarounds are to disable coissuing CMP instructions
6371 * or to split CMP(16) instructions into two CMP(8) instructions.
6372 *
6373 * We choose to split into CMP(8) instructions since disabling
6374 * coissuing would affect CMP instructions not otherwise affected by
6375 * the errata.
6376 */
6377 const unsigned max_width = (devinfo->gen == 7 && !devinfo->is_haswell &&
6378 !inst->dst.is_null() ? 8 : ~0);
6379 return MIN2(max_width, get_fpu_lowered_simd_width(devinfo, inst));
6380 }
6381 case BRW_OPCODE_BFI1:
6382 case BRW_OPCODE_BFI2:
6383 /* The Haswell WaForceSIMD8ForBFIInstruction workaround says that we
6384 * should
6385 * "Force BFI instructions to be executed always in SIMD8."
6386 */
6387 return MIN2(devinfo->is_haswell ? 8 : ~0u,
6388 get_fpu_lowered_simd_width(devinfo, inst));
6389
6390 case BRW_OPCODE_IF:
6391 assert(inst->src[0].file == BAD_FILE || inst->exec_size <= 16);
6392 return inst->exec_size;
6393
6394 case SHADER_OPCODE_RCP:
6395 case SHADER_OPCODE_RSQ:
6396 case SHADER_OPCODE_SQRT:
6397 case SHADER_OPCODE_EXP2:
6398 case SHADER_OPCODE_LOG2:
6399 case SHADER_OPCODE_SIN:
6400 case SHADER_OPCODE_COS: {
6401 /* Unary extended math instructions are limited to SIMD8 on Gen4 and
6402 * Gen6. Extended Math Function is limited to SIMD8 with half-float.
6403 */
6404 if (devinfo->gen == 6 || (devinfo->gen == 4 && !devinfo->is_g4x))
6405 return MIN2(8, inst->exec_size);
6406 if (inst->dst.type == BRW_REGISTER_TYPE_HF)
6407 return MIN2(8, inst->exec_size);
6408 return MIN2(16, inst->exec_size);
6409 }
6410
6411 case SHADER_OPCODE_POW: {
6412 /* SIMD16 is only allowed on Gen7+. Extended Math Function is limited
6413 * to SIMD8 with half-float
6414 */
6415 if (devinfo->gen < 7)
6416 return MIN2(8, inst->exec_size);
6417 if (inst->dst.type == BRW_REGISTER_TYPE_HF)
6418 return MIN2(8, inst->exec_size);
6419 return MIN2(16, inst->exec_size);
6420 }
6421
6422 case SHADER_OPCODE_INT_QUOTIENT:
6423 case SHADER_OPCODE_INT_REMAINDER:
6424 /* Integer division is limited to SIMD8 on all generations. */
6425 return MIN2(8, inst->exec_size);
6426
6427 case FS_OPCODE_LINTERP:
6428 case SHADER_OPCODE_GET_BUFFER_SIZE:
6429 case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD:
6430 case FS_OPCODE_PACK_HALF_2x16_SPLIT:
6431 case FS_OPCODE_INTERPOLATE_AT_SAMPLE:
6432 case FS_OPCODE_INTERPOLATE_AT_SHARED_OFFSET:
6433 case FS_OPCODE_INTERPOLATE_AT_PER_SLOT_OFFSET:
6434 return MIN2(16, inst->exec_size);
6435
6436 case FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_LOGICAL:
6437 /* Pre-ILK hardware doesn't have a SIMD8 variant of the texel fetch
6438 * message used to implement varying pull constant loads, so expand it
6439 * to SIMD16. An alternative with longer message payload length but
6440 * shorter return payload would be to use the SIMD8 sampler message that
6441 * takes (header, u, v, r) as parameters instead of (header, u).
6442 */
6443 return (devinfo->gen == 4 ? 16 : MIN2(16, inst->exec_size));
6444
6445 case FS_OPCODE_DDX_COARSE:
6446 case FS_OPCODE_DDX_FINE:
6447 case FS_OPCODE_DDY_COARSE:
6448 case FS_OPCODE_DDY_FINE:
6449 /* The implementation of this virtual opcode may require emitting
6450 * compressed Align16 instructions, which are severely limited on some
6451 * generations.
6452 *
6453 * From the Ivy Bridge PRM, volume 4 part 3, section 3.3.9 (Register
6454 * Region Restrictions):
6455 *
6456 * "In Align16 access mode, SIMD16 is not allowed for DW operations
6457 * and SIMD8 is not allowed for DF operations."
6458 *
6459 * In this context, "DW operations" means "operations acting on 32-bit
6460 * values", so it includes operations on floats.
6461 *
6462 * Gen4 has a similar restriction. From the i965 PRM, section 11.5.3
6463 * (Instruction Compression -> Rules and Restrictions):
6464 *
6465 * "A compressed instruction must be in Align1 access mode. Align16
6466 * mode instructions cannot be compressed."
6467 *
6468 * Similar text exists in the g45 PRM.
6469 *
6470 * Empirically, compressed align16 instructions using odd register
6471 * numbers don't appear to work on Sandybridge either.
6472 */
6473 return (devinfo->gen == 4 || devinfo->gen == 6 ||
6474 (devinfo->gen == 7 && !devinfo->is_haswell) ?
6475 MIN2(8, inst->exec_size) : MIN2(16, inst->exec_size));
6476
6477 case SHADER_OPCODE_MULH:
6478 /* MULH is lowered to the MUL/MACH sequence using the accumulator, which
6479 * is 8-wide on Gen7+.
6480 */
6481 return (devinfo->gen >= 7 ? 8 :
6482 get_fpu_lowered_simd_width(devinfo, inst));
6483
6484 case FS_OPCODE_FB_WRITE_LOGICAL:
6485 /* Gen6 doesn't support SIMD16 depth writes but we cannot handle them
6486 * here.
6487 */
6488 assert(devinfo->gen != 6 ||
6489 inst->src[FB_WRITE_LOGICAL_SRC_SRC_DEPTH].file == BAD_FILE ||
6490 inst->exec_size == 8);
6491 /* Dual-source FB writes are unsupported in SIMD16 mode. */
6492 return (inst->src[FB_WRITE_LOGICAL_SRC_COLOR1].file != BAD_FILE ?
6493 8 : MIN2(16, inst->exec_size));
6494
6495 case FS_OPCODE_FB_READ_LOGICAL:
6496 return MIN2(16, inst->exec_size);
6497
6498 case SHADER_OPCODE_TEX_LOGICAL:
6499 case SHADER_OPCODE_TXF_CMS_LOGICAL:
6500 case SHADER_OPCODE_TXF_UMS_LOGICAL:
6501 case SHADER_OPCODE_TXF_MCS_LOGICAL:
6502 case SHADER_OPCODE_LOD_LOGICAL:
6503 case SHADER_OPCODE_TG4_LOGICAL:
6504 case SHADER_OPCODE_SAMPLEINFO_LOGICAL:
6505 case SHADER_OPCODE_TXF_CMS_W_LOGICAL:
6506 case SHADER_OPCODE_TG4_OFFSET_LOGICAL:
6507 return get_sampler_lowered_simd_width(devinfo, inst);
6508
6509 case SHADER_OPCODE_TXD_LOGICAL:
6510 /* TXD is unsupported in SIMD16 mode. */
6511 return 8;
6512
6513 case SHADER_OPCODE_TXL_LOGICAL:
6514 case FS_OPCODE_TXB_LOGICAL:
6515 /* Only one execution size is representable pre-ILK depending on whether
6516 * the shadow reference argument is present.
6517 */
6518 if (devinfo->gen == 4)
6519 return inst->src[TEX_LOGICAL_SRC_SHADOW_C].file == BAD_FILE ? 16 : 8;
6520 else
6521 return get_sampler_lowered_simd_width(devinfo, inst);
6522
6523 case SHADER_OPCODE_TXF_LOGICAL:
6524 case SHADER_OPCODE_TXS_LOGICAL:
6525 /* Gen4 doesn't have SIMD8 variants for the RESINFO and LD-with-LOD
6526 * messages. Use SIMD16 instead.
6527 */
6528 if (devinfo->gen == 4)
6529 return 16;
6530 else
6531 return get_sampler_lowered_simd_width(devinfo, inst);
6532
6533 case SHADER_OPCODE_TYPED_ATOMIC_LOGICAL:
6534 case SHADER_OPCODE_TYPED_SURFACE_READ_LOGICAL:
6535 case SHADER_OPCODE_TYPED_SURFACE_WRITE_LOGICAL:
6536 return 8;
6537
6538 case SHADER_OPCODE_UNTYPED_ATOMIC_LOGICAL:
6539 case SHADER_OPCODE_UNTYPED_ATOMIC_FLOAT_LOGICAL:
6540 case SHADER_OPCODE_UNTYPED_SURFACE_READ_LOGICAL:
6541 case SHADER_OPCODE_UNTYPED_SURFACE_WRITE_LOGICAL:
6542 case SHADER_OPCODE_BYTE_SCATTERED_WRITE_LOGICAL:
6543 case SHADER_OPCODE_BYTE_SCATTERED_READ_LOGICAL:
6544 case SHADER_OPCODE_DWORD_SCATTERED_WRITE_LOGICAL:
6545 case SHADER_OPCODE_DWORD_SCATTERED_READ_LOGICAL:
6546 return MIN2(16, inst->exec_size);
6547
6548 case SHADER_OPCODE_A64_UNTYPED_WRITE_LOGICAL:
6549 case SHADER_OPCODE_A64_UNTYPED_READ_LOGICAL:
6550 case SHADER_OPCODE_A64_BYTE_SCATTERED_WRITE_LOGICAL:
6551 case SHADER_OPCODE_A64_BYTE_SCATTERED_READ_LOGICAL:
6552 return devinfo->gen <= 8 ? 8 : MIN2(16, inst->exec_size);
6553
6554 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_LOGICAL:
6555 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_INT64_LOGICAL:
6556 case SHADER_OPCODE_A64_UNTYPED_ATOMIC_FLOAT_LOGICAL:
6557 return 8;
6558
6559 case SHADER_OPCODE_URB_READ_SIMD8:
6560 case SHADER_OPCODE_URB_READ_SIMD8_PER_SLOT:
6561 case SHADER_OPCODE_URB_WRITE_SIMD8:
6562 case SHADER_OPCODE_URB_WRITE_SIMD8_PER_SLOT:
6563 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED:
6564 case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED_PER_SLOT:
6565 return MIN2(8, inst->exec_size);
6566
6567 case SHADER_OPCODE_QUAD_SWIZZLE: {
6568 const unsigned swiz = inst->src[1].ud;
6569 return (is_uniform(inst->src[0]) ?
6570 get_fpu_lowered_simd_width(devinfo, inst) :
6571 devinfo->gen < 11 && type_sz(inst->src[0].type) == 4 ? 8 :
6572 swiz == BRW_SWIZZLE_XYXY || swiz == BRW_SWIZZLE_ZWZW ? 4 :
6573 get_fpu_lowered_simd_width(devinfo, inst));
6574 }
6575 case SHADER_OPCODE_MOV_INDIRECT: {
6576 /* From IVB and HSW PRMs:
6577 *
6578 * "2.When the destination requires two registers and the sources are
6579 * indirect, the sources must use 1x1 regioning mode.
6580 *
6581 * In case of DF instructions in HSW/IVB, the exec_size is limited by
6582 * the EU decompression logic not handling VxH indirect addressing
6583 * correctly.
6584 */
6585 const unsigned max_size = (devinfo->gen >= 8 ? 2 : 1) * REG_SIZE;
6586 /* Prior to Broadwell, we only have 8 address subregisters. */
6587 return MIN3(devinfo->gen >= 8 ? 16 : 8,
6588 max_size / (inst->dst.stride * type_sz(inst->dst.type)),
6589 inst->exec_size);
6590 }
6591
6592 case SHADER_OPCODE_LOAD_PAYLOAD: {
6593 const unsigned reg_count =
6594 DIV_ROUND_UP(inst->dst.component_size(inst->exec_size), REG_SIZE);
6595
6596 if (reg_count > 2) {
6597 /* Only LOAD_PAYLOAD instructions with per-channel destination region
6598 * can be easily lowered (which excludes headers and heterogeneous
6599 * types).
6600 */
6601 assert(!inst->header_size);
6602 for (unsigned i = 0; i < inst->sources; i++)
6603 assert(type_sz(inst->dst.type) == type_sz(inst->src[i].type) ||
6604 inst->src[i].file == BAD_FILE);
6605
6606 return inst->exec_size / DIV_ROUND_UP(reg_count, 2);
6607 } else {
6608 return inst->exec_size;
6609 }
6610 }
6611 default:
6612 return inst->exec_size;
6613 }
6614 }
6615
6616 /**
6617 * Return true if splitting out the group of channels of instruction \p inst
6618 * given by lbld.group() requires allocating a temporary for the i-th source
6619 * of the lowered instruction.
6620 */
6621 static inline bool
6622 needs_src_copy(const fs_builder &lbld, const fs_inst *inst, unsigned i)
6623 {
6624 return !(is_periodic(inst->src[i], lbld.dispatch_width()) ||
6625 (inst->components_read(i) == 1 &&
6626 lbld.dispatch_width() <= inst->exec_size)) ||
6627 (inst->flags_written() &
6628 flag_mask(inst->src[i], type_sz(inst->src[i].type)));
6629 }
6630
6631 /**
6632 * Extract the data that would be consumed by the channel group given by
6633 * lbld.group() from the i-th source region of instruction \p inst and return
6634 * it as result in packed form.
6635 */
6636 static fs_reg
6637 emit_unzip(const fs_builder &lbld, fs_inst *inst, unsigned i)
6638 {
6639 assert(lbld.group() >= inst->group);
6640
6641 /* Specified channel group from the source region. */
6642 const fs_reg src = horiz_offset(inst->src[i], lbld.group() - inst->group);
6643
6644 if (needs_src_copy(lbld, inst, i)) {
6645 /* Builder of the right width to perform the copy avoiding uninitialized
6646 * data if the lowered execution size is greater than the original
6647 * execution size of the instruction.
6648 */
6649 const fs_builder cbld = lbld.group(MIN2(lbld.dispatch_width(),
6650 inst->exec_size), 0);
6651 const fs_reg tmp = lbld.vgrf(inst->src[i].type, inst->components_read(i));
6652
6653 for (unsigned k = 0; k < inst->components_read(i); ++k)
6654 cbld.MOV(offset(tmp, lbld, k), offset(src, inst->exec_size, k));
6655
6656 return tmp;
6657
6658 } else if (is_periodic(inst->src[i], lbld.dispatch_width())) {
6659 /* The source is invariant for all dispatch_width-wide groups of the
6660 * original region.
6661 */
6662 return inst->src[i];
6663
6664 } else {
6665 /* We can just point the lowered instruction at the right channel group
6666 * from the original region.
6667 */
6668 return src;
6669 }
6670 }
6671
6672 /**
6673 * Return true if splitting out the group of channels of instruction \p inst
6674 * given by lbld.group() requires allocating a temporary for the destination
6675 * of the lowered instruction and copying the data back to the original
6676 * destination region.
6677 */
6678 static inline bool
6679 needs_dst_copy(const fs_builder &lbld, const fs_inst *inst)
6680 {
6681 /* If the instruction writes more than one component we'll have to shuffle
6682 * the results of multiple lowered instructions in order to make sure that
6683 * they end up arranged correctly in the original destination region.
6684 */
6685 if (inst->size_written > inst->dst.component_size(inst->exec_size))
6686 return true;
6687
6688 /* If the lowered execution size is larger than the original the result of
6689 * the instruction won't fit in the original destination, so we'll have to
6690 * allocate a temporary in any case.
6691 */
6692 if (lbld.dispatch_width() > inst->exec_size)
6693 return true;
6694
6695 for (unsigned i = 0; i < inst->sources; i++) {
6696 /* If we already made a copy of the source for other reasons there won't
6697 * be any overlap with the destination.
6698 */
6699 if (needs_src_copy(lbld, inst, i))
6700 continue;
6701
6702 /* In order to keep the logic simple we emit a copy whenever the
6703 * destination region doesn't exactly match an overlapping source, which
6704 * may point at the source and destination not being aligned group by
6705 * group which could cause one of the lowered instructions to overwrite
6706 * the data read from the same source by other lowered instructions.
6707 */
6708 if (regions_overlap(inst->dst, inst->size_written,
6709 inst->src[i], inst->size_read(i)) &&
6710 !inst->dst.equals(inst->src[i]))
6711 return true;
6712 }
6713
6714 return false;
6715 }
6716
6717 /**
6718 * Insert data from a packed temporary into the channel group given by
6719 * lbld.group() of the destination region of instruction \p inst and return
6720 * the temporary as result. Any copy instructions that are required for
6721 * unzipping the previous value (in the case of partial writes) will be
6722 * inserted using \p lbld_before and any copy instructions required for
6723 * zipping up the destination of \p inst will be inserted using \p lbld_after.
6724 */
6725 static fs_reg
6726 emit_zip(const fs_builder &lbld_before, const fs_builder &lbld_after,
6727 fs_inst *inst)
6728 {
6729 assert(lbld_before.dispatch_width() == lbld_after.dispatch_width());
6730 assert(lbld_before.group() == lbld_after.group());
6731 assert(lbld_after.group() >= inst->group);
6732
6733 /* Specified channel group from the destination region. */
6734 const fs_reg dst = horiz_offset(inst->dst, lbld_after.group() - inst->group);
6735 const unsigned dst_size = inst->size_written /
6736 inst->dst.component_size(inst->exec_size);
6737
6738 if (needs_dst_copy(lbld_after, inst)) {
6739 const fs_reg tmp = lbld_after.vgrf(inst->dst.type, dst_size);
6740
6741 if (inst->predicate) {
6742 /* Handle predication by copying the original contents of
6743 * the destination into the temporary before emitting the
6744 * lowered instruction.
6745 */
6746 const fs_builder gbld_before =
6747 lbld_before.group(MIN2(lbld_before.dispatch_width(),
6748 inst->exec_size), 0);
6749 for (unsigned k = 0; k < dst_size; ++k) {
6750 gbld_before.MOV(offset(tmp, lbld_before, k),
6751 offset(dst, inst->exec_size, k));
6752 }
6753 }
6754
6755 const fs_builder gbld_after =
6756 lbld_after.group(MIN2(lbld_after.dispatch_width(),
6757 inst->exec_size), 0);
6758 for (unsigned k = 0; k < dst_size; ++k) {
6759 /* Use a builder of the right width to perform the copy avoiding
6760 * uninitialized data if the lowered execution size is greater than
6761 * the original execution size of the instruction.
6762 */
6763 gbld_after.MOV(offset(dst, inst->exec_size, k),
6764 offset(tmp, lbld_after, k));
6765 }
6766
6767 return tmp;
6768
6769 } else {
6770 /* No need to allocate a temporary for the lowered instruction, just
6771 * take the right group of channels from the original region.
6772 */
6773 return dst;
6774 }
6775 }
6776
6777 bool
6778 fs_visitor::lower_simd_width()
6779 {
6780 bool progress = false;
6781
6782 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
6783 const unsigned lower_width = get_lowered_simd_width(devinfo, inst);
6784
6785 if (lower_width != inst->exec_size) {
6786 /* Builder matching the original instruction. We may also need to
6787 * emit an instruction of width larger than the original, set the
6788 * execution size of the builder to the highest of both for now so
6789 * we're sure that both cases can be handled.
6790 */
6791 const unsigned max_width = MAX2(inst->exec_size, lower_width);
6792 const fs_builder ibld = bld.at(block, inst)
6793 .exec_all(inst->force_writemask_all)
6794 .group(max_width, inst->group / max_width);
6795
6796 /* Split the copies in chunks of the execution width of either the
6797 * original or the lowered instruction, whichever is lower.
6798 */
6799 const unsigned n = DIV_ROUND_UP(inst->exec_size, lower_width);
6800 const unsigned dst_size = inst->size_written /
6801 inst->dst.component_size(inst->exec_size);
6802
6803 assert(!inst->writes_accumulator && !inst->mlen);
6804
6805 /* Inserting the zip, unzip, and duplicated instructions in all of
6806 * the right spots is somewhat tricky. All of the unzip and any
6807 * instructions from the zip which unzip the destination prior to
6808 * writing need to happen before all of the per-group instructions
6809 * and the zip instructions need to happen after. In order to sort
6810 * this all out, we insert the unzip instructions before \p inst,
6811 * insert the per-group instructions after \p inst (i.e. before
6812 * inst->next), and insert the zip instructions before the
6813 * instruction after \p inst. Since we are inserting instructions
6814 * after \p inst, inst->next is a moving target and we need to save
6815 * it off here so that we insert the zip instructions in the right
6816 * place.
6817 *
6818 * Since we're inserting split instructions after after_inst, the
6819 * instructions will end up in the reverse order that we insert them.
6820 * However, certain render target writes require that the low group
6821 * instructions come before the high group. From the Ivy Bridge PRM
6822 * Vol. 4, Pt. 1, Section 3.9.11:
6823 *
6824 * "If multiple SIMD8 Dual Source messages are delivered by the
6825 * pixel shader thread, each SIMD8_DUALSRC_LO message must be
6826 * issued before the SIMD8_DUALSRC_HI message with the same Slot
6827 * Group Select setting."
6828 *
6829 * And, from Section 3.9.11.1 of the same PRM:
6830 *
6831 * "When SIMD32 or SIMD16 PS threads send render target writes
6832 * with multiple SIMD8 and SIMD16 messages, the following must
6833 * hold:
6834 *
6835 * All the slots (as described above) must have a corresponding
6836 * render target write irrespective of the slot's validity. A slot
6837 * is considered valid when at least one sample is enabled. For
6838 * example, a SIMD16 PS thread must send two SIMD8 render target
6839 * writes to cover all the slots.
6840 *
6841 * PS thread must send SIMD render target write messages with
6842 * increasing slot numbers. For example, SIMD16 thread has
6843 * Slot[15:0] and if two SIMD8 render target writes are used, the
6844 * first SIMD8 render target write must send Slot[7:0] and the
6845 * next one must send Slot[15:8]."
6846 *
6847 * In order to make low group instructions come before high group
6848 * instructions (this is required for some render target writes), we
6849 * split from the highest group to lowest.
6850 */
6851 exec_node *const after_inst = inst->next;
6852 for (int i = n - 1; i >= 0; i--) {
6853 /* Emit a copy of the original instruction with the lowered width.
6854 * If the EOT flag was set throw it away except for the last
6855 * instruction to avoid killing the thread prematurely.
6856 */
6857 fs_inst split_inst = *inst;
6858 split_inst.exec_size = lower_width;
6859 split_inst.eot = inst->eot && i == int(n - 1);
6860
6861 /* Select the correct channel enables for the i-th group, then
6862 * transform the sources and destination and emit the lowered
6863 * instruction.
6864 */
6865 const fs_builder lbld = ibld.group(lower_width, i);
6866
6867 for (unsigned j = 0; j < inst->sources; j++)
6868 split_inst.src[j] = emit_unzip(lbld.at(block, inst), inst, j);
6869
6870 split_inst.dst = emit_zip(lbld.at(block, inst),
6871 lbld.at(block, after_inst), inst);
6872 split_inst.size_written =
6873 split_inst.dst.component_size(lower_width) * dst_size;
6874
6875 lbld.at(block, inst->next).emit(split_inst);
6876 }
6877
6878 inst->remove(block);
6879 progress = true;
6880 }
6881 }
6882
6883 if (progress)
6884 invalidate_live_intervals();
6885
6886 return progress;
6887 }
6888
6889 void
6890 fs_visitor::dump_instructions()
6891 {
6892 dump_instructions(NULL);
6893 }
6894
6895 void
6896 fs_visitor::dump_instructions(const char *name)
6897 {
6898 FILE *file = stderr;
6899 if (name && geteuid() != 0) {
6900 file = fopen(name, "w");
6901 if (!file)
6902 file = stderr;
6903 }
6904
6905 if (cfg) {
6906 calculate_register_pressure();
6907 int ip = 0, max_pressure = 0;
6908 foreach_block_and_inst(block, backend_instruction, inst, cfg) {
6909 max_pressure = MAX2(max_pressure, regs_live_at_ip[ip]);
6910 fprintf(file, "{%3d} %4d: ", regs_live_at_ip[ip], ip);
6911 dump_instruction(inst, file);
6912 ip++;
6913 }
6914 fprintf(file, "Maximum %3d registers live at once.\n", max_pressure);
6915 } else {
6916 int ip = 0;
6917 foreach_in_list(backend_instruction, inst, &instructions) {
6918 fprintf(file, "%4d: ", ip++);
6919 dump_instruction(inst, file);
6920 }
6921 }
6922
6923 if (file != stderr) {
6924 fclose(file);
6925 }
6926 }
6927
6928 void
6929 fs_visitor::dump_instruction(backend_instruction *be_inst)
6930 {
6931 dump_instruction(be_inst, stderr);
6932 }
6933
6934 void
6935 fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
6936 {
6937 fs_inst *inst = (fs_inst *)be_inst;
6938
6939 if (inst->predicate) {
6940 fprintf(file, "(%cf%d.%d) ",
6941 inst->predicate_inverse ? '-' : '+',
6942 inst->flag_subreg / 2,
6943 inst->flag_subreg % 2);
6944 }
6945
6946 fprintf(file, "%s", brw_instruction_name(devinfo, inst->opcode));
6947 if (inst->saturate)
6948 fprintf(file, ".sat");
6949 if (inst->conditional_mod) {
6950 fprintf(file, "%s", conditional_modifier[inst->conditional_mod]);
6951 if (!inst->predicate &&
6952 (devinfo->gen < 5 || (inst->opcode != BRW_OPCODE_SEL &&
6953 inst->opcode != BRW_OPCODE_CSEL &&
6954 inst->opcode != BRW_OPCODE_IF &&
6955 inst->opcode != BRW_OPCODE_WHILE))) {
6956 fprintf(file, ".f%d.%d", inst->flag_subreg / 2,
6957 inst->flag_subreg % 2);
6958 }
6959 }
6960 fprintf(file, "(%d) ", inst->exec_size);
6961
6962 if (inst->mlen) {
6963 fprintf(file, "(mlen: %d) ", inst->mlen);
6964 }
6965
6966 if (inst->ex_mlen) {
6967 fprintf(file, "(ex_mlen: %d) ", inst->ex_mlen);
6968 }
6969
6970 if (inst->eot) {
6971 fprintf(file, "(EOT) ");
6972 }
6973
6974 switch (inst->dst.file) {
6975 case VGRF:
6976 fprintf(file, "vgrf%d", inst->dst.nr);
6977 break;
6978 case FIXED_GRF:
6979 fprintf(file, "g%d", inst->dst.nr);
6980 break;
6981 case MRF:
6982 fprintf(file, "m%d", inst->dst.nr);
6983 break;
6984 case BAD_FILE:
6985 fprintf(file, "(null)");
6986 break;
6987 case UNIFORM:
6988 fprintf(file, "***u%d***", inst->dst.nr);
6989 break;
6990 case ATTR:
6991 fprintf(file, "***attr%d***", inst->dst.nr);
6992 break;
6993 case ARF:
6994 switch (inst->dst.nr) {
6995 case BRW_ARF_NULL:
6996 fprintf(file, "null");
6997 break;
6998 case BRW_ARF_ADDRESS:
6999 fprintf(file, "a0.%d", inst->dst.subnr);
7000 break;
7001 case BRW_ARF_ACCUMULATOR:
7002 fprintf(file, "acc%d", inst->dst.subnr);
7003 break;
7004 case BRW_ARF_FLAG:
7005 fprintf(file, "f%d.%d", inst->dst.nr & 0xf, inst->dst.subnr);
7006 break;
7007 default:
7008 fprintf(file, "arf%d.%d", inst->dst.nr & 0xf, inst->dst.subnr);
7009 break;
7010 }
7011 break;
7012 case IMM:
7013 unreachable("not reached");
7014 }
7015
7016 if (inst->dst.offset ||
7017 (inst->dst.file == VGRF &&
7018 alloc.sizes[inst->dst.nr] * REG_SIZE != inst->size_written)) {
7019 const unsigned reg_size = (inst->dst.file == UNIFORM ? 4 : REG_SIZE);
7020 fprintf(file, "+%d.%d", inst->dst.offset / reg_size,
7021 inst->dst.offset % reg_size);
7022 }
7023
7024 if (inst->dst.stride != 1)
7025 fprintf(file, "<%u>", inst->dst.stride);
7026 fprintf(file, ":%s, ", brw_reg_type_to_letters(inst->dst.type));
7027
7028 for (int i = 0; i < inst->sources; i++) {
7029 if (inst->src[i].negate)
7030 fprintf(file, "-");
7031 if (inst->src[i].abs)
7032 fprintf(file, "|");
7033 switch (inst->src[i].file) {
7034 case VGRF:
7035 fprintf(file, "vgrf%d", inst->src[i].nr);
7036 break;
7037 case FIXED_GRF:
7038 fprintf(file, "g%d", inst->src[i].nr);
7039 break;
7040 case MRF:
7041 fprintf(file, "***m%d***", inst->src[i].nr);
7042 break;
7043 case ATTR:
7044 fprintf(file, "attr%d", inst->src[i].nr);
7045 break;
7046 case UNIFORM:
7047 fprintf(file, "u%d", inst->src[i].nr);
7048 break;
7049 case BAD_FILE:
7050 fprintf(file, "(null)");
7051 break;
7052 case IMM:
7053 switch (inst->src[i].type) {
7054 case BRW_REGISTER_TYPE_F:
7055 fprintf(file, "%-gf", inst->src[i].f);
7056 break;
7057 case BRW_REGISTER_TYPE_DF:
7058 fprintf(file, "%fdf", inst->src[i].df);
7059 break;
7060 case BRW_REGISTER_TYPE_W:
7061 case BRW_REGISTER_TYPE_D:
7062 fprintf(file, "%dd", inst->src[i].d);
7063 break;
7064 case BRW_REGISTER_TYPE_UW:
7065 case BRW_REGISTER_TYPE_UD:
7066 fprintf(file, "%uu", inst->src[i].ud);
7067 break;
7068 case BRW_REGISTER_TYPE_Q:
7069 fprintf(file, "%" PRId64 "q", inst->src[i].d64);
7070 break;
7071 case BRW_REGISTER_TYPE_UQ:
7072 fprintf(file, "%" PRIu64 "uq", inst->src[i].u64);
7073 break;
7074 case BRW_REGISTER_TYPE_VF:
7075 fprintf(file, "[%-gF, %-gF, %-gF, %-gF]",
7076 brw_vf_to_float((inst->src[i].ud >> 0) & 0xff),
7077 brw_vf_to_float((inst->src[i].ud >> 8) & 0xff),
7078 brw_vf_to_float((inst->src[i].ud >> 16) & 0xff),
7079 brw_vf_to_float((inst->src[i].ud >> 24) & 0xff));
7080 break;
7081 case BRW_REGISTER_TYPE_V:
7082 case BRW_REGISTER_TYPE_UV:
7083 fprintf(file, "%08x%s", inst->src[i].ud,
7084 inst->src[i].type == BRW_REGISTER_TYPE_V ? "V" : "UV");
7085 break;
7086 default:
7087 fprintf(file, "???");
7088 break;
7089 }
7090 break;
7091 case ARF:
7092 switch (inst->src[i].nr) {
7093 case BRW_ARF_NULL:
7094 fprintf(file, "null");
7095 break;
7096 case BRW_ARF_ADDRESS:
7097 fprintf(file, "a0.%d", inst->src[i].subnr);
7098 break;
7099 case BRW_ARF_ACCUMULATOR:
7100 fprintf(file, "acc%d", inst->src[i].subnr);
7101 break;
7102 case BRW_ARF_FLAG:
7103 fprintf(file, "f%d.%d", inst->src[i].nr & 0xf, inst->src[i].subnr);
7104 break;
7105 default:
7106 fprintf(file, "arf%d.%d", inst->src[i].nr & 0xf, inst->src[i].subnr);
7107 break;
7108 }
7109 break;
7110 }
7111
7112 if (inst->src[i].offset ||
7113 (inst->src[i].file == VGRF &&
7114 alloc.sizes[inst->src[i].nr] * REG_SIZE != inst->size_read(i))) {
7115 const unsigned reg_size = (inst->src[i].file == UNIFORM ? 4 : REG_SIZE);
7116 fprintf(file, "+%d.%d", inst->src[i].offset / reg_size,
7117 inst->src[i].offset % reg_size);
7118 }
7119
7120 if (inst->src[i].abs)
7121 fprintf(file, "|");
7122
7123 if (inst->src[i].file != IMM) {
7124 unsigned stride;
7125 if (inst->src[i].file == ARF || inst->src[i].file == FIXED_GRF) {
7126 unsigned hstride = inst->src[i].hstride;
7127 stride = (hstride == 0 ? 0 : (1 << (hstride - 1)));
7128 } else {
7129 stride = inst->src[i].stride;
7130 }
7131 if (stride != 1)
7132 fprintf(file, "<%u>", stride);
7133
7134 fprintf(file, ":%s", brw_reg_type_to_letters(inst->src[i].type));
7135 }
7136
7137 if (i < inst->sources - 1 && inst->src[i + 1].file != BAD_FILE)
7138 fprintf(file, ", ");
7139 }
7140
7141 fprintf(file, " ");
7142
7143 if (inst->force_writemask_all)
7144 fprintf(file, "NoMask ");
7145
7146 if (inst->exec_size != dispatch_width)
7147 fprintf(file, "group%d ", inst->group);
7148
7149 fprintf(file, "\n");
7150 }
7151
7152 void
7153 fs_visitor::setup_fs_payload_gen6()
7154 {
7155 assert(stage == MESA_SHADER_FRAGMENT);
7156 struct brw_wm_prog_data *prog_data = brw_wm_prog_data(this->prog_data);
7157 const unsigned payload_width = MIN2(16, dispatch_width);
7158 assert(dispatch_width % payload_width == 0);
7159 assert(devinfo->gen >= 6);
7160
7161 prog_data->uses_src_depth = prog_data->uses_src_w =
7162 (nir->info.system_values_read & (1ull << SYSTEM_VALUE_FRAG_COORD)) != 0;
7163
7164 prog_data->uses_sample_mask =
7165 (nir->info.system_values_read & SYSTEM_BIT_SAMPLE_MASK_IN) != 0;
7166
7167 /* From the Ivy Bridge PRM documentation for 3DSTATE_PS:
7168 *
7169 * "MSDISPMODE_PERSAMPLE is required in order to select
7170 * POSOFFSET_SAMPLE"
7171 *
7172 * So we can only really get sample positions if we are doing real
7173 * per-sample dispatch. If we need gl_SamplePosition and we don't have
7174 * persample dispatch, we hard-code it to 0.5.
7175 */
7176 prog_data->uses_pos_offset = prog_data->persample_dispatch &&
7177 (nir->info.system_values_read & SYSTEM_BIT_SAMPLE_POS);
7178
7179 /* R0: PS thread payload header. */
7180 payload.num_regs++;
7181
7182 for (unsigned j = 0; j < dispatch_width / payload_width; j++) {
7183 /* R1: masks, pixel X/Y coordinates. */
7184 payload.subspan_coord_reg[j] = payload.num_regs++;
7185 }
7186
7187 for (unsigned j = 0; j < dispatch_width / payload_width; j++) {
7188 /* R3-26: barycentric interpolation coordinates. These appear in the
7189 * same order that they appear in the brw_barycentric_mode enum. Each
7190 * set of coordinates occupies 2 registers if dispatch width == 8 and 4
7191 * registers if dispatch width == 16. Coordinates only appear if they
7192 * were enabled using the "Barycentric Interpolation Mode" bits in
7193 * WM_STATE.
7194 */
7195 for (int i = 0; i < BRW_BARYCENTRIC_MODE_COUNT; ++i) {
7196 if (prog_data->barycentric_interp_modes & (1 << i)) {
7197 payload.barycentric_coord_reg[i][j] = payload.num_regs;
7198 payload.num_regs += payload_width / 4;
7199 }
7200 }
7201
7202 /* R27-28: interpolated depth if uses source depth */
7203 if (prog_data->uses_src_depth) {
7204 payload.source_depth_reg[j] = payload.num_regs;
7205 payload.num_regs += payload_width / 8;
7206 }
7207
7208 /* R29-30: interpolated W set if GEN6_WM_USES_SOURCE_W. */
7209 if (prog_data->uses_src_w) {
7210 payload.source_w_reg[j] = payload.num_regs;
7211 payload.num_regs += payload_width / 8;
7212 }
7213
7214 /* R31: MSAA position offsets. */
7215 if (prog_data->uses_pos_offset) {
7216 payload.sample_pos_reg[j] = payload.num_regs;
7217 payload.num_regs++;
7218 }
7219
7220 /* R32-33: MSAA input coverage mask */
7221 if (prog_data->uses_sample_mask) {
7222 assert(devinfo->gen >= 7);
7223 payload.sample_mask_in_reg[j] = payload.num_regs;
7224 payload.num_regs += payload_width / 8;
7225 }
7226 }
7227
7228 if (nir->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_DEPTH)) {
7229 source_depth_to_render_target = true;
7230 }
7231 }
7232
7233 void
7234 fs_visitor::setup_vs_payload()
7235 {
7236 /* R0: thread header, R1: urb handles */
7237 payload.num_regs = 2;
7238 }
7239
7240 void
7241 fs_visitor::setup_gs_payload()
7242 {
7243 assert(stage == MESA_SHADER_GEOMETRY);
7244
7245 struct brw_gs_prog_data *gs_prog_data = brw_gs_prog_data(prog_data);
7246 struct brw_vue_prog_data *vue_prog_data = brw_vue_prog_data(prog_data);
7247
7248 /* R0: thread header, R1: output URB handles */
7249 payload.num_regs = 2;
7250
7251 if (gs_prog_data->include_primitive_id) {
7252 /* R2: Primitive ID 0..7 */
7253 payload.num_regs++;
7254 }
7255
7256 /* Always enable VUE handles so we can safely use pull model if needed.
7257 *
7258 * The push model for a GS uses a ton of register space even for trivial
7259 * scenarios with just a few inputs, so just make things easier and a bit
7260 * safer by always having pull model available.
7261 */
7262 gs_prog_data->base.include_vue_handles = true;
7263
7264 /* R3..RN: ICP Handles for each incoming vertex (when using pull model) */
7265 payload.num_regs += nir->info.gs.vertices_in;
7266
7267 /* Use a maximum of 24 registers for push-model inputs. */
7268 const unsigned max_push_components = 24;
7269
7270 /* If pushing our inputs would take too many registers, reduce the URB read
7271 * length (which is in HWords, or 8 registers), and resort to pulling.
7272 *
7273 * Note that the GS reads <URB Read Length> HWords for every vertex - so we
7274 * have to multiply by VerticesIn to obtain the total storage requirement.
7275 */
7276 if (8 * vue_prog_data->urb_read_length * nir->info.gs.vertices_in >
7277 max_push_components) {
7278 vue_prog_data->urb_read_length =
7279 ROUND_DOWN_TO(max_push_components / nir->info.gs.vertices_in, 8) / 8;
7280 }
7281 }
7282
7283 void
7284 fs_visitor::setup_cs_payload()
7285 {
7286 assert(devinfo->gen >= 7);
7287 payload.num_regs = 1;
7288 }
7289
7290 void
7291 fs_visitor::calculate_register_pressure()
7292 {
7293 invalidate_live_intervals();
7294 calculate_live_intervals();
7295
7296 unsigned num_instructions = 0;
7297 foreach_block(block, cfg)
7298 num_instructions += block->instructions.length();
7299
7300 regs_live_at_ip = rzalloc_array(mem_ctx, int, num_instructions);
7301
7302 for (unsigned reg = 0; reg < alloc.count; reg++) {
7303 for (int ip = virtual_grf_start[reg]; ip <= virtual_grf_end[reg]; ip++)
7304 regs_live_at_ip[ip] += alloc.sizes[reg];
7305 }
7306 }
7307
7308 void
7309 fs_visitor::optimize()
7310 {
7311 /* Start by validating the shader we currently have. */
7312 validate();
7313
7314 /* bld is the common builder object pointing at the end of the program we
7315 * used to translate it into i965 IR. For the optimization and lowering
7316 * passes coming next, any code added after the end of the program without
7317 * having explicitly called fs_builder::at() clearly points at a mistake.
7318 * Ideally optimization passes wouldn't be part of the visitor so they
7319 * wouldn't have access to bld at all, but they do, so just in case some
7320 * pass forgets to ask for a location explicitly set it to NULL here to
7321 * make it trip. The dispatch width is initialized to a bogus value to
7322 * make sure that optimizations set the execution controls explicitly to
7323 * match the code they are manipulating instead of relying on the defaults.
7324 */
7325 bld = fs_builder(this, 64);
7326
7327 assign_constant_locations();
7328 lower_constant_loads();
7329
7330 validate();
7331
7332 split_virtual_grfs();
7333 validate();
7334
7335 #define OPT(pass, args...) ({ \
7336 pass_num++; \
7337 bool this_progress = pass(args); \
7338 \
7339 if (unlikely(INTEL_DEBUG & DEBUG_OPTIMIZER) && this_progress) { \
7340 char filename[64]; \
7341 snprintf(filename, 64, "%s%d-%s-%02d-%02d-" #pass, \
7342 stage_abbrev, dispatch_width, nir->info.name, iteration, pass_num); \
7343 \
7344 backend_shader::dump_instructions(filename); \
7345 } \
7346 \
7347 validate(); \
7348 \
7349 progress = progress || this_progress; \
7350 this_progress; \
7351 })
7352
7353 if (unlikely(INTEL_DEBUG & DEBUG_OPTIMIZER)) {
7354 char filename[64];
7355 snprintf(filename, 64, "%s%d-%s-00-00-start",
7356 stage_abbrev, dispatch_width, nir->info.name);
7357
7358 backend_shader::dump_instructions(filename);
7359 }
7360
7361 bool progress = false;
7362 int iteration = 0;
7363 int pass_num = 0;
7364
7365 /* Before anything else, eliminate dead code. The results of some NIR
7366 * instructions may effectively be calculated twice. Once when the
7367 * instruction is encountered, and again when the user of that result is
7368 * encountered. Wipe those away before algebraic optimizations and
7369 * especially copy propagation can mix things up.
7370 */
7371 OPT(dead_code_eliminate);
7372
7373 OPT(remove_extra_rounding_modes);
7374
7375 do {
7376 progress = false;
7377 pass_num = 0;
7378 iteration++;
7379
7380 OPT(remove_duplicate_mrf_writes);
7381
7382 OPT(opt_algebraic);
7383 OPT(opt_cse);
7384 OPT(opt_copy_propagation);
7385 OPT(opt_predicated_break, this);
7386 OPT(opt_cmod_propagation);
7387 OPT(dead_code_eliminate);
7388 OPT(opt_peephole_sel);
7389 OPT(dead_control_flow_eliminate, this);
7390 OPT(opt_register_renaming);
7391 OPT(opt_saturate_propagation);
7392 OPT(register_coalesce);
7393 OPT(compute_to_mrf);
7394 OPT(eliminate_find_live_channel);
7395
7396 OPT(compact_virtual_grfs);
7397 } while (progress);
7398
7399 /* Do this after cmod propagation has had every possible opportunity to
7400 * propagate results into SEL instructions.
7401 */
7402 if (OPT(opt_peephole_csel))
7403 OPT(dead_code_eliminate);
7404
7405 progress = false;
7406 pass_num = 0;
7407
7408 if (OPT(lower_pack)) {
7409 OPT(register_coalesce);
7410 OPT(dead_code_eliminate);
7411 }
7412
7413 OPT(lower_simd_width);
7414
7415 /* After SIMD lowering just in case we had to unroll the EOT send. */
7416 OPT(opt_sampler_eot);
7417
7418 OPT(lower_logical_sends);
7419
7420 if (progress) {
7421 OPT(opt_copy_propagation);
7422 /* Only run after logical send lowering because it's easier to implement
7423 * in terms of physical sends.
7424 */
7425 if (OPT(opt_zero_samples))
7426 OPT(opt_copy_propagation);
7427 /* Run after logical send lowering to give it a chance to CSE the
7428 * LOAD_PAYLOAD instructions created to construct the payloads of
7429 * e.g. texturing messages in cases where it wasn't possible to CSE the
7430 * whole logical instruction.
7431 */
7432 OPT(opt_cse);
7433 OPT(register_coalesce);
7434 OPT(compute_to_mrf);
7435 OPT(dead_code_eliminate);
7436 OPT(remove_duplicate_mrf_writes);
7437 OPT(opt_peephole_sel);
7438 }
7439
7440 OPT(opt_redundant_discard_jumps);
7441
7442 if (OPT(lower_load_payload)) {
7443 split_virtual_grfs();
7444 OPT(register_coalesce);
7445 OPT(lower_simd_width);
7446 OPT(compute_to_mrf);
7447 OPT(dead_code_eliminate);
7448 }
7449
7450 OPT(opt_combine_constants);
7451 OPT(lower_integer_multiplication);
7452
7453 if (devinfo->gen <= 5 && OPT(lower_minmax)) {
7454 OPT(opt_cmod_propagation);
7455 OPT(opt_cse);
7456 OPT(opt_copy_propagation);
7457 OPT(dead_code_eliminate);
7458 }
7459
7460 if (OPT(lower_regioning)) {
7461 OPT(opt_copy_propagation);
7462 OPT(dead_code_eliminate);
7463 OPT(lower_simd_width);
7464 }
7465
7466 OPT(fixup_sends_duplicate_payload);
7467
7468 lower_uniform_pull_constant_loads();
7469
7470 validate();
7471 }
7472
7473 /**
7474 * From the Skylake PRM Vol. 2a docs for sends:
7475 *
7476 * "It is required that the second block of GRFs does not overlap with the
7477 * first block."
7478 *
7479 * There are plenty of cases where we may accidentally violate this due to
7480 * having, for instance, both sources be the constant 0. This little pass
7481 * just adds a new vgrf for the second payload and copies it over.
7482 */
7483 bool
7484 fs_visitor::fixup_sends_duplicate_payload()
7485 {
7486 bool progress = false;
7487
7488 foreach_block_and_inst_safe (block, fs_inst, inst, cfg) {
7489 if (inst->opcode == SHADER_OPCODE_SEND && inst->ex_mlen > 0 &&
7490 regions_overlap(inst->src[2], inst->mlen * REG_SIZE,
7491 inst->src[3], inst->ex_mlen * REG_SIZE)) {
7492 fs_reg tmp = fs_reg(VGRF, alloc.allocate(inst->ex_mlen),
7493 BRW_REGISTER_TYPE_UD);
7494 /* Sadly, we've lost all notion of channels and bit sizes at this
7495 * point. Just WE_all it.
7496 */
7497 const fs_builder ibld = bld.at(block, inst).exec_all().group(16, 0);
7498 fs_reg copy_src = retype(inst->src[3], BRW_REGISTER_TYPE_UD);
7499 fs_reg copy_dst = tmp;
7500 for (unsigned i = 0; i < inst->ex_mlen; i += 2) {
7501 if (inst->ex_mlen == i + 1) {
7502 /* Only one register left; do SIMD8 */
7503 ibld.group(8, 0).MOV(copy_dst, copy_src);
7504 } else {
7505 ibld.MOV(copy_dst, copy_src);
7506 }
7507 copy_src = offset(copy_src, ibld, 1);
7508 copy_dst = offset(copy_dst, ibld, 1);
7509 }
7510 inst->src[3] = tmp;
7511 progress = true;
7512 }
7513 }
7514
7515 if (progress)
7516 invalidate_live_intervals();
7517
7518 return progress;
7519 }
7520
7521 /**
7522 * Three source instruction must have a GRF/MRF destination register.
7523 * ARF NULL is not allowed. Fix that up by allocating a temporary GRF.
7524 */
7525 void
7526 fs_visitor::fixup_3src_null_dest()
7527 {
7528 bool progress = false;
7529
7530 foreach_block_and_inst_safe (block, fs_inst, inst, cfg) {
7531 if (inst->is_3src(devinfo) && inst->dst.is_null()) {
7532 inst->dst = fs_reg(VGRF, alloc.allocate(dispatch_width / 8),
7533 inst->dst.type);
7534 progress = true;
7535 }
7536 }
7537
7538 if (progress)
7539 invalidate_live_intervals();
7540 }
7541
7542 void
7543 fs_visitor::allocate_registers(unsigned min_dispatch_width, bool allow_spilling)
7544 {
7545 bool allocated;
7546
7547 static const enum instruction_scheduler_mode pre_modes[] = {
7548 SCHEDULE_PRE,
7549 SCHEDULE_PRE_NON_LIFO,
7550 SCHEDULE_PRE_LIFO,
7551 };
7552
7553 static const char *scheduler_mode_name[] = {
7554 "top-down",
7555 "non-lifo",
7556 "lifo"
7557 };
7558
7559 bool spill_all = allow_spilling && (INTEL_DEBUG & DEBUG_SPILL_FS);
7560
7561 /* Try each scheduling heuristic to see if it can successfully register
7562 * allocate without spilling. They should be ordered by decreasing
7563 * performance but increasing likelihood of allocating.
7564 */
7565 for (unsigned i = 0; i < ARRAY_SIZE(pre_modes); i++) {
7566 schedule_instructions(pre_modes[i]);
7567 this->shader_stats.scheduler_mode = scheduler_mode_name[i];
7568
7569 if (0) {
7570 assign_regs_trivial();
7571 allocated = true;
7572 break;
7573 }
7574
7575 /* We only allow spilling for the last schedule mode and only if the
7576 * allow_spilling parameter and dispatch width work out ok.
7577 */
7578 bool can_spill = allow_spilling &&
7579 (i == ARRAY_SIZE(pre_modes) - 1) &&
7580 dispatch_width == min_dispatch_width;
7581
7582 /* We should only spill registers on the last scheduling. */
7583 assert(!spilled_any_registers);
7584
7585 allocated = assign_regs(can_spill, spill_all);
7586 if (allocated)
7587 break;
7588 }
7589
7590 if (!allocated) {
7591 if (!allow_spilling)
7592 fail("Failure to register allocate and spilling is not allowed.");
7593
7594 /* We assume that any spilling is worse than just dropping back to
7595 * SIMD8. There's probably actually some intermediate point where
7596 * SIMD16 with a couple of spills is still better.
7597 */
7598 if (dispatch_width > min_dispatch_width) {
7599 fail("Failure to register allocate. Reduce number of "
7600 "live scalar values to avoid this.");
7601 }
7602
7603 /* If we failed to allocate, we must have a reason */
7604 assert(failed);
7605 } else if (spilled_any_registers) {
7606 compiler->shader_perf_log(log_data,
7607 "%s shader triggered register spilling. "
7608 "Try reducing the number of live scalar "
7609 "values to improve performance.\n",
7610 stage_name);
7611 }
7612
7613 /* This must come after all optimization and register allocation, since
7614 * it inserts dead code that happens to have side effects, and it does
7615 * so based on the actual physical registers in use.
7616 */
7617 insert_gen4_send_dependency_workarounds();
7618
7619 if (failed)
7620 return;
7621
7622 opt_bank_conflicts();
7623
7624 schedule_instructions(SCHEDULE_POST);
7625
7626 if (last_scratch > 0) {
7627 ASSERTED unsigned max_scratch_size = 2 * 1024 * 1024;
7628
7629 prog_data->total_scratch = brw_get_scratch_size(last_scratch);
7630
7631 if (stage == MESA_SHADER_COMPUTE) {
7632 if (devinfo->is_haswell) {
7633 /* According to the MEDIA_VFE_STATE's "Per Thread Scratch Space"
7634 * field documentation, Haswell supports a minimum of 2kB of
7635 * scratch space for compute shaders, unlike every other stage
7636 * and platform.
7637 */
7638 prog_data->total_scratch = MAX2(prog_data->total_scratch, 2048);
7639 } else if (devinfo->gen <= 7) {
7640 /* According to the MEDIA_VFE_STATE's "Per Thread Scratch Space"
7641 * field documentation, platforms prior to Haswell measure scratch
7642 * size linearly with a range of [1kB, 12kB] and 1kB granularity.
7643 */
7644 prog_data->total_scratch = ALIGN(last_scratch, 1024);
7645 max_scratch_size = 12 * 1024;
7646 }
7647 }
7648
7649 /* We currently only support up to 2MB of scratch space. If we
7650 * need to support more eventually, the documentation suggests
7651 * that we could allocate a larger buffer, and partition it out
7652 * ourselves. We'd just have to undo the hardware's address
7653 * calculation by subtracting (FFTID * Per Thread Scratch Space)
7654 * and then add FFTID * (Larger Per Thread Scratch Space).
7655 *
7656 * See 3D-Media-GPGPU Engine > Media GPGPU Pipeline >
7657 * Thread Group Tracking > Local Memory/Scratch Space.
7658 */
7659 assert(prog_data->total_scratch < max_scratch_size);
7660 }
7661
7662 lower_scoreboard();
7663 }
7664
7665 bool
7666 fs_visitor::run_vs()
7667 {
7668 assert(stage == MESA_SHADER_VERTEX);
7669
7670 setup_vs_payload();
7671
7672 if (shader_time_index >= 0)
7673 emit_shader_time_begin();
7674
7675 emit_nir_code();
7676
7677 if (failed)
7678 return false;
7679
7680 emit_urb_writes();
7681
7682 if (shader_time_index >= 0)
7683 emit_shader_time_end();
7684
7685 calculate_cfg();
7686
7687 optimize();
7688
7689 assign_curb_setup();
7690 assign_vs_urb_setup();
7691
7692 fixup_3src_null_dest();
7693 allocate_registers(8, true);
7694
7695 return !failed;
7696 }
7697
7698 void
7699 fs_visitor::set_tcs_invocation_id()
7700 {
7701 struct brw_tcs_prog_data *tcs_prog_data = brw_tcs_prog_data(prog_data);
7702 struct brw_vue_prog_data *vue_prog_data = &tcs_prog_data->base;
7703
7704 const unsigned instance_id_mask =
7705 devinfo->gen >= 11 ? INTEL_MASK(22, 16) : INTEL_MASK(23, 17);
7706 const unsigned instance_id_shift =
7707 devinfo->gen >= 11 ? 16 : 17;
7708
7709 /* Get instance number from g0.2 bits 22:16 or 23:17 */
7710 fs_reg t = bld.vgrf(BRW_REGISTER_TYPE_UD);
7711 bld.AND(t, fs_reg(retype(brw_vec1_grf(0, 2), BRW_REGISTER_TYPE_UD)),
7712 brw_imm_ud(instance_id_mask));
7713
7714 invocation_id = bld.vgrf(BRW_REGISTER_TYPE_UD);
7715
7716 if (vue_prog_data->dispatch_mode == DISPATCH_MODE_TCS_8_PATCH) {
7717 /* gl_InvocationID is just the thread number */
7718 bld.SHR(invocation_id, t, brw_imm_ud(instance_id_shift));
7719 return;
7720 }
7721
7722 assert(vue_prog_data->dispatch_mode == DISPATCH_MODE_TCS_SINGLE_PATCH);
7723
7724 fs_reg channels_uw = bld.vgrf(BRW_REGISTER_TYPE_UW);
7725 fs_reg channels_ud = bld.vgrf(BRW_REGISTER_TYPE_UD);
7726 bld.MOV(channels_uw, fs_reg(brw_imm_uv(0x76543210)));
7727 bld.MOV(channels_ud, channels_uw);
7728
7729 if (tcs_prog_data->instances == 1) {
7730 invocation_id = channels_ud;
7731 } else {
7732 fs_reg instance_times_8 = bld.vgrf(BRW_REGISTER_TYPE_UD);
7733 bld.SHR(instance_times_8, t, brw_imm_ud(instance_id_shift - 3));
7734 bld.ADD(invocation_id, instance_times_8, channels_ud);
7735 }
7736 }
7737
7738 bool
7739 fs_visitor::run_tcs()
7740 {
7741 assert(stage == MESA_SHADER_TESS_CTRL);
7742
7743 struct brw_vue_prog_data *vue_prog_data = brw_vue_prog_data(prog_data);
7744 struct brw_tcs_prog_data *tcs_prog_data = brw_tcs_prog_data(prog_data);
7745 struct brw_tcs_prog_key *tcs_key = (struct brw_tcs_prog_key *) key;
7746
7747 assert(vue_prog_data->dispatch_mode == DISPATCH_MODE_TCS_SINGLE_PATCH ||
7748 vue_prog_data->dispatch_mode == DISPATCH_MODE_TCS_8_PATCH);
7749
7750 if (vue_prog_data->dispatch_mode == DISPATCH_MODE_TCS_SINGLE_PATCH) {
7751 /* r1-r4 contain the ICP handles. */
7752 payload.num_regs = 5;
7753 } else {
7754 assert(vue_prog_data->dispatch_mode == DISPATCH_MODE_TCS_8_PATCH);
7755 assert(tcs_key->input_vertices > 0);
7756 /* r1 contains output handles, r2 may contain primitive ID, then the
7757 * ICP handles occupy the next 1-32 registers.
7758 */
7759 payload.num_regs = 2 + tcs_prog_data->include_primitive_id +
7760 tcs_key->input_vertices;
7761 }
7762
7763 if (shader_time_index >= 0)
7764 emit_shader_time_begin();
7765
7766 /* Initialize gl_InvocationID */
7767 set_tcs_invocation_id();
7768
7769 const bool fix_dispatch_mask =
7770 vue_prog_data->dispatch_mode == DISPATCH_MODE_TCS_SINGLE_PATCH &&
7771 (nir->info.tess.tcs_vertices_out % 8) != 0;
7772
7773 /* Fix the disptach mask */
7774 if (fix_dispatch_mask) {
7775 bld.CMP(bld.null_reg_ud(), invocation_id,
7776 brw_imm_ud(nir->info.tess.tcs_vertices_out), BRW_CONDITIONAL_L);
7777 bld.IF(BRW_PREDICATE_NORMAL);
7778 }
7779
7780 emit_nir_code();
7781
7782 if (fix_dispatch_mask) {
7783 bld.emit(BRW_OPCODE_ENDIF);
7784 }
7785
7786 /* Emit EOT write; set TR DS Cache bit */
7787 fs_reg srcs[3] = {
7788 fs_reg(get_tcs_output_urb_handle()),
7789 fs_reg(brw_imm_ud(WRITEMASK_X << 16)),
7790 fs_reg(brw_imm_ud(0)),
7791 };
7792 fs_reg payload = bld.vgrf(BRW_REGISTER_TYPE_UD, 3);
7793 bld.LOAD_PAYLOAD(payload, srcs, 3, 2);
7794
7795 fs_inst *inst = bld.emit(SHADER_OPCODE_URB_WRITE_SIMD8_MASKED,
7796 bld.null_reg_ud(), payload);
7797 inst->mlen = 3;
7798 inst->eot = true;
7799
7800 if (shader_time_index >= 0)
7801 emit_shader_time_end();
7802
7803 if (failed)
7804 return false;
7805
7806 calculate_cfg();
7807
7808 optimize();
7809
7810 assign_curb_setup();
7811 assign_tcs_urb_setup();
7812
7813 fixup_3src_null_dest();
7814 allocate_registers(8, true);
7815
7816 return !failed;
7817 }
7818
7819 bool
7820 fs_visitor::run_tes()
7821 {
7822 assert(stage == MESA_SHADER_TESS_EVAL);
7823
7824 /* R0: thread header, R1-3: gl_TessCoord.xyz, R4: URB handles */
7825 payload.num_regs = 5;
7826
7827 if (shader_time_index >= 0)
7828 emit_shader_time_begin();
7829
7830 emit_nir_code();
7831
7832 if (failed)
7833 return false;
7834
7835 emit_urb_writes();
7836
7837 if (shader_time_index >= 0)
7838 emit_shader_time_end();
7839
7840 calculate_cfg();
7841
7842 optimize();
7843
7844 assign_curb_setup();
7845 assign_tes_urb_setup();
7846
7847 fixup_3src_null_dest();
7848 allocate_registers(8, true);
7849
7850 return !failed;
7851 }
7852
7853 bool
7854 fs_visitor::run_gs()
7855 {
7856 assert(stage == MESA_SHADER_GEOMETRY);
7857
7858 setup_gs_payload();
7859
7860 this->final_gs_vertex_count = vgrf(glsl_type::uint_type);
7861
7862 if (gs_compile->control_data_header_size_bits > 0) {
7863 /* Create a VGRF to store accumulated control data bits. */
7864 this->control_data_bits = vgrf(glsl_type::uint_type);
7865
7866 /* If we're outputting more than 32 control data bits, then EmitVertex()
7867 * will set control_data_bits to 0 after emitting the first vertex.
7868 * Otherwise, we need to initialize it to 0 here.
7869 */
7870 if (gs_compile->control_data_header_size_bits <= 32) {
7871 const fs_builder abld = bld.annotate("initialize control data bits");
7872 abld.MOV(this->control_data_bits, brw_imm_ud(0u));
7873 }
7874 }
7875
7876 if (shader_time_index >= 0)
7877 emit_shader_time_begin();
7878
7879 emit_nir_code();
7880
7881 emit_gs_thread_end();
7882
7883 if (shader_time_index >= 0)
7884 emit_shader_time_end();
7885
7886 if (failed)
7887 return false;
7888
7889 calculate_cfg();
7890
7891 optimize();
7892
7893 assign_curb_setup();
7894 assign_gs_urb_setup();
7895
7896 fixup_3src_null_dest();
7897 allocate_registers(8, true);
7898
7899 return !failed;
7900 }
7901
7902 /* From the SKL PRM, Volume 16, Workarounds:
7903 *
7904 * 0877 3D Pixel Shader Hang possible when pixel shader dispatched with
7905 * only header phases (R0-R2)
7906 *
7907 * WA: Enable a non-header phase (e.g. push constant) when dispatch would
7908 * have been header only.
7909 *
7910 * Instead of enabling push constants one can alternatively enable one of the
7911 * inputs. Here one simply chooses "layer" which shouldn't impose much
7912 * overhead.
7913 */
7914 static void
7915 gen9_ps_header_only_workaround(struct brw_wm_prog_data *wm_prog_data)
7916 {
7917 if (wm_prog_data->num_varying_inputs)
7918 return;
7919
7920 if (wm_prog_data->base.curb_read_length)
7921 return;
7922
7923 wm_prog_data->urb_setup[VARYING_SLOT_LAYER] = 0;
7924 wm_prog_data->num_varying_inputs = 1;
7925 }
7926
7927 bool
7928 fs_visitor::run_fs(bool allow_spilling, bool do_rep_send)
7929 {
7930 struct brw_wm_prog_data *wm_prog_data = brw_wm_prog_data(this->prog_data);
7931 brw_wm_prog_key *wm_key = (brw_wm_prog_key *) this->key;
7932
7933 assert(stage == MESA_SHADER_FRAGMENT);
7934
7935 if (devinfo->gen >= 6)
7936 setup_fs_payload_gen6();
7937 else
7938 setup_fs_payload_gen4();
7939
7940 if (0) {
7941 emit_dummy_fs();
7942 } else if (do_rep_send) {
7943 assert(dispatch_width == 16);
7944 emit_repclear_shader();
7945 } else {
7946 if (shader_time_index >= 0)
7947 emit_shader_time_begin();
7948
7949 if (nir->info.inputs_read > 0 ||
7950 (nir->info.system_values_read & (1ull << SYSTEM_VALUE_FRAG_COORD)) ||
7951 (nir->info.outputs_read > 0 && !wm_key->coherent_fb_fetch)) {
7952 if (devinfo->gen < 6)
7953 emit_interpolation_setup_gen4();
7954 else
7955 emit_interpolation_setup_gen6();
7956 }
7957
7958 /* We handle discards by keeping track of the still-live pixels in f0.1.
7959 * Initialize it with the dispatched pixels.
7960 */
7961 if (wm_prog_data->uses_kill) {
7962 const fs_reg dispatch_mask =
7963 devinfo->gen >= 6 ? brw_vec1_grf(1, 7) : brw_vec1_grf(0, 0);
7964 bld.exec_all().group(1, 0)
7965 .MOV(retype(brw_flag_reg(0, 1), BRW_REGISTER_TYPE_UW),
7966 retype(dispatch_mask, BRW_REGISTER_TYPE_UW));
7967 }
7968
7969 emit_nir_code();
7970
7971 if (failed)
7972 return false;
7973
7974 if (wm_prog_data->uses_kill)
7975 bld.emit(FS_OPCODE_PLACEHOLDER_HALT);
7976
7977 if (wm_key->alpha_test_func)
7978 emit_alpha_test();
7979
7980 emit_fb_writes();
7981
7982 if (shader_time_index >= 0)
7983 emit_shader_time_end();
7984
7985 calculate_cfg();
7986
7987 optimize();
7988
7989 assign_curb_setup();
7990
7991 if (devinfo->gen >= 9)
7992 gen9_ps_header_only_workaround(wm_prog_data);
7993
7994 assign_urb_setup();
7995
7996 fixup_3src_null_dest();
7997 allocate_registers(8, allow_spilling);
7998
7999 if (failed)
8000 return false;
8001 }
8002
8003 return !failed;
8004 }
8005
8006 bool
8007 fs_visitor::run_cs(unsigned min_dispatch_width)
8008 {
8009 assert(stage == MESA_SHADER_COMPUTE);
8010 assert(dispatch_width >= min_dispatch_width);
8011
8012 setup_cs_payload();
8013
8014 if (shader_time_index >= 0)
8015 emit_shader_time_begin();
8016
8017 if (devinfo->is_haswell && prog_data->total_shared > 0) {
8018 /* Move SLM index from g0.0[27:24] to sr0.1[11:8] */
8019 const fs_builder abld = bld.exec_all().group(1, 0);
8020 abld.MOV(retype(brw_sr0_reg(1), BRW_REGISTER_TYPE_UW),
8021 suboffset(retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_UW), 1));
8022 }
8023
8024 emit_nir_code();
8025
8026 if (failed)
8027 return false;
8028
8029 emit_cs_terminate();
8030
8031 if (shader_time_index >= 0)
8032 emit_shader_time_end();
8033
8034 calculate_cfg();
8035
8036 optimize();
8037
8038 assign_curb_setup();
8039
8040 fixup_3src_null_dest();
8041 allocate_registers(min_dispatch_width, true);
8042
8043 if (failed)
8044 return false;
8045
8046 return !failed;
8047 }
8048
8049 static bool
8050 is_used_in_not_interp_frag_coord(nir_ssa_def *def)
8051 {
8052 nir_foreach_use(src, def) {
8053 if (src->parent_instr->type != nir_instr_type_intrinsic)
8054 return true;
8055
8056 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(src->parent_instr);
8057 if (intrin->intrinsic != nir_intrinsic_load_frag_coord)
8058 return true;
8059 }
8060
8061 nir_foreach_if_use(src, def)
8062 return true;
8063
8064 return false;
8065 }
8066
8067 /**
8068 * Return a bitfield where bit n is set if barycentric interpolation mode n
8069 * (see enum brw_barycentric_mode) is needed by the fragment shader.
8070 *
8071 * We examine the load_barycentric intrinsics rather than looking at input
8072 * variables so that we catch interpolateAtCentroid() messages too, which
8073 * also need the BRW_BARYCENTRIC_[NON]PERSPECTIVE_CENTROID mode set up.
8074 */
8075 static unsigned
8076 brw_compute_barycentric_interp_modes(const struct gen_device_info *devinfo,
8077 const nir_shader *shader)
8078 {
8079 unsigned barycentric_interp_modes = 0;
8080
8081 nir_foreach_function(f, shader) {
8082 if (!f->impl)
8083 continue;
8084
8085 nir_foreach_block(block, f->impl) {
8086 nir_foreach_instr(instr, block) {
8087 if (instr->type != nir_instr_type_intrinsic)
8088 continue;
8089
8090 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
8091 switch (intrin->intrinsic) {
8092 case nir_intrinsic_load_barycentric_pixel:
8093 case nir_intrinsic_load_barycentric_centroid:
8094 case nir_intrinsic_load_barycentric_sample:
8095 break;
8096 default:
8097 continue;
8098 }
8099
8100 /* Ignore WPOS; it doesn't require interpolation. */
8101 assert(intrin->dest.is_ssa);
8102 if (!is_used_in_not_interp_frag_coord(&intrin->dest.ssa))
8103 continue;
8104
8105 enum glsl_interp_mode interp = (enum glsl_interp_mode)
8106 nir_intrinsic_interp_mode(intrin);
8107 nir_intrinsic_op bary_op = intrin->intrinsic;
8108 enum brw_barycentric_mode bary =
8109 brw_barycentric_mode(interp, bary_op);
8110
8111 barycentric_interp_modes |= 1 << bary;
8112
8113 if (devinfo->needs_unlit_centroid_workaround &&
8114 bary_op == nir_intrinsic_load_barycentric_centroid)
8115 barycentric_interp_modes |= 1 << centroid_to_pixel(bary);
8116 }
8117 }
8118 }
8119
8120 return barycentric_interp_modes;
8121 }
8122
8123 static void
8124 brw_compute_flat_inputs(struct brw_wm_prog_data *prog_data,
8125 const nir_shader *shader)
8126 {
8127 prog_data->flat_inputs = 0;
8128
8129 nir_foreach_variable(var, &shader->inputs) {
8130 unsigned slots = glsl_count_attribute_slots(var->type, false);
8131 for (unsigned s = 0; s < slots; s++) {
8132 int input_index = prog_data->urb_setup[var->data.location + s];
8133
8134 if (input_index < 0)
8135 continue;
8136
8137 /* flat shading */
8138 if (var->data.interpolation == INTERP_MODE_FLAT)
8139 prog_data->flat_inputs |= 1 << input_index;
8140 }
8141 }
8142 }
8143
8144 static uint8_t
8145 computed_depth_mode(const nir_shader *shader)
8146 {
8147 if (shader->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_DEPTH)) {
8148 switch (shader->info.fs.depth_layout) {
8149 case FRAG_DEPTH_LAYOUT_NONE:
8150 case FRAG_DEPTH_LAYOUT_ANY:
8151 return BRW_PSCDEPTH_ON;
8152 case FRAG_DEPTH_LAYOUT_GREATER:
8153 return BRW_PSCDEPTH_ON_GE;
8154 case FRAG_DEPTH_LAYOUT_LESS:
8155 return BRW_PSCDEPTH_ON_LE;
8156 case FRAG_DEPTH_LAYOUT_UNCHANGED:
8157 return BRW_PSCDEPTH_OFF;
8158 }
8159 }
8160 return BRW_PSCDEPTH_OFF;
8161 }
8162
8163 /**
8164 * Move load_interpolated_input with simple (payload-based) barycentric modes
8165 * to the top of the program so we don't emit multiple PLNs for the same input.
8166 *
8167 * This works around CSE not being able to handle non-dominating cases
8168 * such as:
8169 *
8170 * if (...) {
8171 * interpolate input
8172 * } else {
8173 * interpolate the same exact input
8174 * }
8175 *
8176 * This should be replaced by global value numbering someday.
8177 */
8178 static bool
8179 move_interpolation_to_top(nir_shader *nir)
8180 {
8181 bool progress = false;
8182
8183 nir_foreach_function(f, nir) {
8184 if (!f->impl)
8185 continue;
8186
8187 nir_block *top = nir_start_block(f->impl);
8188 exec_node *cursor_node = NULL;
8189
8190 nir_foreach_block(block, f->impl) {
8191 if (block == top)
8192 continue;
8193
8194 nir_foreach_instr_safe(instr, block) {
8195 if (instr->type != nir_instr_type_intrinsic)
8196 continue;
8197
8198 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
8199 if (intrin->intrinsic != nir_intrinsic_load_interpolated_input)
8200 continue;
8201 nir_intrinsic_instr *bary_intrinsic =
8202 nir_instr_as_intrinsic(intrin->src[0].ssa->parent_instr);
8203 nir_intrinsic_op op = bary_intrinsic->intrinsic;
8204
8205 /* Leave interpolateAtSample/Offset() where they are. */
8206 if (op == nir_intrinsic_load_barycentric_at_sample ||
8207 op == nir_intrinsic_load_barycentric_at_offset)
8208 continue;
8209
8210 nir_instr *move[3] = {
8211 &bary_intrinsic->instr,
8212 intrin->src[1].ssa->parent_instr,
8213 instr
8214 };
8215
8216 for (unsigned i = 0; i < ARRAY_SIZE(move); i++) {
8217 if (move[i]->block != top) {
8218 move[i]->block = top;
8219 exec_node_remove(&move[i]->node);
8220 if (cursor_node) {
8221 exec_node_insert_after(cursor_node, &move[i]->node);
8222 } else {
8223 exec_list_push_head(&top->instr_list, &move[i]->node);
8224 }
8225 cursor_node = &move[i]->node;
8226 progress = true;
8227 }
8228 }
8229 }
8230 }
8231 nir_metadata_preserve(f->impl, (nir_metadata)
8232 ((unsigned) nir_metadata_block_index |
8233 (unsigned) nir_metadata_dominance));
8234 }
8235
8236 return progress;
8237 }
8238
8239 /**
8240 * Demote per-sample barycentric intrinsics to centroid.
8241 *
8242 * Useful when rendering to a non-multisampled buffer.
8243 */
8244 static bool
8245 demote_sample_qualifiers(nir_shader *nir)
8246 {
8247 bool progress = true;
8248
8249 nir_foreach_function(f, nir) {
8250 if (!f->impl)
8251 continue;
8252
8253 nir_builder b;
8254 nir_builder_init(&b, f->impl);
8255
8256 nir_foreach_block(block, f->impl) {
8257 nir_foreach_instr_safe(instr, block) {
8258 if (instr->type != nir_instr_type_intrinsic)
8259 continue;
8260
8261 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
8262 if (intrin->intrinsic != nir_intrinsic_load_barycentric_sample &&
8263 intrin->intrinsic != nir_intrinsic_load_barycentric_at_sample)
8264 continue;
8265
8266 b.cursor = nir_before_instr(instr);
8267 nir_ssa_def *centroid =
8268 nir_load_barycentric(&b, nir_intrinsic_load_barycentric_centroid,
8269 nir_intrinsic_interp_mode(intrin));
8270 nir_ssa_def_rewrite_uses(&intrin->dest.ssa,
8271 nir_src_for_ssa(centroid));
8272 nir_instr_remove(instr);
8273 progress = true;
8274 }
8275 }
8276
8277 nir_metadata_preserve(f->impl, (nir_metadata)
8278 ((unsigned) nir_metadata_block_index |
8279 (unsigned) nir_metadata_dominance));
8280 }
8281
8282 return progress;
8283 }
8284
8285 /**
8286 * Pre-gen6, the register file of the EUs was shared between threads,
8287 * and each thread used some subset allocated on a 16-register block
8288 * granularity. The unit states wanted these block counts.
8289 */
8290 static inline int
8291 brw_register_blocks(int reg_count)
8292 {
8293 return ALIGN(reg_count, 16) / 16 - 1;
8294 }
8295
8296 const unsigned *
8297 brw_compile_fs(const struct brw_compiler *compiler, void *log_data,
8298 void *mem_ctx,
8299 const struct brw_wm_prog_key *key,
8300 struct brw_wm_prog_data *prog_data,
8301 nir_shader *shader,
8302 int shader_time_index8, int shader_time_index16,
8303 int shader_time_index32, bool allow_spilling,
8304 bool use_rep_send, struct brw_vue_map *vue_map,
8305 struct brw_compile_stats *stats,
8306 char **error_str)
8307 {
8308 const struct gen_device_info *devinfo = compiler->devinfo;
8309
8310 unsigned max_subgroup_size = unlikely(INTEL_DEBUG & DEBUG_DO32) ? 32 : 16;
8311
8312 brw_nir_apply_key(shader, compiler, &key->base, max_subgroup_size, true);
8313 brw_nir_lower_fs_inputs(shader, devinfo, key);
8314 brw_nir_lower_fs_outputs(shader);
8315
8316 if (devinfo->gen < 6)
8317 brw_setup_vue_interpolation(vue_map, shader, prog_data);
8318
8319 /* From the SKL PRM, Volume 7, "Alpha Coverage":
8320 * "If Pixel Shader outputs oMask, AlphaToCoverage is disabled in
8321 * hardware, regardless of the state setting for this feature."
8322 */
8323 if (devinfo->gen > 6 && key->alpha_to_coverage) {
8324 /* Run constant fold optimization in order to get the correct source
8325 * offset to determine render target 0 store instruction in
8326 * emit_alpha_to_coverage pass.
8327 */
8328 NIR_PASS_V(shader, nir_opt_constant_folding);
8329 NIR_PASS_V(shader, brw_nir_lower_alpha_to_coverage);
8330 }
8331
8332 if (!key->multisample_fbo)
8333 NIR_PASS_V(shader, demote_sample_qualifiers);
8334 NIR_PASS_V(shader, move_interpolation_to_top);
8335 brw_postprocess_nir(shader, compiler, true);
8336
8337 /* key->alpha_test_func means simulating alpha testing via discards,
8338 * so the shader definitely kills pixels.
8339 */
8340 prog_data->uses_kill = shader->info.fs.uses_discard ||
8341 key->alpha_test_func;
8342 prog_data->uses_omask = key->multisample_fbo &&
8343 shader->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_SAMPLE_MASK);
8344 prog_data->computed_depth_mode = computed_depth_mode(shader);
8345 prog_data->computed_stencil =
8346 shader->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_STENCIL);
8347
8348 prog_data->persample_dispatch =
8349 key->multisample_fbo &&
8350 (key->persample_interp ||
8351 (shader->info.system_values_read & (SYSTEM_BIT_SAMPLE_ID |
8352 SYSTEM_BIT_SAMPLE_POS)) ||
8353 shader->info.fs.uses_sample_qualifier ||
8354 shader->info.outputs_read);
8355
8356 prog_data->has_render_target_reads = shader->info.outputs_read != 0ull;
8357
8358 prog_data->early_fragment_tests = shader->info.fs.early_fragment_tests;
8359 prog_data->post_depth_coverage = shader->info.fs.post_depth_coverage;
8360 prog_data->inner_coverage = shader->info.fs.inner_coverage;
8361
8362 prog_data->barycentric_interp_modes =
8363 brw_compute_barycentric_interp_modes(compiler->devinfo, shader);
8364
8365 calculate_urb_setup(devinfo, key, prog_data, shader);
8366 brw_compute_flat_inputs(prog_data, shader);
8367
8368 cfg_t *simd8_cfg = NULL, *simd16_cfg = NULL, *simd32_cfg = NULL;
8369
8370 fs_visitor v8(compiler, log_data, mem_ctx, &key->base,
8371 &prog_data->base, shader, 8,
8372 shader_time_index8);
8373 if (!v8.run_fs(allow_spilling, false /* do_rep_send */)) {
8374 if (error_str)
8375 *error_str = ralloc_strdup(mem_ctx, v8.fail_msg);
8376
8377 return NULL;
8378 } else if (likely(!(INTEL_DEBUG & DEBUG_NO8))) {
8379 simd8_cfg = v8.cfg;
8380 prog_data->base.dispatch_grf_start_reg = v8.payload.num_regs;
8381 prog_data->reg_blocks_8 = brw_register_blocks(v8.grf_used);
8382 }
8383
8384 if (v8.max_dispatch_width >= 16 &&
8385 likely(!(INTEL_DEBUG & DEBUG_NO16) || use_rep_send)) {
8386 /* Try a SIMD16 compile */
8387 fs_visitor v16(compiler, log_data, mem_ctx, &key->base,
8388 &prog_data->base, shader, 16,
8389 shader_time_index16);
8390 v16.import_uniforms(&v8);
8391 if (!v16.run_fs(allow_spilling, use_rep_send)) {
8392 compiler->shader_perf_log(log_data,
8393 "SIMD16 shader failed to compile: %s",
8394 v16.fail_msg);
8395 } else {
8396 simd16_cfg = v16.cfg;
8397 prog_data->dispatch_grf_start_reg_16 = v16.payload.num_regs;
8398 prog_data->reg_blocks_16 = brw_register_blocks(v16.grf_used);
8399 }
8400 }
8401
8402 /* Currently, the compiler only supports SIMD32 on SNB+ */
8403 if (v8.max_dispatch_width >= 32 && !use_rep_send &&
8404 compiler->devinfo->gen >= 6 &&
8405 unlikely(INTEL_DEBUG & DEBUG_DO32)) {
8406 /* Try a SIMD32 compile */
8407 fs_visitor v32(compiler, log_data, mem_ctx, &key->base,
8408 &prog_data->base, shader, 32,
8409 shader_time_index32);
8410 v32.import_uniforms(&v8);
8411 if (!v32.run_fs(allow_spilling, false)) {
8412 compiler->shader_perf_log(log_data,
8413 "SIMD32 shader failed to compile: %s",
8414 v32.fail_msg);
8415 } else {
8416 simd32_cfg = v32.cfg;
8417 prog_data->dispatch_grf_start_reg_32 = v32.payload.num_regs;
8418 prog_data->reg_blocks_32 = brw_register_blocks(v32.grf_used);
8419 }
8420 }
8421
8422 /* When the caller requests a repclear shader, they want SIMD16-only */
8423 if (use_rep_send)
8424 simd8_cfg = NULL;
8425
8426 /* Prior to Iron Lake, the PS had a single shader offset with a jump table
8427 * at the top to select the shader. We've never implemented that.
8428 * Instead, we just give them exactly one shader and we pick the widest one
8429 * available.
8430 */
8431 if (compiler->devinfo->gen < 5) {
8432 if (simd32_cfg || simd16_cfg)
8433 simd8_cfg = NULL;
8434 if (simd32_cfg)
8435 simd16_cfg = NULL;
8436 }
8437
8438 /* If computed depth is enabled SNB only allows SIMD8. */
8439 if (compiler->devinfo->gen == 6 &&
8440 prog_data->computed_depth_mode != BRW_PSCDEPTH_OFF)
8441 assert(simd16_cfg == NULL && simd32_cfg == NULL);
8442
8443 if (compiler->devinfo->gen <= 5 && !simd8_cfg) {
8444 /* Iron lake and earlier only have one Dispatch GRF start field. Make
8445 * the data available in the base prog data struct for convenience.
8446 */
8447 if (simd16_cfg) {
8448 prog_data->base.dispatch_grf_start_reg =
8449 prog_data->dispatch_grf_start_reg_16;
8450 } else if (simd32_cfg) {
8451 prog_data->base.dispatch_grf_start_reg =
8452 prog_data->dispatch_grf_start_reg_32;
8453 }
8454 }
8455
8456 if (prog_data->persample_dispatch) {
8457 /* Starting with SandyBridge (where we first get MSAA), the different
8458 * pixel dispatch combinations are grouped into classifications A
8459 * through F (SNB PRM Vol. 2 Part 1 Section 7.7.1). On all hardware
8460 * generations, the only configurations supporting persample dispatch
8461 * are are this in which only one dispatch width is enabled.
8462 */
8463 if (simd32_cfg || simd16_cfg)
8464 simd8_cfg = NULL;
8465 if (simd32_cfg)
8466 simd16_cfg = NULL;
8467 }
8468
8469 fs_generator g(compiler, log_data, mem_ctx, &prog_data->base,
8470 v8.shader_stats, v8.runtime_check_aads_emit,
8471 MESA_SHADER_FRAGMENT);
8472
8473 if (unlikely(INTEL_DEBUG & DEBUG_WM)) {
8474 g.enable_debug(ralloc_asprintf(mem_ctx, "%s fragment shader %s",
8475 shader->info.label ?
8476 shader->info.label : "unnamed",
8477 shader->info.name));
8478 }
8479
8480 if (simd8_cfg) {
8481 prog_data->dispatch_8 = true;
8482 g.generate_code(simd8_cfg, 8, stats);
8483 stats = stats ? stats + 1 : NULL;
8484 }
8485
8486 if (simd16_cfg) {
8487 prog_data->dispatch_16 = true;
8488 prog_data->prog_offset_16 = g.generate_code(simd16_cfg, 16, stats);
8489 stats = stats ? stats + 1 : NULL;
8490 }
8491
8492 if (simd32_cfg) {
8493 prog_data->dispatch_32 = true;
8494 prog_data->prog_offset_32 = g.generate_code(simd32_cfg, 32, stats);
8495 stats = stats ? stats + 1 : NULL;
8496 }
8497
8498 return g.get_assembly();
8499 }
8500
8501 fs_reg *
8502 fs_visitor::emit_cs_work_group_id_setup()
8503 {
8504 assert(stage == MESA_SHADER_COMPUTE);
8505
8506 fs_reg *reg = new(this->mem_ctx) fs_reg(vgrf(glsl_type::uvec3_type));
8507
8508 struct brw_reg r0_1(retype(brw_vec1_grf(0, 1), BRW_REGISTER_TYPE_UD));
8509 struct brw_reg r0_6(retype(brw_vec1_grf(0, 6), BRW_REGISTER_TYPE_UD));
8510 struct brw_reg r0_7(retype(brw_vec1_grf(0, 7), BRW_REGISTER_TYPE_UD));
8511
8512 bld.MOV(*reg, r0_1);
8513 bld.MOV(offset(*reg, bld, 1), r0_6);
8514 bld.MOV(offset(*reg, bld, 2), r0_7);
8515
8516 return reg;
8517 }
8518
8519 static void
8520 fill_push_const_block_info(struct brw_push_const_block *block, unsigned dwords)
8521 {
8522 block->dwords = dwords;
8523 block->regs = DIV_ROUND_UP(dwords, 8);
8524 block->size = block->regs * 32;
8525 }
8526
8527 static void
8528 cs_fill_push_const_info(const struct gen_device_info *devinfo,
8529 struct brw_cs_prog_data *cs_prog_data)
8530 {
8531 const struct brw_stage_prog_data *prog_data = &cs_prog_data->base;
8532 int subgroup_id_index = get_subgroup_id_param_index(prog_data);
8533 bool cross_thread_supported = devinfo->gen > 7 || devinfo->is_haswell;
8534
8535 /* The thread ID should be stored in the last param dword */
8536 assert(subgroup_id_index == -1 ||
8537 subgroup_id_index == (int)prog_data->nr_params - 1);
8538
8539 unsigned cross_thread_dwords, per_thread_dwords;
8540 if (!cross_thread_supported) {
8541 cross_thread_dwords = 0u;
8542 per_thread_dwords = prog_data->nr_params;
8543 } else if (subgroup_id_index >= 0) {
8544 /* Fill all but the last register with cross-thread payload */
8545 cross_thread_dwords = 8 * (subgroup_id_index / 8);
8546 per_thread_dwords = prog_data->nr_params - cross_thread_dwords;
8547 assert(per_thread_dwords > 0 && per_thread_dwords <= 8);
8548 } else {
8549 /* Fill all data using cross-thread payload */
8550 cross_thread_dwords = prog_data->nr_params;
8551 per_thread_dwords = 0u;
8552 }
8553
8554 fill_push_const_block_info(&cs_prog_data->push.cross_thread, cross_thread_dwords);
8555 fill_push_const_block_info(&cs_prog_data->push.per_thread, per_thread_dwords);
8556
8557 unsigned total_dwords =
8558 (cs_prog_data->push.per_thread.size * cs_prog_data->threads +
8559 cs_prog_data->push.cross_thread.size) / 4;
8560 fill_push_const_block_info(&cs_prog_data->push.total, total_dwords);
8561
8562 assert(cs_prog_data->push.cross_thread.dwords % 8 == 0 ||
8563 cs_prog_data->push.per_thread.size == 0);
8564 assert(cs_prog_data->push.cross_thread.dwords +
8565 cs_prog_data->push.per_thread.dwords ==
8566 prog_data->nr_params);
8567 }
8568
8569 static void
8570 cs_set_simd_size(struct brw_cs_prog_data *cs_prog_data, unsigned size)
8571 {
8572 cs_prog_data->simd_size = size;
8573 unsigned group_size = cs_prog_data->local_size[0] *
8574 cs_prog_data->local_size[1] * cs_prog_data->local_size[2];
8575 cs_prog_data->threads = (group_size + size - 1) / size;
8576 }
8577
8578 static nir_shader *
8579 compile_cs_to_nir(const struct brw_compiler *compiler,
8580 void *mem_ctx,
8581 const struct brw_cs_prog_key *key,
8582 const nir_shader *src_shader,
8583 unsigned dispatch_width)
8584 {
8585 nir_shader *shader = nir_shader_clone(mem_ctx, src_shader);
8586 brw_nir_apply_key(shader, compiler, &key->base, dispatch_width, true);
8587
8588 NIR_PASS_V(shader, brw_nir_lower_cs_intrinsics, dispatch_width);
8589
8590 /* Clean up after the local index and ID calculations. */
8591 NIR_PASS_V(shader, nir_opt_constant_folding);
8592 NIR_PASS_V(shader, nir_opt_dce);
8593
8594 brw_postprocess_nir(shader, compiler, true);
8595
8596 return shader;
8597 }
8598
8599 const unsigned *
8600 brw_compile_cs(const struct brw_compiler *compiler, void *log_data,
8601 void *mem_ctx,
8602 const struct brw_cs_prog_key *key,
8603 struct brw_cs_prog_data *prog_data,
8604 const nir_shader *src_shader,
8605 int shader_time_index,
8606 struct brw_compile_stats *stats,
8607 char **error_str)
8608 {
8609 prog_data->base.total_shared = src_shader->info.cs.shared_size;
8610 prog_data->local_size[0] = src_shader->info.cs.local_size[0];
8611 prog_data->local_size[1] = src_shader->info.cs.local_size[1];
8612 prog_data->local_size[2] = src_shader->info.cs.local_size[2];
8613 prog_data->slm_size = src_shader->num_shared;
8614 unsigned local_workgroup_size =
8615 src_shader->info.cs.local_size[0] * src_shader->info.cs.local_size[1] *
8616 src_shader->info.cs.local_size[2];
8617
8618 unsigned min_dispatch_width =
8619 DIV_ROUND_UP(local_workgroup_size, compiler->devinfo->max_cs_threads);
8620 min_dispatch_width = MAX2(8, min_dispatch_width);
8621 min_dispatch_width = util_next_power_of_two(min_dispatch_width);
8622 assert(min_dispatch_width <= 32);
8623 unsigned max_dispatch_width = 32;
8624
8625 fs_visitor *v8 = NULL, *v16 = NULL, *v32 = NULL;
8626 fs_visitor *v = NULL;
8627 const char *fail_msg = NULL;
8628
8629 if ((int)key->base.subgroup_size_type >= (int)BRW_SUBGROUP_SIZE_REQUIRE_8) {
8630 /* These enum values are expressly chosen to be equal to the subgroup
8631 * size that they require.
8632 */
8633 const unsigned required_dispatch_width =
8634 (unsigned)key->base.subgroup_size_type;
8635 assert(required_dispatch_width == 8 ||
8636 required_dispatch_width == 16 ||
8637 required_dispatch_width == 32);
8638 if (required_dispatch_width < min_dispatch_width ||
8639 required_dispatch_width > max_dispatch_width) {
8640 fail_msg = "Cannot satisfy explicit subgroup size";
8641 } else {
8642 min_dispatch_width = max_dispatch_width = required_dispatch_width;
8643 }
8644 }
8645
8646 /* Now the main event: Visit the shader IR and generate our CS IR for it.
8647 */
8648 if (!fail_msg && min_dispatch_width <= 8 && max_dispatch_width >= 8) {
8649 nir_shader *nir8 = compile_cs_to_nir(compiler, mem_ctx, key,
8650 src_shader, 8);
8651 v8 = new fs_visitor(compiler, log_data, mem_ctx, &key->base,
8652 &prog_data->base,
8653 nir8, 8, shader_time_index);
8654 if (!v8->run_cs(min_dispatch_width)) {
8655 fail_msg = v8->fail_msg;
8656 } else {
8657 /* We should always be able to do SIMD32 for compute shaders */
8658 assert(v8->max_dispatch_width >= 32);
8659
8660 v = v8;
8661 cs_set_simd_size(prog_data, 8);
8662 cs_fill_push_const_info(compiler->devinfo, prog_data);
8663 }
8664 }
8665
8666 if (likely(!(INTEL_DEBUG & DEBUG_NO16)) &&
8667 !fail_msg && min_dispatch_width <= 16 && max_dispatch_width >= 16) {
8668 /* Try a SIMD16 compile */
8669 nir_shader *nir16 = compile_cs_to_nir(compiler, mem_ctx, key,
8670 src_shader, 16);
8671 v16 = new fs_visitor(compiler, log_data, mem_ctx, &key->base,
8672 &prog_data->base,
8673 nir16, 16, shader_time_index);
8674 if (v8)
8675 v16->import_uniforms(v8);
8676
8677 if (!v16->run_cs(min_dispatch_width)) {
8678 compiler->shader_perf_log(log_data,
8679 "SIMD16 shader failed to compile: %s",
8680 v16->fail_msg);
8681 if (!v) {
8682 fail_msg =
8683 "Couldn't generate SIMD16 program and not "
8684 "enough threads for SIMD8";
8685 }
8686 } else {
8687 /* We should always be able to do SIMD32 for compute shaders */
8688 assert(v16->max_dispatch_width >= 32);
8689
8690 v = v16;
8691 cs_set_simd_size(prog_data, 16);
8692 cs_fill_push_const_info(compiler->devinfo, prog_data);
8693 }
8694 }
8695
8696 /* We should always be able to do SIMD32 for compute shaders */
8697 assert(!v16 || v16->max_dispatch_width >= 32);
8698
8699 if (!fail_msg && (min_dispatch_width > 16 || (INTEL_DEBUG & DEBUG_DO32)) &&
8700 max_dispatch_width >= 32) {
8701 /* Try a SIMD32 compile */
8702 nir_shader *nir32 = compile_cs_to_nir(compiler, mem_ctx, key,
8703 src_shader, 32);
8704 v32 = new fs_visitor(compiler, log_data, mem_ctx, &key->base,
8705 &prog_data->base,
8706 nir32, 32, shader_time_index);
8707 if (v8)
8708 v32->import_uniforms(v8);
8709 else if (v16)
8710 v32->import_uniforms(v16);
8711
8712 if (!v32->run_cs(min_dispatch_width)) {
8713 compiler->shader_perf_log(log_data,
8714 "SIMD32 shader failed to compile: %s",
8715 v32->fail_msg);
8716 if (!v) {
8717 fail_msg =
8718 "Couldn't generate SIMD32 program and not "
8719 "enough threads for SIMD16";
8720 }
8721 } else {
8722 v = v32;
8723 cs_set_simd_size(prog_data, 32);
8724 cs_fill_push_const_info(compiler->devinfo, prog_data);
8725 }
8726 }
8727
8728 const unsigned *ret = NULL;
8729 if (unlikely(v == NULL)) {
8730 assert(fail_msg);
8731 if (error_str)
8732 *error_str = ralloc_strdup(mem_ctx, fail_msg);
8733 } else {
8734 fs_generator g(compiler, log_data, mem_ctx, &prog_data->base,
8735 v->shader_stats, v->runtime_check_aads_emit,
8736 MESA_SHADER_COMPUTE);
8737 if (INTEL_DEBUG & DEBUG_CS) {
8738 char *name = ralloc_asprintf(mem_ctx, "%s compute shader %s",
8739 src_shader->info.label ?
8740 src_shader->info.label : "unnamed",
8741 src_shader->info.name);
8742 g.enable_debug(name);
8743 }
8744
8745 g.generate_code(v->cfg, prog_data->simd_size, stats);
8746
8747 ret = g.get_assembly();
8748 }
8749
8750 delete v8;
8751 delete v16;
8752 delete v32;
8753
8754 return ret;
8755 }
8756
8757 /**
8758 * Test the dispatch mask packing assumptions of
8759 * brw_stage_has_packed_dispatch(). Call this from e.g. the top of
8760 * fs_visitor::emit_nir_code() to cause a GPU hang if any shader invocation is
8761 * executed with an unexpected dispatch mask.
8762 */
8763 static UNUSED void
8764 brw_fs_test_dispatch_packing(const fs_builder &bld)
8765 {
8766 const gl_shader_stage stage = bld.shader->stage;
8767
8768 if (brw_stage_has_packed_dispatch(bld.shader->devinfo, stage,
8769 bld.shader->stage_prog_data)) {
8770 const fs_builder ubld = bld.exec_all().group(1, 0);
8771 const fs_reg tmp = component(bld.vgrf(BRW_REGISTER_TYPE_UD), 0);
8772 const fs_reg mask = (stage == MESA_SHADER_FRAGMENT ? brw_vmask_reg() :
8773 brw_dmask_reg());
8774
8775 ubld.ADD(tmp, mask, brw_imm_ud(1));
8776 ubld.AND(tmp, mask, tmp);
8777
8778 /* This will loop forever if the dispatch mask doesn't have the expected
8779 * form '2^n-1', in which case tmp will be non-zero.
8780 */
8781 bld.emit(BRW_OPCODE_DO);
8782 bld.CMP(bld.null_reg_ud(), tmp, brw_imm_ud(0), BRW_CONDITIONAL_NZ);
8783 set_predicate(BRW_PREDICATE_NORMAL, bld.emit(BRW_OPCODE_WHILE));
8784 }
8785 }