i965/urb: fixes division by zero
[mesa.git] / src / mesa / drivers / dri / i965 / brw_eu_emit.c
1 /*
2 Copyright (C) Intel Corp. 2006. All Rights Reserved.
3 Intel funded Tungsten Graphics to
4 develop this 3D driver.
5
6 Permission is hereby granted, free of charge, to any person obtaining
7 a copy of this software and associated documentation files (the
8 "Software"), to deal in the Software without restriction, including
9 without limitation the rights to use, copy, modify, merge, publish,
10 distribute, sublicense, and/or sell copies of the Software, and to
11 permit persons to whom the Software is furnished to do so, subject to
12 the following conditions:
13
14 The above copyright notice and this permission notice (including the
15 next paragraph) shall be included in all copies or substantial
16 portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 **********************************************************************/
27 /*
28 * Authors:
29 * Keith Whitwell <keithw@vmware.com>
30 */
31
32
33 #include "brw_context.h"
34 #include "brw_defines.h"
35 #include "brw_eu.h"
36
37 #include "util/ralloc.h"
38
39 /**
40 * Prior to Sandybridge, the SEND instruction accepted non-MRF source
41 * registers, implicitly moving the operand to a message register.
42 *
43 * On Sandybridge, this is no longer the case. This function performs the
44 * explicit move; it should be called before emitting a SEND instruction.
45 */
46 void
47 gen6_resolve_implied_move(struct brw_codegen *p,
48 struct brw_reg *src,
49 unsigned msg_reg_nr)
50 {
51 const struct brw_device_info *devinfo = p->devinfo;
52 if (devinfo->gen < 6)
53 return;
54
55 if (src->file == BRW_MESSAGE_REGISTER_FILE)
56 return;
57
58 if (src->file != BRW_ARCHITECTURE_REGISTER_FILE || src->nr != BRW_ARF_NULL) {
59 brw_push_insn_state(p);
60 brw_set_default_exec_size(p, BRW_EXECUTE_8);
61 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
62 brw_set_default_compression_control(p, BRW_COMPRESSION_NONE);
63 brw_MOV(p, retype(brw_message_reg(msg_reg_nr), BRW_REGISTER_TYPE_UD),
64 retype(*src, BRW_REGISTER_TYPE_UD));
65 brw_pop_insn_state(p);
66 }
67 *src = brw_message_reg(msg_reg_nr);
68 }
69
70 static void
71 gen7_convert_mrf_to_grf(struct brw_codegen *p, struct brw_reg *reg)
72 {
73 /* From the Ivybridge PRM, Volume 4 Part 3, page 218 ("send"):
74 * "The send with EOT should use register space R112-R127 for <src>. This is
75 * to enable loading of a new thread into the same slot while the message
76 * with EOT for current thread is pending dispatch."
77 *
78 * Since we're pretending to have 16 MRFs anyway, we may as well use the
79 * registers required for messages with EOT.
80 */
81 const struct brw_device_info *devinfo = p->devinfo;
82 if (devinfo->gen >= 7 && reg->file == BRW_MESSAGE_REGISTER_FILE) {
83 reg->file = BRW_GENERAL_REGISTER_FILE;
84 reg->nr += GEN7_MRF_HACK_START;
85 }
86 }
87
88 /**
89 * Convert a brw_reg_type enumeration value into the hardware representation.
90 *
91 * The hardware encoding may depend on whether the value is an immediate.
92 */
93 unsigned
94 brw_reg_type_to_hw_type(const struct brw_device_info *devinfo,
95 enum brw_reg_type type, enum brw_reg_file file)
96 {
97 if (file == BRW_IMMEDIATE_VALUE) {
98 static const int imm_hw_types[] = {
99 [BRW_REGISTER_TYPE_UD] = BRW_HW_REG_TYPE_UD,
100 [BRW_REGISTER_TYPE_D] = BRW_HW_REG_TYPE_D,
101 [BRW_REGISTER_TYPE_UW] = BRW_HW_REG_TYPE_UW,
102 [BRW_REGISTER_TYPE_W] = BRW_HW_REG_TYPE_W,
103 [BRW_REGISTER_TYPE_F] = BRW_HW_REG_TYPE_F,
104 [BRW_REGISTER_TYPE_UB] = -1,
105 [BRW_REGISTER_TYPE_B] = -1,
106 [BRW_REGISTER_TYPE_UV] = BRW_HW_REG_IMM_TYPE_UV,
107 [BRW_REGISTER_TYPE_VF] = BRW_HW_REG_IMM_TYPE_VF,
108 [BRW_REGISTER_TYPE_V] = BRW_HW_REG_IMM_TYPE_V,
109 [BRW_REGISTER_TYPE_DF] = GEN8_HW_REG_IMM_TYPE_DF,
110 [BRW_REGISTER_TYPE_HF] = GEN8_HW_REG_IMM_TYPE_HF,
111 [BRW_REGISTER_TYPE_UQ] = GEN8_HW_REG_TYPE_UQ,
112 [BRW_REGISTER_TYPE_Q] = GEN8_HW_REG_TYPE_Q,
113 };
114 assert(type < ARRAY_SIZE(imm_hw_types));
115 assert(imm_hw_types[type] != -1);
116 assert(devinfo->gen >= 8 || type < BRW_REGISTER_TYPE_DF);
117 return imm_hw_types[type];
118 } else {
119 /* Non-immediate registers */
120 static const int hw_types[] = {
121 [BRW_REGISTER_TYPE_UD] = BRW_HW_REG_TYPE_UD,
122 [BRW_REGISTER_TYPE_D] = BRW_HW_REG_TYPE_D,
123 [BRW_REGISTER_TYPE_UW] = BRW_HW_REG_TYPE_UW,
124 [BRW_REGISTER_TYPE_W] = BRW_HW_REG_TYPE_W,
125 [BRW_REGISTER_TYPE_UB] = BRW_HW_REG_NON_IMM_TYPE_UB,
126 [BRW_REGISTER_TYPE_B] = BRW_HW_REG_NON_IMM_TYPE_B,
127 [BRW_REGISTER_TYPE_F] = BRW_HW_REG_TYPE_F,
128 [BRW_REGISTER_TYPE_UV] = -1,
129 [BRW_REGISTER_TYPE_VF] = -1,
130 [BRW_REGISTER_TYPE_V] = -1,
131 [BRW_REGISTER_TYPE_DF] = GEN7_HW_REG_NON_IMM_TYPE_DF,
132 [BRW_REGISTER_TYPE_HF] = GEN8_HW_REG_NON_IMM_TYPE_HF,
133 [BRW_REGISTER_TYPE_UQ] = GEN8_HW_REG_TYPE_UQ,
134 [BRW_REGISTER_TYPE_Q] = GEN8_HW_REG_TYPE_Q,
135 };
136 assert(type < ARRAY_SIZE(hw_types));
137 assert(hw_types[type] != -1);
138 assert(devinfo->gen >= 7 || type < BRW_REGISTER_TYPE_DF);
139 assert(devinfo->gen >= 8 || type < BRW_REGISTER_TYPE_HF);
140 return hw_types[type];
141 }
142 }
143
144 void
145 brw_set_dest(struct brw_codegen *p, brw_inst *inst, struct brw_reg dest)
146 {
147 const struct brw_device_info *devinfo = p->devinfo;
148
149 if (dest.file == BRW_MESSAGE_REGISTER_FILE)
150 assert((dest.nr & ~BRW_MRF_COMPR4) < BRW_MAX_MRF(devinfo->gen));
151 else if (dest.file != BRW_ARCHITECTURE_REGISTER_FILE)
152 assert(dest.nr < 128);
153
154 gen7_convert_mrf_to_grf(p, &dest);
155
156 brw_inst_set_dst_reg_file(devinfo, inst, dest.file);
157 brw_inst_set_dst_reg_type(devinfo, inst,
158 brw_reg_type_to_hw_type(devinfo, dest.type,
159 dest.file));
160 brw_inst_set_dst_address_mode(devinfo, inst, dest.address_mode);
161
162 if (dest.address_mode == BRW_ADDRESS_DIRECT) {
163 brw_inst_set_dst_da_reg_nr(devinfo, inst, dest.nr);
164
165 if (brw_inst_access_mode(devinfo, inst) == BRW_ALIGN_1) {
166 brw_inst_set_dst_da1_subreg_nr(devinfo, inst, dest.subnr);
167 if (dest.hstride == BRW_HORIZONTAL_STRIDE_0)
168 dest.hstride = BRW_HORIZONTAL_STRIDE_1;
169 brw_inst_set_dst_hstride(devinfo, inst, dest.hstride);
170 } else {
171 brw_inst_set_dst_da16_subreg_nr(devinfo, inst, dest.subnr / 16);
172 brw_inst_set_da16_writemask(devinfo, inst, dest.writemask);
173 if (dest.file == BRW_GENERAL_REGISTER_FILE ||
174 dest.file == BRW_MESSAGE_REGISTER_FILE) {
175 assert(dest.writemask != 0);
176 }
177 /* From the Ivybridge PRM, Vol 4, Part 3, Section 5.2.4.1:
178 * Although Dst.HorzStride is a don't care for Align16, HW needs
179 * this to be programmed as "01".
180 */
181 brw_inst_set_dst_hstride(devinfo, inst, 1);
182 }
183 } else {
184 brw_inst_set_dst_ia_subreg_nr(devinfo, inst, dest.subnr);
185
186 /* These are different sizes in align1 vs align16:
187 */
188 if (brw_inst_access_mode(devinfo, inst) == BRW_ALIGN_1) {
189 brw_inst_set_dst_ia1_addr_imm(devinfo, inst,
190 dest.indirect_offset);
191 if (dest.hstride == BRW_HORIZONTAL_STRIDE_0)
192 dest.hstride = BRW_HORIZONTAL_STRIDE_1;
193 brw_inst_set_dst_hstride(devinfo, inst, dest.hstride);
194 } else {
195 brw_inst_set_dst_ia16_addr_imm(devinfo, inst,
196 dest.indirect_offset);
197 /* even ignored in da16, still need to set as '01' */
198 brw_inst_set_dst_hstride(devinfo, inst, 1);
199 }
200 }
201
202 /* Generators should set a default exec_size of either 8 (SIMD4x2 or SIMD8)
203 * or 16 (SIMD16), as that's normally correct. However, when dealing with
204 * small registers, we automatically reduce it to match the register size.
205 *
206 * In platforms that support fp64 we can emit instructions with a width of
207 * 4 that need two SIMD8 registers and an exec_size of 8 or 16. In these
208 * cases we need to make sure that these instructions have their exec sizes
209 * set properly when they are emitted and we can't rely on this code to fix
210 * it.
211 */
212 bool fix_exec_size;
213 if (devinfo->gen >= 6)
214 fix_exec_size = dest.width < BRW_EXECUTE_4;
215 else
216 fix_exec_size = dest.width < BRW_EXECUTE_8;
217
218 if (fix_exec_size)
219 brw_inst_set_exec_size(devinfo, inst, dest.width);
220 }
221
222 extern int reg_type_size[];
223
224 static void
225 validate_reg(const struct brw_device_info *devinfo,
226 brw_inst *inst, struct brw_reg reg)
227 {
228 const int hstride_for_reg[] = {0, 1, 2, 4};
229 const int vstride_for_reg[] = {0, 1, 2, 4, 8, 16, 32};
230 const int width_for_reg[] = {1, 2, 4, 8, 16};
231 const int execsize_for_reg[] = {1, 2, 4, 8, 16, 32};
232 int width, hstride, vstride, execsize;
233
234 if (reg.file == BRW_IMMEDIATE_VALUE) {
235 /* 3.3.6: Region Parameters. Restriction: Immediate vectors
236 * mean the destination has to be 128-bit aligned and the
237 * destination horiz stride has to be a word.
238 */
239 if (reg.type == BRW_REGISTER_TYPE_V) {
240 assert(hstride_for_reg[brw_inst_dst_hstride(devinfo, inst)] *
241 reg_type_size[brw_inst_dst_reg_type(devinfo, inst)] == 2);
242 }
243
244 return;
245 }
246
247 if (reg.file == BRW_ARCHITECTURE_REGISTER_FILE &&
248 reg.file == BRW_ARF_NULL)
249 return;
250
251 /* From the IVB PRM Vol. 4, Pt. 3, Section 3.3.3.5:
252 *
253 * "Swizzling is not allowed when an accumulator is used as an implicit
254 * source or an explicit source in an instruction."
255 */
256 if (reg.file == BRW_ARCHITECTURE_REGISTER_FILE &&
257 reg.nr == BRW_ARF_ACCUMULATOR)
258 assert(reg.swizzle == BRW_SWIZZLE_XYZW);
259
260 assert(reg.hstride >= 0 && reg.hstride < ARRAY_SIZE(hstride_for_reg));
261 hstride = hstride_for_reg[reg.hstride];
262
263 if (reg.vstride == 0xf) {
264 vstride = -1;
265 } else {
266 assert(reg.vstride >= 0 && reg.vstride < ARRAY_SIZE(vstride_for_reg));
267 vstride = vstride_for_reg[reg.vstride];
268 }
269
270 assert(reg.width >= 0 && reg.width < ARRAY_SIZE(width_for_reg));
271 width = width_for_reg[reg.width];
272
273 assert(brw_inst_exec_size(devinfo, inst) >= 0 &&
274 brw_inst_exec_size(devinfo, inst) < ARRAY_SIZE(execsize_for_reg));
275 execsize = execsize_for_reg[brw_inst_exec_size(devinfo, inst)];
276
277 /* Restrictions from 3.3.10: Register Region Restrictions. */
278 /* 3. */
279 assert(execsize >= width);
280
281 /* 4. */
282 if (execsize == width && hstride != 0) {
283 assert(vstride == -1 || vstride == width * hstride);
284 }
285
286 /* 5. */
287 if (execsize == width && hstride == 0) {
288 /* no restriction on vstride. */
289 }
290
291 /* 6. */
292 if (width == 1) {
293 assert(hstride == 0);
294 }
295
296 /* 7. */
297 if (execsize == 1 && width == 1) {
298 assert(hstride == 0);
299 assert(vstride == 0);
300 }
301
302 /* 8. */
303 if (vstride == 0 && hstride == 0) {
304 assert(width == 1);
305 }
306
307 /* 10. Check destination issues. */
308 }
309
310 static bool
311 is_compactable_immediate(unsigned imm)
312 {
313 /* We get the low 12 bits as-is. */
314 imm &= ~0xfff;
315
316 /* We get one bit replicated through the top 20 bits. */
317 return imm == 0 || imm == 0xfffff000;
318 }
319
320 void
321 brw_set_src0(struct brw_codegen *p, brw_inst *inst, struct brw_reg reg)
322 {
323 const struct brw_device_info *devinfo = p->devinfo;
324
325 if (reg.file == BRW_MESSAGE_REGISTER_FILE)
326 assert((reg.nr & ~BRW_MRF_COMPR4) < BRW_MAX_MRF(devinfo->gen));
327 else if (reg.file != BRW_ARCHITECTURE_REGISTER_FILE)
328 assert(reg.nr < 128);
329
330 gen7_convert_mrf_to_grf(p, &reg);
331
332 if (devinfo->gen >= 6 && (brw_inst_opcode(devinfo, inst) == BRW_OPCODE_SEND ||
333 brw_inst_opcode(devinfo, inst) == BRW_OPCODE_SENDC)) {
334 /* Any source modifiers or regions will be ignored, since this just
335 * identifies the MRF/GRF to start reading the message contents from.
336 * Check for some likely failures.
337 */
338 assert(!reg.negate);
339 assert(!reg.abs);
340 assert(reg.address_mode == BRW_ADDRESS_DIRECT);
341 }
342
343 validate_reg(devinfo, inst, reg);
344
345 brw_inst_set_src0_reg_file(devinfo, inst, reg.file);
346 brw_inst_set_src0_reg_type(devinfo, inst,
347 brw_reg_type_to_hw_type(devinfo, reg.type, reg.file));
348 brw_inst_set_src0_abs(devinfo, inst, reg.abs);
349 brw_inst_set_src0_negate(devinfo, inst, reg.negate);
350 brw_inst_set_src0_address_mode(devinfo, inst, reg.address_mode);
351
352 if (reg.file == BRW_IMMEDIATE_VALUE) {
353 if (reg.type == BRW_REGISTER_TYPE_DF)
354 brw_inst_set_imm_df(devinfo, inst, reg.df);
355 else
356 brw_inst_set_imm_ud(devinfo, inst, reg.ud);
357
358 /* The Bspec's section titled "Non-present Operands" claims that if src0
359 * is an immediate that src1's type must be the same as that of src0.
360 *
361 * The SNB+ DataTypeIndex instruction compaction tables contain mappings
362 * that do not follow this rule. E.g., from the IVB/HSW table:
363 *
364 * DataTypeIndex 18-Bit Mapping Mapped Meaning
365 * 3 001000001011111101 r:f | i:vf | a:ud | <1> | dir |
366 *
367 * And from the SNB table:
368 *
369 * DataTypeIndex 18-Bit Mapping Mapped Meaning
370 * 8 001000000111101100 a:w | i:w | a:ud | <1> | dir |
371 *
372 * Neither of these cause warnings from the simulator when used,
373 * compacted or otherwise. In fact, all compaction mappings that have an
374 * immediate in src0 use a:ud for src1.
375 *
376 * The GM45 instruction compaction tables do not contain mapped meanings
377 * so it's not clear whether it has the restriction. We'll assume it was
378 * lifted on SNB. (FINISHME: decode the GM45 tables and check.)
379 *
380 * Don't do any of this for 64-bit immediates, since the src1 fields
381 * overlap with the immediate and setting them would overwrite the
382 * immediate we set.
383 */
384 if (type_sz(reg.type) < 8) {
385 brw_inst_set_src1_reg_file(devinfo, inst,
386 BRW_ARCHITECTURE_REGISTER_FILE);
387 if (devinfo->gen < 6) {
388 brw_inst_set_src1_reg_type(devinfo, inst,
389 brw_inst_src0_reg_type(devinfo, inst));
390 } else {
391 brw_inst_set_src1_reg_type(devinfo, inst, BRW_HW_REG_TYPE_UD);
392 }
393 }
394
395 /* Compacted instructions only have 12-bits (plus 1 for the other 20)
396 * for immediate values. Presumably the hardware engineers realized
397 * that the only useful floating-point value that could be represented
398 * in this format is 0.0, which can also be represented as a VF-typed
399 * immediate, so they gave us the previously mentioned mapping on IVB+.
400 *
401 * Strangely, we do have a mapping for imm:f in src1, so we don't need
402 * to do this there.
403 *
404 * If we see a 0.0:F, change the type to VF so that it can be compacted.
405 */
406 if (brw_inst_imm_ud(devinfo, inst) == 0x0 &&
407 brw_inst_src0_reg_type(devinfo, inst) == BRW_HW_REG_TYPE_F) {
408 brw_inst_set_src0_reg_type(devinfo, inst, BRW_HW_REG_IMM_TYPE_VF);
409 }
410
411 /* There are no mappings for dst:d | i:d, so if the immediate is suitable
412 * set the types to :UD so the instruction can be compacted.
413 */
414 if (is_compactable_immediate(brw_inst_imm_ud(devinfo, inst)) &&
415 brw_inst_cond_modifier(devinfo, inst) == BRW_CONDITIONAL_NONE &&
416 brw_inst_src0_reg_type(devinfo, inst) == BRW_HW_REG_TYPE_D &&
417 brw_inst_dst_reg_type(devinfo, inst) == BRW_HW_REG_TYPE_D) {
418 brw_inst_set_src0_reg_type(devinfo, inst, BRW_HW_REG_TYPE_UD);
419 brw_inst_set_dst_reg_type(devinfo, inst, BRW_HW_REG_TYPE_UD);
420 }
421 } else {
422 if (reg.address_mode == BRW_ADDRESS_DIRECT) {
423 brw_inst_set_src0_da_reg_nr(devinfo, inst, reg.nr);
424 if (brw_inst_access_mode(devinfo, inst) == BRW_ALIGN_1) {
425 brw_inst_set_src0_da1_subreg_nr(devinfo, inst, reg.subnr);
426 } else {
427 brw_inst_set_src0_da16_subreg_nr(devinfo, inst, reg.subnr / 16);
428 }
429 } else {
430 brw_inst_set_src0_ia_subreg_nr(devinfo, inst, reg.subnr);
431
432 if (brw_inst_access_mode(devinfo, inst) == BRW_ALIGN_1) {
433 brw_inst_set_src0_ia1_addr_imm(devinfo, inst, reg.indirect_offset);
434 } else {
435 brw_inst_set_src0_ia16_addr_imm(devinfo, inst, reg.indirect_offset);
436 }
437 }
438
439 if (brw_inst_access_mode(devinfo, inst) == BRW_ALIGN_1) {
440 if (reg.width == BRW_WIDTH_1 &&
441 brw_inst_exec_size(devinfo, inst) == BRW_EXECUTE_1) {
442 brw_inst_set_src0_hstride(devinfo, inst, BRW_HORIZONTAL_STRIDE_0);
443 brw_inst_set_src0_width(devinfo, inst, BRW_WIDTH_1);
444 brw_inst_set_src0_vstride(devinfo, inst, BRW_VERTICAL_STRIDE_0);
445 } else {
446 brw_inst_set_src0_hstride(devinfo, inst, reg.hstride);
447 brw_inst_set_src0_width(devinfo, inst, reg.width);
448 brw_inst_set_src0_vstride(devinfo, inst, reg.vstride);
449 }
450 } else {
451 brw_inst_set_src0_da16_swiz_x(devinfo, inst,
452 BRW_GET_SWZ(reg.swizzle, BRW_CHANNEL_X));
453 brw_inst_set_src0_da16_swiz_y(devinfo, inst,
454 BRW_GET_SWZ(reg.swizzle, BRW_CHANNEL_Y));
455 brw_inst_set_src0_da16_swiz_z(devinfo, inst,
456 BRW_GET_SWZ(reg.swizzle, BRW_CHANNEL_Z));
457 brw_inst_set_src0_da16_swiz_w(devinfo, inst,
458 BRW_GET_SWZ(reg.swizzle, BRW_CHANNEL_W));
459
460 /* This is an oddity of the fact we're using the same
461 * descriptions for registers in align_16 as align_1:
462 */
463 if (reg.vstride == BRW_VERTICAL_STRIDE_8)
464 brw_inst_set_src0_vstride(devinfo, inst, BRW_VERTICAL_STRIDE_4);
465 else
466 brw_inst_set_src0_vstride(devinfo, inst, reg.vstride);
467 }
468 }
469 }
470
471
472 void
473 brw_set_src1(struct brw_codegen *p, brw_inst *inst, struct brw_reg reg)
474 {
475 const struct brw_device_info *devinfo = p->devinfo;
476
477 if (reg.file != BRW_ARCHITECTURE_REGISTER_FILE)
478 assert(reg.nr < 128);
479
480 /* From the IVB PRM Vol. 4, Pt. 3, Section 3.3.3.5:
481 *
482 * "Accumulator registers may be accessed explicitly as src0
483 * operands only."
484 */
485 assert(reg.file != BRW_ARCHITECTURE_REGISTER_FILE ||
486 reg.nr != BRW_ARF_ACCUMULATOR);
487
488 gen7_convert_mrf_to_grf(p, &reg);
489 assert(reg.file != BRW_MESSAGE_REGISTER_FILE);
490
491 validate_reg(devinfo, inst, reg);
492
493 brw_inst_set_src1_reg_file(devinfo, inst, reg.file);
494 brw_inst_set_src1_reg_type(devinfo, inst,
495 brw_reg_type_to_hw_type(devinfo, reg.type, reg.file));
496 brw_inst_set_src1_abs(devinfo, inst, reg.abs);
497 brw_inst_set_src1_negate(devinfo, inst, reg.negate);
498
499 /* Only src1 can be immediate in two-argument instructions.
500 */
501 assert(brw_inst_src0_reg_file(devinfo, inst) != BRW_IMMEDIATE_VALUE);
502
503 if (reg.file == BRW_IMMEDIATE_VALUE) {
504 /* two-argument instructions can only use 32-bit immediates */
505 assert(type_sz(reg.type) < 8);
506 brw_inst_set_imm_ud(devinfo, inst, reg.ud);
507 } else {
508 /* This is a hardware restriction, which may or may not be lifted
509 * in the future:
510 */
511 assert (reg.address_mode == BRW_ADDRESS_DIRECT);
512 /* assert (reg.file == BRW_GENERAL_REGISTER_FILE); */
513
514 brw_inst_set_src1_da_reg_nr(devinfo, inst, reg.nr);
515 if (brw_inst_access_mode(devinfo, inst) == BRW_ALIGN_1) {
516 brw_inst_set_src1_da1_subreg_nr(devinfo, inst, reg.subnr);
517 } else {
518 brw_inst_set_src1_da16_subreg_nr(devinfo, inst, reg.subnr / 16);
519 }
520
521 if (brw_inst_access_mode(devinfo, inst) == BRW_ALIGN_1) {
522 if (reg.width == BRW_WIDTH_1 &&
523 brw_inst_exec_size(devinfo, inst) == BRW_EXECUTE_1) {
524 brw_inst_set_src1_hstride(devinfo, inst, BRW_HORIZONTAL_STRIDE_0);
525 brw_inst_set_src1_width(devinfo, inst, BRW_WIDTH_1);
526 brw_inst_set_src1_vstride(devinfo, inst, BRW_VERTICAL_STRIDE_0);
527 } else {
528 brw_inst_set_src1_hstride(devinfo, inst, reg.hstride);
529 brw_inst_set_src1_width(devinfo, inst, reg.width);
530 brw_inst_set_src1_vstride(devinfo, inst, reg.vstride);
531 }
532 } else {
533 brw_inst_set_src1_da16_swiz_x(devinfo, inst,
534 BRW_GET_SWZ(reg.swizzle, BRW_CHANNEL_X));
535 brw_inst_set_src1_da16_swiz_y(devinfo, inst,
536 BRW_GET_SWZ(reg.swizzle, BRW_CHANNEL_Y));
537 brw_inst_set_src1_da16_swiz_z(devinfo, inst,
538 BRW_GET_SWZ(reg.swizzle, BRW_CHANNEL_Z));
539 brw_inst_set_src1_da16_swiz_w(devinfo, inst,
540 BRW_GET_SWZ(reg.swizzle, BRW_CHANNEL_W));
541
542 /* This is an oddity of the fact we're using the same
543 * descriptions for registers in align_16 as align_1:
544 */
545 if (reg.vstride == BRW_VERTICAL_STRIDE_8)
546 brw_inst_set_src1_vstride(devinfo, inst, BRW_VERTICAL_STRIDE_4);
547 else
548 brw_inst_set_src1_vstride(devinfo, inst, reg.vstride);
549 }
550 }
551 }
552
553 /**
554 * Set the Message Descriptor and Extended Message Descriptor fields
555 * for SEND messages.
556 *
557 * \note This zeroes out the Function Control bits, so it must be called
558 * \b before filling out any message-specific data. Callers can
559 * choose not to fill in irrelevant bits; they will be zero.
560 */
561 void
562 brw_set_message_descriptor(struct brw_codegen *p,
563 brw_inst *inst,
564 enum brw_message_target sfid,
565 unsigned msg_length,
566 unsigned response_length,
567 bool header_present,
568 bool end_of_thread)
569 {
570 const struct brw_device_info *devinfo = p->devinfo;
571
572 brw_set_src1(p, inst, brw_imm_d(0));
573
574 /* For indirect sends, `inst` will not be the SEND/SENDC instruction
575 * itself; instead, it will be a MOV/OR into the address register.
576 *
577 * In this case, we avoid setting the extended message descriptor bits,
578 * since they go on the later SEND/SENDC instead and if set here would
579 * instead clobber the conditionalmod bits.
580 */
581 unsigned opcode = brw_inst_opcode(devinfo, inst);
582 if (opcode == BRW_OPCODE_SEND || opcode == BRW_OPCODE_SENDC) {
583 brw_inst_set_sfid(devinfo, inst, sfid);
584 }
585
586 brw_inst_set_mlen(devinfo, inst, msg_length);
587 brw_inst_set_rlen(devinfo, inst, response_length);
588 brw_inst_set_eot(devinfo, inst, end_of_thread);
589
590 if (devinfo->gen >= 5) {
591 brw_inst_set_header_present(devinfo, inst, header_present);
592 }
593 }
594
595 static void brw_set_math_message( struct brw_codegen *p,
596 brw_inst *inst,
597 unsigned function,
598 unsigned integer_type,
599 bool low_precision,
600 unsigned dataType )
601 {
602 const struct brw_device_info *devinfo = p->devinfo;
603 unsigned msg_length;
604 unsigned response_length;
605
606 /* Infer message length from the function */
607 switch (function) {
608 case BRW_MATH_FUNCTION_POW:
609 case BRW_MATH_FUNCTION_INT_DIV_QUOTIENT:
610 case BRW_MATH_FUNCTION_INT_DIV_REMAINDER:
611 case BRW_MATH_FUNCTION_INT_DIV_QUOTIENT_AND_REMAINDER:
612 msg_length = 2;
613 break;
614 default:
615 msg_length = 1;
616 break;
617 }
618
619 /* Infer response length from the function */
620 switch (function) {
621 case BRW_MATH_FUNCTION_SINCOS:
622 case BRW_MATH_FUNCTION_INT_DIV_QUOTIENT_AND_REMAINDER:
623 response_length = 2;
624 break;
625 default:
626 response_length = 1;
627 break;
628 }
629
630
631 brw_set_message_descriptor(p, inst, BRW_SFID_MATH,
632 msg_length, response_length, false, false);
633 brw_inst_set_math_msg_function(devinfo, inst, function);
634 brw_inst_set_math_msg_signed_int(devinfo, inst, integer_type);
635 brw_inst_set_math_msg_precision(devinfo, inst, low_precision);
636 brw_inst_set_math_msg_saturate(devinfo, inst, brw_inst_saturate(devinfo, inst));
637 brw_inst_set_math_msg_data_type(devinfo, inst, dataType);
638 brw_inst_set_saturate(devinfo, inst, 0);
639 }
640
641
642 static void brw_set_ff_sync_message(struct brw_codegen *p,
643 brw_inst *insn,
644 bool allocate,
645 unsigned response_length,
646 bool end_of_thread)
647 {
648 const struct brw_device_info *devinfo = p->devinfo;
649
650 brw_set_message_descriptor(p, insn, BRW_SFID_URB,
651 1, response_length, true, end_of_thread);
652 brw_inst_set_urb_opcode(devinfo, insn, 1); /* FF_SYNC */
653 brw_inst_set_urb_allocate(devinfo, insn, allocate);
654 /* The following fields are not used by FF_SYNC: */
655 brw_inst_set_urb_global_offset(devinfo, insn, 0);
656 brw_inst_set_urb_swizzle_control(devinfo, insn, 0);
657 brw_inst_set_urb_used(devinfo, insn, 0);
658 brw_inst_set_urb_complete(devinfo, insn, 0);
659 }
660
661 static void brw_set_urb_message( struct brw_codegen *p,
662 brw_inst *insn,
663 enum brw_urb_write_flags flags,
664 unsigned msg_length,
665 unsigned response_length,
666 unsigned offset,
667 unsigned swizzle_control )
668 {
669 const struct brw_device_info *devinfo = p->devinfo;
670
671 assert(devinfo->gen < 7 || swizzle_control != BRW_URB_SWIZZLE_TRANSPOSE);
672 assert(devinfo->gen < 7 || !(flags & BRW_URB_WRITE_ALLOCATE));
673 assert(devinfo->gen >= 7 || !(flags & BRW_URB_WRITE_PER_SLOT_OFFSET));
674
675 brw_set_message_descriptor(p, insn, BRW_SFID_URB,
676 msg_length, response_length, true,
677 flags & BRW_URB_WRITE_EOT);
678
679 if (flags & BRW_URB_WRITE_OWORD) {
680 assert(msg_length == 2); /* header + one OWORD of data */
681 brw_inst_set_urb_opcode(devinfo, insn, BRW_URB_OPCODE_WRITE_OWORD);
682 } else {
683 brw_inst_set_urb_opcode(devinfo, insn, BRW_URB_OPCODE_WRITE_HWORD);
684 }
685
686 brw_inst_set_urb_global_offset(devinfo, insn, offset);
687 brw_inst_set_urb_swizzle_control(devinfo, insn, swizzle_control);
688
689 if (devinfo->gen < 8) {
690 brw_inst_set_urb_complete(devinfo, insn, !!(flags & BRW_URB_WRITE_COMPLETE));
691 }
692
693 if (devinfo->gen < 7) {
694 brw_inst_set_urb_allocate(devinfo, insn, !!(flags & BRW_URB_WRITE_ALLOCATE));
695 brw_inst_set_urb_used(devinfo, insn, !(flags & BRW_URB_WRITE_UNUSED));
696 } else {
697 brw_inst_set_urb_per_slot_offset(devinfo, insn,
698 !!(flags & BRW_URB_WRITE_PER_SLOT_OFFSET));
699 }
700 }
701
702 void
703 brw_set_dp_write_message(struct brw_codegen *p,
704 brw_inst *insn,
705 unsigned binding_table_index,
706 unsigned msg_control,
707 unsigned msg_type,
708 unsigned msg_length,
709 bool header_present,
710 unsigned last_render_target,
711 unsigned response_length,
712 unsigned end_of_thread,
713 unsigned send_commit_msg)
714 {
715 const struct brw_device_info *devinfo = p->devinfo;
716 unsigned sfid;
717
718 if (devinfo->gen >= 7) {
719 /* Use the Render Cache for RT writes; otherwise use the Data Cache */
720 if (msg_type == GEN6_DATAPORT_WRITE_MESSAGE_RENDER_TARGET_WRITE)
721 sfid = GEN6_SFID_DATAPORT_RENDER_CACHE;
722 else
723 sfid = GEN7_SFID_DATAPORT_DATA_CACHE;
724 } else if (devinfo->gen == 6) {
725 /* Use the render cache for all write messages. */
726 sfid = GEN6_SFID_DATAPORT_RENDER_CACHE;
727 } else {
728 sfid = BRW_SFID_DATAPORT_WRITE;
729 }
730
731 brw_set_message_descriptor(p, insn, sfid, msg_length, response_length,
732 header_present, end_of_thread);
733
734 brw_inst_set_binding_table_index(devinfo, insn, binding_table_index);
735 brw_inst_set_dp_write_msg_type(devinfo, insn, msg_type);
736 brw_inst_set_dp_write_msg_control(devinfo, insn, msg_control);
737 brw_inst_set_rt_last(devinfo, insn, last_render_target);
738 if (devinfo->gen < 7) {
739 brw_inst_set_dp_write_commit(devinfo, insn, send_commit_msg);
740 }
741 }
742
743 void
744 brw_set_dp_read_message(struct brw_codegen *p,
745 brw_inst *insn,
746 unsigned binding_table_index,
747 unsigned msg_control,
748 unsigned msg_type,
749 unsigned target_cache,
750 unsigned msg_length,
751 bool header_present,
752 unsigned response_length)
753 {
754 const struct brw_device_info *devinfo = p->devinfo;
755 unsigned sfid;
756
757 if (devinfo->gen >= 7) {
758 sfid = GEN7_SFID_DATAPORT_DATA_CACHE;
759 } else if (devinfo->gen == 6) {
760 if (target_cache == BRW_DATAPORT_READ_TARGET_RENDER_CACHE)
761 sfid = GEN6_SFID_DATAPORT_RENDER_CACHE;
762 else
763 sfid = GEN6_SFID_DATAPORT_SAMPLER_CACHE;
764 } else {
765 sfid = BRW_SFID_DATAPORT_READ;
766 }
767
768 brw_set_message_descriptor(p, insn, sfid, msg_length, response_length,
769 header_present, false);
770
771 brw_inst_set_binding_table_index(devinfo, insn, binding_table_index);
772 brw_inst_set_dp_read_msg_type(devinfo, insn, msg_type);
773 brw_inst_set_dp_read_msg_control(devinfo, insn, msg_control);
774 if (devinfo->gen < 6)
775 brw_inst_set_dp_read_target_cache(devinfo, insn, target_cache);
776 }
777
778 void
779 brw_set_sampler_message(struct brw_codegen *p,
780 brw_inst *inst,
781 unsigned binding_table_index,
782 unsigned sampler,
783 unsigned msg_type,
784 unsigned response_length,
785 unsigned msg_length,
786 unsigned header_present,
787 unsigned simd_mode,
788 unsigned return_format)
789 {
790 const struct brw_device_info *devinfo = p->devinfo;
791
792 brw_set_message_descriptor(p, inst, BRW_SFID_SAMPLER, msg_length,
793 response_length, header_present, false);
794
795 brw_inst_set_binding_table_index(devinfo, inst, binding_table_index);
796 brw_inst_set_sampler(devinfo, inst, sampler);
797 brw_inst_set_sampler_msg_type(devinfo, inst, msg_type);
798 if (devinfo->gen >= 5) {
799 brw_inst_set_sampler_simd_mode(devinfo, inst, simd_mode);
800 } else if (devinfo->gen == 4 && !devinfo->is_g4x) {
801 brw_inst_set_sampler_return_format(devinfo, inst, return_format);
802 }
803 }
804
805 static void
806 gen7_set_dp_scratch_message(struct brw_codegen *p,
807 brw_inst *inst,
808 bool write,
809 bool dword,
810 bool invalidate_after_read,
811 unsigned num_regs,
812 unsigned addr_offset,
813 unsigned mlen,
814 unsigned rlen,
815 bool header_present)
816 {
817 const struct brw_device_info *devinfo = p->devinfo;
818 assert(num_regs == 1 || num_regs == 2 || num_regs == 4 ||
819 (devinfo->gen >= 8 && num_regs == 8));
820 brw_set_message_descriptor(p, inst, GEN7_SFID_DATAPORT_DATA_CACHE,
821 mlen, rlen, header_present, false);
822 brw_inst_set_dp_category(devinfo, inst, 1); /* Scratch Block Read/Write msgs */
823 brw_inst_set_scratch_read_write(devinfo, inst, write);
824 brw_inst_set_scratch_type(devinfo, inst, dword);
825 brw_inst_set_scratch_invalidate_after_read(devinfo, inst, invalidate_after_read);
826 brw_inst_set_scratch_block_size(devinfo, inst, ffs(num_regs) - 1);
827 brw_inst_set_scratch_addr_offset(devinfo, inst, addr_offset);
828 }
829
830 #define next_insn brw_next_insn
831 brw_inst *
832 brw_next_insn(struct brw_codegen *p, unsigned opcode)
833 {
834 const struct brw_device_info *devinfo = p->devinfo;
835 brw_inst *insn;
836
837 if (p->nr_insn + 1 > p->store_size) {
838 p->store_size <<= 1;
839 p->store = reralloc(p->mem_ctx, p->store, brw_inst, p->store_size);
840 }
841
842 p->next_insn_offset += 16;
843 insn = &p->store[p->nr_insn++];
844 memcpy(insn, p->current, sizeof(*insn));
845
846 brw_inst_set_opcode(devinfo, insn, opcode);
847 return insn;
848 }
849
850 static brw_inst *
851 brw_alu1(struct brw_codegen *p, unsigned opcode,
852 struct brw_reg dest, struct brw_reg src)
853 {
854 brw_inst *insn = next_insn(p, opcode);
855 brw_set_dest(p, insn, dest);
856 brw_set_src0(p, insn, src);
857 return insn;
858 }
859
860 static brw_inst *
861 brw_alu2(struct brw_codegen *p, unsigned opcode,
862 struct brw_reg dest, struct brw_reg src0, struct brw_reg src1)
863 {
864 /* 64-bit immediates are only supported on 1-src instructions */
865 assert(src0.file != BRW_IMMEDIATE_VALUE || type_sz(src0.type) <= 4);
866 assert(src1.file != BRW_IMMEDIATE_VALUE || type_sz(src1.type) <= 4);
867
868 brw_inst *insn = next_insn(p, opcode);
869 brw_set_dest(p, insn, dest);
870 brw_set_src0(p, insn, src0);
871 brw_set_src1(p, insn, src1);
872 return insn;
873 }
874
875 static int
876 get_3src_subreg_nr(struct brw_reg reg)
877 {
878 /* Normally, SubRegNum is in bytes (0..31). However, 3-src instructions
879 * use 32-bit units (components 0..7). Since they only support F/D/UD
880 * types, this doesn't lose any flexibility, but uses fewer bits.
881 */
882 return reg.subnr / 4;
883 }
884
885 static brw_inst *
886 brw_alu3(struct brw_codegen *p, unsigned opcode, struct brw_reg dest,
887 struct brw_reg src0, struct brw_reg src1, struct brw_reg src2)
888 {
889 const struct brw_device_info *devinfo = p->devinfo;
890 brw_inst *inst = next_insn(p, opcode);
891
892 gen7_convert_mrf_to_grf(p, &dest);
893
894 assert(brw_inst_access_mode(devinfo, inst) == BRW_ALIGN_16);
895
896 assert(dest.file == BRW_GENERAL_REGISTER_FILE ||
897 dest.file == BRW_MESSAGE_REGISTER_FILE);
898 assert(dest.nr < 128);
899 assert(dest.address_mode == BRW_ADDRESS_DIRECT);
900 assert(dest.type == BRW_REGISTER_TYPE_F ||
901 dest.type == BRW_REGISTER_TYPE_DF ||
902 dest.type == BRW_REGISTER_TYPE_D ||
903 dest.type == BRW_REGISTER_TYPE_UD);
904 if (devinfo->gen == 6) {
905 brw_inst_set_3src_dst_reg_file(devinfo, inst,
906 dest.file == BRW_MESSAGE_REGISTER_FILE);
907 }
908 brw_inst_set_3src_dst_reg_nr(devinfo, inst, dest.nr);
909 brw_inst_set_3src_dst_subreg_nr(devinfo, inst, dest.subnr / 16);
910 brw_inst_set_3src_dst_writemask(devinfo, inst, dest.writemask);
911
912 assert(src0.file == BRW_GENERAL_REGISTER_FILE);
913 assert(src0.address_mode == BRW_ADDRESS_DIRECT);
914 assert(src0.nr < 128);
915 brw_inst_set_3src_src0_swizzle(devinfo, inst, src0.swizzle);
916 brw_inst_set_3src_src0_subreg_nr(devinfo, inst, get_3src_subreg_nr(src0));
917 brw_inst_set_3src_src0_reg_nr(devinfo, inst, src0.nr);
918 brw_inst_set_3src_src0_abs(devinfo, inst, src0.abs);
919 brw_inst_set_3src_src0_negate(devinfo, inst, src0.negate);
920 brw_inst_set_3src_src0_rep_ctrl(devinfo, inst,
921 src0.vstride == BRW_VERTICAL_STRIDE_0);
922
923 assert(src1.file == BRW_GENERAL_REGISTER_FILE);
924 assert(src1.address_mode == BRW_ADDRESS_DIRECT);
925 assert(src1.nr < 128);
926 brw_inst_set_3src_src1_swizzle(devinfo, inst, src1.swizzle);
927 brw_inst_set_3src_src1_subreg_nr(devinfo, inst, get_3src_subreg_nr(src1));
928 brw_inst_set_3src_src1_reg_nr(devinfo, inst, src1.nr);
929 brw_inst_set_3src_src1_abs(devinfo, inst, src1.abs);
930 brw_inst_set_3src_src1_negate(devinfo, inst, src1.negate);
931 brw_inst_set_3src_src1_rep_ctrl(devinfo, inst,
932 src1.vstride == BRW_VERTICAL_STRIDE_0);
933
934 assert(src2.file == BRW_GENERAL_REGISTER_FILE);
935 assert(src2.address_mode == BRW_ADDRESS_DIRECT);
936 assert(src2.nr < 128);
937 brw_inst_set_3src_src2_swizzle(devinfo, inst, src2.swizzle);
938 brw_inst_set_3src_src2_subreg_nr(devinfo, inst, get_3src_subreg_nr(src2));
939 brw_inst_set_3src_src2_reg_nr(devinfo, inst, src2.nr);
940 brw_inst_set_3src_src2_abs(devinfo, inst, src2.abs);
941 brw_inst_set_3src_src2_negate(devinfo, inst, src2.negate);
942 brw_inst_set_3src_src2_rep_ctrl(devinfo, inst,
943 src2.vstride == BRW_VERTICAL_STRIDE_0);
944
945 if (devinfo->gen >= 7) {
946 /* Set both the source and destination types based on dest.type,
947 * ignoring the source register types. The MAD and LRP emitters ensure
948 * that all four types are float. The BFE and BFI2 emitters, however,
949 * may send us mixed D and UD types and want us to ignore that and use
950 * the destination type.
951 */
952 switch (dest.type) {
953 case BRW_REGISTER_TYPE_F:
954 brw_inst_set_3src_src_type(devinfo, inst, BRW_3SRC_TYPE_F);
955 brw_inst_set_3src_dst_type(devinfo, inst, BRW_3SRC_TYPE_F);
956 break;
957 case BRW_REGISTER_TYPE_DF:
958 brw_inst_set_3src_src_type(devinfo, inst, BRW_3SRC_TYPE_DF);
959 brw_inst_set_3src_dst_type(devinfo, inst, BRW_3SRC_TYPE_DF);
960 break;
961 case BRW_REGISTER_TYPE_D:
962 brw_inst_set_3src_src_type(devinfo, inst, BRW_3SRC_TYPE_D);
963 brw_inst_set_3src_dst_type(devinfo, inst, BRW_3SRC_TYPE_D);
964 break;
965 case BRW_REGISTER_TYPE_UD:
966 brw_inst_set_3src_src_type(devinfo, inst, BRW_3SRC_TYPE_UD);
967 brw_inst_set_3src_dst_type(devinfo, inst, BRW_3SRC_TYPE_UD);
968 break;
969 default:
970 unreachable("not reached");
971 }
972 }
973
974 return inst;
975 }
976
977
978 /***********************************************************************
979 * Convenience routines.
980 */
981 #define ALU1(OP) \
982 brw_inst *brw_##OP(struct brw_codegen *p, \
983 struct brw_reg dest, \
984 struct brw_reg src0) \
985 { \
986 return brw_alu1(p, BRW_OPCODE_##OP, dest, src0); \
987 }
988
989 #define ALU2(OP) \
990 brw_inst *brw_##OP(struct brw_codegen *p, \
991 struct brw_reg dest, \
992 struct brw_reg src0, \
993 struct brw_reg src1) \
994 { \
995 return brw_alu2(p, BRW_OPCODE_##OP, dest, src0, src1); \
996 }
997
998 #define ALU3(OP) \
999 brw_inst *brw_##OP(struct brw_codegen *p, \
1000 struct brw_reg dest, \
1001 struct brw_reg src0, \
1002 struct brw_reg src1, \
1003 struct brw_reg src2) \
1004 { \
1005 return brw_alu3(p, BRW_OPCODE_##OP, dest, src0, src1, src2); \
1006 }
1007
1008 #define ALU3F(OP) \
1009 brw_inst *brw_##OP(struct brw_codegen *p, \
1010 struct brw_reg dest, \
1011 struct brw_reg src0, \
1012 struct brw_reg src1, \
1013 struct brw_reg src2) \
1014 { \
1015 assert(dest.type == BRW_REGISTER_TYPE_F || \
1016 dest.type == BRW_REGISTER_TYPE_DF); \
1017 if (dest.type == BRW_REGISTER_TYPE_F) { \
1018 assert(src0.type == BRW_REGISTER_TYPE_F); \
1019 assert(src1.type == BRW_REGISTER_TYPE_F); \
1020 assert(src2.type == BRW_REGISTER_TYPE_F); \
1021 } else if (dest.type == BRW_REGISTER_TYPE_DF) { \
1022 assert(src0.type == BRW_REGISTER_TYPE_DF); \
1023 assert(src1.type == BRW_REGISTER_TYPE_DF); \
1024 assert(src2.type == BRW_REGISTER_TYPE_DF); \
1025 } \
1026 return brw_alu3(p, BRW_OPCODE_##OP, dest, src0, src1, src2); \
1027 }
1028
1029 /* Rounding operations (other than RNDD) require two instructions - the first
1030 * stores a rounded value (possibly the wrong way) in the dest register, but
1031 * also sets a per-channel "increment bit" in the flag register. A predicated
1032 * add of 1.0 fixes dest to contain the desired result.
1033 *
1034 * Sandybridge and later appear to round correctly without an ADD.
1035 */
1036 #define ROUND(OP) \
1037 void brw_##OP(struct brw_codegen *p, \
1038 struct brw_reg dest, \
1039 struct brw_reg src) \
1040 { \
1041 const struct brw_device_info *devinfo = p->devinfo; \
1042 brw_inst *rnd, *add; \
1043 rnd = next_insn(p, BRW_OPCODE_##OP); \
1044 brw_set_dest(p, rnd, dest); \
1045 brw_set_src0(p, rnd, src); \
1046 \
1047 if (devinfo->gen < 6) { \
1048 /* turn on round-increments */ \
1049 brw_inst_set_cond_modifier(devinfo, rnd, BRW_CONDITIONAL_R); \
1050 add = brw_ADD(p, dest, dest, brw_imm_f(1.0f)); \
1051 brw_inst_set_pred_control(devinfo, add, BRW_PREDICATE_NORMAL); \
1052 } \
1053 }
1054
1055
1056 ALU1(MOV)
1057 ALU2(SEL)
1058 ALU1(NOT)
1059 ALU2(AND)
1060 ALU2(OR)
1061 ALU2(XOR)
1062 ALU2(SHR)
1063 ALU2(SHL)
1064 ALU2(ASR)
1065 ALU1(FRC)
1066 ALU1(RNDD)
1067 ALU2(MAC)
1068 ALU2(MACH)
1069 ALU1(LZD)
1070 ALU2(DP4)
1071 ALU2(DPH)
1072 ALU2(DP3)
1073 ALU2(DP2)
1074 ALU3F(MAD)
1075 ALU3F(LRP)
1076 ALU1(BFREV)
1077 ALU3(BFE)
1078 ALU2(BFI1)
1079 ALU3(BFI2)
1080 ALU1(FBH)
1081 ALU1(FBL)
1082 ALU1(CBIT)
1083 ALU2(ADDC)
1084 ALU2(SUBB)
1085
1086 ROUND(RNDZ)
1087 ROUND(RNDE)
1088
1089
1090 brw_inst *
1091 brw_ADD(struct brw_codegen *p, struct brw_reg dest,
1092 struct brw_reg src0, struct brw_reg src1)
1093 {
1094 /* 6.2.2: add */
1095 if (src0.type == BRW_REGISTER_TYPE_F ||
1096 (src0.file == BRW_IMMEDIATE_VALUE &&
1097 src0.type == BRW_REGISTER_TYPE_VF)) {
1098 assert(src1.type != BRW_REGISTER_TYPE_UD);
1099 assert(src1.type != BRW_REGISTER_TYPE_D);
1100 }
1101
1102 if (src1.type == BRW_REGISTER_TYPE_F ||
1103 (src1.file == BRW_IMMEDIATE_VALUE &&
1104 src1.type == BRW_REGISTER_TYPE_VF)) {
1105 assert(src0.type != BRW_REGISTER_TYPE_UD);
1106 assert(src0.type != BRW_REGISTER_TYPE_D);
1107 }
1108
1109 return brw_alu2(p, BRW_OPCODE_ADD, dest, src0, src1);
1110 }
1111
1112 brw_inst *
1113 brw_AVG(struct brw_codegen *p, struct brw_reg dest,
1114 struct brw_reg src0, struct brw_reg src1)
1115 {
1116 assert(dest.type == src0.type);
1117 assert(src0.type == src1.type);
1118 switch (src0.type) {
1119 case BRW_REGISTER_TYPE_B:
1120 case BRW_REGISTER_TYPE_UB:
1121 case BRW_REGISTER_TYPE_W:
1122 case BRW_REGISTER_TYPE_UW:
1123 case BRW_REGISTER_TYPE_D:
1124 case BRW_REGISTER_TYPE_UD:
1125 break;
1126 default:
1127 unreachable("Bad type for brw_AVG");
1128 }
1129
1130 return brw_alu2(p, BRW_OPCODE_AVG, dest, src0, src1);
1131 }
1132
1133 brw_inst *
1134 brw_MUL(struct brw_codegen *p, struct brw_reg dest,
1135 struct brw_reg src0, struct brw_reg src1)
1136 {
1137 /* 6.32.38: mul */
1138 if (src0.type == BRW_REGISTER_TYPE_D ||
1139 src0.type == BRW_REGISTER_TYPE_UD ||
1140 src1.type == BRW_REGISTER_TYPE_D ||
1141 src1.type == BRW_REGISTER_TYPE_UD) {
1142 assert(dest.type != BRW_REGISTER_TYPE_F);
1143 }
1144
1145 if (src0.type == BRW_REGISTER_TYPE_F ||
1146 (src0.file == BRW_IMMEDIATE_VALUE &&
1147 src0.type == BRW_REGISTER_TYPE_VF)) {
1148 assert(src1.type != BRW_REGISTER_TYPE_UD);
1149 assert(src1.type != BRW_REGISTER_TYPE_D);
1150 }
1151
1152 if (src1.type == BRW_REGISTER_TYPE_F ||
1153 (src1.file == BRW_IMMEDIATE_VALUE &&
1154 src1.type == BRW_REGISTER_TYPE_VF)) {
1155 assert(src0.type != BRW_REGISTER_TYPE_UD);
1156 assert(src0.type != BRW_REGISTER_TYPE_D);
1157 }
1158
1159 assert(src0.file != BRW_ARCHITECTURE_REGISTER_FILE ||
1160 src0.nr != BRW_ARF_ACCUMULATOR);
1161 assert(src1.file != BRW_ARCHITECTURE_REGISTER_FILE ||
1162 src1.nr != BRW_ARF_ACCUMULATOR);
1163
1164 return brw_alu2(p, BRW_OPCODE_MUL, dest, src0, src1);
1165 }
1166
1167 brw_inst *
1168 brw_LINE(struct brw_codegen *p, struct brw_reg dest,
1169 struct brw_reg src0, struct brw_reg src1)
1170 {
1171 src0.vstride = BRW_VERTICAL_STRIDE_0;
1172 src0.width = BRW_WIDTH_1;
1173 src0.hstride = BRW_HORIZONTAL_STRIDE_0;
1174 return brw_alu2(p, BRW_OPCODE_LINE, dest, src0, src1);
1175 }
1176
1177 brw_inst *
1178 brw_PLN(struct brw_codegen *p, struct brw_reg dest,
1179 struct brw_reg src0, struct brw_reg src1)
1180 {
1181 src0.vstride = BRW_VERTICAL_STRIDE_0;
1182 src0.width = BRW_WIDTH_1;
1183 src0.hstride = BRW_HORIZONTAL_STRIDE_0;
1184 src1.vstride = BRW_VERTICAL_STRIDE_8;
1185 src1.width = BRW_WIDTH_8;
1186 src1.hstride = BRW_HORIZONTAL_STRIDE_1;
1187 return brw_alu2(p, BRW_OPCODE_PLN, dest, src0, src1);
1188 }
1189
1190 brw_inst *
1191 brw_F32TO16(struct brw_codegen *p, struct brw_reg dst, struct brw_reg src)
1192 {
1193 const struct brw_device_info *devinfo = p->devinfo;
1194 const bool align16 = brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_16;
1195 /* The F32TO16 instruction doesn't support 32-bit destination types in
1196 * Align1 mode, and neither does the Gen8 implementation in terms of a
1197 * converting MOV. Gen7 does zero out the high 16 bits in Align16 mode as
1198 * an undocumented feature.
1199 */
1200 const bool needs_zero_fill = (dst.type == BRW_REGISTER_TYPE_UD &&
1201 (!align16 || devinfo->gen >= 8));
1202 brw_inst *inst;
1203
1204 if (align16) {
1205 assert(dst.type == BRW_REGISTER_TYPE_UD);
1206 } else {
1207 assert(dst.type == BRW_REGISTER_TYPE_UD ||
1208 dst.type == BRW_REGISTER_TYPE_W ||
1209 dst.type == BRW_REGISTER_TYPE_UW ||
1210 dst.type == BRW_REGISTER_TYPE_HF);
1211 }
1212
1213 brw_push_insn_state(p);
1214
1215 if (needs_zero_fill) {
1216 brw_set_default_access_mode(p, BRW_ALIGN_1);
1217 dst = spread(retype(dst, BRW_REGISTER_TYPE_W), 2);
1218 }
1219
1220 if (devinfo->gen >= 8) {
1221 inst = brw_MOV(p, retype(dst, BRW_REGISTER_TYPE_HF), src);
1222 } else {
1223 assert(devinfo->gen == 7);
1224 inst = brw_alu1(p, BRW_OPCODE_F32TO16, dst, src);
1225 }
1226
1227 if (needs_zero_fill) {
1228 brw_inst_set_no_dd_clear(devinfo, inst, true);
1229 inst = brw_MOV(p, suboffset(dst, 1), brw_imm_ud(0u));
1230 brw_inst_set_no_dd_check(devinfo, inst, true);
1231 }
1232
1233 brw_pop_insn_state(p);
1234 return inst;
1235 }
1236
1237 brw_inst *
1238 brw_F16TO32(struct brw_codegen *p, struct brw_reg dst, struct brw_reg src)
1239 {
1240 const struct brw_device_info *devinfo = p->devinfo;
1241 bool align16 = brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_16;
1242
1243 if (align16) {
1244 assert(src.type == BRW_REGISTER_TYPE_UD);
1245 } else {
1246 /* From the Ivybridge PRM, Vol4, Part3, Section 6.26 f16to32:
1247 *
1248 * Because this instruction does not have a 16-bit floating-point
1249 * type, the source data type must be Word (W). The destination type
1250 * must be F (Float).
1251 */
1252 if (src.type == BRW_REGISTER_TYPE_UD)
1253 src = spread(retype(src, BRW_REGISTER_TYPE_W), 2);
1254
1255 assert(src.type == BRW_REGISTER_TYPE_W ||
1256 src.type == BRW_REGISTER_TYPE_UW ||
1257 src.type == BRW_REGISTER_TYPE_HF);
1258 }
1259
1260 if (devinfo->gen >= 8) {
1261 return brw_MOV(p, dst, retype(src, BRW_REGISTER_TYPE_HF));
1262 } else {
1263 assert(devinfo->gen == 7);
1264 return brw_alu1(p, BRW_OPCODE_F16TO32, dst, src);
1265 }
1266 }
1267
1268
1269 void brw_NOP(struct brw_codegen *p)
1270 {
1271 brw_inst *insn = next_insn(p, BRW_OPCODE_NOP);
1272 brw_inst_set_exec_size(p->devinfo, insn, BRW_EXECUTE_1);
1273 brw_set_dest(p, insn, retype(brw_vec1_grf(0,0), BRW_REGISTER_TYPE_UD));
1274 brw_set_src0(p, insn, retype(brw_vec1_grf(0,0), BRW_REGISTER_TYPE_UD));
1275 brw_set_src1(p, insn, brw_imm_ud(0x0));
1276 }
1277
1278
1279
1280
1281
1282 /***********************************************************************
1283 * Comparisons, if/else/endif
1284 */
1285
1286 brw_inst *
1287 brw_JMPI(struct brw_codegen *p, struct brw_reg index,
1288 unsigned predicate_control)
1289 {
1290 const struct brw_device_info *devinfo = p->devinfo;
1291 struct brw_reg ip = brw_ip_reg();
1292 brw_inst *inst = brw_alu2(p, BRW_OPCODE_JMPI, ip, ip, index);
1293
1294 brw_inst_set_exec_size(devinfo, inst, BRW_EXECUTE_2);
1295 brw_inst_set_qtr_control(devinfo, inst, BRW_COMPRESSION_NONE);
1296 brw_inst_set_mask_control(devinfo, inst, BRW_MASK_DISABLE);
1297 brw_inst_set_pred_control(devinfo, inst, predicate_control);
1298
1299 return inst;
1300 }
1301
1302 static void
1303 push_if_stack(struct brw_codegen *p, brw_inst *inst)
1304 {
1305 p->if_stack[p->if_stack_depth] = inst - p->store;
1306
1307 p->if_stack_depth++;
1308 if (p->if_stack_array_size <= p->if_stack_depth) {
1309 p->if_stack_array_size *= 2;
1310 p->if_stack = reralloc(p->mem_ctx, p->if_stack, int,
1311 p->if_stack_array_size);
1312 }
1313 }
1314
1315 static brw_inst *
1316 pop_if_stack(struct brw_codegen *p)
1317 {
1318 p->if_stack_depth--;
1319 return &p->store[p->if_stack[p->if_stack_depth]];
1320 }
1321
1322 static void
1323 push_loop_stack(struct brw_codegen *p, brw_inst *inst)
1324 {
1325 if (p->loop_stack_array_size <= (p->loop_stack_depth + 1)) {
1326 p->loop_stack_array_size *= 2;
1327 p->loop_stack = reralloc(p->mem_ctx, p->loop_stack, int,
1328 p->loop_stack_array_size);
1329 p->if_depth_in_loop = reralloc(p->mem_ctx, p->if_depth_in_loop, int,
1330 p->loop_stack_array_size);
1331 }
1332
1333 p->loop_stack[p->loop_stack_depth] = inst - p->store;
1334 p->loop_stack_depth++;
1335 p->if_depth_in_loop[p->loop_stack_depth] = 0;
1336 }
1337
1338 static brw_inst *
1339 get_inner_do_insn(struct brw_codegen *p)
1340 {
1341 return &p->store[p->loop_stack[p->loop_stack_depth - 1]];
1342 }
1343
1344 /* EU takes the value from the flag register and pushes it onto some
1345 * sort of a stack (presumably merging with any flag value already on
1346 * the stack). Within an if block, the flags at the top of the stack
1347 * control execution on each channel of the unit, eg. on each of the
1348 * 16 pixel values in our wm programs.
1349 *
1350 * When the matching 'else' instruction is reached (presumably by
1351 * countdown of the instruction count patched in by our ELSE/ENDIF
1352 * functions), the relevant flags are inverted.
1353 *
1354 * When the matching 'endif' instruction is reached, the flags are
1355 * popped off. If the stack is now empty, normal execution resumes.
1356 */
1357 brw_inst *
1358 brw_IF(struct brw_codegen *p, unsigned execute_size)
1359 {
1360 const struct brw_device_info *devinfo = p->devinfo;
1361 brw_inst *insn;
1362
1363 insn = next_insn(p, BRW_OPCODE_IF);
1364
1365 /* Override the defaults for this instruction:
1366 */
1367 if (devinfo->gen < 6) {
1368 brw_set_dest(p, insn, brw_ip_reg());
1369 brw_set_src0(p, insn, brw_ip_reg());
1370 brw_set_src1(p, insn, brw_imm_d(0x0));
1371 } else if (devinfo->gen == 6) {
1372 brw_set_dest(p, insn, brw_imm_w(0));
1373 brw_inst_set_gen6_jump_count(devinfo, insn, 0);
1374 brw_set_src0(p, insn, vec1(retype(brw_null_reg(), BRW_REGISTER_TYPE_D)));
1375 brw_set_src1(p, insn, vec1(retype(brw_null_reg(), BRW_REGISTER_TYPE_D)));
1376 } else if (devinfo->gen == 7) {
1377 brw_set_dest(p, insn, vec1(retype(brw_null_reg(), BRW_REGISTER_TYPE_D)));
1378 brw_set_src0(p, insn, vec1(retype(brw_null_reg(), BRW_REGISTER_TYPE_D)));
1379 brw_set_src1(p, insn, brw_imm_w(0));
1380 brw_inst_set_jip(devinfo, insn, 0);
1381 brw_inst_set_uip(devinfo, insn, 0);
1382 } else {
1383 brw_set_dest(p, insn, vec1(retype(brw_null_reg(), BRW_REGISTER_TYPE_D)));
1384 brw_set_src0(p, insn, brw_imm_d(0));
1385 brw_inst_set_jip(devinfo, insn, 0);
1386 brw_inst_set_uip(devinfo, insn, 0);
1387 }
1388
1389 brw_inst_set_exec_size(devinfo, insn, execute_size);
1390 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
1391 brw_inst_set_pred_control(devinfo, insn, BRW_PREDICATE_NORMAL);
1392 brw_inst_set_mask_control(devinfo, insn, BRW_MASK_ENABLE);
1393 if (!p->single_program_flow && devinfo->gen < 6)
1394 brw_inst_set_thread_control(devinfo, insn, BRW_THREAD_SWITCH);
1395
1396 push_if_stack(p, insn);
1397 p->if_depth_in_loop[p->loop_stack_depth]++;
1398 return insn;
1399 }
1400
1401 /* This function is only used for gen6-style IF instructions with an
1402 * embedded comparison (conditional modifier). It is not used on gen7.
1403 */
1404 brw_inst *
1405 gen6_IF(struct brw_codegen *p, enum brw_conditional_mod conditional,
1406 struct brw_reg src0, struct brw_reg src1)
1407 {
1408 const struct brw_device_info *devinfo = p->devinfo;
1409 brw_inst *insn;
1410
1411 insn = next_insn(p, BRW_OPCODE_IF);
1412
1413 brw_set_dest(p, insn, brw_imm_w(0));
1414 brw_inst_set_exec_size(devinfo, insn, p->compressed ? BRW_EXECUTE_16
1415 : BRW_EXECUTE_8);
1416 brw_inst_set_gen6_jump_count(devinfo, insn, 0);
1417 brw_set_src0(p, insn, src0);
1418 brw_set_src1(p, insn, src1);
1419
1420 assert(brw_inst_qtr_control(devinfo, insn) == BRW_COMPRESSION_NONE);
1421 assert(brw_inst_pred_control(devinfo, insn) == BRW_PREDICATE_NONE);
1422 brw_inst_set_cond_modifier(devinfo, insn, conditional);
1423
1424 push_if_stack(p, insn);
1425 return insn;
1426 }
1427
1428 /**
1429 * In single-program-flow (SPF) mode, convert IF and ELSE into ADDs.
1430 */
1431 static void
1432 convert_IF_ELSE_to_ADD(struct brw_codegen *p,
1433 brw_inst *if_inst, brw_inst *else_inst)
1434 {
1435 const struct brw_device_info *devinfo = p->devinfo;
1436
1437 /* The next instruction (where the ENDIF would be, if it existed) */
1438 brw_inst *next_inst = &p->store[p->nr_insn];
1439
1440 assert(p->single_program_flow);
1441 assert(if_inst != NULL && brw_inst_opcode(devinfo, if_inst) == BRW_OPCODE_IF);
1442 assert(else_inst == NULL || brw_inst_opcode(devinfo, else_inst) == BRW_OPCODE_ELSE);
1443 assert(brw_inst_exec_size(devinfo, if_inst) == BRW_EXECUTE_1);
1444
1445 /* Convert IF to an ADD instruction that moves the instruction pointer
1446 * to the first instruction of the ELSE block. If there is no ELSE
1447 * block, point to where ENDIF would be. Reverse the predicate.
1448 *
1449 * There's no need to execute an ENDIF since we don't need to do any
1450 * stack operations, and if we're currently executing, we just want to
1451 * continue normally.
1452 */
1453 brw_inst_set_opcode(devinfo, if_inst, BRW_OPCODE_ADD);
1454 brw_inst_set_pred_inv(devinfo, if_inst, true);
1455
1456 if (else_inst != NULL) {
1457 /* Convert ELSE to an ADD instruction that points where the ENDIF
1458 * would be.
1459 */
1460 brw_inst_set_opcode(devinfo, else_inst, BRW_OPCODE_ADD);
1461
1462 brw_inst_set_imm_ud(devinfo, if_inst, (else_inst - if_inst + 1) * 16);
1463 brw_inst_set_imm_ud(devinfo, else_inst, (next_inst - else_inst) * 16);
1464 } else {
1465 brw_inst_set_imm_ud(devinfo, if_inst, (next_inst - if_inst) * 16);
1466 }
1467 }
1468
1469 /**
1470 * Patch IF and ELSE instructions with appropriate jump targets.
1471 */
1472 static void
1473 patch_IF_ELSE(struct brw_codegen *p,
1474 brw_inst *if_inst, brw_inst *else_inst, brw_inst *endif_inst)
1475 {
1476 const struct brw_device_info *devinfo = p->devinfo;
1477
1478 /* We shouldn't be patching IF and ELSE instructions in single program flow
1479 * mode when gen < 6, because in single program flow mode on those
1480 * platforms, we convert flow control instructions to conditional ADDs that
1481 * operate on IP (see brw_ENDIF).
1482 *
1483 * However, on Gen6, writing to IP doesn't work in single program flow mode
1484 * (see the SandyBridge PRM, Volume 4 part 2, p79: "When SPF is ON, IP may
1485 * not be updated by non-flow control instructions."). And on later
1486 * platforms, there is no significant benefit to converting control flow
1487 * instructions to conditional ADDs. So we do patch IF and ELSE
1488 * instructions in single program flow mode on those platforms.
1489 */
1490 if (devinfo->gen < 6)
1491 assert(!p->single_program_flow);
1492
1493 assert(if_inst != NULL && brw_inst_opcode(devinfo, if_inst) == BRW_OPCODE_IF);
1494 assert(endif_inst != NULL);
1495 assert(else_inst == NULL || brw_inst_opcode(devinfo, else_inst) == BRW_OPCODE_ELSE);
1496
1497 unsigned br = brw_jump_scale(devinfo);
1498
1499 assert(brw_inst_opcode(devinfo, endif_inst) == BRW_OPCODE_ENDIF);
1500 brw_inst_set_exec_size(devinfo, endif_inst, brw_inst_exec_size(devinfo, if_inst));
1501
1502 if (else_inst == NULL) {
1503 /* Patch IF -> ENDIF */
1504 if (devinfo->gen < 6) {
1505 /* Turn it into an IFF, which means no mask stack operations for
1506 * all-false and jumping past the ENDIF.
1507 */
1508 brw_inst_set_opcode(devinfo, if_inst, BRW_OPCODE_IFF);
1509 brw_inst_set_gen4_jump_count(devinfo, if_inst,
1510 br * (endif_inst - if_inst + 1));
1511 brw_inst_set_gen4_pop_count(devinfo, if_inst, 0);
1512 } else if (devinfo->gen == 6) {
1513 /* As of gen6, there is no IFF and IF must point to the ENDIF. */
1514 brw_inst_set_gen6_jump_count(devinfo, if_inst, br*(endif_inst - if_inst));
1515 } else {
1516 brw_inst_set_uip(devinfo, if_inst, br * (endif_inst - if_inst));
1517 brw_inst_set_jip(devinfo, if_inst, br * (endif_inst - if_inst));
1518 }
1519 } else {
1520 brw_inst_set_exec_size(devinfo, else_inst, brw_inst_exec_size(devinfo, if_inst));
1521
1522 /* Patch IF -> ELSE */
1523 if (devinfo->gen < 6) {
1524 brw_inst_set_gen4_jump_count(devinfo, if_inst,
1525 br * (else_inst - if_inst));
1526 brw_inst_set_gen4_pop_count(devinfo, if_inst, 0);
1527 } else if (devinfo->gen == 6) {
1528 brw_inst_set_gen6_jump_count(devinfo, if_inst,
1529 br * (else_inst - if_inst + 1));
1530 }
1531
1532 /* Patch ELSE -> ENDIF */
1533 if (devinfo->gen < 6) {
1534 /* BRW_OPCODE_ELSE pre-gen6 should point just past the
1535 * matching ENDIF.
1536 */
1537 brw_inst_set_gen4_jump_count(devinfo, else_inst,
1538 br * (endif_inst - else_inst + 1));
1539 brw_inst_set_gen4_pop_count(devinfo, else_inst, 1);
1540 } else if (devinfo->gen == 6) {
1541 /* BRW_OPCODE_ELSE on gen6 should point to the matching ENDIF. */
1542 brw_inst_set_gen6_jump_count(devinfo, else_inst,
1543 br * (endif_inst - else_inst));
1544 } else {
1545 /* The IF instruction's JIP should point just past the ELSE */
1546 brw_inst_set_jip(devinfo, if_inst, br * (else_inst - if_inst + 1));
1547 /* The IF instruction's UIP and ELSE's JIP should point to ENDIF */
1548 brw_inst_set_uip(devinfo, if_inst, br * (endif_inst - if_inst));
1549 brw_inst_set_jip(devinfo, else_inst, br * (endif_inst - else_inst));
1550 if (devinfo->gen >= 8) {
1551 /* Since we don't set branch_ctrl, the ELSE's JIP and UIP both
1552 * should point to ENDIF.
1553 */
1554 brw_inst_set_uip(devinfo, else_inst, br * (endif_inst - else_inst));
1555 }
1556 }
1557 }
1558 }
1559
1560 void
1561 brw_ELSE(struct brw_codegen *p)
1562 {
1563 const struct brw_device_info *devinfo = p->devinfo;
1564 brw_inst *insn;
1565
1566 insn = next_insn(p, BRW_OPCODE_ELSE);
1567
1568 if (devinfo->gen < 6) {
1569 brw_set_dest(p, insn, brw_ip_reg());
1570 brw_set_src0(p, insn, brw_ip_reg());
1571 brw_set_src1(p, insn, brw_imm_d(0x0));
1572 } else if (devinfo->gen == 6) {
1573 brw_set_dest(p, insn, brw_imm_w(0));
1574 brw_inst_set_gen6_jump_count(devinfo, insn, 0);
1575 brw_set_src0(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1576 brw_set_src1(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1577 } else if (devinfo->gen == 7) {
1578 brw_set_dest(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1579 brw_set_src0(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1580 brw_set_src1(p, insn, brw_imm_w(0));
1581 brw_inst_set_jip(devinfo, insn, 0);
1582 brw_inst_set_uip(devinfo, insn, 0);
1583 } else {
1584 brw_set_dest(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1585 brw_set_src0(p, insn, brw_imm_d(0));
1586 brw_inst_set_jip(devinfo, insn, 0);
1587 brw_inst_set_uip(devinfo, insn, 0);
1588 }
1589
1590 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
1591 brw_inst_set_mask_control(devinfo, insn, BRW_MASK_ENABLE);
1592 if (!p->single_program_flow && devinfo->gen < 6)
1593 brw_inst_set_thread_control(devinfo, insn, BRW_THREAD_SWITCH);
1594
1595 push_if_stack(p, insn);
1596 }
1597
1598 void
1599 brw_ENDIF(struct brw_codegen *p)
1600 {
1601 const struct brw_device_info *devinfo = p->devinfo;
1602 brw_inst *insn = NULL;
1603 brw_inst *else_inst = NULL;
1604 brw_inst *if_inst = NULL;
1605 brw_inst *tmp;
1606 bool emit_endif = true;
1607
1608 /* In single program flow mode, we can express IF and ELSE instructions
1609 * equivalently as ADD instructions that operate on IP. On platforms prior
1610 * to Gen6, flow control instructions cause an implied thread switch, so
1611 * this is a significant savings.
1612 *
1613 * However, on Gen6, writing to IP doesn't work in single program flow mode
1614 * (see the SandyBridge PRM, Volume 4 part 2, p79: "When SPF is ON, IP may
1615 * not be updated by non-flow control instructions."). And on later
1616 * platforms, there is no significant benefit to converting control flow
1617 * instructions to conditional ADDs. So we only do this trick on Gen4 and
1618 * Gen5.
1619 */
1620 if (devinfo->gen < 6 && p->single_program_flow)
1621 emit_endif = false;
1622
1623 /*
1624 * A single next_insn() may change the base address of instruction store
1625 * memory(p->store), so call it first before referencing the instruction
1626 * store pointer from an index
1627 */
1628 if (emit_endif)
1629 insn = next_insn(p, BRW_OPCODE_ENDIF);
1630
1631 /* Pop the IF and (optional) ELSE instructions from the stack */
1632 p->if_depth_in_loop[p->loop_stack_depth]--;
1633 tmp = pop_if_stack(p);
1634 if (brw_inst_opcode(devinfo, tmp) == BRW_OPCODE_ELSE) {
1635 else_inst = tmp;
1636 tmp = pop_if_stack(p);
1637 }
1638 if_inst = tmp;
1639
1640 if (!emit_endif) {
1641 /* ENDIF is useless; don't bother emitting it. */
1642 convert_IF_ELSE_to_ADD(p, if_inst, else_inst);
1643 return;
1644 }
1645
1646 if (devinfo->gen < 6) {
1647 brw_set_dest(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1648 brw_set_src0(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1649 brw_set_src1(p, insn, brw_imm_d(0x0));
1650 } else if (devinfo->gen == 6) {
1651 brw_set_dest(p, insn, brw_imm_w(0));
1652 brw_set_src0(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1653 brw_set_src1(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1654 } else if (devinfo->gen == 7) {
1655 brw_set_dest(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1656 brw_set_src0(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1657 brw_set_src1(p, insn, brw_imm_w(0));
1658 } else {
1659 brw_set_src0(p, insn, brw_imm_d(0));
1660 }
1661
1662 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
1663 brw_inst_set_mask_control(devinfo, insn, BRW_MASK_ENABLE);
1664 if (devinfo->gen < 6)
1665 brw_inst_set_thread_control(devinfo, insn, BRW_THREAD_SWITCH);
1666
1667 /* Also pop item off the stack in the endif instruction: */
1668 if (devinfo->gen < 6) {
1669 brw_inst_set_gen4_jump_count(devinfo, insn, 0);
1670 brw_inst_set_gen4_pop_count(devinfo, insn, 1);
1671 } else if (devinfo->gen == 6) {
1672 brw_inst_set_gen6_jump_count(devinfo, insn, 2);
1673 } else {
1674 brw_inst_set_jip(devinfo, insn, 2);
1675 }
1676 patch_IF_ELSE(p, if_inst, else_inst, insn);
1677 }
1678
1679 brw_inst *
1680 brw_BREAK(struct brw_codegen *p)
1681 {
1682 const struct brw_device_info *devinfo = p->devinfo;
1683 brw_inst *insn;
1684
1685 insn = next_insn(p, BRW_OPCODE_BREAK);
1686 if (devinfo->gen >= 8) {
1687 brw_set_dest(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1688 brw_set_src0(p, insn, brw_imm_d(0x0));
1689 } else if (devinfo->gen >= 6) {
1690 brw_set_dest(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1691 brw_set_src0(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1692 brw_set_src1(p, insn, brw_imm_d(0x0));
1693 } else {
1694 brw_set_dest(p, insn, brw_ip_reg());
1695 brw_set_src0(p, insn, brw_ip_reg());
1696 brw_set_src1(p, insn, brw_imm_d(0x0));
1697 brw_inst_set_gen4_pop_count(devinfo, insn,
1698 p->if_depth_in_loop[p->loop_stack_depth]);
1699 }
1700 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
1701 brw_inst_set_exec_size(devinfo, insn, p->compressed ? BRW_EXECUTE_16
1702 : BRW_EXECUTE_8);
1703
1704 return insn;
1705 }
1706
1707 brw_inst *
1708 brw_CONT(struct brw_codegen *p)
1709 {
1710 const struct brw_device_info *devinfo = p->devinfo;
1711 brw_inst *insn;
1712
1713 insn = next_insn(p, BRW_OPCODE_CONTINUE);
1714 brw_set_dest(p, insn, brw_ip_reg());
1715 if (devinfo->gen >= 8) {
1716 brw_set_src0(p, insn, brw_imm_d(0x0));
1717 } else {
1718 brw_set_src0(p, insn, brw_ip_reg());
1719 brw_set_src1(p, insn, brw_imm_d(0x0));
1720 }
1721
1722 if (devinfo->gen < 6) {
1723 brw_inst_set_gen4_pop_count(devinfo, insn,
1724 p->if_depth_in_loop[p->loop_stack_depth]);
1725 }
1726 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
1727 brw_inst_set_exec_size(devinfo, insn, p->compressed ? BRW_EXECUTE_16
1728 : BRW_EXECUTE_8);
1729 return insn;
1730 }
1731
1732 brw_inst *
1733 gen6_HALT(struct brw_codegen *p)
1734 {
1735 const struct brw_device_info *devinfo = p->devinfo;
1736 brw_inst *insn;
1737
1738 insn = next_insn(p, BRW_OPCODE_HALT);
1739 brw_set_dest(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1740 if (devinfo->gen >= 8) {
1741 brw_set_src0(p, insn, brw_imm_d(0x0));
1742 } else {
1743 brw_set_src0(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1744 brw_set_src1(p, insn, brw_imm_d(0x0)); /* UIP and JIP, updated later. */
1745 }
1746
1747 if (p->compressed) {
1748 brw_inst_set_exec_size(devinfo, insn, BRW_EXECUTE_16);
1749 } else {
1750 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
1751 brw_inst_set_exec_size(devinfo, insn, BRW_EXECUTE_8);
1752 }
1753 return insn;
1754 }
1755
1756 /* DO/WHILE loop:
1757 *
1758 * The DO/WHILE is just an unterminated loop -- break or continue are
1759 * used for control within the loop. We have a few ways they can be
1760 * done.
1761 *
1762 * For uniform control flow, the WHILE is just a jump, so ADD ip, ip,
1763 * jip and no DO instruction.
1764 *
1765 * For non-uniform control flow pre-gen6, there's a DO instruction to
1766 * push the mask, and a WHILE to jump back, and BREAK to get out and
1767 * pop the mask.
1768 *
1769 * For gen6, there's no more mask stack, so no need for DO. WHILE
1770 * just points back to the first instruction of the loop.
1771 */
1772 brw_inst *
1773 brw_DO(struct brw_codegen *p, unsigned execute_size)
1774 {
1775 const struct brw_device_info *devinfo = p->devinfo;
1776
1777 if (devinfo->gen >= 6 || p->single_program_flow) {
1778 push_loop_stack(p, &p->store[p->nr_insn]);
1779 return &p->store[p->nr_insn];
1780 } else {
1781 brw_inst *insn = next_insn(p, BRW_OPCODE_DO);
1782
1783 push_loop_stack(p, insn);
1784
1785 /* Override the defaults for this instruction:
1786 */
1787 brw_set_dest(p, insn, brw_null_reg());
1788 brw_set_src0(p, insn, brw_null_reg());
1789 brw_set_src1(p, insn, brw_null_reg());
1790
1791 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
1792 brw_inst_set_exec_size(devinfo, insn, execute_size);
1793 brw_inst_set_pred_control(devinfo, insn, BRW_PREDICATE_NONE);
1794
1795 return insn;
1796 }
1797 }
1798
1799 /**
1800 * For pre-gen6, we patch BREAK/CONT instructions to point at the WHILE
1801 * instruction here.
1802 *
1803 * For gen6+, see brw_set_uip_jip(), which doesn't care so much about the loop
1804 * nesting, since it can always just point to the end of the block/current loop.
1805 */
1806 static void
1807 brw_patch_break_cont(struct brw_codegen *p, brw_inst *while_inst)
1808 {
1809 const struct brw_device_info *devinfo = p->devinfo;
1810 brw_inst *do_inst = get_inner_do_insn(p);
1811 brw_inst *inst;
1812 unsigned br = brw_jump_scale(devinfo);
1813
1814 assert(devinfo->gen < 6);
1815
1816 for (inst = while_inst - 1; inst != do_inst; inst--) {
1817 /* If the jump count is != 0, that means that this instruction has already
1818 * been patched because it's part of a loop inside of the one we're
1819 * patching.
1820 */
1821 if (brw_inst_opcode(devinfo, inst) == BRW_OPCODE_BREAK &&
1822 brw_inst_gen4_jump_count(devinfo, inst) == 0) {
1823 brw_inst_set_gen4_jump_count(devinfo, inst, br*((while_inst - inst) + 1));
1824 } else if (brw_inst_opcode(devinfo, inst) == BRW_OPCODE_CONTINUE &&
1825 brw_inst_gen4_jump_count(devinfo, inst) == 0) {
1826 brw_inst_set_gen4_jump_count(devinfo, inst, br * (while_inst - inst));
1827 }
1828 }
1829 }
1830
1831 brw_inst *
1832 brw_WHILE(struct brw_codegen *p)
1833 {
1834 const struct brw_device_info *devinfo = p->devinfo;
1835 brw_inst *insn, *do_insn;
1836 unsigned br = brw_jump_scale(devinfo);
1837
1838 if (devinfo->gen >= 6) {
1839 insn = next_insn(p, BRW_OPCODE_WHILE);
1840 do_insn = get_inner_do_insn(p);
1841
1842 if (devinfo->gen >= 8) {
1843 brw_set_dest(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1844 brw_set_src0(p, insn, brw_imm_d(0));
1845 brw_inst_set_jip(devinfo, insn, br * (do_insn - insn));
1846 } else if (devinfo->gen == 7) {
1847 brw_set_dest(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1848 brw_set_src0(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1849 brw_set_src1(p, insn, brw_imm_w(0));
1850 brw_inst_set_jip(devinfo, insn, br * (do_insn - insn));
1851 } else {
1852 brw_set_dest(p, insn, brw_imm_w(0));
1853 brw_inst_set_gen6_jump_count(devinfo, insn, br * (do_insn - insn));
1854 brw_set_src0(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1855 brw_set_src1(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1856 }
1857
1858 brw_inst_set_exec_size(devinfo, insn, p->compressed ? BRW_EXECUTE_16
1859 : BRW_EXECUTE_8);
1860 } else {
1861 if (p->single_program_flow) {
1862 insn = next_insn(p, BRW_OPCODE_ADD);
1863 do_insn = get_inner_do_insn(p);
1864
1865 brw_set_dest(p, insn, brw_ip_reg());
1866 brw_set_src0(p, insn, brw_ip_reg());
1867 brw_set_src1(p, insn, brw_imm_d((do_insn - insn) * 16));
1868 brw_inst_set_exec_size(devinfo, insn, BRW_EXECUTE_1);
1869 } else {
1870 insn = next_insn(p, BRW_OPCODE_WHILE);
1871 do_insn = get_inner_do_insn(p);
1872
1873 assert(brw_inst_opcode(devinfo, do_insn) == BRW_OPCODE_DO);
1874
1875 brw_set_dest(p, insn, brw_ip_reg());
1876 brw_set_src0(p, insn, brw_ip_reg());
1877 brw_set_src1(p, insn, brw_imm_d(0));
1878
1879 brw_inst_set_exec_size(devinfo, insn, brw_inst_exec_size(devinfo, do_insn));
1880 brw_inst_set_gen4_jump_count(devinfo, insn, br * (do_insn - insn + 1));
1881 brw_inst_set_gen4_pop_count(devinfo, insn, 0);
1882
1883 brw_patch_break_cont(p, insn);
1884 }
1885 }
1886 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
1887
1888 p->loop_stack_depth--;
1889
1890 return insn;
1891 }
1892
1893 /* FORWARD JUMPS:
1894 */
1895 void brw_land_fwd_jump(struct brw_codegen *p, int jmp_insn_idx)
1896 {
1897 const struct brw_device_info *devinfo = p->devinfo;
1898 brw_inst *jmp_insn = &p->store[jmp_insn_idx];
1899 unsigned jmpi = 1;
1900
1901 if (devinfo->gen >= 5)
1902 jmpi = 2;
1903
1904 assert(brw_inst_opcode(devinfo, jmp_insn) == BRW_OPCODE_JMPI);
1905 assert(brw_inst_src1_reg_file(devinfo, jmp_insn) == BRW_IMMEDIATE_VALUE);
1906
1907 brw_inst_set_gen4_jump_count(devinfo, jmp_insn,
1908 jmpi * (p->nr_insn - jmp_insn_idx - 1));
1909 }
1910
1911 /* To integrate with the above, it makes sense that the comparison
1912 * instruction should populate the flag register. It might be simpler
1913 * just to use the flag reg for most WM tasks?
1914 */
1915 void brw_CMP(struct brw_codegen *p,
1916 struct brw_reg dest,
1917 unsigned conditional,
1918 struct brw_reg src0,
1919 struct brw_reg src1)
1920 {
1921 const struct brw_device_info *devinfo = p->devinfo;
1922 brw_inst *insn = next_insn(p, BRW_OPCODE_CMP);
1923
1924 brw_inst_set_cond_modifier(devinfo, insn, conditional);
1925 brw_set_dest(p, insn, dest);
1926 brw_set_src0(p, insn, src0);
1927 brw_set_src1(p, insn, src1);
1928
1929 /* Item WaCMPInstNullDstForcesThreadSwitch in the Haswell Bspec workarounds
1930 * page says:
1931 * "Any CMP instruction with a null destination must use a {switch}."
1932 *
1933 * It also applies to other Gen7 platforms (IVB, BYT) even though it isn't
1934 * mentioned on their work-arounds pages.
1935 */
1936 if (devinfo->gen == 7) {
1937 if (dest.file == BRW_ARCHITECTURE_REGISTER_FILE &&
1938 dest.nr == BRW_ARF_NULL) {
1939 brw_inst_set_thread_control(devinfo, insn, BRW_THREAD_SWITCH);
1940 }
1941 }
1942 }
1943
1944 /***********************************************************************
1945 * Helpers for the various SEND message types:
1946 */
1947
1948 /** Extended math function, float[8].
1949 */
1950 void gen4_math(struct brw_codegen *p,
1951 struct brw_reg dest,
1952 unsigned function,
1953 unsigned msg_reg_nr,
1954 struct brw_reg src,
1955 unsigned precision )
1956 {
1957 const struct brw_device_info *devinfo = p->devinfo;
1958 brw_inst *insn = next_insn(p, BRW_OPCODE_SEND);
1959 unsigned data_type;
1960 if (has_scalar_region(src)) {
1961 data_type = BRW_MATH_DATA_SCALAR;
1962 } else {
1963 data_type = BRW_MATH_DATA_VECTOR;
1964 }
1965
1966 assert(devinfo->gen < 6);
1967
1968 /* Example code doesn't set predicate_control for send
1969 * instructions.
1970 */
1971 brw_inst_set_pred_control(devinfo, insn, 0);
1972 brw_inst_set_base_mrf(devinfo, insn, msg_reg_nr);
1973
1974 brw_set_dest(p, insn, dest);
1975 brw_set_src0(p, insn, src);
1976 brw_set_math_message(p,
1977 insn,
1978 function,
1979 src.type == BRW_REGISTER_TYPE_D,
1980 precision,
1981 data_type);
1982 }
1983
1984 void gen6_math(struct brw_codegen *p,
1985 struct brw_reg dest,
1986 unsigned function,
1987 struct brw_reg src0,
1988 struct brw_reg src1)
1989 {
1990 const struct brw_device_info *devinfo = p->devinfo;
1991 brw_inst *insn = next_insn(p, BRW_OPCODE_MATH);
1992
1993 assert(devinfo->gen >= 6);
1994
1995 assert(dest.file == BRW_GENERAL_REGISTER_FILE ||
1996 (devinfo->gen >= 7 && dest.file == BRW_MESSAGE_REGISTER_FILE));
1997 assert(src0.file == BRW_GENERAL_REGISTER_FILE ||
1998 (devinfo->gen >= 8 && src0.file == BRW_IMMEDIATE_VALUE));
1999
2000 assert(dest.hstride == BRW_HORIZONTAL_STRIDE_1);
2001 if (devinfo->gen == 6) {
2002 assert(src0.hstride == BRW_HORIZONTAL_STRIDE_1);
2003 assert(src1.hstride == BRW_HORIZONTAL_STRIDE_1);
2004 }
2005
2006 if (function == BRW_MATH_FUNCTION_INT_DIV_QUOTIENT ||
2007 function == BRW_MATH_FUNCTION_INT_DIV_REMAINDER ||
2008 function == BRW_MATH_FUNCTION_INT_DIV_QUOTIENT_AND_REMAINDER) {
2009 assert(src0.type != BRW_REGISTER_TYPE_F);
2010 assert(src1.type != BRW_REGISTER_TYPE_F);
2011 assert(src1.file == BRW_GENERAL_REGISTER_FILE ||
2012 (devinfo->gen >= 8 && src1.file == BRW_IMMEDIATE_VALUE));
2013 } else {
2014 assert(src0.type == BRW_REGISTER_TYPE_F);
2015 assert(src1.type == BRW_REGISTER_TYPE_F);
2016 if (function == BRW_MATH_FUNCTION_POW) {
2017 assert(src1.file == BRW_GENERAL_REGISTER_FILE ||
2018 (devinfo->gen >= 8 && src1.file == BRW_IMMEDIATE_VALUE));
2019 } else {
2020 assert(src1.file == BRW_ARCHITECTURE_REGISTER_FILE &&
2021 src1.nr == BRW_ARF_NULL);
2022 }
2023 }
2024
2025 /* Source modifiers are ignored for extended math instructions on Gen6. */
2026 if (devinfo->gen == 6) {
2027 assert(!src0.negate);
2028 assert(!src0.abs);
2029 assert(!src1.negate);
2030 assert(!src1.abs);
2031 }
2032
2033 brw_inst_set_math_function(devinfo, insn, function);
2034
2035 brw_set_dest(p, insn, dest);
2036 brw_set_src0(p, insn, src0);
2037 brw_set_src1(p, insn, src1);
2038 }
2039
2040 /**
2041 * Return the right surface index to access the thread scratch space using
2042 * stateless dataport messages.
2043 */
2044 unsigned
2045 brw_scratch_surface_idx(const struct brw_codegen *p)
2046 {
2047 /* The scratch space is thread-local so IA coherency is unnecessary. */
2048 if (p->devinfo->gen >= 8)
2049 return GEN8_BTI_STATELESS_NON_COHERENT;
2050 else
2051 return BRW_BTI_STATELESS;
2052 }
2053
2054 /**
2055 * Write a block of OWORDs (half a GRF each) from the scratch buffer,
2056 * using a constant offset per channel.
2057 *
2058 * The offset must be aligned to oword size (16 bytes). Used for
2059 * register spilling.
2060 */
2061 void brw_oword_block_write_scratch(struct brw_codegen *p,
2062 struct brw_reg mrf,
2063 int num_regs,
2064 unsigned offset)
2065 {
2066 const struct brw_device_info *devinfo = p->devinfo;
2067 uint32_t msg_control, msg_type;
2068 int mlen;
2069
2070 if (devinfo->gen >= 6)
2071 offset /= 16;
2072
2073 mrf = retype(mrf, BRW_REGISTER_TYPE_UD);
2074
2075 if (num_regs == 1) {
2076 msg_control = BRW_DATAPORT_OWORD_BLOCK_2_OWORDS;
2077 mlen = 2;
2078 } else {
2079 msg_control = BRW_DATAPORT_OWORD_BLOCK_4_OWORDS;
2080 mlen = 3;
2081 }
2082
2083 /* Set up the message header. This is g0, with g0.2 filled with
2084 * the offset. We don't want to leave our offset around in g0 or
2085 * it'll screw up texture samples, so set it up inside the message
2086 * reg.
2087 */
2088 {
2089 brw_push_insn_state(p);
2090 brw_set_default_exec_size(p, BRW_EXECUTE_8);
2091 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2092 brw_set_default_compression_control(p, BRW_COMPRESSION_NONE);
2093
2094 brw_MOV(p, mrf, retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD));
2095
2096 /* set message header global offset field (reg 0, element 2) */
2097 brw_MOV(p,
2098 retype(brw_vec1_reg(BRW_MESSAGE_REGISTER_FILE,
2099 mrf.nr,
2100 2), BRW_REGISTER_TYPE_UD),
2101 brw_imm_ud(offset));
2102
2103 brw_pop_insn_state(p);
2104 }
2105
2106 {
2107 struct brw_reg dest;
2108 brw_inst *insn = next_insn(p, BRW_OPCODE_SEND);
2109 int send_commit_msg;
2110 struct brw_reg src_header = retype(brw_vec8_grf(0, 0),
2111 BRW_REGISTER_TYPE_UW);
2112
2113 if (brw_inst_qtr_control(devinfo, insn) != BRW_COMPRESSION_NONE) {
2114 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
2115 src_header = vec16(src_header);
2116 }
2117 assert(brw_inst_pred_control(devinfo, insn) == BRW_PREDICATE_NONE);
2118 if (devinfo->gen < 6)
2119 brw_inst_set_base_mrf(devinfo, insn, mrf.nr);
2120
2121 /* Until gen6, writes followed by reads from the same location
2122 * are not guaranteed to be ordered unless write_commit is set.
2123 * If set, then a no-op write is issued to the destination
2124 * register to set a dependency, and a read from the destination
2125 * can be used to ensure the ordering.
2126 *
2127 * For gen6, only writes between different threads need ordering
2128 * protection. Our use of DP writes is all about register
2129 * spilling within a thread.
2130 */
2131 if (devinfo->gen >= 6) {
2132 dest = retype(vec16(brw_null_reg()), BRW_REGISTER_TYPE_UW);
2133 send_commit_msg = 0;
2134 } else {
2135 dest = src_header;
2136 send_commit_msg = 1;
2137 }
2138
2139 brw_set_dest(p, insn, dest);
2140 if (devinfo->gen >= 6) {
2141 brw_set_src0(p, insn, mrf);
2142 } else {
2143 brw_set_src0(p, insn, brw_null_reg());
2144 }
2145
2146 if (devinfo->gen >= 6)
2147 msg_type = GEN6_DATAPORT_WRITE_MESSAGE_OWORD_BLOCK_WRITE;
2148 else
2149 msg_type = BRW_DATAPORT_WRITE_MESSAGE_OWORD_BLOCK_WRITE;
2150
2151 brw_set_dp_write_message(p,
2152 insn,
2153 brw_scratch_surface_idx(p),
2154 msg_control,
2155 msg_type,
2156 mlen,
2157 true, /* header_present */
2158 0, /* not a render target */
2159 send_commit_msg, /* response_length */
2160 0, /* eot */
2161 send_commit_msg);
2162 }
2163 }
2164
2165
2166 /**
2167 * Read a block of owords (half a GRF each) from the scratch buffer
2168 * using a constant index per channel.
2169 *
2170 * Offset must be aligned to oword size (16 bytes). Used for register
2171 * spilling.
2172 */
2173 void
2174 brw_oword_block_read_scratch(struct brw_codegen *p,
2175 struct brw_reg dest,
2176 struct brw_reg mrf,
2177 int num_regs,
2178 unsigned offset)
2179 {
2180 const struct brw_device_info *devinfo = p->devinfo;
2181 uint32_t msg_control;
2182 int rlen;
2183
2184 if (devinfo->gen >= 6)
2185 offset /= 16;
2186
2187 if (p->devinfo->gen >= 7) {
2188 /* On gen 7 and above, we no longer have message registers and we can
2189 * send from any register we want. By using the destination register
2190 * for the message, we guarantee that the implied message write won't
2191 * accidentally overwrite anything. This has been a problem because
2192 * the MRF registers and source for the final FB write are both fixed
2193 * and may overlap.
2194 */
2195 mrf = retype(dest, BRW_REGISTER_TYPE_UD);
2196 } else {
2197 mrf = retype(mrf, BRW_REGISTER_TYPE_UD);
2198 }
2199 dest = retype(dest, BRW_REGISTER_TYPE_UW);
2200
2201 if (num_regs == 1) {
2202 msg_control = BRW_DATAPORT_OWORD_BLOCK_2_OWORDS;
2203 rlen = 1;
2204 } else {
2205 msg_control = BRW_DATAPORT_OWORD_BLOCK_4_OWORDS;
2206 rlen = 2;
2207 }
2208
2209 {
2210 brw_push_insn_state(p);
2211 brw_set_default_exec_size(p, BRW_EXECUTE_8);
2212 brw_set_default_compression_control(p, BRW_COMPRESSION_NONE);
2213 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2214
2215 brw_MOV(p, mrf, retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD));
2216
2217 /* set message header global offset field (reg 0, element 2) */
2218 brw_MOV(p, get_element_ud(mrf, 2), brw_imm_ud(offset));
2219
2220 brw_pop_insn_state(p);
2221 }
2222
2223 {
2224 brw_inst *insn = next_insn(p, BRW_OPCODE_SEND);
2225
2226 assert(brw_inst_pred_control(devinfo, insn) == 0);
2227 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
2228
2229 brw_set_dest(p, insn, dest); /* UW? */
2230 if (devinfo->gen >= 6) {
2231 brw_set_src0(p, insn, mrf);
2232 } else {
2233 brw_set_src0(p, insn, brw_null_reg());
2234 brw_inst_set_base_mrf(devinfo, insn, mrf.nr);
2235 }
2236
2237 brw_set_dp_read_message(p,
2238 insn,
2239 brw_scratch_surface_idx(p),
2240 msg_control,
2241 BRW_DATAPORT_READ_MESSAGE_OWORD_BLOCK_READ, /* msg_type */
2242 BRW_DATAPORT_READ_TARGET_RENDER_CACHE,
2243 1, /* msg_length */
2244 true, /* header_present */
2245 rlen);
2246 }
2247 }
2248
2249 void
2250 gen7_block_read_scratch(struct brw_codegen *p,
2251 struct brw_reg dest,
2252 int num_regs,
2253 unsigned offset)
2254 {
2255 const struct brw_device_info *devinfo = p->devinfo;
2256 brw_inst *insn = next_insn(p, BRW_OPCODE_SEND);
2257 assert(brw_inst_pred_control(devinfo, insn) == BRW_PREDICATE_NONE);
2258
2259 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
2260 brw_set_dest(p, insn, retype(dest, BRW_REGISTER_TYPE_UW));
2261
2262 /* The HW requires that the header is present; this is to get the g0.5
2263 * scratch offset.
2264 */
2265 brw_set_src0(p, insn, brw_vec8_grf(0, 0));
2266
2267 /* According to the docs, offset is "A 12-bit HWord offset into the memory
2268 * Immediate Memory buffer as specified by binding table 0xFF." An HWORD
2269 * is 32 bytes, which happens to be the size of a register.
2270 */
2271 offset /= REG_SIZE;
2272 assert(offset < (1 << 12));
2273
2274 gen7_set_dp_scratch_message(p, insn,
2275 false, /* scratch read */
2276 false, /* OWords */
2277 false, /* invalidate after read */
2278 num_regs,
2279 offset,
2280 1, /* mlen: just g0 */
2281 num_regs, /* rlen */
2282 true); /* header present */
2283 }
2284
2285 /**
2286 * Read a float[4] vector from the data port Data Cache (const buffer).
2287 * Location (in buffer) should be a multiple of 16.
2288 * Used for fetching shader constants.
2289 */
2290 void brw_oword_block_read(struct brw_codegen *p,
2291 struct brw_reg dest,
2292 struct brw_reg mrf,
2293 uint32_t offset,
2294 uint32_t bind_table_index)
2295 {
2296 const struct brw_device_info *devinfo = p->devinfo;
2297
2298 /* On newer hardware, offset is in units of owords. */
2299 if (devinfo->gen >= 6)
2300 offset /= 16;
2301
2302 mrf = retype(mrf, BRW_REGISTER_TYPE_UD);
2303
2304 brw_push_insn_state(p);
2305 brw_set_default_exec_size(p, BRW_EXECUTE_8);
2306 brw_set_default_predicate_control(p, BRW_PREDICATE_NONE);
2307 brw_set_default_compression_control(p, BRW_COMPRESSION_NONE);
2308 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2309
2310 brw_MOV(p, mrf, retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD));
2311
2312 /* set message header global offset field (reg 0, element 2) */
2313 brw_MOV(p,
2314 retype(brw_vec1_reg(BRW_MESSAGE_REGISTER_FILE,
2315 mrf.nr,
2316 2), BRW_REGISTER_TYPE_UD),
2317 brw_imm_ud(offset));
2318
2319 brw_inst *insn = next_insn(p, BRW_OPCODE_SEND);
2320
2321 /* cast dest to a uword[8] vector */
2322 dest = retype(vec8(dest), BRW_REGISTER_TYPE_UW);
2323
2324 brw_set_dest(p, insn, dest);
2325 if (devinfo->gen >= 6) {
2326 brw_set_src0(p, insn, mrf);
2327 } else {
2328 brw_set_src0(p, insn, brw_null_reg());
2329 brw_inst_set_base_mrf(devinfo, insn, mrf.nr);
2330 }
2331
2332 brw_set_dp_read_message(p,
2333 insn,
2334 bind_table_index,
2335 BRW_DATAPORT_OWORD_BLOCK_1_OWORDLOW,
2336 BRW_DATAPORT_READ_MESSAGE_OWORD_BLOCK_READ,
2337 BRW_DATAPORT_READ_TARGET_DATA_CACHE,
2338 1, /* msg_length */
2339 true, /* header_present */
2340 1); /* response_length (1 reg, 2 owords!) */
2341
2342 brw_pop_insn_state(p);
2343 }
2344
2345
2346 void brw_fb_WRITE(struct brw_codegen *p,
2347 int dispatch_width,
2348 struct brw_reg payload,
2349 struct brw_reg implied_header,
2350 unsigned msg_control,
2351 unsigned binding_table_index,
2352 unsigned msg_length,
2353 unsigned response_length,
2354 bool eot,
2355 bool last_render_target,
2356 bool header_present)
2357 {
2358 const struct brw_device_info *devinfo = p->devinfo;
2359 brw_inst *insn;
2360 unsigned msg_type;
2361 struct brw_reg dest, src0;
2362
2363 if (dispatch_width == 16)
2364 dest = retype(vec16(brw_null_reg()), BRW_REGISTER_TYPE_UW);
2365 else
2366 dest = retype(vec8(brw_null_reg()), BRW_REGISTER_TYPE_UW);
2367
2368 if (devinfo->gen >= 6) {
2369 insn = next_insn(p, BRW_OPCODE_SENDC);
2370 } else {
2371 insn = next_insn(p, BRW_OPCODE_SEND);
2372 }
2373 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
2374
2375 if (devinfo->gen >= 6) {
2376 /* headerless version, just submit color payload */
2377 src0 = payload;
2378
2379 msg_type = GEN6_DATAPORT_WRITE_MESSAGE_RENDER_TARGET_WRITE;
2380 } else {
2381 assert(payload.file == BRW_MESSAGE_REGISTER_FILE);
2382 brw_inst_set_base_mrf(devinfo, insn, payload.nr);
2383 src0 = implied_header;
2384
2385 msg_type = BRW_DATAPORT_WRITE_MESSAGE_RENDER_TARGET_WRITE;
2386 }
2387
2388 brw_set_dest(p, insn, dest);
2389 brw_set_src0(p, insn, src0);
2390 brw_set_dp_write_message(p,
2391 insn,
2392 binding_table_index,
2393 msg_control,
2394 msg_type,
2395 msg_length,
2396 header_present,
2397 last_render_target,
2398 response_length,
2399 eot,
2400 0 /* send_commit_msg */);
2401 }
2402
2403
2404 /**
2405 * Texture sample instruction.
2406 * Note: the msg_type plus msg_length values determine exactly what kind
2407 * of sampling operation is performed. See volume 4, page 161 of docs.
2408 */
2409 void brw_SAMPLE(struct brw_codegen *p,
2410 struct brw_reg dest,
2411 unsigned msg_reg_nr,
2412 struct brw_reg src0,
2413 unsigned binding_table_index,
2414 unsigned sampler,
2415 unsigned msg_type,
2416 unsigned response_length,
2417 unsigned msg_length,
2418 unsigned header_present,
2419 unsigned simd_mode,
2420 unsigned return_format)
2421 {
2422 const struct brw_device_info *devinfo = p->devinfo;
2423 brw_inst *insn;
2424
2425 if (msg_reg_nr != -1)
2426 gen6_resolve_implied_move(p, &src0, msg_reg_nr);
2427
2428 insn = next_insn(p, BRW_OPCODE_SEND);
2429 brw_inst_set_pred_control(devinfo, insn, BRW_PREDICATE_NONE); /* XXX */
2430
2431 /* From the 965 PRM (volume 4, part 1, section 14.2.41):
2432 *
2433 * "Instruction compression is not allowed for this instruction (that
2434 * is, send). The hardware behavior is undefined if this instruction is
2435 * set as compressed. However, compress control can be set to "SecHalf"
2436 * to affect the EMask generation."
2437 *
2438 * No similar wording is found in later PRMs, but there are examples
2439 * utilizing send with SecHalf. More importantly, SIMD8 sampler messages
2440 * are allowed in SIMD16 mode and they could not work without SecHalf. For
2441 * these reasons, we allow BRW_COMPRESSION_2NDHALF here.
2442 */
2443 if (brw_inst_qtr_control(devinfo, insn) != BRW_COMPRESSION_2NDHALF)
2444 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
2445
2446 if (devinfo->gen < 6)
2447 brw_inst_set_base_mrf(devinfo, insn, msg_reg_nr);
2448
2449 brw_set_dest(p, insn, dest);
2450 brw_set_src0(p, insn, src0);
2451 brw_set_sampler_message(p, insn,
2452 binding_table_index,
2453 sampler,
2454 msg_type,
2455 response_length,
2456 msg_length,
2457 header_present,
2458 simd_mode,
2459 return_format);
2460 }
2461
2462 /* Adjust the message header's sampler state pointer to
2463 * select the correct group of 16 samplers.
2464 */
2465 void brw_adjust_sampler_state_pointer(struct brw_codegen *p,
2466 struct brw_reg header,
2467 struct brw_reg sampler_index)
2468 {
2469 /* The "Sampler Index" field can only store values between 0 and 15.
2470 * However, we can add an offset to the "Sampler State Pointer"
2471 * field, effectively selecting a different set of 16 samplers.
2472 *
2473 * The "Sampler State Pointer" needs to be aligned to a 32-byte
2474 * offset, and each sampler state is only 16-bytes, so we can't
2475 * exclusively use the offset - we have to use both.
2476 */
2477
2478 const struct brw_device_info *devinfo = p->devinfo;
2479
2480 if (sampler_index.file == BRW_IMMEDIATE_VALUE) {
2481 const int sampler_state_size = 16; /* 16 bytes */
2482 uint32_t sampler = sampler_index.ud;
2483
2484 if (sampler >= 16) {
2485 assert(devinfo->is_haswell || devinfo->gen >= 8);
2486 brw_ADD(p,
2487 get_element_ud(header, 3),
2488 get_element_ud(brw_vec8_grf(0, 0), 3),
2489 brw_imm_ud(16 * (sampler / 16) * sampler_state_size));
2490 }
2491 } else {
2492 /* Non-const sampler array indexing case */
2493 if (devinfo->gen < 8 && !devinfo->is_haswell) {
2494 return;
2495 }
2496
2497 struct brw_reg temp = get_element_ud(header, 3);
2498
2499 brw_AND(p, temp, get_element_ud(sampler_index, 0), brw_imm_ud(0x0f0));
2500 brw_SHL(p, temp, temp, brw_imm_ud(4));
2501 brw_ADD(p,
2502 get_element_ud(header, 3),
2503 get_element_ud(brw_vec8_grf(0, 0), 3),
2504 temp);
2505 }
2506 }
2507
2508 /* All these variables are pretty confusing - we might be better off
2509 * using bitmasks and macros for this, in the old style. Or perhaps
2510 * just having the caller instantiate the fields in dword3 itself.
2511 */
2512 void brw_urb_WRITE(struct brw_codegen *p,
2513 struct brw_reg dest,
2514 unsigned msg_reg_nr,
2515 struct brw_reg src0,
2516 enum brw_urb_write_flags flags,
2517 unsigned msg_length,
2518 unsigned response_length,
2519 unsigned offset,
2520 unsigned swizzle)
2521 {
2522 const struct brw_device_info *devinfo = p->devinfo;
2523 brw_inst *insn;
2524
2525 gen6_resolve_implied_move(p, &src0, msg_reg_nr);
2526
2527 if (devinfo->gen >= 7 && !(flags & BRW_URB_WRITE_USE_CHANNEL_MASKS)) {
2528 /* Enable Channel Masks in the URB_WRITE_HWORD message header */
2529 brw_push_insn_state(p);
2530 brw_set_default_access_mode(p, BRW_ALIGN_1);
2531 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2532 brw_OR(p, retype(brw_vec1_reg(BRW_MESSAGE_REGISTER_FILE, msg_reg_nr, 5),
2533 BRW_REGISTER_TYPE_UD),
2534 retype(brw_vec1_grf(0, 5), BRW_REGISTER_TYPE_UD),
2535 brw_imm_ud(0xff00));
2536 brw_pop_insn_state(p);
2537 }
2538
2539 insn = next_insn(p, BRW_OPCODE_SEND);
2540
2541 assert(msg_length < BRW_MAX_MRF(devinfo->gen));
2542
2543 brw_set_dest(p, insn, dest);
2544 brw_set_src0(p, insn, src0);
2545 brw_set_src1(p, insn, brw_imm_d(0));
2546
2547 if (devinfo->gen < 6)
2548 brw_inst_set_base_mrf(devinfo, insn, msg_reg_nr);
2549
2550 brw_set_urb_message(p,
2551 insn,
2552 flags,
2553 msg_length,
2554 response_length,
2555 offset,
2556 swizzle);
2557 }
2558
2559 struct brw_inst *
2560 brw_send_indirect_message(struct brw_codegen *p,
2561 unsigned sfid,
2562 struct brw_reg dst,
2563 struct brw_reg payload,
2564 struct brw_reg desc)
2565 {
2566 const struct brw_device_info *devinfo = p->devinfo;
2567 struct brw_inst *send;
2568 int setup;
2569
2570 dst = retype(dst, BRW_REGISTER_TYPE_UW);
2571
2572 assert(desc.type == BRW_REGISTER_TYPE_UD);
2573
2574 /* We hold on to the setup instruction (the SEND in the direct case, the OR
2575 * in the indirect case) by its index in the instruction store. The
2576 * pointer returned by next_insn() may become invalid if emitting the SEND
2577 * in the indirect case reallocs the store.
2578 */
2579
2580 if (desc.file == BRW_IMMEDIATE_VALUE) {
2581 setup = p->nr_insn;
2582 send = next_insn(p, BRW_OPCODE_SEND);
2583 brw_set_src1(p, send, desc);
2584
2585 } else {
2586 struct brw_reg addr = retype(brw_address_reg(0), BRW_REGISTER_TYPE_UD);
2587
2588 brw_push_insn_state(p);
2589 brw_set_default_access_mode(p, BRW_ALIGN_1);
2590 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2591 brw_set_default_predicate_control(p, BRW_PREDICATE_NONE);
2592
2593 /* Load the indirect descriptor to an address register using OR so the
2594 * caller can specify additional descriptor bits with the usual
2595 * brw_set_*_message() helper functions.
2596 */
2597 setup = p->nr_insn;
2598 brw_OR(p, addr, desc, brw_imm_ud(0));
2599
2600 brw_pop_insn_state(p);
2601
2602 send = next_insn(p, BRW_OPCODE_SEND);
2603 brw_set_src1(p, send, addr);
2604 }
2605
2606 if (dst.width < BRW_EXECUTE_8)
2607 brw_inst_set_exec_size(devinfo, send, dst.width);
2608
2609 brw_set_dest(p, send, dst);
2610 brw_set_src0(p, send, retype(payload, BRW_REGISTER_TYPE_UD));
2611 brw_inst_set_sfid(devinfo, send, sfid);
2612
2613 return &p->store[setup];
2614 }
2615
2616 static struct brw_inst *
2617 brw_send_indirect_surface_message(struct brw_codegen *p,
2618 unsigned sfid,
2619 struct brw_reg dst,
2620 struct brw_reg payload,
2621 struct brw_reg surface,
2622 unsigned message_len,
2623 unsigned response_len,
2624 bool header_present)
2625 {
2626 const struct brw_device_info *devinfo = p->devinfo;
2627 struct brw_inst *insn;
2628
2629 if (surface.file != BRW_IMMEDIATE_VALUE) {
2630 struct brw_reg addr = retype(brw_address_reg(0), BRW_REGISTER_TYPE_UD);
2631
2632 brw_push_insn_state(p);
2633 brw_set_default_access_mode(p, BRW_ALIGN_1);
2634 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2635 brw_set_default_predicate_control(p, BRW_PREDICATE_NONE);
2636
2637 /* Mask out invalid bits from the surface index to avoid hangs e.g. when
2638 * some surface array is accessed out of bounds.
2639 */
2640 insn = brw_AND(p, addr,
2641 suboffset(vec1(retype(surface, BRW_REGISTER_TYPE_UD)),
2642 BRW_GET_SWZ(surface.swizzle, 0)),
2643 brw_imm_ud(0xff));
2644
2645 brw_pop_insn_state(p);
2646
2647 surface = addr;
2648 }
2649
2650 insn = brw_send_indirect_message(p, sfid, dst, payload, surface);
2651 brw_inst_set_mlen(devinfo, insn, message_len);
2652 brw_inst_set_rlen(devinfo, insn, response_len);
2653 brw_inst_set_header_present(devinfo, insn, header_present);
2654
2655 return insn;
2656 }
2657
2658 static bool
2659 while_jumps_before_offset(const struct brw_device_info *devinfo,
2660 brw_inst *insn, int while_offset, int start_offset)
2661 {
2662 int scale = 16 / brw_jump_scale(devinfo);
2663 int jip = devinfo->gen == 6 ? brw_inst_gen6_jump_count(devinfo, insn)
2664 : brw_inst_jip(devinfo, insn);
2665 return while_offset + jip * scale <= start_offset;
2666 }
2667
2668
2669 static int
2670 brw_find_next_block_end(struct brw_codegen *p, int start_offset)
2671 {
2672 int offset;
2673 void *store = p->store;
2674 const struct brw_device_info *devinfo = p->devinfo;
2675
2676 int depth = 0;
2677
2678 for (offset = next_offset(devinfo, store, start_offset);
2679 offset < p->next_insn_offset;
2680 offset = next_offset(devinfo, store, offset)) {
2681 brw_inst *insn = store + offset;
2682
2683 switch (brw_inst_opcode(devinfo, insn)) {
2684 case BRW_OPCODE_IF:
2685 depth++;
2686 break;
2687 case BRW_OPCODE_ENDIF:
2688 if (depth == 0)
2689 return offset;
2690 depth--;
2691 break;
2692 case BRW_OPCODE_WHILE:
2693 /* If the while doesn't jump before our instruction, it's the end
2694 * of a sibling do...while loop. Ignore it.
2695 */
2696 if (!while_jumps_before_offset(devinfo, insn, offset, start_offset))
2697 continue;
2698 case BRW_OPCODE_ELSE:
2699 case BRW_OPCODE_HALT:
2700 if (depth == 0)
2701 return offset;
2702 }
2703 }
2704
2705 return 0;
2706 }
2707
2708 /* There is no DO instruction on gen6, so to find the end of the loop
2709 * we have to see if the loop is jumping back before our start
2710 * instruction.
2711 */
2712 static int
2713 brw_find_loop_end(struct brw_codegen *p, int start_offset)
2714 {
2715 const struct brw_device_info *devinfo = p->devinfo;
2716 int offset;
2717 void *store = p->store;
2718
2719 assert(devinfo->gen >= 6);
2720
2721 /* Always start after the instruction (such as a WHILE) we're trying to fix
2722 * up.
2723 */
2724 for (offset = next_offset(devinfo, store, start_offset);
2725 offset < p->next_insn_offset;
2726 offset = next_offset(devinfo, store, offset)) {
2727 brw_inst *insn = store + offset;
2728
2729 if (brw_inst_opcode(devinfo, insn) == BRW_OPCODE_WHILE) {
2730 if (while_jumps_before_offset(devinfo, insn, offset, start_offset))
2731 return offset;
2732 }
2733 }
2734 assert(!"not reached");
2735 return start_offset;
2736 }
2737
2738 /* After program generation, go back and update the UIP and JIP of
2739 * BREAK, CONT, and HALT instructions to their correct locations.
2740 */
2741 void
2742 brw_set_uip_jip(struct brw_codegen *p)
2743 {
2744 const struct brw_device_info *devinfo = p->devinfo;
2745 int offset;
2746 int br = brw_jump_scale(devinfo);
2747 int scale = 16 / br;
2748 void *store = p->store;
2749
2750 if (devinfo->gen < 6)
2751 return;
2752
2753 for (offset = 0; offset < p->next_insn_offset;
2754 offset = next_offset(devinfo, store, offset)) {
2755 brw_inst *insn = store + offset;
2756
2757 if (brw_inst_cmpt_control(devinfo, insn)) {
2758 /* Fixups for compacted BREAK/CONTINUE not supported yet. */
2759 assert(brw_inst_opcode(devinfo, insn) != BRW_OPCODE_BREAK &&
2760 brw_inst_opcode(devinfo, insn) != BRW_OPCODE_CONTINUE &&
2761 brw_inst_opcode(devinfo, insn) != BRW_OPCODE_HALT);
2762 continue;
2763 }
2764
2765 int block_end_offset = brw_find_next_block_end(p, offset);
2766 switch (brw_inst_opcode(devinfo, insn)) {
2767 case BRW_OPCODE_BREAK:
2768 assert(block_end_offset != 0);
2769 brw_inst_set_jip(devinfo, insn, (block_end_offset - offset) / scale);
2770 /* Gen7 UIP points to WHILE; Gen6 points just after it */
2771 brw_inst_set_uip(devinfo, insn,
2772 (brw_find_loop_end(p, offset) - offset +
2773 (devinfo->gen == 6 ? 16 : 0)) / scale);
2774 break;
2775 case BRW_OPCODE_CONTINUE:
2776 assert(block_end_offset != 0);
2777 brw_inst_set_jip(devinfo, insn, (block_end_offset - offset) / scale);
2778 brw_inst_set_uip(devinfo, insn,
2779 (brw_find_loop_end(p, offset) - offset) / scale);
2780
2781 assert(brw_inst_uip(devinfo, insn) != 0);
2782 assert(brw_inst_jip(devinfo, insn) != 0);
2783 break;
2784
2785 case BRW_OPCODE_ENDIF: {
2786 int32_t jump = (block_end_offset == 0) ?
2787 1 * br : (block_end_offset - offset) / scale;
2788 if (devinfo->gen >= 7)
2789 brw_inst_set_jip(devinfo, insn, jump);
2790 else
2791 brw_inst_set_gen6_jump_count(devinfo, insn, jump);
2792 break;
2793 }
2794
2795 case BRW_OPCODE_HALT:
2796 /* From the Sandy Bridge PRM (volume 4, part 2, section 8.3.19):
2797 *
2798 * "In case of the halt instruction not inside any conditional
2799 * code block, the value of <JIP> and <UIP> should be the
2800 * same. In case of the halt instruction inside conditional code
2801 * block, the <UIP> should be the end of the program, and the
2802 * <JIP> should be end of the most inner conditional code block."
2803 *
2804 * The uip will have already been set by whoever set up the
2805 * instruction.
2806 */
2807 if (block_end_offset == 0) {
2808 brw_inst_set_jip(devinfo, insn, brw_inst_uip(devinfo, insn));
2809 } else {
2810 brw_inst_set_jip(devinfo, insn, (block_end_offset - offset) / scale);
2811 }
2812 assert(brw_inst_uip(devinfo, insn) != 0);
2813 assert(brw_inst_jip(devinfo, insn) != 0);
2814 break;
2815 }
2816 }
2817 }
2818
2819 void brw_ff_sync(struct brw_codegen *p,
2820 struct brw_reg dest,
2821 unsigned msg_reg_nr,
2822 struct brw_reg src0,
2823 bool allocate,
2824 unsigned response_length,
2825 bool eot)
2826 {
2827 const struct brw_device_info *devinfo = p->devinfo;
2828 brw_inst *insn;
2829
2830 gen6_resolve_implied_move(p, &src0, msg_reg_nr);
2831
2832 insn = next_insn(p, BRW_OPCODE_SEND);
2833 brw_set_dest(p, insn, dest);
2834 brw_set_src0(p, insn, src0);
2835 brw_set_src1(p, insn, brw_imm_d(0));
2836
2837 if (devinfo->gen < 6)
2838 brw_inst_set_base_mrf(devinfo, insn, msg_reg_nr);
2839
2840 brw_set_ff_sync_message(p,
2841 insn,
2842 allocate,
2843 response_length,
2844 eot);
2845 }
2846
2847 /**
2848 * Emit the SEND instruction necessary to generate stream output data on Gen6
2849 * (for transform feedback).
2850 *
2851 * If send_commit_msg is true, this is the last piece of stream output data
2852 * from this thread, so send the data as a committed write. According to the
2853 * Sandy Bridge PRM (volume 2 part 1, section 4.5.1):
2854 *
2855 * "Prior to End of Thread with a URB_WRITE, the kernel must ensure all
2856 * writes are complete by sending the final write as a committed write."
2857 */
2858 void
2859 brw_svb_write(struct brw_codegen *p,
2860 struct brw_reg dest,
2861 unsigned msg_reg_nr,
2862 struct brw_reg src0,
2863 unsigned binding_table_index,
2864 bool send_commit_msg)
2865 {
2866 brw_inst *insn;
2867
2868 gen6_resolve_implied_move(p, &src0, msg_reg_nr);
2869
2870 insn = next_insn(p, BRW_OPCODE_SEND);
2871 brw_set_dest(p, insn, dest);
2872 brw_set_src0(p, insn, src0);
2873 brw_set_src1(p, insn, brw_imm_d(0));
2874 brw_set_dp_write_message(p, insn,
2875 binding_table_index,
2876 0, /* msg_control: ignored */
2877 GEN6_DATAPORT_WRITE_MESSAGE_STREAMED_VB_WRITE,
2878 1, /* msg_length */
2879 true, /* header_present */
2880 0, /* last_render_target: ignored */
2881 send_commit_msg, /* response_length */
2882 0, /* end_of_thread */
2883 send_commit_msg); /* send_commit_msg */
2884 }
2885
2886 static unsigned
2887 brw_surface_payload_size(struct brw_codegen *p,
2888 unsigned num_channels,
2889 bool has_simd4x2,
2890 bool has_simd16)
2891 {
2892 if (has_simd4x2 && brw_inst_access_mode(p->devinfo, p->current) == BRW_ALIGN_16)
2893 return 1;
2894 else if (has_simd16 && p->compressed)
2895 return 2 * num_channels;
2896 else
2897 return num_channels;
2898 }
2899
2900 static void
2901 brw_set_dp_untyped_atomic_message(struct brw_codegen *p,
2902 brw_inst *insn,
2903 unsigned atomic_op,
2904 bool response_expected)
2905 {
2906 const struct brw_device_info *devinfo = p->devinfo;
2907 unsigned msg_control =
2908 atomic_op | /* Atomic Operation Type: BRW_AOP_* */
2909 (response_expected ? 1 << 5 : 0); /* Return data expected */
2910
2911 if (devinfo->gen >= 8 || devinfo->is_haswell) {
2912 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
2913 if (!p->compressed)
2914 msg_control |= 1 << 4; /* SIMD8 mode */
2915
2916 brw_inst_set_dp_msg_type(devinfo, insn,
2917 HSW_DATAPORT_DC_PORT1_UNTYPED_ATOMIC_OP);
2918 } else {
2919 brw_inst_set_dp_msg_type(devinfo, insn,
2920 HSW_DATAPORT_DC_PORT1_UNTYPED_ATOMIC_OP_SIMD4X2);
2921 }
2922 } else {
2923 brw_inst_set_dp_msg_type(devinfo, insn,
2924 GEN7_DATAPORT_DC_UNTYPED_ATOMIC_OP);
2925
2926 if (!p->compressed)
2927 msg_control |= 1 << 4; /* SIMD8 mode */
2928 }
2929
2930 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
2931 }
2932
2933 void
2934 brw_untyped_atomic(struct brw_codegen *p,
2935 struct brw_reg dst,
2936 struct brw_reg payload,
2937 struct brw_reg surface,
2938 unsigned atomic_op,
2939 unsigned msg_length,
2940 bool response_expected)
2941 {
2942 const struct brw_device_info *devinfo = p->devinfo;
2943 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
2944 HSW_SFID_DATAPORT_DATA_CACHE_1 :
2945 GEN7_SFID_DATAPORT_DATA_CACHE);
2946 const bool align1 = brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1;
2947 /* Mask out unused components -- This is especially important in Align16
2948 * mode on generations that don't have native support for SIMD4x2 atomics,
2949 * because unused but enabled components will cause the dataport to perform
2950 * additional atomic operations on the addresses that happen to be in the
2951 * uninitialized Y, Z and W coordinates of the payload.
2952 */
2953 const unsigned mask = align1 ? WRITEMASK_XYZW : WRITEMASK_X;
2954 struct brw_inst *insn = brw_send_indirect_surface_message(
2955 p, sfid, brw_writemask(dst, mask), payload, surface, msg_length,
2956 brw_surface_payload_size(p, response_expected,
2957 devinfo->gen >= 8 || devinfo->is_haswell, true),
2958 align1);
2959
2960 brw_set_dp_untyped_atomic_message(
2961 p, insn, atomic_op, response_expected);
2962 }
2963
2964 static void
2965 brw_set_dp_untyped_surface_read_message(struct brw_codegen *p,
2966 struct brw_inst *insn,
2967 unsigned num_channels)
2968 {
2969 const struct brw_device_info *devinfo = p->devinfo;
2970 /* Set mask of 32-bit channels to drop. */
2971 unsigned msg_control = 0xf & (0xf << num_channels);
2972
2973 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
2974 if (p->compressed)
2975 msg_control |= 1 << 4; /* SIMD16 mode */
2976 else
2977 msg_control |= 2 << 4; /* SIMD8 mode */
2978 }
2979
2980 brw_inst_set_dp_msg_type(devinfo, insn,
2981 (devinfo->gen >= 8 || devinfo->is_haswell ?
2982 HSW_DATAPORT_DC_PORT1_UNTYPED_SURFACE_READ :
2983 GEN7_DATAPORT_DC_UNTYPED_SURFACE_READ));
2984 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
2985 }
2986
2987 void
2988 brw_untyped_surface_read(struct brw_codegen *p,
2989 struct brw_reg dst,
2990 struct brw_reg payload,
2991 struct brw_reg surface,
2992 unsigned msg_length,
2993 unsigned num_channels)
2994 {
2995 const struct brw_device_info *devinfo = p->devinfo;
2996 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
2997 HSW_SFID_DATAPORT_DATA_CACHE_1 :
2998 GEN7_SFID_DATAPORT_DATA_CACHE);
2999 struct brw_inst *insn = brw_send_indirect_surface_message(
3000 p, sfid, dst, payload, surface, msg_length,
3001 brw_surface_payload_size(p, num_channels, true, true),
3002 false);
3003
3004 brw_set_dp_untyped_surface_read_message(
3005 p, insn, num_channels);
3006 }
3007
3008 static void
3009 brw_set_dp_untyped_surface_write_message(struct brw_codegen *p,
3010 struct brw_inst *insn,
3011 unsigned num_channels)
3012 {
3013 const struct brw_device_info *devinfo = p->devinfo;
3014 /* Set mask of 32-bit channels to drop. */
3015 unsigned msg_control = 0xf & (0xf << num_channels);
3016
3017 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3018 if (p->compressed)
3019 msg_control |= 1 << 4; /* SIMD16 mode */
3020 else
3021 msg_control |= 2 << 4; /* SIMD8 mode */
3022 } else {
3023 if (devinfo->gen >= 8 || devinfo->is_haswell)
3024 msg_control |= 0 << 4; /* SIMD4x2 mode */
3025 else
3026 msg_control |= 2 << 4; /* SIMD8 mode */
3027 }
3028
3029 brw_inst_set_dp_msg_type(devinfo, insn,
3030 devinfo->gen >= 8 || devinfo->is_haswell ?
3031 HSW_DATAPORT_DC_PORT1_UNTYPED_SURFACE_WRITE :
3032 GEN7_DATAPORT_DC_UNTYPED_SURFACE_WRITE);
3033 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
3034 }
3035
3036 void
3037 brw_untyped_surface_write(struct brw_codegen *p,
3038 struct brw_reg payload,
3039 struct brw_reg surface,
3040 unsigned msg_length,
3041 unsigned num_channels)
3042 {
3043 const struct brw_device_info *devinfo = p->devinfo;
3044 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
3045 HSW_SFID_DATAPORT_DATA_CACHE_1 :
3046 GEN7_SFID_DATAPORT_DATA_CACHE);
3047 const bool align1 = brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1;
3048 /* Mask out unused components -- See comment in brw_untyped_atomic(). */
3049 const unsigned mask = devinfo->gen == 7 && !devinfo->is_haswell && !align1 ?
3050 WRITEMASK_X : WRITEMASK_XYZW;
3051 struct brw_inst *insn = brw_send_indirect_surface_message(
3052 p, sfid, brw_writemask(brw_null_reg(), mask),
3053 payload, surface, msg_length, 0, align1);
3054
3055 brw_set_dp_untyped_surface_write_message(
3056 p, insn, num_channels);
3057 }
3058
3059 static void
3060 brw_set_dp_typed_atomic_message(struct brw_codegen *p,
3061 struct brw_inst *insn,
3062 unsigned atomic_op,
3063 bool response_expected)
3064 {
3065 const struct brw_device_info *devinfo = p->devinfo;
3066 unsigned msg_control =
3067 atomic_op | /* Atomic Operation Type: BRW_AOP_* */
3068 (response_expected ? 1 << 5 : 0); /* Return data expected */
3069
3070 if (devinfo->gen >= 8 || devinfo->is_haswell) {
3071 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3072 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3073 msg_control |= 1 << 4; /* Use high 8 slots of the sample mask */
3074
3075 brw_inst_set_dp_msg_type(devinfo, insn,
3076 HSW_DATAPORT_DC_PORT1_TYPED_ATOMIC_OP);
3077 } else {
3078 brw_inst_set_dp_msg_type(devinfo, insn,
3079 HSW_DATAPORT_DC_PORT1_TYPED_ATOMIC_OP_SIMD4X2);
3080 }
3081
3082 } else {
3083 brw_inst_set_dp_msg_type(devinfo, insn,
3084 GEN7_DATAPORT_RC_TYPED_ATOMIC_OP);
3085
3086 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3087 msg_control |= 1 << 4; /* Use high 8 slots of the sample mask */
3088 }
3089
3090 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
3091 }
3092
3093 void
3094 brw_typed_atomic(struct brw_codegen *p,
3095 struct brw_reg dst,
3096 struct brw_reg payload,
3097 struct brw_reg surface,
3098 unsigned atomic_op,
3099 unsigned msg_length,
3100 bool response_expected) {
3101 const struct brw_device_info *devinfo = p->devinfo;
3102 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
3103 HSW_SFID_DATAPORT_DATA_CACHE_1 :
3104 GEN6_SFID_DATAPORT_RENDER_CACHE);
3105 const bool align1 = (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1);
3106 /* Mask out unused components -- See comment in brw_untyped_atomic(). */
3107 const unsigned mask = align1 ? WRITEMASK_XYZW : WRITEMASK_X;
3108 struct brw_inst *insn = brw_send_indirect_surface_message(
3109 p, sfid, brw_writemask(dst, mask), payload, surface, msg_length,
3110 brw_surface_payload_size(p, response_expected,
3111 devinfo->gen >= 8 || devinfo->is_haswell, false),
3112 true);
3113
3114 brw_set_dp_typed_atomic_message(
3115 p, insn, atomic_op, response_expected);
3116 }
3117
3118 static void
3119 brw_set_dp_typed_surface_read_message(struct brw_codegen *p,
3120 struct brw_inst *insn,
3121 unsigned num_channels)
3122 {
3123 const struct brw_device_info *devinfo = p->devinfo;
3124 /* Set mask of unused channels. */
3125 unsigned msg_control = 0xf & (0xf << num_channels);
3126
3127 if (devinfo->gen >= 8 || devinfo->is_haswell) {
3128 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3129 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3130 msg_control |= 2 << 4; /* Use high 8 slots of the sample mask */
3131 else
3132 msg_control |= 1 << 4; /* Use low 8 slots of the sample mask */
3133 }
3134
3135 brw_inst_set_dp_msg_type(devinfo, insn,
3136 HSW_DATAPORT_DC_PORT1_TYPED_SURFACE_READ);
3137 } else {
3138 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3139 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3140 msg_control |= 1 << 5; /* Use high 8 slots of the sample mask */
3141 }
3142
3143 brw_inst_set_dp_msg_type(devinfo, insn,
3144 GEN7_DATAPORT_RC_TYPED_SURFACE_READ);
3145 }
3146
3147 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
3148 }
3149
3150 void
3151 brw_typed_surface_read(struct brw_codegen *p,
3152 struct brw_reg dst,
3153 struct brw_reg payload,
3154 struct brw_reg surface,
3155 unsigned msg_length,
3156 unsigned num_channels)
3157 {
3158 const struct brw_device_info *devinfo = p->devinfo;
3159 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
3160 HSW_SFID_DATAPORT_DATA_CACHE_1 :
3161 GEN6_SFID_DATAPORT_RENDER_CACHE);
3162 struct brw_inst *insn = brw_send_indirect_surface_message(
3163 p, sfid, dst, payload, surface, msg_length,
3164 brw_surface_payload_size(p, num_channels,
3165 devinfo->gen >= 8 || devinfo->is_haswell, false),
3166 true);
3167
3168 brw_set_dp_typed_surface_read_message(
3169 p, insn, num_channels);
3170 }
3171
3172 static void
3173 brw_set_dp_typed_surface_write_message(struct brw_codegen *p,
3174 struct brw_inst *insn,
3175 unsigned num_channels)
3176 {
3177 const struct brw_device_info *devinfo = p->devinfo;
3178 /* Set mask of unused channels. */
3179 unsigned msg_control = 0xf & (0xf << num_channels);
3180
3181 if (devinfo->gen >= 8 || devinfo->is_haswell) {
3182 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3183 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3184 msg_control |= 2 << 4; /* Use high 8 slots of the sample mask */
3185 else
3186 msg_control |= 1 << 4; /* Use low 8 slots of the sample mask */
3187 }
3188
3189 brw_inst_set_dp_msg_type(devinfo, insn,
3190 HSW_DATAPORT_DC_PORT1_TYPED_SURFACE_WRITE);
3191
3192 } else {
3193 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3194 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3195 msg_control |= 1 << 5; /* Use high 8 slots of the sample mask */
3196 }
3197
3198 brw_inst_set_dp_msg_type(devinfo, insn,
3199 GEN7_DATAPORT_RC_TYPED_SURFACE_WRITE);
3200 }
3201
3202 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
3203 }
3204
3205 void
3206 brw_typed_surface_write(struct brw_codegen *p,
3207 struct brw_reg payload,
3208 struct brw_reg surface,
3209 unsigned msg_length,
3210 unsigned num_channels)
3211 {
3212 const struct brw_device_info *devinfo = p->devinfo;
3213 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
3214 HSW_SFID_DATAPORT_DATA_CACHE_1 :
3215 GEN6_SFID_DATAPORT_RENDER_CACHE);
3216 const bool align1 = (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1);
3217 /* Mask out unused components -- See comment in brw_untyped_atomic(). */
3218 const unsigned mask = (devinfo->gen == 7 && !devinfo->is_haswell && !align1 ?
3219 WRITEMASK_X : WRITEMASK_XYZW);
3220 struct brw_inst *insn = brw_send_indirect_surface_message(
3221 p, sfid, brw_writemask(brw_null_reg(), mask),
3222 payload, surface, msg_length, 0, true);
3223
3224 brw_set_dp_typed_surface_write_message(
3225 p, insn, num_channels);
3226 }
3227
3228 static void
3229 brw_set_memory_fence_message(struct brw_codegen *p,
3230 struct brw_inst *insn,
3231 enum brw_message_target sfid,
3232 bool commit_enable)
3233 {
3234 const struct brw_device_info *devinfo = p->devinfo;
3235
3236 brw_set_message_descriptor(p, insn, sfid,
3237 1 /* message length */,
3238 (commit_enable ? 1 : 0) /* response length */,
3239 true /* header present */,
3240 false);
3241
3242 switch (sfid) {
3243 case GEN6_SFID_DATAPORT_RENDER_CACHE:
3244 brw_inst_set_dp_msg_type(devinfo, insn, GEN7_DATAPORT_RC_MEMORY_FENCE);
3245 break;
3246 case GEN7_SFID_DATAPORT_DATA_CACHE:
3247 brw_inst_set_dp_msg_type(devinfo, insn, GEN7_DATAPORT_DC_MEMORY_FENCE);
3248 break;
3249 default:
3250 unreachable("Not reached");
3251 }
3252
3253 if (commit_enable)
3254 brw_inst_set_dp_msg_control(devinfo, insn, 1 << 5);
3255 }
3256
3257 void
3258 brw_memory_fence(struct brw_codegen *p,
3259 struct brw_reg dst)
3260 {
3261 const struct brw_device_info *devinfo = p->devinfo;
3262 const bool commit_enable = devinfo->gen == 7 && !devinfo->is_haswell;
3263 struct brw_inst *insn;
3264
3265 /* Set dst as destination for dependency tracking, the MEMORY_FENCE
3266 * message doesn't write anything back.
3267 */
3268 insn = next_insn(p, BRW_OPCODE_SEND);
3269 dst = retype(dst, BRW_REGISTER_TYPE_UW);
3270 brw_set_dest(p, insn, dst);
3271 brw_set_src0(p, insn, dst);
3272 brw_set_memory_fence_message(p, insn, GEN7_SFID_DATAPORT_DATA_CACHE,
3273 commit_enable);
3274
3275 if (devinfo->gen == 7 && !devinfo->is_haswell) {
3276 /* IVB does typed surface access through the render cache, so we need to
3277 * flush it too. Use a different register so both flushes can be
3278 * pipelined by the hardware.
3279 */
3280 insn = next_insn(p, BRW_OPCODE_SEND);
3281 brw_set_dest(p, insn, offset(dst, 1));
3282 brw_set_src0(p, insn, offset(dst, 1));
3283 brw_set_memory_fence_message(p, insn, GEN6_SFID_DATAPORT_RENDER_CACHE,
3284 commit_enable);
3285
3286 /* Now write the response of the second message into the response of the
3287 * first to trigger a pipeline stall -- This way future render and data
3288 * cache messages will be properly ordered with respect to past data and
3289 * render cache messages.
3290 */
3291 brw_push_insn_state(p);
3292 brw_set_default_compression_control(p, BRW_COMPRESSION_NONE);
3293 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
3294 brw_MOV(p, dst, offset(dst, 1));
3295 brw_pop_insn_state(p);
3296 }
3297 }
3298
3299 void
3300 brw_pixel_interpolator_query(struct brw_codegen *p,
3301 struct brw_reg dest,
3302 struct brw_reg mrf,
3303 bool noperspective,
3304 unsigned mode,
3305 struct brw_reg data,
3306 unsigned msg_length,
3307 unsigned response_length)
3308 {
3309 const struct brw_device_info *devinfo = p->devinfo;
3310 struct brw_inst *insn;
3311 const uint16_t exec_size = brw_inst_exec_size(devinfo, p->current);
3312
3313 /* brw_send_indirect_message will automatically use a direct send message
3314 * if data is actually immediate.
3315 */
3316 insn = brw_send_indirect_message(p,
3317 GEN7_SFID_PIXEL_INTERPOLATOR,
3318 dest,
3319 mrf,
3320 vec1(data));
3321 brw_inst_set_mlen(devinfo, insn, msg_length);
3322 brw_inst_set_rlen(devinfo, insn, response_length);
3323
3324 brw_inst_set_pi_simd_mode(devinfo, insn, exec_size == BRW_EXECUTE_16);
3325 brw_inst_set_pi_slot_group(devinfo, insn, 0); /* zero unless 32/64px dispatch */
3326 brw_inst_set_pi_nopersp(devinfo, insn, noperspective);
3327 brw_inst_set_pi_message_type(devinfo, insn, mode);
3328 }
3329
3330 void
3331 brw_find_live_channel(struct brw_codegen *p, struct brw_reg dst)
3332 {
3333 const struct brw_device_info *devinfo = p->devinfo;
3334 brw_inst *inst;
3335
3336 assert(devinfo->gen >= 7);
3337
3338 brw_push_insn_state(p);
3339
3340 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3341 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
3342
3343 if (devinfo->gen >= 8) {
3344 /* Getting the first active channel index is easy on Gen8: Just find
3345 * the first bit set in the mask register. The same register exists
3346 * on HSW already but it reads back as all ones when the current
3347 * instruction has execution masking disabled, so it's kind of
3348 * useless.
3349 */
3350 inst = brw_FBL(p, vec1(dst),
3351 retype(brw_mask_reg(0), BRW_REGISTER_TYPE_UD));
3352
3353 /* Quarter control has the effect of magically shifting the value of
3354 * this register. Make sure it's set to zero.
3355 */
3356 brw_inst_set_qtr_control(devinfo, inst, GEN6_COMPRESSION_1Q);
3357 } else {
3358 const struct brw_reg flag = retype(brw_flag_reg(1, 0),
3359 BRW_REGISTER_TYPE_UD);
3360
3361 brw_MOV(p, flag, brw_imm_ud(0));
3362
3363 /* Run a 16-wide instruction returning zero with execution masking
3364 * and a conditional modifier enabled in order to get the current
3365 * execution mask in f1.0.
3366 */
3367 inst = brw_MOV(p, brw_null_reg(), brw_imm_ud(0));
3368 brw_inst_set_exec_size(devinfo, inst, BRW_EXECUTE_16);
3369 brw_inst_set_mask_control(devinfo, inst, BRW_MASK_ENABLE);
3370 brw_inst_set_cond_modifier(devinfo, inst, BRW_CONDITIONAL_Z);
3371 brw_inst_set_flag_reg_nr(devinfo, inst, 1);
3372
3373 brw_FBL(p, vec1(dst), flag);
3374 }
3375 } else {
3376 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
3377
3378 if (devinfo->gen >= 8) {
3379 /* In SIMD4x2 mode the first active channel index is just the
3380 * negation of the first bit of the mask register.
3381 */
3382 inst = brw_AND(p, brw_writemask(dst, WRITEMASK_X),
3383 negate(retype(brw_mask_reg(0), BRW_REGISTER_TYPE_UD)),
3384 brw_imm_ud(1));
3385
3386 } else {
3387 /* Overwrite the destination without and with execution masking to
3388 * find out which of the channels is active.
3389 */
3390 brw_push_insn_state(p);
3391 brw_set_default_exec_size(p, BRW_EXECUTE_4);
3392 brw_MOV(p, brw_writemask(vec4(dst), WRITEMASK_X),
3393 brw_imm_ud(1));
3394
3395 inst = brw_MOV(p, brw_writemask(vec4(dst), WRITEMASK_X),
3396 brw_imm_ud(0));
3397 brw_pop_insn_state(p);
3398 brw_inst_set_mask_control(devinfo, inst, BRW_MASK_ENABLE);
3399 }
3400 }
3401
3402 brw_pop_insn_state(p);
3403 }
3404
3405 void
3406 brw_broadcast(struct brw_codegen *p,
3407 struct brw_reg dst,
3408 struct brw_reg src,
3409 struct brw_reg idx)
3410 {
3411 const struct brw_device_info *devinfo = p->devinfo;
3412 const bool align1 = brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1;
3413 brw_inst *inst;
3414
3415 assert(src.file == BRW_GENERAL_REGISTER_FILE &&
3416 src.address_mode == BRW_ADDRESS_DIRECT);
3417
3418 if ((src.vstride == 0 && (src.hstride == 0 || !align1)) ||
3419 idx.file == BRW_IMMEDIATE_VALUE) {
3420 /* Trivial, the source is already uniform or the index is a constant.
3421 * We will typically not get here if the optimizer is doing its job, but
3422 * asserting would be mean.
3423 */
3424 const unsigned i = idx.file == BRW_IMMEDIATE_VALUE ? idx.ud : 0;
3425 brw_MOV(p, dst,
3426 (align1 ? stride(suboffset(src, i), 0, 1, 0) :
3427 stride(suboffset(src, 4 * i), 0, 4, 1)));
3428 } else {
3429 if (align1) {
3430 const struct brw_reg addr =
3431 retype(brw_address_reg(0), BRW_REGISTER_TYPE_UD);
3432 const unsigned offset = src.nr * REG_SIZE + src.subnr;
3433 /* Limit in bytes of the signed indirect addressing immediate. */
3434 const unsigned limit = 512;
3435
3436 brw_push_insn_state(p);
3437 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
3438 brw_set_default_predicate_control(p, BRW_PREDICATE_NONE);
3439
3440 /* Take into account the component size and horizontal stride. */
3441 assert(src.vstride == src.hstride + src.width);
3442 brw_SHL(p, addr, vec1(idx),
3443 brw_imm_ud(_mesa_logbase2(type_sz(src.type)) +
3444 src.hstride - 1));
3445
3446 /* We can only address up to limit bytes using the indirect
3447 * addressing immediate, account for the difference if the source
3448 * register is above this limit.
3449 */
3450 if (offset >= limit)
3451 brw_ADD(p, addr, addr, brw_imm_ud(offset - offset % limit));
3452
3453 brw_pop_insn_state(p);
3454
3455 /* Use indirect addressing to fetch the specified component. */
3456 brw_MOV(p, dst,
3457 retype(brw_vec1_indirect(addr.subnr, offset % limit),
3458 src.type));
3459 } else {
3460 /* In SIMD4x2 mode the index can be either zero or one, replicate it
3461 * to all bits of a flag register,
3462 */
3463 inst = brw_MOV(p,
3464 brw_null_reg(),
3465 stride(brw_swizzle(idx, BRW_SWIZZLE_XXXX), 0, 4, 1));
3466 brw_inst_set_pred_control(devinfo, inst, BRW_PREDICATE_NONE);
3467 brw_inst_set_cond_modifier(devinfo, inst, BRW_CONDITIONAL_NZ);
3468 brw_inst_set_flag_reg_nr(devinfo, inst, 1);
3469
3470 /* and use predicated SEL to pick the right channel. */
3471 inst = brw_SEL(p, dst,
3472 stride(suboffset(src, 4), 0, 4, 1),
3473 stride(src, 0, 4, 1));
3474 brw_inst_set_pred_control(devinfo, inst, BRW_PREDICATE_NORMAL);
3475 brw_inst_set_flag_reg_nr(devinfo, inst, 1);
3476 }
3477 }
3478 }
3479
3480 /**
3481 * This instruction is generated as a single-channel align1 instruction by
3482 * both the VS and FS stages when using INTEL_DEBUG=shader_time.
3483 *
3484 * We can't use the typed atomic op in the FS because that has the execution
3485 * mask ANDed with the pixel mask, but we just want to write the one dword for
3486 * all the pixels.
3487 *
3488 * We don't use the SIMD4x2 atomic ops in the VS because want to just write
3489 * one u32. So we use the same untyped atomic write message as the pixel
3490 * shader.
3491 *
3492 * The untyped atomic operation requires a BUFFER surface type with RAW
3493 * format, and is only accessible through the legacy DATA_CACHE dataport
3494 * messages.
3495 */
3496 void brw_shader_time_add(struct brw_codegen *p,
3497 struct brw_reg payload,
3498 uint32_t surf_index)
3499 {
3500 const unsigned sfid = (p->devinfo->gen >= 8 || p->devinfo->is_haswell ?
3501 HSW_SFID_DATAPORT_DATA_CACHE_1 :
3502 GEN7_SFID_DATAPORT_DATA_CACHE);
3503 assert(p->devinfo->gen >= 7);
3504
3505 brw_push_insn_state(p);
3506 brw_set_default_access_mode(p, BRW_ALIGN_1);
3507 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
3508 brw_set_default_compression_control(p, BRW_COMPRESSION_NONE);
3509 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND);
3510
3511 /* We use brw_vec1_reg and unmasked because we want to increment the given
3512 * offset only once.
3513 */
3514 brw_set_dest(p, send, brw_vec1_reg(BRW_ARCHITECTURE_REGISTER_FILE,
3515 BRW_ARF_NULL, 0));
3516 brw_set_src0(p, send, brw_vec1_reg(payload.file,
3517 payload.nr, 0));
3518 brw_set_src1(p, send, brw_imm_ud(0));
3519 brw_set_message_descriptor(p, send, sfid, 2, 0, false, false);
3520 brw_inst_set_binding_table_index(p->devinfo, send, surf_index);
3521 brw_set_dp_untyped_atomic_message(p, send, BRW_AOP_ADD, false);
3522
3523 brw_pop_insn_state(p);
3524 }
3525
3526
3527 /**
3528 * Emit the SEND message for a barrier
3529 */
3530 void
3531 brw_barrier(struct brw_codegen *p, struct brw_reg src)
3532 {
3533 const struct brw_device_info *devinfo = p->devinfo;
3534 struct brw_inst *inst;
3535
3536 assert(devinfo->gen >= 7);
3537
3538 inst = next_insn(p, BRW_OPCODE_SEND);
3539 brw_set_dest(p, inst, retype(brw_null_reg(), BRW_REGISTER_TYPE_UW));
3540 brw_set_src0(p, inst, src);
3541 brw_set_src1(p, inst, brw_null_reg());
3542
3543 brw_set_message_descriptor(p, inst, BRW_SFID_MESSAGE_GATEWAY,
3544 1 /* msg_length */,
3545 0 /* response_length */,
3546 false /* header_present */,
3547 false /* end_of_thread */);
3548
3549 brw_inst_set_gateway_notify(devinfo, inst, 1);
3550 brw_inst_set_gateway_subfuncid(devinfo, inst,
3551 BRW_MESSAGE_GATEWAY_SFID_BARRIER_MSG);
3552
3553 brw_inst_set_mask_control(devinfo, inst, BRW_MASK_DISABLE);
3554 }
3555
3556
3557 /**
3558 * Emit the wait instruction for a barrier
3559 */
3560 void
3561 brw_WAIT(struct brw_codegen *p)
3562 {
3563 const struct brw_device_info *devinfo = p->devinfo;
3564 struct brw_inst *insn;
3565
3566 struct brw_reg src = brw_notification_reg();
3567
3568 insn = next_insn(p, BRW_OPCODE_WAIT);
3569 brw_set_dest(p, insn, src);
3570 brw_set_src0(p, insn, src);
3571 brw_set_src1(p, insn, brw_null_reg());
3572
3573 brw_inst_set_exec_size(devinfo, insn, BRW_EXECUTE_1);
3574 brw_inst_set_mask_control(devinfo, insn, BRW_MASK_DISABLE);
3575 }