intel/reg: Add helpers for 64-bit integer immediates
[mesa.git] / src / intel / compiler / brw_reg.h
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 /** @file brw_reg.h
33 *
34 * This file defines struct brw_reg, which is our representation for EU
35 * registers. They're not a hardware specific format, just an abstraction
36 * that intends to capture the full flexibility of the hardware registers.
37 *
38 * The brw_eu_emit.c layer's brw_set_dest/brw_set_src[01] functions encode
39 * the abstract brw_reg type into the actual hardware instruction encoding.
40 */
41
42 #ifndef BRW_REG_H
43 #define BRW_REG_H
44
45 #include <stdbool.h>
46 #include "main/compiler.h"
47 #include "main/macros.h"
48 #include "program/prog_instruction.h"
49 #include "brw_eu_defines.h"
50 #include "brw_reg_type.h"
51
52 #ifdef __cplusplus
53 extern "C" {
54 #endif
55
56 struct gen_device_info;
57
58 /** Number of general purpose registers (VS, WM, etc) */
59 #define BRW_MAX_GRF 128
60
61 /**
62 * First GRF used for the MRF hack.
63 *
64 * On gen7, MRFs are no longer used, and contiguous GRFs are used instead. We
65 * haven't converted our compiler to be aware of this, so it asks for MRFs and
66 * brw_eu_emit.c quietly converts them to be accesses of the top GRFs. The
67 * register allocators have to be careful of this to avoid corrupting the "MRF"s
68 * with actual GRF allocations.
69 */
70 #define GEN7_MRF_HACK_START 112
71
72 /** Number of message register file registers */
73 #define BRW_MAX_MRF(gen) (gen == 6 ? 24 : 16)
74
75 #define BRW_SWIZZLE4(a,b,c,d) (((a)<<0) | ((b)<<2) | ((c)<<4) | ((d)<<6))
76 #define BRW_GET_SWZ(swz, idx) (((swz) >> ((idx)*2)) & 0x3)
77
78 #define BRW_SWIZZLE_NOOP BRW_SWIZZLE4(0,1,2,3)
79 #define BRW_SWIZZLE_XYZW BRW_SWIZZLE4(0,1,2,3)
80 #define BRW_SWIZZLE_XXXX BRW_SWIZZLE4(0,0,0,0)
81 #define BRW_SWIZZLE_YYYY BRW_SWIZZLE4(1,1,1,1)
82 #define BRW_SWIZZLE_ZZZZ BRW_SWIZZLE4(2,2,2,2)
83 #define BRW_SWIZZLE_WWWW BRW_SWIZZLE4(3,3,3,3)
84 #define BRW_SWIZZLE_XYXY BRW_SWIZZLE4(0,1,0,1)
85 #define BRW_SWIZZLE_YXYX BRW_SWIZZLE4(1,0,1,0)
86 #define BRW_SWIZZLE_XZXZ BRW_SWIZZLE4(0,2,0,2)
87 #define BRW_SWIZZLE_YZXW BRW_SWIZZLE4(1,2,0,3)
88 #define BRW_SWIZZLE_YWYW BRW_SWIZZLE4(1,3,1,3)
89 #define BRW_SWIZZLE_ZXYW BRW_SWIZZLE4(2,0,1,3)
90 #define BRW_SWIZZLE_ZWZW BRW_SWIZZLE4(2,3,2,3)
91 #define BRW_SWIZZLE_WZWZ BRW_SWIZZLE4(3,2,3,2)
92 #define BRW_SWIZZLE_WZYX BRW_SWIZZLE4(3,2,1,0)
93 #define BRW_SWIZZLE_XXZZ BRW_SWIZZLE4(0,0,2,2)
94 #define BRW_SWIZZLE_YYWW BRW_SWIZZLE4(1,1,3,3)
95 #define BRW_SWIZZLE_YXWZ BRW_SWIZZLE4(1,0,3,2)
96
97 #define BRW_SWZ_COMP_INPUT(comp) (BRW_SWIZZLE_XYZW >> ((comp)*2))
98 #define BRW_SWZ_COMP_OUTPUT(comp) (BRW_SWIZZLE_XYZW << ((comp)*2))
99
100 static inline bool
101 brw_is_single_value_swizzle(unsigned swiz)
102 {
103 return (swiz == BRW_SWIZZLE_XXXX ||
104 swiz == BRW_SWIZZLE_YYYY ||
105 swiz == BRW_SWIZZLE_ZZZZ ||
106 swiz == BRW_SWIZZLE_WWWW);
107 }
108
109 /**
110 * Compute the swizzle obtained from the application of \p swz0 on the result
111 * of \p swz1. The argument ordering is expected to match function
112 * composition.
113 */
114 static inline unsigned
115 brw_compose_swizzle(unsigned swz0, unsigned swz1)
116 {
117 return BRW_SWIZZLE4(
118 BRW_GET_SWZ(swz1, BRW_GET_SWZ(swz0, 0)),
119 BRW_GET_SWZ(swz1, BRW_GET_SWZ(swz0, 1)),
120 BRW_GET_SWZ(swz1, BRW_GET_SWZ(swz0, 2)),
121 BRW_GET_SWZ(swz1, BRW_GET_SWZ(swz0, 3)));
122 }
123
124 /**
125 * Return the result of applying swizzle \p swz to shuffle the bits of \p mask
126 * (AKA image).
127 */
128 static inline unsigned
129 brw_apply_swizzle_to_mask(unsigned swz, unsigned mask)
130 {
131 unsigned result = 0;
132
133 for (unsigned i = 0; i < 4; i++) {
134 if (mask & (1 << BRW_GET_SWZ(swz, i)))
135 result |= 1 << i;
136 }
137
138 return result;
139 }
140
141 /**
142 * Return the result of applying the inverse of swizzle \p swz to shuffle the
143 * bits of \p mask (AKA preimage). Useful to find out which components are
144 * read from a swizzled source given the instruction writemask.
145 */
146 static inline unsigned
147 brw_apply_inv_swizzle_to_mask(unsigned swz, unsigned mask)
148 {
149 unsigned result = 0;
150
151 for (unsigned i = 0; i < 4; i++) {
152 if (mask & (1 << i))
153 result |= 1 << BRW_GET_SWZ(swz, i);
154 }
155
156 return result;
157 }
158
159 /**
160 * Construct an identity swizzle for the set of enabled channels given by \p
161 * mask. The result will only reference channels enabled in the provided \p
162 * mask, assuming that \p mask is non-zero. The constructed swizzle will
163 * satisfy the property that for any instruction OP and any mask:
164 *
165 * brw_OP(p, brw_writemask(dst, mask),
166 * brw_swizzle(src, brw_swizzle_for_mask(mask)));
167 *
168 * will be equivalent to the same instruction without swizzle:
169 *
170 * brw_OP(p, brw_writemask(dst, mask), src);
171 */
172 static inline unsigned
173 brw_swizzle_for_mask(unsigned mask)
174 {
175 unsigned last = (mask ? ffs(mask) - 1 : 0);
176 unsigned swz[4];
177
178 for (unsigned i = 0; i < 4; i++)
179 last = swz[i] = (mask & (1 << i) ? i : last);
180
181 return BRW_SWIZZLE4(swz[0], swz[1], swz[2], swz[3]);
182 }
183
184 /**
185 * Construct an identity swizzle for the first \p n components of a vector.
186 * When only a subset of channels of a vec4 are used we don't want to
187 * reference the other channels, as that will tell optimization passes that
188 * those other channels are used.
189 */
190 static inline unsigned
191 brw_swizzle_for_size(unsigned n)
192 {
193 return brw_swizzle_for_mask((1 << n) - 1);
194 }
195
196 /**
197 * Converse of brw_swizzle_for_mask(). Returns the mask of components
198 * accessed by the specified swizzle \p swz.
199 */
200 static inline unsigned
201 brw_mask_for_swizzle(unsigned swz)
202 {
203 return brw_apply_inv_swizzle_to_mask(swz, ~0);
204 }
205
206 uint32_t brw_swizzle_immediate(enum brw_reg_type type, uint32_t x, unsigned swz);
207
208 #define REG_SIZE (8*4)
209
210 /* These aren't hardware structs, just something useful for us to pass around:
211 *
212 * Align1 operation has a lot of control over input ranges. Used in
213 * WM programs to implement shaders decomposed into "channel serial"
214 * or "structure of array" form:
215 */
216 struct brw_reg {
217 union {
218 struct {
219 enum brw_reg_type type:4;
220 enum brw_reg_file file:3; /* :2 hardware format */
221 unsigned negate:1; /* source only */
222 unsigned abs:1; /* source only */
223 unsigned address_mode:1; /* relative addressing, hopefully! */
224 unsigned pad0:1;
225 unsigned subnr:5; /* :1 in align16 */
226 unsigned nr:16;
227 };
228 uint32_t bits;
229 };
230
231 union {
232 struct {
233 unsigned swizzle:8; /* src only, align16 only */
234 unsigned writemask:4; /* dest only, align16 only */
235 int indirect_offset:10; /* relative addressing offset */
236 unsigned vstride:4; /* source only */
237 unsigned width:3; /* src only, align1 only */
238 unsigned hstride:2; /* align1 only */
239 unsigned pad1:1;
240 };
241
242 double df;
243 uint64_t u64;
244 int64_t d64;
245 float f;
246 int d;
247 unsigned ud;
248 };
249 };
250
251 static inline bool
252 brw_regs_equal(const struct brw_reg *a, const struct brw_reg *b)
253 {
254 const bool df = a->type == BRW_REGISTER_TYPE_DF && a->file == IMM;
255 return a->bits == b->bits && (df ? a->u64 == b->u64 : a->ud == b->ud);
256 }
257
258 struct brw_indirect {
259 unsigned addr_subnr:4;
260 int addr_offset:10;
261 unsigned pad:18;
262 };
263
264
265 static inline unsigned
266 type_sz(unsigned type)
267 {
268 switch(type) {
269 case BRW_REGISTER_TYPE_UQ:
270 case BRW_REGISTER_TYPE_Q:
271 case BRW_REGISTER_TYPE_DF:
272 return 8;
273 case BRW_REGISTER_TYPE_UD:
274 case BRW_REGISTER_TYPE_D:
275 case BRW_REGISTER_TYPE_F:
276 case BRW_REGISTER_TYPE_VF:
277 return 4;
278 case BRW_REGISTER_TYPE_UW:
279 case BRW_REGISTER_TYPE_W:
280 case BRW_REGISTER_TYPE_UV:
281 case BRW_REGISTER_TYPE_V:
282 case BRW_REGISTER_TYPE_HF:
283 return 2;
284 case BRW_REGISTER_TYPE_UB:
285 case BRW_REGISTER_TYPE_B:
286 return 1;
287 default:
288 unreachable("not reached");
289 }
290 }
291
292 static inline enum brw_reg_type
293 get_exec_type(const enum brw_reg_type type)
294 {
295 switch (type) {
296 case BRW_REGISTER_TYPE_B:
297 case BRW_REGISTER_TYPE_V:
298 return BRW_REGISTER_TYPE_W;
299 case BRW_REGISTER_TYPE_UB:
300 case BRW_REGISTER_TYPE_UV:
301 return BRW_REGISTER_TYPE_UW;
302 case BRW_REGISTER_TYPE_VF:
303 return BRW_REGISTER_TYPE_F;
304 default:
305 return type;
306 }
307 }
308
309 /**
310 * Return an integer type of the requested size and signedness.
311 */
312 static inline enum brw_reg_type
313 brw_int_type(unsigned sz, bool is_signed)
314 {
315 switch (sz) {
316 case 1:
317 return (is_signed ? BRW_REGISTER_TYPE_B : BRW_REGISTER_TYPE_UB);
318 case 2:
319 return (is_signed ? BRW_REGISTER_TYPE_W : BRW_REGISTER_TYPE_UW);
320 case 4:
321 return (is_signed ? BRW_REGISTER_TYPE_D : BRW_REGISTER_TYPE_UD);
322 case 8:
323 return (is_signed ? BRW_REGISTER_TYPE_Q : BRW_REGISTER_TYPE_UQ);
324 default:
325 unreachable("Not reached.");
326 }
327 }
328
329 /**
330 * Construct a brw_reg.
331 * \param file one of the BRW_x_REGISTER_FILE values
332 * \param nr register number/index
333 * \param subnr register sub number
334 * \param negate register negate modifier
335 * \param abs register abs modifier
336 * \param type one of BRW_REGISTER_TYPE_x
337 * \param vstride one of BRW_VERTICAL_STRIDE_x
338 * \param width one of BRW_WIDTH_x
339 * \param hstride one of BRW_HORIZONTAL_STRIDE_x
340 * \param swizzle one of BRW_SWIZZLE_x
341 * \param writemask WRITEMASK_X/Y/Z/W bitfield
342 */
343 static inline struct brw_reg
344 brw_reg(enum brw_reg_file file,
345 unsigned nr,
346 unsigned subnr,
347 unsigned negate,
348 unsigned abs,
349 enum brw_reg_type type,
350 unsigned vstride,
351 unsigned width,
352 unsigned hstride,
353 unsigned swizzle,
354 unsigned writemask)
355 {
356 struct brw_reg reg;
357 if (file == BRW_GENERAL_REGISTER_FILE)
358 assert(nr < BRW_MAX_GRF);
359 else if (file == BRW_ARCHITECTURE_REGISTER_FILE)
360 assert(nr <= BRW_ARF_TIMESTAMP);
361 /* Asserting on the MRF register number requires to know the hardware gen
362 * (gen6 has 24 MRF registers), which we don't know here, so we assert
363 * for that in the generators and in brw_eu_emit.c
364 */
365
366 reg.type = type;
367 reg.file = file;
368 reg.negate = negate;
369 reg.abs = abs;
370 reg.address_mode = BRW_ADDRESS_DIRECT;
371 reg.pad0 = 0;
372 reg.subnr = subnr * type_sz(type);
373 reg.nr = nr;
374
375 /* Could do better: If the reg is r5.3<0;1,0>, we probably want to
376 * set swizzle and writemask to W, as the lower bits of subnr will
377 * be lost when converted to align16. This is probably too much to
378 * keep track of as you'd want it adjusted by suboffset(), etc.
379 * Perhaps fix up when converting to align16?
380 */
381 reg.swizzle = swizzle;
382 reg.writemask = writemask;
383 reg.indirect_offset = 0;
384 reg.vstride = vstride;
385 reg.width = width;
386 reg.hstride = hstride;
387 reg.pad1 = 0;
388 return reg;
389 }
390
391 /** Construct float[16] register */
392 static inline struct brw_reg
393 brw_vec16_reg(enum brw_reg_file file, unsigned nr, unsigned subnr)
394 {
395 return brw_reg(file,
396 nr,
397 subnr,
398 0,
399 0,
400 BRW_REGISTER_TYPE_F,
401 BRW_VERTICAL_STRIDE_16,
402 BRW_WIDTH_16,
403 BRW_HORIZONTAL_STRIDE_1,
404 BRW_SWIZZLE_XYZW,
405 WRITEMASK_XYZW);
406 }
407
408 /** Construct float[8] register */
409 static inline struct brw_reg
410 brw_vec8_reg(enum brw_reg_file file, unsigned nr, unsigned subnr)
411 {
412 return brw_reg(file,
413 nr,
414 subnr,
415 0,
416 0,
417 BRW_REGISTER_TYPE_F,
418 BRW_VERTICAL_STRIDE_8,
419 BRW_WIDTH_8,
420 BRW_HORIZONTAL_STRIDE_1,
421 BRW_SWIZZLE_XYZW,
422 WRITEMASK_XYZW);
423 }
424
425 /** Construct float[4] register */
426 static inline struct brw_reg
427 brw_vec4_reg(enum brw_reg_file file, unsigned nr, unsigned subnr)
428 {
429 return brw_reg(file,
430 nr,
431 subnr,
432 0,
433 0,
434 BRW_REGISTER_TYPE_F,
435 BRW_VERTICAL_STRIDE_4,
436 BRW_WIDTH_4,
437 BRW_HORIZONTAL_STRIDE_1,
438 BRW_SWIZZLE_XYZW,
439 WRITEMASK_XYZW);
440 }
441
442 /** Construct float[2] register */
443 static inline struct brw_reg
444 brw_vec2_reg(enum brw_reg_file file, unsigned nr, unsigned subnr)
445 {
446 return brw_reg(file,
447 nr,
448 subnr,
449 0,
450 0,
451 BRW_REGISTER_TYPE_F,
452 BRW_VERTICAL_STRIDE_2,
453 BRW_WIDTH_2,
454 BRW_HORIZONTAL_STRIDE_1,
455 BRW_SWIZZLE_XYXY,
456 WRITEMASK_XY);
457 }
458
459 /** Construct float[1] register */
460 static inline struct brw_reg
461 brw_vec1_reg(enum brw_reg_file file, unsigned nr, unsigned subnr)
462 {
463 return brw_reg(file,
464 nr,
465 subnr,
466 0,
467 0,
468 BRW_REGISTER_TYPE_F,
469 BRW_VERTICAL_STRIDE_0,
470 BRW_WIDTH_1,
471 BRW_HORIZONTAL_STRIDE_0,
472 BRW_SWIZZLE_XXXX,
473 WRITEMASK_X);
474 }
475
476 static inline struct brw_reg
477 brw_vecn_reg(unsigned width, enum brw_reg_file file,
478 unsigned nr, unsigned subnr)
479 {
480 switch (width) {
481 case 1:
482 return brw_vec1_reg(file, nr, subnr);
483 case 2:
484 return brw_vec2_reg(file, nr, subnr);
485 case 4:
486 return brw_vec4_reg(file, nr, subnr);
487 case 8:
488 return brw_vec8_reg(file, nr, subnr);
489 case 16:
490 return brw_vec16_reg(file, nr, subnr);
491 default:
492 unreachable("Invalid register width");
493 }
494 }
495
496 static inline struct brw_reg
497 retype(struct brw_reg reg, enum brw_reg_type type)
498 {
499 reg.type = type;
500 return reg;
501 }
502
503 static inline struct brw_reg
504 firsthalf(struct brw_reg reg)
505 {
506 return reg;
507 }
508
509 static inline struct brw_reg
510 sechalf(struct brw_reg reg)
511 {
512 if (reg.vstride)
513 reg.nr++;
514 return reg;
515 }
516
517 static inline struct brw_reg
518 offset(struct brw_reg reg, unsigned delta)
519 {
520 reg.nr += delta;
521 return reg;
522 }
523
524
525 static inline struct brw_reg
526 byte_offset(struct brw_reg reg, unsigned bytes)
527 {
528 unsigned newoffset = reg.nr * REG_SIZE + reg.subnr + bytes;
529 reg.nr = newoffset / REG_SIZE;
530 reg.subnr = newoffset % REG_SIZE;
531 return reg;
532 }
533
534 static inline struct brw_reg
535 suboffset(struct brw_reg reg, unsigned delta)
536 {
537 return byte_offset(reg, delta * type_sz(reg.type));
538 }
539
540 /** Construct unsigned word[16] register */
541 static inline struct brw_reg
542 brw_uw16_reg(enum brw_reg_file file, unsigned nr, unsigned subnr)
543 {
544 return suboffset(retype(brw_vec16_reg(file, nr, 0), BRW_REGISTER_TYPE_UW), subnr);
545 }
546
547 /** Construct unsigned word[8] register */
548 static inline struct brw_reg
549 brw_uw8_reg(enum brw_reg_file file, unsigned nr, unsigned subnr)
550 {
551 return suboffset(retype(brw_vec8_reg(file, nr, 0), BRW_REGISTER_TYPE_UW), subnr);
552 }
553
554 /** Construct unsigned word[1] register */
555 static inline struct brw_reg
556 brw_uw1_reg(enum brw_reg_file file, unsigned nr, unsigned subnr)
557 {
558 return suboffset(retype(brw_vec1_reg(file, nr, 0), BRW_REGISTER_TYPE_UW), subnr);
559 }
560
561 static inline struct brw_reg
562 brw_ud1_reg(enum brw_reg_file file, unsigned nr, unsigned subnr)
563 {
564 return retype(brw_vec1_reg(file, nr, subnr), BRW_REGISTER_TYPE_UD);
565 }
566
567 static inline struct brw_reg
568 brw_imm_reg(enum brw_reg_type type)
569 {
570 return brw_reg(BRW_IMMEDIATE_VALUE,
571 0,
572 0,
573 0,
574 0,
575 type,
576 BRW_VERTICAL_STRIDE_0,
577 BRW_WIDTH_1,
578 BRW_HORIZONTAL_STRIDE_0,
579 0,
580 0);
581 }
582
583 /** Construct float immediate register */
584 static inline struct brw_reg
585 brw_imm_df(double df)
586 {
587 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_DF);
588 imm.df = df;
589 return imm;
590 }
591
592 static inline struct brw_reg
593 brw_imm_f(float f)
594 {
595 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_F);
596 imm.f = f;
597 return imm;
598 }
599
600 /** Construct int64_t immediate register */
601 static inline struct brw_reg
602 brw_imm_q(int64_t q)
603 {
604 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_Q);
605 imm.d64 = q;
606 return imm;
607 }
608
609 /** Construct int64_t immediate register */
610 static inline struct brw_reg
611 brw_imm_uq(uint64_t uq)
612 {
613 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_UQ);
614 imm.u64 = uq;
615 return imm;
616 }
617
618 /** Construct integer immediate register */
619 static inline struct brw_reg
620 brw_imm_d(int d)
621 {
622 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_D);
623 imm.d = d;
624 return imm;
625 }
626
627 /** Construct uint immediate register */
628 static inline struct brw_reg
629 brw_imm_ud(unsigned ud)
630 {
631 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_UD);
632 imm.ud = ud;
633 return imm;
634 }
635
636 /** Construct ushort immediate register */
637 static inline struct brw_reg
638 brw_imm_uw(uint16_t uw)
639 {
640 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_UW);
641 imm.ud = uw | (uw << 16);
642 return imm;
643 }
644
645 /** Construct short immediate register */
646 static inline struct brw_reg
647 brw_imm_w(int16_t w)
648 {
649 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_W);
650 imm.d = w | (w << 16);
651 return imm;
652 }
653
654 /* brw_imm_b and brw_imm_ub aren't supported by hardware - the type
655 * numbers alias with _V and _VF below:
656 */
657
658 /** Construct vector of eight signed half-byte values */
659 static inline struct brw_reg
660 brw_imm_v(unsigned v)
661 {
662 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_V);
663 imm.ud = v;
664 return imm;
665 }
666
667 /** Construct vector of eight unsigned half-byte values */
668 static inline struct brw_reg
669 brw_imm_uv(unsigned uv)
670 {
671 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_UV);
672 imm.ud = uv;
673 return imm;
674 }
675
676 /** Construct vector of four 8-bit float values */
677 static inline struct brw_reg
678 brw_imm_vf(unsigned v)
679 {
680 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_VF);
681 imm.ud = v;
682 return imm;
683 }
684
685 static inline struct brw_reg
686 brw_imm_vf4(unsigned v0, unsigned v1, unsigned v2, unsigned v3)
687 {
688 struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_VF);
689 imm.vstride = BRW_VERTICAL_STRIDE_0;
690 imm.width = BRW_WIDTH_4;
691 imm.hstride = BRW_HORIZONTAL_STRIDE_1;
692 imm.ud = ((v0 << 0) | (v1 << 8) | (v2 << 16) | (v3 << 24));
693 return imm;
694 }
695
696
697 static inline struct brw_reg
698 brw_address(struct brw_reg reg)
699 {
700 return brw_imm_uw(reg.nr * REG_SIZE + reg.subnr);
701 }
702
703 /** Construct float[1] general-purpose register */
704 static inline struct brw_reg
705 brw_vec1_grf(unsigned nr, unsigned subnr)
706 {
707 return brw_vec1_reg(BRW_GENERAL_REGISTER_FILE, nr, subnr);
708 }
709
710 /** Construct float[2] general-purpose register */
711 static inline struct brw_reg
712 brw_vec2_grf(unsigned nr, unsigned subnr)
713 {
714 return brw_vec2_reg(BRW_GENERAL_REGISTER_FILE, nr, subnr);
715 }
716
717 /** Construct float[4] general-purpose register */
718 static inline struct brw_reg
719 brw_vec4_grf(unsigned nr, unsigned subnr)
720 {
721 return brw_vec4_reg(BRW_GENERAL_REGISTER_FILE, nr, subnr);
722 }
723
724 /** Construct float[8] general-purpose register */
725 static inline struct brw_reg
726 brw_vec8_grf(unsigned nr, unsigned subnr)
727 {
728 return brw_vec8_reg(BRW_GENERAL_REGISTER_FILE, nr, subnr);
729 }
730
731 /** Construct float[16] general-purpose register */
732 static inline struct brw_reg
733 brw_vec16_grf(unsigned nr, unsigned subnr)
734 {
735 return brw_vec16_reg(BRW_GENERAL_REGISTER_FILE, nr, subnr);
736 }
737
738 static inline struct brw_reg
739 brw_vecn_grf(unsigned width, unsigned nr, unsigned subnr)
740 {
741 return brw_vecn_reg(width, BRW_GENERAL_REGISTER_FILE, nr, subnr);
742 }
743
744
745 static inline struct brw_reg
746 brw_uw8_grf(unsigned nr, unsigned subnr)
747 {
748 return brw_uw8_reg(BRW_GENERAL_REGISTER_FILE, nr, subnr);
749 }
750
751 static inline struct brw_reg
752 brw_uw16_grf(unsigned nr, unsigned subnr)
753 {
754 return brw_uw16_reg(BRW_GENERAL_REGISTER_FILE, nr, subnr);
755 }
756
757
758 /** Construct null register (usually used for setting condition codes) */
759 static inline struct brw_reg
760 brw_null_reg(void)
761 {
762 return brw_vec8_reg(BRW_ARCHITECTURE_REGISTER_FILE, BRW_ARF_NULL, 0);
763 }
764
765 static inline struct brw_reg
766 brw_null_vec(unsigned width)
767 {
768 return brw_vecn_reg(width, BRW_ARCHITECTURE_REGISTER_FILE, BRW_ARF_NULL, 0);
769 }
770
771 static inline struct brw_reg
772 brw_address_reg(unsigned subnr)
773 {
774 return brw_uw1_reg(BRW_ARCHITECTURE_REGISTER_FILE, BRW_ARF_ADDRESS, subnr);
775 }
776
777 /* If/else instructions break in align16 mode if writemask & swizzle
778 * aren't xyzw. This goes against the convention for other scalar
779 * regs:
780 */
781 static inline struct brw_reg
782 brw_ip_reg(void)
783 {
784 return brw_reg(BRW_ARCHITECTURE_REGISTER_FILE,
785 BRW_ARF_IP,
786 0,
787 0,
788 0,
789 BRW_REGISTER_TYPE_UD,
790 BRW_VERTICAL_STRIDE_4, /* ? */
791 BRW_WIDTH_1,
792 BRW_HORIZONTAL_STRIDE_0,
793 BRW_SWIZZLE_XYZW, /* NOTE! */
794 WRITEMASK_XYZW); /* NOTE! */
795 }
796
797 static inline struct brw_reg
798 brw_notification_reg(void)
799 {
800 return brw_reg(BRW_ARCHITECTURE_REGISTER_FILE,
801 BRW_ARF_NOTIFICATION_COUNT,
802 0,
803 0,
804 0,
805 BRW_REGISTER_TYPE_UD,
806 BRW_VERTICAL_STRIDE_0,
807 BRW_WIDTH_1,
808 BRW_HORIZONTAL_STRIDE_0,
809 BRW_SWIZZLE_XXXX,
810 WRITEMASK_X);
811 }
812
813 static inline struct brw_reg
814 brw_sr0_reg(unsigned subnr)
815 {
816 return brw_ud1_reg(BRW_ARCHITECTURE_REGISTER_FILE, BRW_ARF_STATE, subnr);
817 }
818
819 static inline struct brw_reg
820 brw_acc_reg(unsigned width)
821 {
822 return brw_vecn_reg(width, BRW_ARCHITECTURE_REGISTER_FILE,
823 BRW_ARF_ACCUMULATOR, 0);
824 }
825
826 static inline struct brw_reg
827 brw_flag_reg(int reg, int subreg)
828 {
829 return brw_uw1_reg(BRW_ARCHITECTURE_REGISTER_FILE,
830 BRW_ARF_FLAG + reg, subreg);
831 }
832
833 /**
834 * Return the mask register present in Gen4-5, or the related register present
835 * in Gen7.5 and later hardware referred to as "channel enable" register in
836 * the documentation.
837 */
838 static inline struct brw_reg
839 brw_mask_reg(unsigned subnr)
840 {
841 return brw_uw1_reg(BRW_ARCHITECTURE_REGISTER_FILE, BRW_ARF_MASK, subnr);
842 }
843
844 static inline struct brw_reg
845 brw_vmask_reg()
846 {
847 return brw_sr0_reg(3);
848 }
849
850 static inline struct brw_reg
851 brw_dmask_reg()
852 {
853 return brw_sr0_reg(2);
854 }
855
856 static inline struct brw_reg
857 brw_message_reg(unsigned nr)
858 {
859 return brw_vec8_reg(BRW_MESSAGE_REGISTER_FILE, nr, 0);
860 }
861
862 static inline struct brw_reg
863 brw_uvec_mrf(unsigned width, unsigned nr, unsigned subnr)
864 {
865 return retype(brw_vecn_reg(width, BRW_MESSAGE_REGISTER_FILE, nr, subnr),
866 BRW_REGISTER_TYPE_UD);
867 }
868
869 /* This is almost always called with a numeric constant argument, so
870 * make things easy to evaluate at compile time:
871 */
872 static inline unsigned cvt(unsigned val)
873 {
874 switch (val) {
875 case 0: return 0;
876 case 1: return 1;
877 case 2: return 2;
878 case 4: return 3;
879 case 8: return 4;
880 case 16: return 5;
881 case 32: return 6;
882 }
883 return 0;
884 }
885
886 static inline struct brw_reg
887 stride(struct brw_reg reg, unsigned vstride, unsigned width, unsigned hstride)
888 {
889 reg.vstride = cvt(vstride);
890 reg.width = cvt(width) - 1;
891 reg.hstride = cvt(hstride);
892 return reg;
893 }
894
895 /**
896 * Multiply the vertical and horizontal stride of a register by the given
897 * factor \a s.
898 */
899 static inline struct brw_reg
900 spread(struct brw_reg reg, unsigned s)
901 {
902 if (s) {
903 assert(_mesa_is_pow_two(s));
904
905 if (reg.hstride)
906 reg.hstride += cvt(s) - 1;
907
908 if (reg.vstride)
909 reg.vstride += cvt(s) - 1;
910
911 return reg;
912 } else {
913 return stride(reg, 0, 1, 0);
914 }
915 }
916
917 /**
918 * Reinterpret each channel of register \p reg as a vector of values of the
919 * given smaller type and take the i-th subcomponent from each.
920 */
921 static inline struct brw_reg
922 subscript(struct brw_reg reg, enum brw_reg_type type, unsigned i)
923 {
924 if (reg.file == IMM)
925 return reg;
926
927 unsigned scale = type_sz(reg.type) / type_sz(type);
928 assert(scale >= 1 && i < scale);
929
930 return suboffset(retype(spread(reg, scale), type), i);
931 }
932
933 static inline struct brw_reg
934 vec16(struct brw_reg reg)
935 {
936 return stride(reg, 16,16,1);
937 }
938
939 static inline struct brw_reg
940 vec8(struct brw_reg reg)
941 {
942 return stride(reg, 8,8,1);
943 }
944
945 static inline struct brw_reg
946 vec4(struct brw_reg reg)
947 {
948 return stride(reg, 4,4,1);
949 }
950
951 static inline struct brw_reg
952 vec2(struct brw_reg reg)
953 {
954 return stride(reg, 2,2,1);
955 }
956
957 static inline struct brw_reg
958 vec1(struct brw_reg reg)
959 {
960 return stride(reg, 0,1,0);
961 }
962
963
964 static inline struct brw_reg
965 get_element(struct brw_reg reg, unsigned elt)
966 {
967 return vec1(suboffset(reg, elt));
968 }
969
970 static inline struct brw_reg
971 get_element_ud(struct brw_reg reg, unsigned elt)
972 {
973 return vec1(suboffset(retype(reg, BRW_REGISTER_TYPE_UD), elt));
974 }
975
976 static inline struct brw_reg
977 get_element_d(struct brw_reg reg, unsigned elt)
978 {
979 return vec1(suboffset(retype(reg, BRW_REGISTER_TYPE_D), elt));
980 }
981
982 static inline struct brw_reg
983 brw_swizzle(struct brw_reg reg, unsigned swz)
984 {
985 if (reg.file == BRW_IMMEDIATE_VALUE)
986 reg.ud = brw_swizzle_immediate(reg.type, reg.ud, swz);
987 else
988 reg.swizzle = brw_compose_swizzle(swz, reg.swizzle);
989
990 return reg;
991 }
992
993 static inline struct brw_reg
994 brw_writemask(struct brw_reg reg, unsigned mask)
995 {
996 assert(reg.file != BRW_IMMEDIATE_VALUE);
997 reg.writemask &= mask;
998 return reg;
999 }
1000
1001 static inline struct brw_reg
1002 brw_set_writemask(struct brw_reg reg, unsigned mask)
1003 {
1004 assert(reg.file != BRW_IMMEDIATE_VALUE);
1005 reg.writemask = mask;
1006 return reg;
1007 }
1008
1009 static inline unsigned
1010 brw_writemask_for_size(unsigned n)
1011 {
1012 return (1 << n) - 1;
1013 }
1014
1015 static inline unsigned
1016 brw_writemask_for_component_packing(unsigned n, unsigned first_component)
1017 {
1018 assert(first_component + n <= 4);
1019 return (((1 << n) - 1) << first_component);
1020 }
1021
1022 static inline struct brw_reg
1023 negate(struct brw_reg reg)
1024 {
1025 reg.negate ^= 1;
1026 return reg;
1027 }
1028
1029 static inline struct brw_reg
1030 brw_abs(struct brw_reg reg)
1031 {
1032 reg.abs = 1;
1033 reg.negate = 0;
1034 return reg;
1035 }
1036
1037 /************************************************************************/
1038
1039 static inline struct brw_reg
1040 brw_vec4_indirect(unsigned subnr, int offset)
1041 {
1042 struct brw_reg reg = brw_vec4_grf(0, 0);
1043 reg.subnr = subnr;
1044 reg.address_mode = BRW_ADDRESS_REGISTER_INDIRECT_REGISTER;
1045 reg.indirect_offset = offset;
1046 return reg;
1047 }
1048
1049 static inline struct brw_reg
1050 brw_vec1_indirect(unsigned subnr, int offset)
1051 {
1052 struct brw_reg reg = brw_vec1_grf(0, 0);
1053 reg.subnr = subnr;
1054 reg.address_mode = BRW_ADDRESS_REGISTER_INDIRECT_REGISTER;
1055 reg.indirect_offset = offset;
1056 return reg;
1057 }
1058
1059 static inline struct brw_reg
1060 brw_VxH_indirect(unsigned subnr, int offset)
1061 {
1062 struct brw_reg reg = brw_vec1_grf(0, 0);
1063 reg.vstride = BRW_VERTICAL_STRIDE_ONE_DIMENSIONAL;
1064 reg.subnr = subnr;
1065 reg.address_mode = BRW_ADDRESS_REGISTER_INDIRECT_REGISTER;
1066 reg.indirect_offset = offset;
1067 return reg;
1068 }
1069
1070 static inline struct brw_reg
1071 deref_4f(struct brw_indirect ptr, int offset)
1072 {
1073 return brw_vec4_indirect(ptr.addr_subnr, ptr.addr_offset + offset);
1074 }
1075
1076 static inline struct brw_reg
1077 deref_1f(struct brw_indirect ptr, int offset)
1078 {
1079 return brw_vec1_indirect(ptr.addr_subnr, ptr.addr_offset + offset);
1080 }
1081
1082 static inline struct brw_reg
1083 deref_4b(struct brw_indirect ptr, int offset)
1084 {
1085 return retype(deref_4f(ptr, offset), BRW_REGISTER_TYPE_B);
1086 }
1087
1088 static inline struct brw_reg
1089 deref_1uw(struct brw_indirect ptr, int offset)
1090 {
1091 return retype(deref_1f(ptr, offset), BRW_REGISTER_TYPE_UW);
1092 }
1093
1094 static inline struct brw_reg
1095 deref_1d(struct brw_indirect ptr, int offset)
1096 {
1097 return retype(deref_1f(ptr, offset), BRW_REGISTER_TYPE_D);
1098 }
1099
1100 static inline struct brw_reg
1101 deref_1ud(struct brw_indirect ptr, int offset)
1102 {
1103 return retype(deref_1f(ptr, offset), BRW_REGISTER_TYPE_UD);
1104 }
1105
1106 static inline struct brw_reg
1107 get_addr_reg(struct brw_indirect ptr)
1108 {
1109 return brw_address_reg(ptr.addr_subnr);
1110 }
1111
1112 static inline struct brw_indirect
1113 brw_indirect_offset(struct brw_indirect ptr, int offset)
1114 {
1115 ptr.addr_offset += offset;
1116 return ptr;
1117 }
1118
1119 static inline struct brw_indirect
1120 brw_indirect(unsigned addr_subnr, int offset)
1121 {
1122 struct brw_indirect ptr;
1123 ptr.addr_subnr = addr_subnr;
1124 ptr.addr_offset = offset;
1125 ptr.pad = 0;
1126 return ptr;
1127 }
1128
1129 static inline bool
1130 region_matches(struct brw_reg reg, enum brw_vertical_stride v,
1131 enum brw_width w, enum brw_horizontal_stride h)
1132 {
1133 return reg.vstride == v &&
1134 reg.width == w &&
1135 reg.hstride == h;
1136 }
1137
1138 #define has_scalar_region(reg) \
1139 region_matches(reg, BRW_VERTICAL_STRIDE_0, BRW_WIDTH_1, \
1140 BRW_HORIZONTAL_STRIDE_0)
1141
1142 /* brw_packed_float.c */
1143 int brw_float_to_vf(float f);
1144 float brw_vf_to_float(unsigned char vf);
1145
1146 #ifdef __cplusplus
1147 }
1148 #endif
1149
1150 #endif