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