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