ccc564f38f9a4ed440ab7457c54d105c8e54ff4d
[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,
1415 brw_inst_exec_size(devinfo, p->current));
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,
1702 brw_inst_exec_size(devinfo, p->current));
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,
1728 brw_inst_exec_size(devinfo, p->current));
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 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
1748 brw_inst_set_exec_size(devinfo, insn,
1749 brw_inst_exec_size(devinfo, p->current));
1750 return insn;
1751 }
1752
1753 /* DO/WHILE loop:
1754 *
1755 * The DO/WHILE is just an unterminated loop -- break or continue are
1756 * used for control within the loop. We have a few ways they can be
1757 * done.
1758 *
1759 * For uniform control flow, the WHILE is just a jump, so ADD ip, ip,
1760 * jip and no DO instruction.
1761 *
1762 * For non-uniform control flow pre-gen6, there's a DO instruction to
1763 * push the mask, and a WHILE to jump back, and BREAK to get out and
1764 * pop the mask.
1765 *
1766 * For gen6, there's no more mask stack, so no need for DO. WHILE
1767 * just points back to the first instruction of the loop.
1768 */
1769 brw_inst *
1770 brw_DO(struct brw_codegen *p, unsigned execute_size)
1771 {
1772 const struct brw_device_info *devinfo = p->devinfo;
1773
1774 if (devinfo->gen >= 6 || p->single_program_flow) {
1775 push_loop_stack(p, &p->store[p->nr_insn]);
1776 return &p->store[p->nr_insn];
1777 } else {
1778 brw_inst *insn = next_insn(p, BRW_OPCODE_DO);
1779
1780 push_loop_stack(p, insn);
1781
1782 /* Override the defaults for this instruction:
1783 */
1784 brw_set_dest(p, insn, brw_null_reg());
1785 brw_set_src0(p, insn, brw_null_reg());
1786 brw_set_src1(p, insn, brw_null_reg());
1787
1788 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
1789 brw_inst_set_exec_size(devinfo, insn, execute_size);
1790 brw_inst_set_pred_control(devinfo, insn, BRW_PREDICATE_NONE);
1791
1792 return insn;
1793 }
1794 }
1795
1796 /**
1797 * For pre-gen6, we patch BREAK/CONT instructions to point at the WHILE
1798 * instruction here.
1799 *
1800 * For gen6+, see brw_set_uip_jip(), which doesn't care so much about the loop
1801 * nesting, since it can always just point to the end of the block/current loop.
1802 */
1803 static void
1804 brw_patch_break_cont(struct brw_codegen *p, brw_inst *while_inst)
1805 {
1806 const struct brw_device_info *devinfo = p->devinfo;
1807 brw_inst *do_inst = get_inner_do_insn(p);
1808 brw_inst *inst;
1809 unsigned br = brw_jump_scale(devinfo);
1810
1811 assert(devinfo->gen < 6);
1812
1813 for (inst = while_inst - 1; inst != do_inst; inst--) {
1814 /* If the jump count is != 0, that means that this instruction has already
1815 * been patched because it's part of a loop inside of the one we're
1816 * patching.
1817 */
1818 if (brw_inst_opcode(devinfo, inst) == BRW_OPCODE_BREAK &&
1819 brw_inst_gen4_jump_count(devinfo, inst) == 0) {
1820 brw_inst_set_gen4_jump_count(devinfo, inst, br*((while_inst - inst) + 1));
1821 } else if (brw_inst_opcode(devinfo, inst) == BRW_OPCODE_CONTINUE &&
1822 brw_inst_gen4_jump_count(devinfo, inst) == 0) {
1823 brw_inst_set_gen4_jump_count(devinfo, inst, br * (while_inst - inst));
1824 }
1825 }
1826 }
1827
1828 brw_inst *
1829 brw_WHILE(struct brw_codegen *p)
1830 {
1831 const struct brw_device_info *devinfo = p->devinfo;
1832 brw_inst *insn, *do_insn;
1833 unsigned br = brw_jump_scale(devinfo);
1834
1835 if (devinfo->gen >= 6) {
1836 insn = next_insn(p, BRW_OPCODE_WHILE);
1837 do_insn = get_inner_do_insn(p);
1838
1839 if (devinfo->gen >= 8) {
1840 brw_set_dest(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1841 brw_set_src0(p, insn, brw_imm_d(0));
1842 brw_inst_set_jip(devinfo, insn, br * (do_insn - insn));
1843 } else if (devinfo->gen == 7) {
1844 brw_set_dest(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1845 brw_set_src0(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1846 brw_set_src1(p, insn, brw_imm_w(0));
1847 brw_inst_set_jip(devinfo, insn, br * (do_insn - insn));
1848 } else {
1849 brw_set_dest(p, insn, brw_imm_w(0));
1850 brw_inst_set_gen6_jump_count(devinfo, insn, br * (do_insn - insn));
1851 brw_set_src0(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1852 brw_set_src1(p, insn, retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
1853 }
1854
1855 brw_inst_set_exec_size(devinfo, insn,
1856 brw_inst_exec_size(devinfo, p->current));
1857
1858 } else {
1859 if (p->single_program_flow) {
1860 insn = next_insn(p, BRW_OPCODE_ADD);
1861 do_insn = get_inner_do_insn(p);
1862
1863 brw_set_dest(p, insn, brw_ip_reg());
1864 brw_set_src0(p, insn, brw_ip_reg());
1865 brw_set_src1(p, insn, brw_imm_d((do_insn - insn) * 16));
1866 brw_inst_set_exec_size(devinfo, insn, BRW_EXECUTE_1);
1867 } else {
1868 insn = next_insn(p, BRW_OPCODE_WHILE);
1869 do_insn = get_inner_do_insn(p);
1870
1871 assert(brw_inst_opcode(devinfo, do_insn) == BRW_OPCODE_DO);
1872
1873 brw_set_dest(p, insn, brw_ip_reg());
1874 brw_set_src0(p, insn, brw_ip_reg());
1875 brw_set_src1(p, insn, brw_imm_d(0));
1876
1877 brw_inst_set_exec_size(devinfo, insn, brw_inst_exec_size(devinfo, do_insn));
1878 brw_inst_set_gen4_jump_count(devinfo, insn, br * (do_insn - insn + 1));
1879 brw_inst_set_gen4_pop_count(devinfo, insn, 0);
1880
1881 brw_patch_break_cont(p, insn);
1882 }
1883 }
1884 brw_inst_set_qtr_control(devinfo, insn, BRW_COMPRESSION_NONE);
1885
1886 p->loop_stack_depth--;
1887
1888 return insn;
1889 }
1890
1891 /* FORWARD JUMPS:
1892 */
1893 void brw_land_fwd_jump(struct brw_codegen *p, int jmp_insn_idx)
1894 {
1895 const struct brw_device_info *devinfo = p->devinfo;
1896 brw_inst *jmp_insn = &p->store[jmp_insn_idx];
1897 unsigned jmpi = 1;
1898
1899 if (devinfo->gen >= 5)
1900 jmpi = 2;
1901
1902 assert(brw_inst_opcode(devinfo, jmp_insn) == BRW_OPCODE_JMPI);
1903 assert(brw_inst_src1_reg_file(devinfo, jmp_insn) == BRW_IMMEDIATE_VALUE);
1904
1905 brw_inst_set_gen4_jump_count(devinfo, jmp_insn,
1906 jmpi * (p->nr_insn - jmp_insn_idx - 1));
1907 }
1908
1909 /* To integrate with the above, it makes sense that the comparison
1910 * instruction should populate the flag register. It might be simpler
1911 * just to use the flag reg for most WM tasks?
1912 */
1913 void brw_CMP(struct brw_codegen *p,
1914 struct brw_reg dest,
1915 unsigned conditional,
1916 struct brw_reg src0,
1917 struct brw_reg src1)
1918 {
1919 const struct brw_device_info *devinfo = p->devinfo;
1920 brw_inst *insn = next_insn(p, BRW_OPCODE_CMP);
1921
1922 brw_inst_set_cond_modifier(devinfo, insn, conditional);
1923 brw_set_dest(p, insn, dest);
1924 brw_set_src0(p, insn, src0);
1925 brw_set_src1(p, insn, src1);
1926
1927 /* Item WaCMPInstNullDstForcesThreadSwitch in the Haswell Bspec workarounds
1928 * page says:
1929 * "Any CMP instruction with a null destination must use a {switch}."
1930 *
1931 * It also applies to other Gen7 platforms (IVB, BYT) even though it isn't
1932 * mentioned on their work-arounds pages.
1933 */
1934 if (devinfo->gen == 7) {
1935 if (dest.file == BRW_ARCHITECTURE_REGISTER_FILE &&
1936 dest.nr == BRW_ARF_NULL) {
1937 brw_inst_set_thread_control(devinfo, insn, BRW_THREAD_SWITCH);
1938 }
1939 }
1940 }
1941
1942 /***********************************************************************
1943 * Helpers for the various SEND message types:
1944 */
1945
1946 /** Extended math function, float[8].
1947 */
1948 void gen4_math(struct brw_codegen *p,
1949 struct brw_reg dest,
1950 unsigned function,
1951 unsigned msg_reg_nr,
1952 struct brw_reg src,
1953 unsigned precision )
1954 {
1955 const struct brw_device_info *devinfo = p->devinfo;
1956 brw_inst *insn = next_insn(p, BRW_OPCODE_SEND);
1957 unsigned data_type;
1958 if (has_scalar_region(src)) {
1959 data_type = BRW_MATH_DATA_SCALAR;
1960 } else {
1961 data_type = BRW_MATH_DATA_VECTOR;
1962 }
1963
1964 assert(devinfo->gen < 6);
1965
1966 /* Example code doesn't set predicate_control for send
1967 * instructions.
1968 */
1969 brw_inst_set_pred_control(devinfo, insn, 0);
1970 brw_inst_set_base_mrf(devinfo, insn, msg_reg_nr);
1971
1972 brw_set_dest(p, insn, dest);
1973 brw_set_src0(p, insn, src);
1974 brw_set_math_message(p,
1975 insn,
1976 function,
1977 src.type == BRW_REGISTER_TYPE_D,
1978 precision,
1979 data_type);
1980 }
1981
1982 void gen6_math(struct brw_codegen *p,
1983 struct brw_reg dest,
1984 unsigned function,
1985 struct brw_reg src0,
1986 struct brw_reg src1)
1987 {
1988 const struct brw_device_info *devinfo = p->devinfo;
1989 brw_inst *insn = next_insn(p, BRW_OPCODE_MATH);
1990
1991 assert(devinfo->gen >= 6);
1992
1993 assert(dest.file == BRW_GENERAL_REGISTER_FILE ||
1994 (devinfo->gen >= 7 && dest.file == BRW_MESSAGE_REGISTER_FILE));
1995 assert(src0.file == BRW_GENERAL_REGISTER_FILE ||
1996 (devinfo->gen >= 8 && src0.file == BRW_IMMEDIATE_VALUE));
1997
1998 assert(dest.hstride == BRW_HORIZONTAL_STRIDE_1);
1999 if (devinfo->gen == 6) {
2000 assert(src0.hstride == BRW_HORIZONTAL_STRIDE_1);
2001 assert(src1.hstride == BRW_HORIZONTAL_STRIDE_1);
2002 }
2003
2004 if (function == BRW_MATH_FUNCTION_INT_DIV_QUOTIENT ||
2005 function == BRW_MATH_FUNCTION_INT_DIV_REMAINDER ||
2006 function == BRW_MATH_FUNCTION_INT_DIV_QUOTIENT_AND_REMAINDER) {
2007 assert(src0.type != BRW_REGISTER_TYPE_F);
2008 assert(src1.type != BRW_REGISTER_TYPE_F);
2009 assert(src1.file == BRW_GENERAL_REGISTER_FILE ||
2010 (devinfo->gen >= 8 && src1.file == BRW_IMMEDIATE_VALUE));
2011 } else {
2012 assert(src0.type == BRW_REGISTER_TYPE_F);
2013 assert(src1.type == BRW_REGISTER_TYPE_F);
2014 if (function == BRW_MATH_FUNCTION_POW) {
2015 assert(src1.file == BRW_GENERAL_REGISTER_FILE ||
2016 (devinfo->gen >= 8 && src1.file == BRW_IMMEDIATE_VALUE));
2017 } else {
2018 assert(src1.file == BRW_ARCHITECTURE_REGISTER_FILE &&
2019 src1.nr == BRW_ARF_NULL);
2020 }
2021 }
2022
2023 /* Source modifiers are ignored for extended math instructions on Gen6. */
2024 if (devinfo->gen == 6) {
2025 assert(!src0.negate);
2026 assert(!src0.abs);
2027 assert(!src1.negate);
2028 assert(!src1.abs);
2029 }
2030
2031 brw_inst_set_math_function(devinfo, insn, function);
2032
2033 brw_set_dest(p, insn, dest);
2034 brw_set_src0(p, insn, src0);
2035 brw_set_src1(p, insn, src1);
2036 }
2037
2038 /**
2039 * Return the right surface index to access the thread scratch space using
2040 * stateless dataport messages.
2041 */
2042 unsigned
2043 brw_scratch_surface_idx(const struct brw_codegen *p)
2044 {
2045 /* The scratch space is thread-local so IA coherency is unnecessary. */
2046 if (p->devinfo->gen >= 8)
2047 return GEN8_BTI_STATELESS_NON_COHERENT;
2048 else
2049 return BRW_BTI_STATELESS;
2050 }
2051
2052 /**
2053 * Write a block of OWORDs (half a GRF each) from the scratch buffer,
2054 * using a constant offset per channel.
2055 *
2056 * The offset must be aligned to oword size (16 bytes). Used for
2057 * register spilling.
2058 */
2059 void brw_oword_block_write_scratch(struct brw_codegen *p,
2060 struct brw_reg mrf,
2061 int num_regs,
2062 unsigned offset)
2063 {
2064 const struct brw_device_info *devinfo = p->devinfo;
2065 uint32_t msg_control, msg_type;
2066 int mlen;
2067
2068 if (devinfo->gen >= 6)
2069 offset /= 16;
2070
2071 mrf = retype(mrf, BRW_REGISTER_TYPE_UD);
2072
2073 if (num_regs == 1) {
2074 msg_control = BRW_DATAPORT_OWORD_BLOCK_2_OWORDS;
2075 mlen = 2;
2076 } else {
2077 msg_control = BRW_DATAPORT_OWORD_BLOCK_4_OWORDS;
2078 mlen = 3;
2079 }
2080
2081 /* Set up the message header. This is g0, with g0.2 filled with
2082 * the offset. We don't want to leave our offset around in g0 or
2083 * it'll screw up texture samples, so set it up inside the message
2084 * reg.
2085 */
2086 {
2087 brw_push_insn_state(p);
2088 brw_set_default_exec_size(p, BRW_EXECUTE_8);
2089 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2090 brw_set_default_compression_control(p, BRW_COMPRESSION_NONE);
2091
2092 brw_MOV(p, mrf, retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD));
2093
2094 /* set message header global offset field (reg 0, element 2) */
2095 brw_MOV(p,
2096 retype(brw_vec1_reg(BRW_MESSAGE_REGISTER_FILE,
2097 mrf.nr,
2098 2), BRW_REGISTER_TYPE_UD),
2099 brw_imm_ud(offset));
2100
2101 brw_pop_insn_state(p);
2102 }
2103
2104 {
2105 struct brw_reg dest;
2106 brw_inst *insn = next_insn(p, BRW_OPCODE_SEND);
2107 int send_commit_msg;
2108 struct brw_reg src_header = retype(brw_vec8_grf(0, 0),
2109 BRW_REGISTER_TYPE_UW);
2110
2111 brw_inst_set_compression(devinfo, insn, false);
2112
2113 if (brw_inst_exec_size(devinfo, insn) >= 16)
2114 src_header = vec16(src_header);
2115
2116 assert(brw_inst_pred_control(devinfo, insn) == BRW_PREDICATE_NONE);
2117 if (devinfo->gen < 6)
2118 brw_inst_set_base_mrf(devinfo, insn, mrf.nr);
2119
2120 /* Until gen6, writes followed by reads from the same location
2121 * are not guaranteed to be ordered unless write_commit is set.
2122 * If set, then a no-op write is issued to the destination
2123 * register to set a dependency, and a read from the destination
2124 * can be used to ensure the ordering.
2125 *
2126 * For gen6, only writes between different threads need ordering
2127 * protection. Our use of DP writes is all about register
2128 * spilling within a thread.
2129 */
2130 if (devinfo->gen >= 6) {
2131 dest = retype(vec16(brw_null_reg()), BRW_REGISTER_TYPE_UW);
2132 send_commit_msg = 0;
2133 } else {
2134 dest = src_header;
2135 send_commit_msg = 1;
2136 }
2137
2138 brw_set_dest(p, insn, dest);
2139 if (devinfo->gen >= 6) {
2140 brw_set_src0(p, insn, mrf);
2141 } else {
2142 brw_set_src0(p, insn, brw_null_reg());
2143 }
2144
2145 if (devinfo->gen >= 6)
2146 msg_type = GEN6_DATAPORT_WRITE_MESSAGE_OWORD_BLOCK_WRITE;
2147 else
2148 msg_type = BRW_DATAPORT_WRITE_MESSAGE_OWORD_BLOCK_WRITE;
2149
2150 brw_set_dp_write_message(p,
2151 insn,
2152 brw_scratch_surface_idx(p),
2153 msg_control,
2154 msg_type,
2155 mlen,
2156 true, /* header_present */
2157 0, /* not a render target */
2158 send_commit_msg, /* response_length */
2159 0, /* eot */
2160 send_commit_msg);
2161 }
2162 }
2163
2164
2165 /**
2166 * Read a block of owords (half a GRF each) from the scratch buffer
2167 * using a constant index per channel.
2168 *
2169 * Offset must be aligned to oword size (16 bytes). Used for register
2170 * spilling.
2171 */
2172 void
2173 brw_oword_block_read_scratch(struct brw_codegen *p,
2174 struct brw_reg dest,
2175 struct brw_reg mrf,
2176 int num_regs,
2177 unsigned offset)
2178 {
2179 const struct brw_device_info *devinfo = p->devinfo;
2180 uint32_t msg_control;
2181 int rlen;
2182
2183 if (devinfo->gen >= 6)
2184 offset /= 16;
2185
2186 if (p->devinfo->gen >= 7) {
2187 /* On gen 7 and above, we no longer have message registers and we can
2188 * send from any register we want. By using the destination register
2189 * for the message, we guarantee that the implied message write won't
2190 * accidentally overwrite anything. This has been a problem because
2191 * the MRF registers and source for the final FB write are both fixed
2192 * and may overlap.
2193 */
2194 mrf = retype(dest, BRW_REGISTER_TYPE_UD);
2195 } else {
2196 mrf = retype(mrf, BRW_REGISTER_TYPE_UD);
2197 }
2198 dest = retype(dest, BRW_REGISTER_TYPE_UW);
2199
2200 if (num_regs == 1) {
2201 msg_control = BRW_DATAPORT_OWORD_BLOCK_2_OWORDS;
2202 rlen = 1;
2203 } else {
2204 msg_control = BRW_DATAPORT_OWORD_BLOCK_4_OWORDS;
2205 rlen = 2;
2206 }
2207
2208 {
2209 brw_push_insn_state(p);
2210 brw_set_default_exec_size(p, BRW_EXECUTE_8);
2211 brw_set_default_compression_control(p, BRW_COMPRESSION_NONE);
2212 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2213
2214 brw_MOV(p, mrf, retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD));
2215
2216 /* set message header global offset field (reg 0, element 2) */
2217 brw_MOV(p, get_element_ud(mrf, 2), brw_imm_ud(offset));
2218
2219 brw_pop_insn_state(p);
2220 }
2221
2222 {
2223 brw_inst *insn = next_insn(p, BRW_OPCODE_SEND);
2224
2225 assert(brw_inst_pred_control(devinfo, insn) == 0);
2226 brw_inst_set_compression(devinfo, insn, false);
2227
2228 brw_set_dest(p, insn, dest); /* UW? */
2229 if (devinfo->gen >= 6) {
2230 brw_set_src0(p, insn, mrf);
2231 } else {
2232 brw_set_src0(p, insn, brw_null_reg());
2233 brw_inst_set_base_mrf(devinfo, insn, mrf.nr);
2234 }
2235
2236 brw_set_dp_read_message(p,
2237 insn,
2238 brw_scratch_surface_idx(p),
2239 msg_control,
2240 BRW_DATAPORT_READ_MESSAGE_OWORD_BLOCK_READ, /* msg_type */
2241 BRW_DATAPORT_READ_TARGET_RENDER_CACHE,
2242 1, /* msg_length */
2243 true, /* header_present */
2244 rlen);
2245 }
2246 }
2247
2248 void
2249 gen7_block_read_scratch(struct brw_codegen *p,
2250 struct brw_reg dest,
2251 int num_regs,
2252 unsigned offset)
2253 {
2254 const struct brw_device_info *devinfo = p->devinfo;
2255 brw_inst *insn = next_insn(p, BRW_OPCODE_SEND);
2256 assert(brw_inst_pred_control(devinfo, insn) == BRW_PREDICATE_NONE);
2257
2258 brw_set_dest(p, insn, retype(dest, BRW_REGISTER_TYPE_UW));
2259
2260 /* The HW requires that the header is present; this is to get the g0.5
2261 * scratch offset.
2262 */
2263 brw_set_src0(p, insn, brw_vec8_grf(0, 0));
2264
2265 /* According to the docs, offset is "A 12-bit HWord offset into the memory
2266 * Immediate Memory buffer as specified by binding table 0xFF." An HWORD
2267 * is 32 bytes, which happens to be the size of a register.
2268 */
2269 offset /= REG_SIZE;
2270 assert(offset < (1 << 12));
2271
2272 gen7_set_dp_scratch_message(p, insn,
2273 false, /* scratch read */
2274 false, /* OWords */
2275 false, /* invalidate after read */
2276 num_regs,
2277 offset,
2278 1, /* mlen: just g0 */
2279 num_regs, /* rlen */
2280 true); /* header present */
2281 }
2282
2283 /**
2284 * Read a float[4] vector from the data port Data Cache (const buffer).
2285 * Location (in buffer) should be a multiple of 16.
2286 * Used for fetching shader constants.
2287 */
2288 void brw_oword_block_read(struct brw_codegen *p,
2289 struct brw_reg dest,
2290 struct brw_reg mrf,
2291 uint32_t offset,
2292 uint32_t bind_table_index)
2293 {
2294 const struct brw_device_info *devinfo = p->devinfo;
2295
2296 /* On newer hardware, offset is in units of owords. */
2297 if (devinfo->gen >= 6)
2298 offset /= 16;
2299
2300 mrf = retype(mrf, BRW_REGISTER_TYPE_UD);
2301
2302 brw_push_insn_state(p);
2303 brw_set_default_exec_size(p, BRW_EXECUTE_8);
2304 brw_set_default_predicate_control(p, BRW_PREDICATE_NONE);
2305 brw_set_default_compression_control(p, BRW_COMPRESSION_NONE);
2306 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2307
2308 brw_MOV(p, mrf, retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD));
2309
2310 /* set message header global offset field (reg 0, element 2) */
2311 brw_MOV(p,
2312 retype(brw_vec1_reg(BRW_MESSAGE_REGISTER_FILE,
2313 mrf.nr,
2314 2), BRW_REGISTER_TYPE_UD),
2315 brw_imm_ud(offset));
2316
2317 brw_inst *insn = next_insn(p, BRW_OPCODE_SEND);
2318
2319 /* cast dest to a uword[8] vector */
2320 dest = retype(vec8(dest), BRW_REGISTER_TYPE_UW);
2321
2322 brw_set_dest(p, insn, dest);
2323 if (devinfo->gen >= 6) {
2324 brw_set_src0(p, insn, mrf);
2325 } else {
2326 brw_set_src0(p, insn, brw_null_reg());
2327 brw_inst_set_base_mrf(devinfo, insn, mrf.nr);
2328 }
2329
2330 brw_set_dp_read_message(p,
2331 insn,
2332 bind_table_index,
2333 BRW_DATAPORT_OWORD_BLOCK_1_OWORDLOW,
2334 BRW_DATAPORT_READ_MESSAGE_OWORD_BLOCK_READ,
2335 BRW_DATAPORT_READ_TARGET_DATA_CACHE,
2336 1, /* msg_length */
2337 true, /* header_present */
2338 1); /* response_length (1 reg, 2 owords!) */
2339
2340 brw_pop_insn_state(p);
2341 }
2342
2343
2344 void brw_fb_WRITE(struct brw_codegen *p,
2345 struct brw_reg payload,
2346 struct brw_reg implied_header,
2347 unsigned msg_control,
2348 unsigned binding_table_index,
2349 unsigned msg_length,
2350 unsigned response_length,
2351 bool eot,
2352 bool last_render_target,
2353 bool header_present)
2354 {
2355 const struct brw_device_info *devinfo = p->devinfo;
2356 brw_inst *insn;
2357 unsigned msg_type;
2358 struct brw_reg dest, src0;
2359
2360 if (brw_inst_exec_size(devinfo, p->current) >= BRW_EXECUTE_16)
2361 dest = retype(vec16(brw_null_reg()), BRW_REGISTER_TYPE_UW);
2362 else
2363 dest = retype(vec8(brw_null_reg()), BRW_REGISTER_TYPE_UW);
2364
2365 if (devinfo->gen >= 6) {
2366 insn = next_insn(p, BRW_OPCODE_SENDC);
2367 } else {
2368 insn = next_insn(p, BRW_OPCODE_SEND);
2369 }
2370 brw_inst_set_compression(devinfo, insn, false);
2371
2372 if (devinfo->gen >= 6) {
2373 /* headerless version, just submit color payload */
2374 src0 = payload;
2375
2376 msg_type = GEN6_DATAPORT_WRITE_MESSAGE_RENDER_TARGET_WRITE;
2377 } else {
2378 assert(payload.file == BRW_MESSAGE_REGISTER_FILE);
2379 brw_inst_set_base_mrf(devinfo, insn, payload.nr);
2380 src0 = implied_header;
2381
2382 msg_type = BRW_DATAPORT_WRITE_MESSAGE_RENDER_TARGET_WRITE;
2383 }
2384
2385 brw_set_dest(p, insn, dest);
2386 brw_set_src0(p, insn, src0);
2387 brw_set_dp_write_message(p,
2388 insn,
2389 binding_table_index,
2390 msg_control,
2391 msg_type,
2392 msg_length,
2393 header_present,
2394 last_render_target,
2395 response_length,
2396 eot,
2397 0 /* send_commit_msg */);
2398 }
2399
2400
2401 /**
2402 * Texture sample instruction.
2403 * Note: the msg_type plus msg_length values determine exactly what kind
2404 * of sampling operation is performed. See volume 4, page 161 of docs.
2405 */
2406 void brw_SAMPLE(struct brw_codegen *p,
2407 struct brw_reg dest,
2408 unsigned msg_reg_nr,
2409 struct brw_reg src0,
2410 unsigned binding_table_index,
2411 unsigned sampler,
2412 unsigned msg_type,
2413 unsigned response_length,
2414 unsigned msg_length,
2415 unsigned header_present,
2416 unsigned simd_mode,
2417 unsigned return_format)
2418 {
2419 const struct brw_device_info *devinfo = p->devinfo;
2420 brw_inst *insn;
2421
2422 if (msg_reg_nr != -1)
2423 gen6_resolve_implied_move(p, &src0, msg_reg_nr);
2424
2425 insn = next_insn(p, BRW_OPCODE_SEND);
2426 brw_inst_set_pred_control(devinfo, insn, BRW_PREDICATE_NONE); /* XXX */
2427
2428 /* From the 965 PRM (volume 4, part 1, section 14.2.41):
2429 *
2430 * "Instruction compression is not allowed for this instruction (that
2431 * is, send). The hardware behavior is undefined if this instruction is
2432 * set as compressed. However, compress control can be set to "SecHalf"
2433 * to affect the EMask generation."
2434 *
2435 * No similar wording is found in later PRMs, but there are examples
2436 * utilizing send with SecHalf. More importantly, SIMD8 sampler messages
2437 * are allowed in SIMD16 mode and they could not work without SecHalf. For
2438 * these reasons, we allow BRW_COMPRESSION_2NDHALF here.
2439 */
2440 brw_inst_set_compression(devinfo, insn, false);
2441
2442 if (devinfo->gen < 6)
2443 brw_inst_set_base_mrf(devinfo, insn, msg_reg_nr);
2444
2445 brw_set_dest(p, insn, dest);
2446 brw_set_src0(p, insn, src0);
2447 brw_set_sampler_message(p, insn,
2448 binding_table_index,
2449 sampler,
2450 msg_type,
2451 response_length,
2452 msg_length,
2453 header_present,
2454 simd_mode,
2455 return_format);
2456 }
2457
2458 /* Adjust the message header's sampler state pointer to
2459 * select the correct group of 16 samplers.
2460 */
2461 void brw_adjust_sampler_state_pointer(struct brw_codegen *p,
2462 struct brw_reg header,
2463 struct brw_reg sampler_index)
2464 {
2465 /* The "Sampler Index" field can only store values between 0 and 15.
2466 * However, we can add an offset to the "Sampler State Pointer"
2467 * field, effectively selecting a different set of 16 samplers.
2468 *
2469 * The "Sampler State Pointer" needs to be aligned to a 32-byte
2470 * offset, and each sampler state is only 16-bytes, so we can't
2471 * exclusively use the offset - we have to use both.
2472 */
2473
2474 const struct brw_device_info *devinfo = p->devinfo;
2475
2476 if (sampler_index.file == BRW_IMMEDIATE_VALUE) {
2477 const int sampler_state_size = 16; /* 16 bytes */
2478 uint32_t sampler = sampler_index.ud;
2479
2480 if (sampler >= 16) {
2481 assert(devinfo->is_haswell || devinfo->gen >= 8);
2482 brw_ADD(p,
2483 get_element_ud(header, 3),
2484 get_element_ud(brw_vec8_grf(0, 0), 3),
2485 brw_imm_ud(16 * (sampler / 16) * sampler_state_size));
2486 }
2487 } else {
2488 /* Non-const sampler array indexing case */
2489 if (devinfo->gen < 8 && !devinfo->is_haswell) {
2490 return;
2491 }
2492
2493 struct brw_reg temp = get_element_ud(header, 3);
2494
2495 brw_AND(p, temp, get_element_ud(sampler_index, 0), brw_imm_ud(0x0f0));
2496 brw_SHL(p, temp, temp, brw_imm_ud(4));
2497 brw_ADD(p,
2498 get_element_ud(header, 3),
2499 get_element_ud(brw_vec8_grf(0, 0), 3),
2500 temp);
2501 }
2502 }
2503
2504 /* All these variables are pretty confusing - we might be better off
2505 * using bitmasks and macros for this, in the old style. Or perhaps
2506 * just having the caller instantiate the fields in dword3 itself.
2507 */
2508 void brw_urb_WRITE(struct brw_codegen *p,
2509 struct brw_reg dest,
2510 unsigned msg_reg_nr,
2511 struct brw_reg src0,
2512 enum brw_urb_write_flags flags,
2513 unsigned msg_length,
2514 unsigned response_length,
2515 unsigned offset,
2516 unsigned swizzle)
2517 {
2518 const struct brw_device_info *devinfo = p->devinfo;
2519 brw_inst *insn;
2520
2521 gen6_resolve_implied_move(p, &src0, msg_reg_nr);
2522
2523 if (devinfo->gen >= 7 && !(flags & BRW_URB_WRITE_USE_CHANNEL_MASKS)) {
2524 /* Enable Channel Masks in the URB_WRITE_HWORD message header */
2525 brw_push_insn_state(p);
2526 brw_set_default_access_mode(p, BRW_ALIGN_1);
2527 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2528 brw_OR(p, retype(brw_vec1_reg(BRW_MESSAGE_REGISTER_FILE, msg_reg_nr, 5),
2529 BRW_REGISTER_TYPE_UD),
2530 retype(brw_vec1_grf(0, 5), BRW_REGISTER_TYPE_UD),
2531 brw_imm_ud(0xff00));
2532 brw_pop_insn_state(p);
2533 }
2534
2535 insn = next_insn(p, BRW_OPCODE_SEND);
2536
2537 assert(msg_length < BRW_MAX_MRF(devinfo->gen));
2538
2539 brw_set_dest(p, insn, dest);
2540 brw_set_src0(p, insn, src0);
2541 brw_set_src1(p, insn, brw_imm_d(0));
2542
2543 if (devinfo->gen < 6)
2544 brw_inst_set_base_mrf(devinfo, insn, msg_reg_nr);
2545
2546 brw_set_urb_message(p,
2547 insn,
2548 flags,
2549 msg_length,
2550 response_length,
2551 offset,
2552 swizzle);
2553 }
2554
2555 struct brw_inst *
2556 brw_send_indirect_message(struct brw_codegen *p,
2557 unsigned sfid,
2558 struct brw_reg dst,
2559 struct brw_reg payload,
2560 struct brw_reg desc)
2561 {
2562 const struct brw_device_info *devinfo = p->devinfo;
2563 struct brw_inst *send;
2564 int setup;
2565
2566 dst = retype(dst, BRW_REGISTER_TYPE_UW);
2567
2568 assert(desc.type == BRW_REGISTER_TYPE_UD);
2569
2570 /* We hold on to the setup instruction (the SEND in the direct case, the OR
2571 * in the indirect case) by its index in the instruction store. The
2572 * pointer returned by next_insn() may become invalid if emitting the SEND
2573 * in the indirect case reallocs the store.
2574 */
2575
2576 if (desc.file == BRW_IMMEDIATE_VALUE) {
2577 setup = p->nr_insn;
2578 send = next_insn(p, BRW_OPCODE_SEND);
2579 brw_set_src1(p, send, desc);
2580
2581 } else {
2582 struct brw_reg addr = retype(brw_address_reg(0), BRW_REGISTER_TYPE_UD);
2583
2584 brw_push_insn_state(p);
2585 brw_set_default_access_mode(p, BRW_ALIGN_1);
2586 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2587 brw_set_default_predicate_control(p, BRW_PREDICATE_NONE);
2588
2589 /* Load the indirect descriptor to an address register using OR so the
2590 * caller can specify additional descriptor bits with the usual
2591 * brw_set_*_message() helper functions.
2592 */
2593 setup = p->nr_insn;
2594 brw_OR(p, addr, desc, brw_imm_ud(0));
2595
2596 brw_pop_insn_state(p);
2597
2598 send = next_insn(p, BRW_OPCODE_SEND);
2599 brw_set_src1(p, send, addr);
2600 }
2601
2602 if (dst.width < BRW_EXECUTE_8)
2603 brw_inst_set_exec_size(devinfo, send, dst.width);
2604
2605 brw_set_dest(p, send, dst);
2606 brw_set_src0(p, send, retype(payload, BRW_REGISTER_TYPE_UD));
2607 brw_inst_set_sfid(devinfo, send, sfid);
2608
2609 return &p->store[setup];
2610 }
2611
2612 static struct brw_inst *
2613 brw_send_indirect_surface_message(struct brw_codegen *p,
2614 unsigned sfid,
2615 struct brw_reg dst,
2616 struct brw_reg payload,
2617 struct brw_reg surface,
2618 unsigned message_len,
2619 unsigned response_len,
2620 bool header_present)
2621 {
2622 const struct brw_device_info *devinfo = p->devinfo;
2623 struct brw_inst *insn;
2624
2625 if (surface.file != BRW_IMMEDIATE_VALUE) {
2626 struct brw_reg addr = retype(brw_address_reg(0), BRW_REGISTER_TYPE_UD);
2627
2628 brw_push_insn_state(p);
2629 brw_set_default_access_mode(p, BRW_ALIGN_1);
2630 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
2631 brw_set_default_predicate_control(p, BRW_PREDICATE_NONE);
2632
2633 /* Mask out invalid bits from the surface index to avoid hangs e.g. when
2634 * some surface array is accessed out of bounds.
2635 */
2636 insn = brw_AND(p, addr,
2637 suboffset(vec1(retype(surface, BRW_REGISTER_TYPE_UD)),
2638 BRW_GET_SWZ(surface.swizzle, 0)),
2639 brw_imm_ud(0xff));
2640
2641 brw_pop_insn_state(p);
2642
2643 surface = addr;
2644 }
2645
2646 insn = brw_send_indirect_message(p, sfid, dst, payload, surface);
2647 brw_inst_set_mlen(devinfo, insn, message_len);
2648 brw_inst_set_rlen(devinfo, insn, response_len);
2649 brw_inst_set_header_present(devinfo, insn, header_present);
2650
2651 return insn;
2652 }
2653
2654 static bool
2655 while_jumps_before_offset(const struct brw_device_info *devinfo,
2656 brw_inst *insn, int while_offset, int start_offset)
2657 {
2658 int scale = 16 / brw_jump_scale(devinfo);
2659 int jip = devinfo->gen == 6 ? brw_inst_gen6_jump_count(devinfo, insn)
2660 : brw_inst_jip(devinfo, insn);
2661 return while_offset + jip * scale <= start_offset;
2662 }
2663
2664
2665 static int
2666 brw_find_next_block_end(struct brw_codegen *p, int start_offset)
2667 {
2668 int offset;
2669 void *store = p->store;
2670 const struct brw_device_info *devinfo = p->devinfo;
2671
2672 int depth = 0;
2673
2674 for (offset = next_offset(devinfo, store, start_offset);
2675 offset < p->next_insn_offset;
2676 offset = next_offset(devinfo, store, offset)) {
2677 brw_inst *insn = store + offset;
2678
2679 switch (brw_inst_opcode(devinfo, insn)) {
2680 case BRW_OPCODE_IF:
2681 depth++;
2682 break;
2683 case BRW_OPCODE_ENDIF:
2684 if (depth == 0)
2685 return offset;
2686 depth--;
2687 break;
2688 case BRW_OPCODE_WHILE:
2689 /* If the while doesn't jump before our instruction, it's the end
2690 * of a sibling do...while loop. Ignore it.
2691 */
2692 if (!while_jumps_before_offset(devinfo, insn, offset, start_offset))
2693 continue;
2694 /* fallthrough */
2695 case BRW_OPCODE_ELSE:
2696 case BRW_OPCODE_HALT:
2697 if (depth == 0)
2698 return offset;
2699 }
2700 }
2701
2702 return 0;
2703 }
2704
2705 /* There is no DO instruction on gen6, so to find the end of the loop
2706 * we have to see if the loop is jumping back before our start
2707 * instruction.
2708 */
2709 static int
2710 brw_find_loop_end(struct brw_codegen *p, int start_offset)
2711 {
2712 const struct brw_device_info *devinfo = p->devinfo;
2713 int offset;
2714 void *store = p->store;
2715
2716 assert(devinfo->gen >= 6);
2717
2718 /* Always start after the instruction (such as a WHILE) we're trying to fix
2719 * up.
2720 */
2721 for (offset = next_offset(devinfo, store, start_offset);
2722 offset < p->next_insn_offset;
2723 offset = next_offset(devinfo, store, offset)) {
2724 brw_inst *insn = store + offset;
2725
2726 if (brw_inst_opcode(devinfo, insn) == BRW_OPCODE_WHILE) {
2727 if (while_jumps_before_offset(devinfo, insn, offset, start_offset))
2728 return offset;
2729 }
2730 }
2731 assert(!"not reached");
2732 return start_offset;
2733 }
2734
2735 /* After program generation, go back and update the UIP and JIP of
2736 * BREAK, CONT, and HALT instructions to their correct locations.
2737 */
2738 void
2739 brw_set_uip_jip(struct brw_codegen *p)
2740 {
2741 const struct brw_device_info *devinfo = p->devinfo;
2742 int offset;
2743 int br = brw_jump_scale(devinfo);
2744 int scale = 16 / br;
2745 void *store = p->store;
2746
2747 if (devinfo->gen < 6)
2748 return;
2749
2750 for (offset = 0; offset < p->next_insn_offset;
2751 offset = next_offset(devinfo, store, offset)) {
2752 brw_inst *insn = store + offset;
2753
2754 if (brw_inst_cmpt_control(devinfo, insn)) {
2755 /* Fixups for compacted BREAK/CONTINUE not supported yet. */
2756 assert(brw_inst_opcode(devinfo, insn) != BRW_OPCODE_BREAK &&
2757 brw_inst_opcode(devinfo, insn) != BRW_OPCODE_CONTINUE &&
2758 brw_inst_opcode(devinfo, insn) != BRW_OPCODE_HALT);
2759 continue;
2760 }
2761
2762 int block_end_offset = brw_find_next_block_end(p, offset);
2763 switch (brw_inst_opcode(devinfo, insn)) {
2764 case BRW_OPCODE_BREAK:
2765 assert(block_end_offset != 0);
2766 brw_inst_set_jip(devinfo, insn, (block_end_offset - offset) / scale);
2767 /* Gen7 UIP points to WHILE; Gen6 points just after it */
2768 brw_inst_set_uip(devinfo, insn,
2769 (brw_find_loop_end(p, offset) - offset +
2770 (devinfo->gen == 6 ? 16 : 0)) / scale);
2771 break;
2772 case BRW_OPCODE_CONTINUE:
2773 assert(block_end_offset != 0);
2774 brw_inst_set_jip(devinfo, insn, (block_end_offset - offset) / scale);
2775 brw_inst_set_uip(devinfo, insn,
2776 (brw_find_loop_end(p, offset) - offset) / scale);
2777
2778 assert(brw_inst_uip(devinfo, insn) != 0);
2779 assert(brw_inst_jip(devinfo, insn) != 0);
2780 break;
2781
2782 case BRW_OPCODE_ENDIF: {
2783 int32_t jump = (block_end_offset == 0) ?
2784 1 * br : (block_end_offset - offset) / scale;
2785 if (devinfo->gen >= 7)
2786 brw_inst_set_jip(devinfo, insn, jump);
2787 else
2788 brw_inst_set_gen6_jump_count(devinfo, insn, jump);
2789 break;
2790 }
2791
2792 case BRW_OPCODE_HALT:
2793 /* From the Sandy Bridge PRM (volume 4, part 2, section 8.3.19):
2794 *
2795 * "In case of the halt instruction not inside any conditional
2796 * code block, the value of <JIP> and <UIP> should be the
2797 * same. In case of the halt instruction inside conditional code
2798 * block, the <UIP> should be the end of the program, and the
2799 * <JIP> should be end of the most inner conditional code block."
2800 *
2801 * The uip will have already been set by whoever set up the
2802 * instruction.
2803 */
2804 if (block_end_offset == 0) {
2805 brw_inst_set_jip(devinfo, insn, brw_inst_uip(devinfo, insn));
2806 } else {
2807 brw_inst_set_jip(devinfo, insn, (block_end_offset - offset) / scale);
2808 }
2809 assert(brw_inst_uip(devinfo, insn) != 0);
2810 assert(brw_inst_jip(devinfo, insn) != 0);
2811 break;
2812 }
2813 }
2814 }
2815
2816 void brw_ff_sync(struct brw_codegen *p,
2817 struct brw_reg dest,
2818 unsigned msg_reg_nr,
2819 struct brw_reg src0,
2820 bool allocate,
2821 unsigned response_length,
2822 bool eot)
2823 {
2824 const struct brw_device_info *devinfo = p->devinfo;
2825 brw_inst *insn;
2826
2827 gen6_resolve_implied_move(p, &src0, msg_reg_nr);
2828
2829 insn = next_insn(p, BRW_OPCODE_SEND);
2830 brw_set_dest(p, insn, dest);
2831 brw_set_src0(p, insn, src0);
2832 brw_set_src1(p, insn, brw_imm_d(0));
2833
2834 if (devinfo->gen < 6)
2835 brw_inst_set_base_mrf(devinfo, insn, msg_reg_nr);
2836
2837 brw_set_ff_sync_message(p,
2838 insn,
2839 allocate,
2840 response_length,
2841 eot);
2842 }
2843
2844 /**
2845 * Emit the SEND instruction necessary to generate stream output data on Gen6
2846 * (for transform feedback).
2847 *
2848 * If send_commit_msg is true, this is the last piece of stream output data
2849 * from this thread, so send the data as a committed write. According to the
2850 * Sandy Bridge PRM (volume 2 part 1, section 4.5.1):
2851 *
2852 * "Prior to End of Thread with a URB_WRITE, the kernel must ensure all
2853 * writes are complete by sending the final write as a committed write."
2854 */
2855 void
2856 brw_svb_write(struct brw_codegen *p,
2857 struct brw_reg dest,
2858 unsigned msg_reg_nr,
2859 struct brw_reg src0,
2860 unsigned binding_table_index,
2861 bool send_commit_msg)
2862 {
2863 brw_inst *insn;
2864
2865 gen6_resolve_implied_move(p, &src0, msg_reg_nr);
2866
2867 insn = next_insn(p, BRW_OPCODE_SEND);
2868 brw_set_dest(p, insn, dest);
2869 brw_set_src0(p, insn, src0);
2870 brw_set_src1(p, insn, brw_imm_d(0));
2871 brw_set_dp_write_message(p, insn,
2872 binding_table_index,
2873 0, /* msg_control: ignored */
2874 GEN6_DATAPORT_WRITE_MESSAGE_STREAMED_VB_WRITE,
2875 1, /* msg_length */
2876 true, /* header_present */
2877 0, /* last_render_target: ignored */
2878 send_commit_msg, /* response_length */
2879 0, /* end_of_thread */
2880 send_commit_msg); /* send_commit_msg */
2881 }
2882
2883 static unsigned
2884 brw_surface_payload_size(struct brw_codegen *p,
2885 unsigned num_channels,
2886 bool has_simd4x2,
2887 bool has_simd16)
2888 {
2889 if (has_simd4x2 &&
2890 brw_inst_access_mode(p->devinfo, p->current) == BRW_ALIGN_16)
2891 return 1;
2892 else if (has_simd16 &&
2893 brw_inst_exec_size(p->devinfo, p->current) == BRW_EXECUTE_16)
2894 return 2 * num_channels;
2895 else
2896 return num_channels;
2897 }
2898
2899 static void
2900 brw_set_dp_untyped_atomic_message(struct brw_codegen *p,
2901 brw_inst *insn,
2902 unsigned atomic_op,
2903 bool response_expected)
2904 {
2905 const struct brw_device_info *devinfo = p->devinfo;
2906 unsigned msg_control =
2907 atomic_op | /* Atomic Operation Type: BRW_AOP_* */
2908 (response_expected ? 1 << 5 : 0); /* Return data expected */
2909
2910 if (devinfo->gen >= 8 || devinfo->is_haswell) {
2911 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
2912 if (brw_inst_exec_size(devinfo, p->current) == BRW_EXECUTE_8)
2913 msg_control |= 1 << 4; /* SIMD8 mode */
2914
2915 brw_inst_set_dp_msg_type(devinfo, insn,
2916 HSW_DATAPORT_DC_PORT1_UNTYPED_ATOMIC_OP);
2917 } else {
2918 brw_inst_set_dp_msg_type(devinfo, insn,
2919 HSW_DATAPORT_DC_PORT1_UNTYPED_ATOMIC_OP_SIMD4X2);
2920 }
2921 } else {
2922 brw_inst_set_dp_msg_type(devinfo, insn,
2923 GEN7_DATAPORT_DC_UNTYPED_ATOMIC_OP);
2924
2925 if (brw_inst_exec_size(devinfo, p->current) == BRW_EXECUTE_8)
2926 msg_control |= 1 << 4; /* SIMD8 mode */
2927 }
2928
2929 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
2930 }
2931
2932 void
2933 brw_untyped_atomic(struct brw_codegen *p,
2934 struct brw_reg dst,
2935 struct brw_reg payload,
2936 struct brw_reg surface,
2937 unsigned atomic_op,
2938 unsigned msg_length,
2939 bool response_expected)
2940 {
2941 const struct brw_device_info *devinfo = p->devinfo;
2942 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
2943 HSW_SFID_DATAPORT_DATA_CACHE_1 :
2944 GEN7_SFID_DATAPORT_DATA_CACHE);
2945 const bool align1 = brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1;
2946 /* Mask out unused components -- This is especially important in Align16
2947 * mode on generations that don't have native support for SIMD4x2 atomics,
2948 * because unused but enabled components will cause the dataport to perform
2949 * additional atomic operations on the addresses that happen to be in the
2950 * uninitialized Y, Z and W coordinates of the payload.
2951 */
2952 const unsigned mask = align1 ? WRITEMASK_XYZW : WRITEMASK_X;
2953 struct brw_inst *insn = brw_send_indirect_surface_message(
2954 p, sfid, brw_writemask(dst, mask), payload, surface, msg_length,
2955 brw_surface_payload_size(p, response_expected,
2956 devinfo->gen >= 8 || devinfo->is_haswell, true),
2957 align1);
2958
2959 brw_set_dp_untyped_atomic_message(
2960 p, insn, atomic_op, response_expected);
2961 }
2962
2963 static void
2964 brw_set_dp_untyped_surface_read_message(struct brw_codegen *p,
2965 struct brw_inst *insn,
2966 unsigned num_channels)
2967 {
2968 const struct brw_device_info *devinfo = p->devinfo;
2969 /* Set mask of 32-bit channels to drop. */
2970 unsigned msg_control = 0xf & (0xf << num_channels);
2971
2972 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
2973 if (brw_inst_exec_size(devinfo, p->current) == BRW_EXECUTE_16)
2974 msg_control |= 1 << 4; /* SIMD16 mode */
2975 else
2976 msg_control |= 2 << 4; /* SIMD8 mode */
2977 }
2978
2979 brw_inst_set_dp_msg_type(devinfo, insn,
2980 (devinfo->gen >= 8 || devinfo->is_haswell ?
2981 HSW_DATAPORT_DC_PORT1_UNTYPED_SURFACE_READ :
2982 GEN7_DATAPORT_DC_UNTYPED_SURFACE_READ));
2983 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
2984 }
2985
2986 void
2987 brw_untyped_surface_read(struct brw_codegen *p,
2988 struct brw_reg dst,
2989 struct brw_reg payload,
2990 struct brw_reg surface,
2991 unsigned msg_length,
2992 unsigned num_channels)
2993 {
2994 const struct brw_device_info *devinfo = p->devinfo;
2995 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
2996 HSW_SFID_DATAPORT_DATA_CACHE_1 :
2997 GEN7_SFID_DATAPORT_DATA_CACHE);
2998 struct brw_inst *insn = brw_send_indirect_surface_message(
2999 p, sfid, dst, payload, surface, msg_length,
3000 brw_surface_payload_size(p, num_channels, true, true),
3001 false);
3002
3003 brw_set_dp_untyped_surface_read_message(
3004 p, insn, num_channels);
3005 }
3006
3007 static void
3008 brw_set_dp_untyped_surface_write_message(struct brw_codegen *p,
3009 struct brw_inst *insn,
3010 unsigned num_channels)
3011 {
3012 const struct brw_device_info *devinfo = p->devinfo;
3013 /* Set mask of 32-bit channels to drop. */
3014 unsigned msg_control = 0xf & (0xf << num_channels);
3015
3016 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3017 if (brw_inst_exec_size(devinfo, p->current) == BRW_EXECUTE_16)
3018 msg_control |= 1 << 4; /* SIMD16 mode */
3019 else
3020 msg_control |= 2 << 4; /* SIMD8 mode */
3021 } else {
3022 if (devinfo->gen >= 8 || devinfo->is_haswell)
3023 msg_control |= 0 << 4; /* SIMD4x2 mode */
3024 else
3025 msg_control |= 2 << 4; /* SIMD8 mode */
3026 }
3027
3028 brw_inst_set_dp_msg_type(devinfo, insn,
3029 devinfo->gen >= 8 || devinfo->is_haswell ?
3030 HSW_DATAPORT_DC_PORT1_UNTYPED_SURFACE_WRITE :
3031 GEN7_DATAPORT_DC_UNTYPED_SURFACE_WRITE);
3032 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
3033 }
3034
3035 void
3036 brw_untyped_surface_write(struct brw_codegen *p,
3037 struct brw_reg payload,
3038 struct brw_reg surface,
3039 unsigned msg_length,
3040 unsigned num_channels)
3041 {
3042 const struct brw_device_info *devinfo = p->devinfo;
3043 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
3044 HSW_SFID_DATAPORT_DATA_CACHE_1 :
3045 GEN7_SFID_DATAPORT_DATA_CACHE);
3046 const bool align1 = brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1;
3047 /* Mask out unused components -- See comment in brw_untyped_atomic(). */
3048 const unsigned mask = devinfo->gen == 7 && !devinfo->is_haswell && !align1 ?
3049 WRITEMASK_X : WRITEMASK_XYZW;
3050 struct brw_inst *insn = brw_send_indirect_surface_message(
3051 p, sfid, brw_writemask(brw_null_reg(), mask),
3052 payload, surface, msg_length, 0, align1);
3053
3054 brw_set_dp_untyped_surface_write_message(
3055 p, insn, num_channels);
3056 }
3057
3058 static void
3059 brw_set_dp_typed_atomic_message(struct brw_codegen *p,
3060 struct brw_inst *insn,
3061 unsigned atomic_op,
3062 bool response_expected)
3063 {
3064 const struct brw_device_info *devinfo = p->devinfo;
3065 unsigned msg_control =
3066 atomic_op | /* Atomic Operation Type: BRW_AOP_* */
3067 (response_expected ? 1 << 5 : 0); /* Return data expected */
3068
3069 if (devinfo->gen >= 8 || devinfo->is_haswell) {
3070 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3071 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3072 msg_control |= 1 << 4; /* Use high 8 slots of the sample mask */
3073
3074 brw_inst_set_dp_msg_type(devinfo, insn,
3075 HSW_DATAPORT_DC_PORT1_TYPED_ATOMIC_OP);
3076 } else {
3077 brw_inst_set_dp_msg_type(devinfo, insn,
3078 HSW_DATAPORT_DC_PORT1_TYPED_ATOMIC_OP_SIMD4X2);
3079 }
3080
3081 } else {
3082 brw_inst_set_dp_msg_type(devinfo, insn,
3083 GEN7_DATAPORT_RC_TYPED_ATOMIC_OP);
3084
3085 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3086 msg_control |= 1 << 4; /* Use high 8 slots of the sample mask */
3087 }
3088
3089 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
3090 }
3091
3092 void
3093 brw_typed_atomic(struct brw_codegen *p,
3094 struct brw_reg dst,
3095 struct brw_reg payload,
3096 struct brw_reg surface,
3097 unsigned atomic_op,
3098 unsigned msg_length,
3099 bool response_expected) {
3100 const struct brw_device_info *devinfo = p->devinfo;
3101 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
3102 HSW_SFID_DATAPORT_DATA_CACHE_1 :
3103 GEN6_SFID_DATAPORT_RENDER_CACHE);
3104 const bool align1 = (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1);
3105 /* Mask out unused components -- See comment in brw_untyped_atomic(). */
3106 const unsigned mask = align1 ? WRITEMASK_XYZW : WRITEMASK_X;
3107 struct brw_inst *insn = brw_send_indirect_surface_message(
3108 p, sfid, brw_writemask(dst, mask), payload, surface, msg_length,
3109 brw_surface_payload_size(p, response_expected,
3110 devinfo->gen >= 8 || devinfo->is_haswell, false),
3111 true);
3112
3113 brw_set_dp_typed_atomic_message(
3114 p, insn, atomic_op, response_expected);
3115 }
3116
3117 static void
3118 brw_set_dp_typed_surface_read_message(struct brw_codegen *p,
3119 struct brw_inst *insn,
3120 unsigned num_channels)
3121 {
3122 const struct brw_device_info *devinfo = p->devinfo;
3123 /* Set mask of unused channels. */
3124 unsigned msg_control = 0xf & (0xf << num_channels);
3125
3126 if (devinfo->gen >= 8 || devinfo->is_haswell) {
3127 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3128 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3129 msg_control |= 2 << 4; /* Use high 8 slots of the sample mask */
3130 else
3131 msg_control |= 1 << 4; /* Use low 8 slots of the sample mask */
3132 }
3133
3134 brw_inst_set_dp_msg_type(devinfo, insn,
3135 HSW_DATAPORT_DC_PORT1_TYPED_SURFACE_READ);
3136 } else {
3137 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3138 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3139 msg_control |= 1 << 5; /* Use high 8 slots of the sample mask */
3140 }
3141
3142 brw_inst_set_dp_msg_type(devinfo, insn,
3143 GEN7_DATAPORT_RC_TYPED_SURFACE_READ);
3144 }
3145
3146 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
3147 }
3148
3149 void
3150 brw_typed_surface_read(struct brw_codegen *p,
3151 struct brw_reg dst,
3152 struct brw_reg payload,
3153 struct brw_reg surface,
3154 unsigned msg_length,
3155 unsigned num_channels)
3156 {
3157 const struct brw_device_info *devinfo = p->devinfo;
3158 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
3159 HSW_SFID_DATAPORT_DATA_CACHE_1 :
3160 GEN6_SFID_DATAPORT_RENDER_CACHE);
3161 struct brw_inst *insn = brw_send_indirect_surface_message(
3162 p, sfid, dst, payload, surface, msg_length,
3163 brw_surface_payload_size(p, num_channels,
3164 devinfo->gen >= 8 || devinfo->is_haswell, false),
3165 true);
3166
3167 brw_set_dp_typed_surface_read_message(
3168 p, insn, num_channels);
3169 }
3170
3171 static void
3172 brw_set_dp_typed_surface_write_message(struct brw_codegen *p,
3173 struct brw_inst *insn,
3174 unsigned num_channels)
3175 {
3176 const struct brw_device_info *devinfo = p->devinfo;
3177 /* Set mask of unused channels. */
3178 unsigned msg_control = 0xf & (0xf << num_channels);
3179
3180 if (devinfo->gen >= 8 || devinfo->is_haswell) {
3181 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3182 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3183 msg_control |= 2 << 4; /* Use high 8 slots of the sample mask */
3184 else
3185 msg_control |= 1 << 4; /* Use low 8 slots of the sample mask */
3186 }
3187
3188 brw_inst_set_dp_msg_type(devinfo, insn,
3189 HSW_DATAPORT_DC_PORT1_TYPED_SURFACE_WRITE);
3190
3191 } else {
3192 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3193 if (brw_inst_qtr_control(devinfo, p->current) == GEN6_COMPRESSION_2Q)
3194 msg_control |= 1 << 5; /* Use high 8 slots of the sample mask */
3195 }
3196
3197 brw_inst_set_dp_msg_type(devinfo, insn,
3198 GEN7_DATAPORT_RC_TYPED_SURFACE_WRITE);
3199 }
3200
3201 brw_inst_set_dp_msg_control(devinfo, insn, msg_control);
3202 }
3203
3204 void
3205 brw_typed_surface_write(struct brw_codegen *p,
3206 struct brw_reg payload,
3207 struct brw_reg surface,
3208 unsigned msg_length,
3209 unsigned num_channels)
3210 {
3211 const struct brw_device_info *devinfo = p->devinfo;
3212 const unsigned sfid = (devinfo->gen >= 8 || devinfo->is_haswell ?
3213 HSW_SFID_DATAPORT_DATA_CACHE_1 :
3214 GEN6_SFID_DATAPORT_RENDER_CACHE);
3215 const bool align1 = (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1);
3216 /* Mask out unused components -- See comment in brw_untyped_atomic(). */
3217 const unsigned mask = (devinfo->gen == 7 && !devinfo->is_haswell && !align1 ?
3218 WRITEMASK_X : WRITEMASK_XYZW);
3219 struct brw_inst *insn = brw_send_indirect_surface_message(
3220 p, sfid, brw_writemask(brw_null_reg(), mask),
3221 payload, surface, msg_length, 0, true);
3222
3223 brw_set_dp_typed_surface_write_message(
3224 p, insn, num_channels);
3225 }
3226
3227 static void
3228 brw_set_memory_fence_message(struct brw_codegen *p,
3229 struct brw_inst *insn,
3230 enum brw_message_target sfid,
3231 bool commit_enable)
3232 {
3233 const struct brw_device_info *devinfo = p->devinfo;
3234
3235 brw_set_message_descriptor(p, insn, sfid,
3236 1 /* message length */,
3237 (commit_enable ? 1 : 0) /* response length */,
3238 true /* header present */,
3239 false);
3240
3241 switch (sfid) {
3242 case GEN6_SFID_DATAPORT_RENDER_CACHE:
3243 brw_inst_set_dp_msg_type(devinfo, insn, GEN7_DATAPORT_RC_MEMORY_FENCE);
3244 break;
3245 case GEN7_SFID_DATAPORT_DATA_CACHE:
3246 brw_inst_set_dp_msg_type(devinfo, insn, GEN7_DATAPORT_DC_MEMORY_FENCE);
3247 break;
3248 default:
3249 unreachable("Not reached");
3250 }
3251
3252 if (commit_enable)
3253 brw_inst_set_dp_msg_control(devinfo, insn, 1 << 5);
3254 }
3255
3256 void
3257 brw_memory_fence(struct brw_codegen *p,
3258 struct brw_reg dst)
3259 {
3260 const struct brw_device_info *devinfo = p->devinfo;
3261 const bool commit_enable = devinfo->gen == 7 && !devinfo->is_haswell;
3262 struct brw_inst *insn;
3263
3264 /* Set dst as destination for dependency tracking, the MEMORY_FENCE
3265 * message doesn't write anything back.
3266 */
3267 insn = next_insn(p, BRW_OPCODE_SEND);
3268 dst = retype(dst, BRW_REGISTER_TYPE_UW);
3269 brw_set_dest(p, insn, dst);
3270 brw_set_src0(p, insn, dst);
3271 brw_set_memory_fence_message(p, insn, GEN7_SFID_DATAPORT_DATA_CACHE,
3272 commit_enable);
3273
3274 if (devinfo->gen == 7 && !devinfo->is_haswell) {
3275 /* IVB does typed surface access through the render cache, so we need to
3276 * flush it too. Use a different register so both flushes can be
3277 * pipelined by the hardware.
3278 */
3279 insn = next_insn(p, BRW_OPCODE_SEND);
3280 brw_set_dest(p, insn, offset(dst, 1));
3281 brw_set_src0(p, insn, offset(dst, 1));
3282 brw_set_memory_fence_message(p, insn, GEN6_SFID_DATAPORT_RENDER_CACHE,
3283 commit_enable);
3284
3285 /* Now write the response of the second message into the response of the
3286 * first to trigger a pipeline stall -- This way future render and data
3287 * cache messages will be properly ordered with respect to past data and
3288 * render cache messages.
3289 */
3290 brw_push_insn_state(p);
3291 brw_set_default_compression_control(p, BRW_COMPRESSION_NONE);
3292 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
3293 brw_MOV(p, dst, offset(dst, 1));
3294 brw_pop_insn_state(p);
3295 }
3296 }
3297
3298 void
3299 brw_pixel_interpolator_query(struct brw_codegen *p,
3300 struct brw_reg dest,
3301 struct brw_reg mrf,
3302 bool noperspective,
3303 unsigned mode,
3304 struct brw_reg data,
3305 unsigned msg_length,
3306 unsigned response_length)
3307 {
3308 const struct brw_device_info *devinfo = p->devinfo;
3309 struct brw_inst *insn;
3310 const uint16_t exec_size = brw_inst_exec_size(devinfo, p->current);
3311
3312 /* brw_send_indirect_message will automatically use a direct send message
3313 * if data is actually immediate.
3314 */
3315 insn = brw_send_indirect_message(p,
3316 GEN7_SFID_PIXEL_INTERPOLATOR,
3317 dest,
3318 mrf,
3319 vec1(data));
3320 brw_inst_set_mlen(devinfo, insn, msg_length);
3321 brw_inst_set_rlen(devinfo, insn, response_length);
3322
3323 brw_inst_set_pi_simd_mode(devinfo, insn, exec_size == BRW_EXECUTE_16);
3324 brw_inst_set_pi_slot_group(devinfo, insn, 0); /* zero unless 32/64px dispatch */
3325 brw_inst_set_pi_nopersp(devinfo, insn, noperspective);
3326 brw_inst_set_pi_message_type(devinfo, insn, mode);
3327 }
3328
3329 void
3330 brw_find_live_channel(struct brw_codegen *p, struct brw_reg dst)
3331 {
3332 const struct brw_device_info *devinfo = p->devinfo;
3333 brw_inst *inst;
3334
3335 assert(devinfo->gen >= 7);
3336
3337 brw_push_insn_state(p);
3338
3339 if (brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1) {
3340 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
3341
3342 if (devinfo->gen >= 8) {
3343 /* Getting the first active channel index is easy on Gen8: Just find
3344 * the first bit set in the mask register. The same register exists
3345 * on HSW already but it reads back as all ones when the current
3346 * instruction has execution masking disabled, so it's kind of
3347 * useless.
3348 */
3349 inst = brw_FBL(p, vec1(dst),
3350 retype(brw_mask_reg(0), BRW_REGISTER_TYPE_UD));
3351
3352 /* Quarter control has the effect of magically shifting the value of
3353 * this register. Make sure it's set to zero.
3354 */
3355 brw_inst_set_qtr_control(devinfo, inst, GEN6_COMPRESSION_1Q);
3356 } else {
3357 const struct brw_reg flag = retype(brw_flag_reg(1, 0),
3358 BRW_REGISTER_TYPE_UD);
3359
3360 brw_MOV(p, flag, brw_imm_ud(0));
3361
3362 /* Run a 16-wide instruction returning zero with execution masking
3363 * and a conditional modifier enabled in order to get the current
3364 * execution mask in f1.0.
3365 */
3366 inst = brw_MOV(p, brw_null_reg(), brw_imm_ud(0));
3367 brw_inst_set_exec_size(devinfo, inst, BRW_EXECUTE_16);
3368 brw_inst_set_mask_control(devinfo, inst, BRW_MASK_ENABLE);
3369 brw_inst_set_cond_modifier(devinfo, inst, BRW_CONDITIONAL_Z);
3370 brw_inst_set_flag_reg_nr(devinfo, inst, 1);
3371
3372 brw_FBL(p, vec1(dst), flag);
3373 }
3374 } else {
3375 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
3376
3377 if (devinfo->gen >= 8) {
3378 /* In SIMD4x2 mode the first active channel index is just the
3379 * negation of the first bit of the mask register.
3380 */
3381 inst = brw_AND(p, brw_writemask(dst, WRITEMASK_X),
3382 negate(retype(brw_mask_reg(0), BRW_REGISTER_TYPE_UD)),
3383 brw_imm_ud(1));
3384
3385 } else {
3386 /* Overwrite the destination without and with execution masking to
3387 * find out which of the channels is active.
3388 */
3389 brw_push_insn_state(p);
3390 brw_set_default_exec_size(p, BRW_EXECUTE_4);
3391 brw_MOV(p, brw_writemask(vec4(dst), WRITEMASK_X),
3392 brw_imm_ud(1));
3393
3394 inst = brw_MOV(p, brw_writemask(vec4(dst), WRITEMASK_X),
3395 brw_imm_ud(0));
3396 brw_pop_insn_state(p);
3397 brw_inst_set_mask_control(devinfo, inst, BRW_MASK_ENABLE);
3398 }
3399 }
3400
3401 brw_pop_insn_state(p);
3402 }
3403
3404 void
3405 brw_broadcast(struct brw_codegen *p,
3406 struct brw_reg dst,
3407 struct brw_reg src,
3408 struct brw_reg idx)
3409 {
3410 const struct brw_device_info *devinfo = p->devinfo;
3411 const bool align1 = brw_inst_access_mode(devinfo, p->current) == BRW_ALIGN_1;
3412 brw_inst *inst;
3413
3414 assert(src.file == BRW_GENERAL_REGISTER_FILE &&
3415 src.address_mode == BRW_ADDRESS_DIRECT);
3416
3417 if ((src.vstride == 0 && (src.hstride == 0 || !align1)) ||
3418 idx.file == BRW_IMMEDIATE_VALUE) {
3419 /* Trivial, the source is already uniform or the index is a constant.
3420 * We will typically not get here if the optimizer is doing its job, but
3421 * asserting would be mean.
3422 */
3423 const unsigned i = idx.file == BRW_IMMEDIATE_VALUE ? idx.ud : 0;
3424 brw_MOV(p, dst,
3425 (align1 ? stride(suboffset(src, i), 0, 1, 0) :
3426 stride(suboffset(src, 4 * i), 0, 4, 1)));
3427 } else {
3428 if (align1) {
3429 const struct brw_reg addr =
3430 retype(brw_address_reg(0), BRW_REGISTER_TYPE_UD);
3431 const unsigned offset = src.nr * REG_SIZE + src.subnr;
3432 /* Limit in bytes of the signed indirect addressing immediate. */
3433 const unsigned limit = 512;
3434
3435 brw_push_insn_state(p);
3436 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
3437 brw_set_default_predicate_control(p, BRW_PREDICATE_NONE);
3438
3439 /* Take into account the component size and horizontal stride. */
3440 assert(src.vstride == src.hstride + src.width);
3441 brw_SHL(p, addr, vec1(idx),
3442 brw_imm_ud(_mesa_logbase2(type_sz(src.type)) +
3443 src.hstride - 1));
3444
3445 /* We can only address up to limit bytes using the indirect
3446 * addressing immediate, account for the difference if the source
3447 * register is above this limit.
3448 */
3449 if (offset >= limit)
3450 brw_ADD(p, addr, addr, brw_imm_ud(offset - offset % limit));
3451
3452 brw_pop_insn_state(p);
3453
3454 /* Use indirect addressing to fetch the specified component. */
3455 brw_MOV(p, dst,
3456 retype(brw_vec1_indirect(addr.subnr, offset % limit),
3457 src.type));
3458 } else {
3459 /* In SIMD4x2 mode the index can be either zero or one, replicate it
3460 * to all bits of a flag register,
3461 */
3462 inst = brw_MOV(p,
3463 brw_null_reg(),
3464 stride(brw_swizzle(idx, BRW_SWIZZLE_XXXX), 0, 4, 1));
3465 brw_inst_set_pred_control(devinfo, inst, BRW_PREDICATE_NONE);
3466 brw_inst_set_cond_modifier(devinfo, inst, BRW_CONDITIONAL_NZ);
3467 brw_inst_set_flag_reg_nr(devinfo, inst, 1);
3468
3469 /* and use predicated SEL to pick the right channel. */
3470 inst = brw_SEL(p, dst,
3471 stride(suboffset(src, 4), 0, 4, 1),
3472 stride(src, 0, 4, 1));
3473 brw_inst_set_pred_control(devinfo, inst, BRW_PREDICATE_NORMAL);
3474 brw_inst_set_flag_reg_nr(devinfo, inst, 1);
3475 }
3476 }
3477 }
3478
3479 /**
3480 * This instruction is generated as a single-channel align1 instruction by
3481 * both the VS and FS stages when using INTEL_DEBUG=shader_time.
3482 *
3483 * We can't use the typed atomic op in the FS because that has the execution
3484 * mask ANDed with the pixel mask, but we just want to write the one dword for
3485 * all the pixels.
3486 *
3487 * We don't use the SIMD4x2 atomic ops in the VS because want to just write
3488 * one u32. So we use the same untyped atomic write message as the pixel
3489 * shader.
3490 *
3491 * The untyped atomic operation requires a BUFFER surface type with RAW
3492 * format, and is only accessible through the legacy DATA_CACHE dataport
3493 * messages.
3494 */
3495 void brw_shader_time_add(struct brw_codegen *p,
3496 struct brw_reg payload,
3497 uint32_t surf_index)
3498 {
3499 const unsigned sfid = (p->devinfo->gen >= 8 || p->devinfo->is_haswell ?
3500 HSW_SFID_DATAPORT_DATA_CACHE_1 :
3501 GEN7_SFID_DATAPORT_DATA_CACHE);
3502 assert(p->devinfo->gen >= 7);
3503
3504 brw_push_insn_state(p);
3505 brw_set_default_access_mode(p, BRW_ALIGN_1);
3506 brw_set_default_mask_control(p, BRW_MASK_DISABLE);
3507 brw_set_default_compression_control(p, BRW_COMPRESSION_NONE);
3508 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND);
3509
3510 /* We use brw_vec1_reg and unmasked because we want to increment the given
3511 * offset only once.
3512 */
3513 brw_set_dest(p, send, brw_vec1_reg(BRW_ARCHITECTURE_REGISTER_FILE,
3514 BRW_ARF_NULL, 0));
3515 brw_set_src0(p, send, brw_vec1_reg(payload.file,
3516 payload.nr, 0));
3517 brw_set_src1(p, send, brw_imm_ud(0));
3518 brw_set_message_descriptor(p, send, sfid, 2, 0, false, false);
3519 brw_inst_set_binding_table_index(p->devinfo, send, surf_index);
3520 brw_set_dp_untyped_atomic_message(p, send, BRW_AOP_ADD, false);
3521
3522 brw_pop_insn_state(p);
3523 }
3524
3525
3526 /**
3527 * Emit the SEND message for a barrier
3528 */
3529 void
3530 brw_barrier(struct brw_codegen *p, struct brw_reg src)
3531 {
3532 const struct brw_device_info *devinfo = p->devinfo;
3533 struct brw_inst *inst;
3534
3535 assert(devinfo->gen >= 7);
3536
3537 inst = next_insn(p, BRW_OPCODE_SEND);
3538 brw_set_dest(p, inst, retype(brw_null_reg(), BRW_REGISTER_TYPE_UW));
3539 brw_set_src0(p, inst, src);
3540 brw_set_src1(p, inst, brw_null_reg());
3541
3542 brw_set_message_descriptor(p, inst, BRW_SFID_MESSAGE_GATEWAY,
3543 1 /* msg_length */,
3544 0 /* response_length */,
3545 false /* header_present */,
3546 false /* end_of_thread */);
3547
3548 brw_inst_set_gateway_notify(devinfo, inst, 1);
3549 brw_inst_set_gateway_subfuncid(devinfo, inst,
3550 BRW_MESSAGE_GATEWAY_SFID_BARRIER_MSG);
3551
3552 brw_inst_set_mask_control(devinfo, inst, BRW_MASK_DISABLE);
3553 }
3554
3555
3556 /**
3557 * Emit the wait instruction for a barrier
3558 */
3559 void
3560 brw_WAIT(struct brw_codegen *p)
3561 {
3562 const struct brw_device_info *devinfo = p->devinfo;
3563 struct brw_inst *insn;
3564
3565 struct brw_reg src = brw_notification_reg();
3566
3567 insn = next_insn(p, BRW_OPCODE_WAIT);
3568 brw_set_dest(p, insn, src);
3569 brw_set_src0(p, insn, src);
3570 brw_set_src1(p, insn, brw_null_reg());
3571
3572 brw_inst_set_exec_size(devinfo, insn, BRW_EXECUTE_1);
3573 brw_inst_set_mask_control(devinfo, insn, BRW_MASK_DISABLE);
3574 }