freedreno/ir3: Add cat4 mediump opcodes
[mesa.git] / src / freedreno / ir3 / ir3.h
1 /*
2 * Copyright (c) 2013 Rob Clark <robdclark@gmail.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24 #ifndef IR3_H_
25 #define IR3_H_
26
27 #include <stdint.h>
28 #include <stdbool.h>
29
30 #include "compiler/shader_enums.h"
31
32 #include "util/bitscan.h"
33 #include "util/list.h"
34 #include "util/set.h"
35 #include "util/u_debug.h"
36
37 #include "instr-a3xx.h"
38
39 /* low level intermediate representation of an adreno shader program */
40
41 struct ir3_compiler;
42 struct ir3;
43 struct ir3_instruction;
44 struct ir3_block;
45
46 struct ir3_info {
47 uint32_t gpu_id;
48 uint16_t sizedwords;
49 uint16_t instrs_count; /* expanded to account for rpt's */
50 uint16_t nops_count; /* # of nop instructions, including nopN */
51 /* NOTE: max_reg, etc, does not include registers not touched
52 * by the shader (ie. vertex fetched via VFD_DECODE but not
53 * touched by shader)
54 */
55 int8_t max_reg; /* highest GPR # used by shader */
56 int8_t max_half_reg;
57 int16_t max_const;
58
59 /* number of sync bits: */
60 uint16_t ss, sy;
61
62 uint16_t last_baryf; /* instruction # of last varying fetch */
63 };
64
65 struct ir3_register {
66 enum {
67 IR3_REG_CONST = 0x001,
68 IR3_REG_IMMED = 0x002,
69 IR3_REG_HALF = 0x004,
70 /* high registers are used for some things in compute shaders,
71 * for example. Seems to be for things that are global to all
72 * threads in a wave, so possibly these are global/shared by
73 * all the threads in the wave?
74 */
75 IR3_REG_HIGH = 0x008,
76 IR3_REG_RELATIV= 0x010,
77 IR3_REG_R = 0x020,
78 /* Most instructions, it seems, can do float abs/neg but not
79 * integer. The CP pass needs to know what is intended (int or
80 * float) in order to do the right thing. For this reason the
81 * abs/neg flags are split out into float and int variants. In
82 * addition, .b (bitwise) operations, the negate is actually a
83 * bitwise not, so split that out into a new flag to make it
84 * more clear.
85 */
86 IR3_REG_FNEG = 0x040,
87 IR3_REG_FABS = 0x080,
88 IR3_REG_SNEG = 0x100,
89 IR3_REG_SABS = 0x200,
90 IR3_REG_BNOT = 0x400,
91 IR3_REG_EVEN = 0x800,
92 IR3_REG_POS_INF= 0x1000,
93 /* (ei) flag, end-input? Set on last bary, presumably to signal
94 * that the shader needs no more input:
95 */
96 IR3_REG_EI = 0x2000,
97 /* meta-flags, for intermediate stages of IR, ie.
98 * before register assignment is done:
99 */
100 IR3_REG_SSA = 0x4000, /* 'instr' is ptr to assigning instr */
101 IR3_REG_ARRAY = 0x8000,
102
103 } flags;
104
105 /* used for cat5 instructions, but also for internal/IR level
106 * tracking of what registers are read/written by an instruction.
107 * wrmask may be a bad name since it is used to represent both
108 * src and dst that touch multiple adjacent registers.
109 */
110 unsigned wrmask : 16; /* up to vec16 */
111
112 /* for relative addressing, 32bits for array size is too small,
113 * but otoh we don't need to deal with disjoint sets, so instead
114 * use a simple size field (number of scalar components).
115 *
116 * Note the size field isn't important for relative const (since
117 * we don't have to do register allocation for constants).
118 */
119 unsigned size : 15;
120
121 bool merged : 1; /* half-regs conflict with full regs (ie >= a6xx) */
122
123 /* normal registers:
124 * the component is in the low two bits of the reg #, so
125 * rN.x becomes: (N << 2) | x
126 */
127 uint16_t num;
128 union {
129 /* immediate: */
130 int32_t iim_val;
131 uint32_t uim_val;
132 float fim_val;
133 /* relative: */
134 struct {
135 uint16_t id;
136 int16_t offset;
137 } array;
138 };
139
140 /* For IR3_REG_SSA, src registers contain ptr back to assigning
141 * instruction.
142 *
143 * For IR3_REG_ARRAY, the pointer is back to the last dependent
144 * array access (although the net effect is the same, it points
145 * back to a previous instruction that we depend on).
146 */
147 struct ir3_instruction *instr;
148 };
149
150 /*
151 * Stupid/simple growable array implementation:
152 */
153 #define DECLARE_ARRAY(type, name) \
154 unsigned name ## _count, name ## _sz; \
155 type * name;
156
157 #define array_insert(ctx, arr, val) do { \
158 if (arr ## _count == arr ## _sz) { \
159 arr ## _sz = MAX2(2 * arr ## _sz, 16); \
160 arr = reralloc_size(ctx, arr, arr ## _sz * sizeof(arr[0])); \
161 } \
162 arr[arr ##_count++] = val; \
163 } while (0)
164
165 struct ir3_instruction {
166 struct ir3_block *block;
167 opc_t opc;
168 enum {
169 /* (sy) flag is set on first instruction, and after sample
170 * instructions (probably just on RAW hazard).
171 */
172 IR3_INSTR_SY = 0x001,
173 /* (ss) flag is set on first instruction, and first instruction
174 * to depend on the result of "long" instructions (RAW hazard):
175 *
176 * rcp, rsq, log2, exp2, sin, cos, sqrt
177 *
178 * It seems to synchronize until all in-flight instructions are
179 * completed, for example:
180 *
181 * rsq hr1.w, hr1.w
182 * add.f hr2.z, (neg)hr2.z, hc0.y
183 * mul.f hr2.w, (neg)hr2.y, (neg)hr2.y
184 * rsq hr2.x, hr2.x
185 * (rpt1)nop
186 * mad.f16 hr2.w, hr2.z, hr2.z, hr2.w
187 * nop
188 * mad.f16 hr2.w, (neg)hr0.w, (neg)hr0.w, hr2.w
189 * (ss)(rpt2)mul.f hr1.x, (r)hr1.x, hr1.w
190 * (rpt2)mul.f hr0.x, (neg)(r)hr0.x, hr2.x
191 *
192 * The last mul.f does not have (ss) set, presumably because the
193 * (ss) on the previous instruction does the job.
194 *
195 * The blob driver also seems to set it on WAR hazards, although
196 * not really clear if this is needed or just blob compiler being
197 * sloppy. So far I haven't found a case where removing the (ss)
198 * causes problems for WAR hazard, but I could just be getting
199 * lucky:
200 *
201 * rcp r1.y, r3.y
202 * (ss)(rpt2)mad.f32 r3.y, (r)c9.x, r1.x, (r)r3.z
203 *
204 */
205 IR3_INSTR_SS = 0x002,
206 /* (jp) flag is set on jump targets:
207 */
208 IR3_INSTR_JP = 0x004,
209 IR3_INSTR_UL = 0x008,
210 IR3_INSTR_3D = 0x010,
211 IR3_INSTR_A = 0x020,
212 IR3_INSTR_O = 0x040,
213 IR3_INSTR_P = 0x080,
214 IR3_INSTR_S = 0x100,
215 IR3_INSTR_S2EN = 0x200,
216 IR3_INSTR_G = 0x400,
217 IR3_INSTR_SAT = 0x800,
218 /* meta-flags, for intermediate stages of IR, ie.
219 * before register assignment is done:
220 */
221 IR3_INSTR_MARK = 0x1000,
222 IR3_INSTR_UNUSED= 0x2000,
223 } flags;
224 uint8_t repeat;
225 uint8_t nop;
226 #ifdef DEBUG
227 unsigned regs_max;
228 #endif
229 unsigned regs_count;
230 struct ir3_register **regs;
231 union {
232 struct {
233 char inv;
234 char comp;
235 int immed;
236 struct ir3_block *target;
237 } cat0;
238 struct {
239 type_t src_type, dst_type;
240 } cat1;
241 struct {
242 enum {
243 IR3_COND_LT = 0,
244 IR3_COND_LE = 1,
245 IR3_COND_GT = 2,
246 IR3_COND_GE = 3,
247 IR3_COND_EQ = 4,
248 IR3_COND_NE = 5,
249 } condition;
250 } cat2;
251 struct {
252 unsigned samp, tex;
253 type_t type;
254 } cat5;
255 struct {
256 type_t type;
257 int src_offset;
258 int dst_offset;
259 int iim_val : 3; /* for ldgb/stgb, # of components */
260 unsigned d : 3;
261 bool typed : 1;
262 } cat6;
263 struct {
264 unsigned w : 1; /* write */
265 unsigned r : 1; /* read */
266 unsigned l : 1; /* local */
267 unsigned g : 1; /* global */
268 } cat7;
269 /* for meta-instructions, just used to hold extra data
270 * before instruction scheduling, etc
271 */
272 struct {
273 int off; /* component/offset */
274 } split;
275 struct {
276 /* for output collects, this maps back to the entry in the
277 * ir3_shader_variant::outputs table.
278 */
279 int outidx;
280 } collect;
281 struct {
282 unsigned samp, tex;
283 unsigned input_offset;
284 } prefetch;
285 struct {
286 /* maps back to entry in ir3_shader_variant::inputs table: */
287 int inidx;
288 /* for sysvals, identifies the sysval type. Mostly so we can
289 * identify the special cases where a sysval should not be DCE'd
290 * (currently, just pre-fs texture fetch)
291 */
292 gl_system_value sysval;
293 } input;
294 };
295
296 /* transient values used during various algorithms: */
297 union {
298 /* The instruction depth is the max dependency distance to output.
299 *
300 * You can also think of it as the "cost", if we did any sort of
301 * optimization for register footprint. Ie. a value that is just
302 * result of moving a const to a reg would have a low cost, so to
303 * it could make sense to duplicate the instruction at various
304 * points where the result is needed to reduce register footprint.
305 */
306 int depth;
307 /* When we get to the RA stage, we no longer need depth, but
308 * we do need instruction's position/name:
309 */
310 struct {
311 uint16_t ip;
312 uint16_t name;
313 };
314 };
315
316 /* used for per-pass extra instruction data.
317 *
318 * TODO we should remove the per-pass data like this and 'use_count'
319 * and do something similar to what RA does w/ ir3_ra_instr_data..
320 * ie. use the ir3_count_instructions pass, and then use instr->ip
321 * to index into a table of pass-private data.
322 */
323 void *data;
324
325 int sun; /* Sethi–Ullman number, used by sched */
326 int use_count; /* currently just updated/used by cp */
327
328 /* Used during CP and RA stages. For collect and shader inputs/
329 * outputs where we need a sequence of consecutive registers,
330 * keep track of each src instructions left (ie 'n-1') and right
331 * (ie 'n+1') neighbor. The front-end must insert enough mov's
332 * to ensure that each instruction has at most one left and at
333 * most one right neighbor. During the copy-propagation pass,
334 * we only remove mov's when we can preserve this constraint.
335 * And during the RA stage, we use the neighbor information to
336 * allocate a block of registers in one shot.
337 *
338 * TODO: maybe just add something like:
339 * struct ir3_instruction_ref {
340 * struct ir3_instruction *instr;
341 * unsigned cnt;
342 * }
343 *
344 * Or can we get away without the refcnt stuff? It seems like
345 * it should be overkill.. the problem is if, potentially after
346 * already eliminating some mov's, if you have a single mov that
347 * needs to be grouped with it's neighbors in two different
348 * places (ex. shader output and a collect).
349 */
350 struct {
351 struct ir3_instruction *left, *right;
352 uint16_t left_cnt, right_cnt;
353 } cp;
354
355 /* an instruction can reference at most one address register amongst
356 * it's src/dst registers. Beyond that, you need to insert mov's.
357 *
358 * NOTE: do not write this directly, use ir3_instr_set_address()
359 */
360 struct ir3_instruction *address;
361
362 /* Tracking for additional dependent instructions. Used to handle
363 * barriers, WAR hazards for arrays/SSBOs/etc.
364 */
365 DECLARE_ARRAY(struct ir3_instruction *, deps);
366
367 /*
368 * From PoV of instruction scheduling, not execution (ie. ignores global/
369 * local distinction):
370 * shared image atomic SSBO everything
371 * barrier()/ - R/W R/W R/W R/W X
372 * groupMemoryBarrier()
373 * memoryBarrier() - R/W R/W
374 * (but only images declared coherent?)
375 * memoryBarrierAtomic() - R/W
376 * memoryBarrierBuffer() - R/W
377 * memoryBarrierImage() - R/W
378 * memoryBarrierShared() - R/W
379 *
380 * TODO I think for SSBO/image/shared, in cases where we can determine
381 * which variable is accessed, we don't need to care about accesses to
382 * different variables (unless declared coherent??)
383 */
384 enum {
385 IR3_BARRIER_EVERYTHING = 1 << 0,
386 IR3_BARRIER_SHARED_R = 1 << 1,
387 IR3_BARRIER_SHARED_W = 1 << 2,
388 IR3_BARRIER_IMAGE_R = 1 << 3,
389 IR3_BARRIER_IMAGE_W = 1 << 4,
390 IR3_BARRIER_BUFFER_R = 1 << 5,
391 IR3_BARRIER_BUFFER_W = 1 << 6,
392 IR3_BARRIER_ARRAY_R = 1 << 7,
393 IR3_BARRIER_ARRAY_W = 1 << 8,
394 } barrier_class, barrier_conflict;
395
396 /* Entry in ir3_block's instruction list: */
397 struct list_head node;
398
399 #ifdef DEBUG
400 uint32_t serialno;
401 #endif
402 };
403
404 static inline struct ir3_instruction *
405 ir3_neighbor_first(struct ir3_instruction *instr)
406 {
407 int cnt = 0;
408 while (instr->cp.left) {
409 instr = instr->cp.left;
410 if (++cnt > 0xffff) {
411 debug_assert(0);
412 break;
413 }
414 }
415 return instr;
416 }
417
418 static inline int ir3_neighbor_count(struct ir3_instruction *instr)
419 {
420 int num = 1;
421
422 debug_assert(!instr->cp.left);
423
424 while (instr->cp.right) {
425 num++;
426 instr = instr->cp.right;
427 if (num > 0xffff) {
428 debug_assert(0);
429 break;
430 }
431 }
432
433 return num;
434 }
435
436 struct ir3 {
437 struct ir3_compiler *compiler;
438 gl_shader_stage type;
439
440 DECLARE_ARRAY(struct ir3_instruction *, inputs);
441 DECLARE_ARRAY(struct ir3_instruction *, outputs);
442
443 /* Track bary.f (and ldlv) instructions.. this is needed in
444 * scheduling to ensure that all varying fetches happen before
445 * any potential kill instructions. The hw gets grumpy if all
446 * threads in a group are killed before the last bary.f gets
447 * a chance to signal end of input (ei).
448 */
449 DECLARE_ARRAY(struct ir3_instruction *, baryfs);
450
451 /* Track all indirect instructions (read and write). To avoid
452 * deadlock scenario where an address register gets scheduled,
453 * but other dependent src instructions cannot be scheduled due
454 * to dependency on a *different* address register value, the
455 * scheduler needs to ensure that all dependencies other than
456 * the instruction other than the address register are scheduled
457 * before the one that writes the address register. Having a
458 * convenient list of instructions that reference some address
459 * register simplifies this.
460 */
461 DECLARE_ARRAY(struct ir3_instruction *, indirects);
462
463 /* and same for instructions that consume predicate register: */
464 DECLARE_ARRAY(struct ir3_instruction *, predicates);
465
466 /* Track texture sample instructions which need texture state
467 * patched in (for astc-srgb workaround):
468 */
469 DECLARE_ARRAY(struct ir3_instruction *, astc_srgb);
470
471 /* List of blocks: */
472 struct list_head block_list;
473
474 /* List of ir3_array's: */
475 struct list_head array_list;
476
477 unsigned max_sun; /* max Sethi–Ullman number */
478
479 #ifdef DEBUG
480 unsigned block_count, instr_count;
481 #endif
482 };
483
484 struct ir3_array {
485 struct list_head node;
486 unsigned length;
487 unsigned id;
488
489 struct nir_register *r;
490
491 /* To avoid array write's from getting DCE'd, keep track of the
492 * most recent write. Any array access depends on the most
493 * recent write. This way, nothing depends on writes after the
494 * last read. But all the writes that happen before that have
495 * something depending on them
496 */
497 struct ir3_instruction *last_write;
498
499 /* extra stuff used in RA pass: */
500 unsigned base; /* base vreg name */
501 unsigned reg; /* base physical reg */
502 uint16_t start_ip, end_ip;
503 };
504
505 struct ir3_array * ir3_lookup_array(struct ir3 *ir, unsigned id);
506
507 struct ir3_block {
508 struct list_head node;
509 struct ir3 *shader;
510
511 const struct nir_block *nblock;
512
513 struct list_head instr_list; /* list of ir3_instruction */
514
515 /* each block has either one or two successors.. in case of
516 * two successors, 'condition' decides which one to follow.
517 * A block preceding an if/else has two successors.
518 */
519 struct ir3_instruction *condition;
520 struct ir3_block *successors[2];
521
522 struct set *predecessors; /* set of ir3_block */
523
524 uint16_t start_ip, end_ip;
525
526 /* Track instructions which do not write a register but other-
527 * wise must not be discarded (such as kill, stg, etc)
528 */
529 DECLARE_ARRAY(struct ir3_instruction *, keeps);
530
531 /* used for per-pass extra block data. Mainly used right
532 * now in RA step to track livein/liveout.
533 */
534 void *data;
535
536 #ifdef DEBUG
537 uint32_t serialno;
538 #endif
539 };
540
541 static inline uint32_t
542 block_id(struct ir3_block *block)
543 {
544 #ifdef DEBUG
545 return block->serialno;
546 #else
547 return (uint32_t)(unsigned long)block;
548 #endif
549 }
550
551 struct ir3 * ir3_create(struct ir3_compiler *compiler, gl_shader_stage type);
552 void ir3_destroy(struct ir3 *shader);
553 void * ir3_assemble(struct ir3 *shader,
554 struct ir3_info *info, uint32_t gpu_id);
555 void * ir3_alloc(struct ir3 *shader, int sz);
556
557 struct ir3_block * ir3_block_create(struct ir3 *shader);
558
559 struct ir3_instruction * ir3_instr_create(struct ir3_block *block, opc_t opc);
560 struct ir3_instruction * ir3_instr_create2(struct ir3_block *block,
561 opc_t opc, int nreg);
562 struct ir3_instruction * ir3_instr_clone(struct ir3_instruction *instr);
563 void ir3_instr_add_dep(struct ir3_instruction *instr, struct ir3_instruction *dep);
564 const char *ir3_instr_name(struct ir3_instruction *instr);
565
566 struct ir3_register * ir3_reg_create(struct ir3_instruction *instr,
567 int num, int flags);
568 struct ir3_register * ir3_reg_clone(struct ir3 *shader,
569 struct ir3_register *reg);
570
571 void ir3_instr_set_address(struct ir3_instruction *instr,
572 struct ir3_instruction *addr);
573
574 static inline bool ir3_instr_check_mark(struct ir3_instruction *instr)
575 {
576 if (instr->flags & IR3_INSTR_MARK)
577 return true; /* already visited */
578 instr->flags |= IR3_INSTR_MARK;
579 return false;
580 }
581
582 void ir3_block_clear_mark(struct ir3_block *block);
583 void ir3_clear_mark(struct ir3 *shader);
584
585 unsigned ir3_count_instructions(struct ir3 *ir);
586
587 static inline int ir3_instr_regno(struct ir3_instruction *instr,
588 struct ir3_register *reg)
589 {
590 unsigned i;
591 for (i = 0; i < instr->regs_count; i++)
592 if (reg == instr->regs[i])
593 return i;
594 return -1;
595 }
596
597
598 #define MAX_ARRAYS 16
599
600 /* comp:
601 * 0 - x
602 * 1 - y
603 * 2 - z
604 * 3 - w
605 */
606 static inline uint32_t regid(int num, int comp)
607 {
608 return (num << 2) | (comp & 0x3);
609 }
610
611 static inline uint32_t reg_num(struct ir3_register *reg)
612 {
613 return reg->num >> 2;
614 }
615
616 static inline uint32_t reg_comp(struct ir3_register *reg)
617 {
618 return reg->num & 0x3;
619 }
620
621 #define INVALID_REG regid(63, 0)
622 #define VALIDREG(r) ((r) != INVALID_REG)
623 #define CONDREG(r, val) COND(VALIDREG(r), (val))
624
625 static inline bool is_flow(struct ir3_instruction *instr)
626 {
627 return (opc_cat(instr->opc) == 0);
628 }
629
630 static inline bool is_kill(struct ir3_instruction *instr)
631 {
632 return instr->opc == OPC_KILL;
633 }
634
635 static inline bool is_nop(struct ir3_instruction *instr)
636 {
637 return instr->opc == OPC_NOP;
638 }
639
640 static inline bool is_same_type_reg(struct ir3_register *reg1,
641 struct ir3_register *reg2)
642 {
643 unsigned type_reg1 = (reg1->flags & (IR3_REG_HIGH | IR3_REG_HALF));
644 unsigned type_reg2 = (reg2->flags & (IR3_REG_HIGH | IR3_REG_HALF));
645
646 if (type_reg1 ^ type_reg2)
647 return false;
648 else
649 return true;
650 }
651
652 /* Is it a non-transformative (ie. not type changing) mov? This can
653 * also include absneg.s/absneg.f, which for the most part can be
654 * treated as a mov (single src argument).
655 */
656 static inline bool is_same_type_mov(struct ir3_instruction *instr)
657 {
658 struct ir3_register *dst;
659
660 switch (instr->opc) {
661 case OPC_MOV:
662 if (instr->cat1.src_type != instr->cat1.dst_type)
663 return false;
664 /* If the type of dest reg and src reg are different,
665 * it shouldn't be considered as same type mov
666 */
667 if (!is_same_type_reg(instr->regs[0], instr->regs[1]))
668 return false;
669 break;
670 case OPC_ABSNEG_F:
671 case OPC_ABSNEG_S:
672 if (instr->flags & IR3_INSTR_SAT)
673 return false;
674 /* If the type of dest reg and src reg are different,
675 * it shouldn't be considered as same type mov
676 */
677 if (!is_same_type_reg(instr->regs[0], instr->regs[1]))
678 return false;
679 break;
680 default:
681 return false;
682 }
683
684 dst = instr->regs[0];
685
686 /* mov's that write to a0.x or p0.x are special: */
687 if (dst->num == regid(REG_P0, 0))
688 return false;
689 if (dst->num == regid(REG_A0, 0))
690 return false;
691
692 if (dst->flags & (IR3_REG_RELATIV | IR3_REG_ARRAY))
693 return false;
694
695 return true;
696 }
697
698 /* A move from const, which changes size but not type, can also be
699 * folded into dest instruction in some cases.
700 */
701 static inline bool is_const_mov(struct ir3_instruction *instr)
702 {
703 if (instr->opc != OPC_MOV)
704 return false;
705
706 if (!(instr->regs[1]->flags & IR3_REG_CONST))
707 return false;
708
709 type_t src_type = instr->cat1.src_type;
710 type_t dst_type = instr->cat1.dst_type;
711
712 return (type_float(src_type) && type_float(dst_type)) ||
713 (type_uint(src_type) && type_uint(dst_type)) ||
714 (type_sint(src_type) && type_sint(dst_type));
715 }
716
717 static inline bool is_alu(struct ir3_instruction *instr)
718 {
719 return (1 <= opc_cat(instr->opc)) && (opc_cat(instr->opc) <= 3);
720 }
721
722 static inline bool is_sfu(struct ir3_instruction *instr)
723 {
724 return (opc_cat(instr->opc) == 4);
725 }
726
727 static inline bool is_tex(struct ir3_instruction *instr)
728 {
729 return (opc_cat(instr->opc) == 5);
730 }
731
732 static inline bool is_tex_or_prefetch(struct ir3_instruction *instr)
733 {
734 return is_tex(instr) || (instr->opc == OPC_META_TEX_PREFETCH);
735 }
736
737 static inline bool is_mem(struct ir3_instruction *instr)
738 {
739 return (opc_cat(instr->opc) == 6);
740 }
741
742 static inline bool is_barrier(struct ir3_instruction *instr)
743 {
744 return (opc_cat(instr->opc) == 7);
745 }
746
747 static inline bool
748 is_store(struct ir3_instruction *instr)
749 {
750 /* these instructions, the "destination" register is
751 * actually a source, the address to store to.
752 */
753 switch (instr->opc) {
754 case OPC_STG:
755 case OPC_STGB:
756 case OPC_STIB:
757 case OPC_STP:
758 case OPC_STL:
759 case OPC_STLW:
760 case OPC_L2G:
761 case OPC_G2L:
762 return true;
763 default:
764 return false;
765 }
766 }
767
768 static inline bool is_load(struct ir3_instruction *instr)
769 {
770 switch (instr->opc) {
771 case OPC_LDG:
772 case OPC_LDGB:
773 case OPC_LDIB:
774 case OPC_LDL:
775 case OPC_LDP:
776 case OPC_L2G:
777 case OPC_LDLW:
778 case OPC_LDC:
779 case OPC_LDLV:
780 /* probably some others too.. */
781 return true;
782 default:
783 return false;
784 }
785 }
786
787 static inline bool is_input(struct ir3_instruction *instr)
788 {
789 /* in some cases, ldlv is used to fetch varying without
790 * interpolation.. fortunately inloc is the first src
791 * register in either case
792 */
793 switch (instr->opc) {
794 case OPC_LDLV:
795 case OPC_BARY_F:
796 return true;
797 default:
798 return false;
799 }
800 }
801
802 static inline bool is_bool(struct ir3_instruction *instr)
803 {
804 switch (instr->opc) {
805 case OPC_CMPS_F:
806 case OPC_CMPS_S:
807 case OPC_CMPS_U:
808 return true;
809 default:
810 return false;
811 }
812 }
813
814 static inline bool is_meta(struct ir3_instruction *instr)
815 {
816 return (opc_cat(instr->opc) == -1);
817 }
818
819 static inline unsigned dest_regs(struct ir3_instruction *instr)
820 {
821 if ((instr->regs_count == 0) || is_store(instr) || is_flow(instr))
822 return 0;
823
824 return util_last_bit(instr->regs[0]->wrmask);
825 }
826
827 static inline bool writes_addr(struct ir3_instruction *instr)
828 {
829 if (instr->regs_count > 0) {
830 struct ir3_register *dst = instr->regs[0];
831 return reg_num(dst) == REG_A0;
832 }
833 return false;
834 }
835
836 static inline bool writes_pred(struct ir3_instruction *instr)
837 {
838 if (instr->regs_count > 0) {
839 struct ir3_register *dst = instr->regs[0];
840 return reg_num(dst) == REG_P0;
841 }
842 return false;
843 }
844
845 /* returns defining instruction for reg */
846 /* TODO better name */
847 static inline struct ir3_instruction *ssa(struct ir3_register *reg)
848 {
849 if (reg->flags & (IR3_REG_SSA | IR3_REG_ARRAY)) {
850 return reg->instr;
851 }
852 return NULL;
853 }
854
855 static inline bool conflicts(struct ir3_instruction *a,
856 struct ir3_instruction *b)
857 {
858 return (a && b) && (a != b);
859 }
860
861 static inline bool reg_gpr(struct ir3_register *r)
862 {
863 if (r->flags & (IR3_REG_CONST | IR3_REG_IMMED))
864 return false;
865 if ((reg_num(r) == REG_A0) || (reg_num(r) == REG_P0))
866 return false;
867 return true;
868 }
869
870 static inline type_t half_type(type_t type)
871 {
872 switch (type) {
873 case TYPE_F32: return TYPE_F16;
874 case TYPE_U32: return TYPE_U16;
875 case TYPE_S32: return TYPE_S16;
876 case TYPE_F16:
877 case TYPE_U16:
878 case TYPE_S16:
879 return type;
880 default:
881 assert(0);
882 return ~0;
883 }
884 }
885
886 /* some cat2 instructions (ie. those which are not float) can embed an
887 * immediate:
888 */
889 static inline bool ir3_cat2_int(opc_t opc)
890 {
891 switch (opc) {
892 case OPC_ADD_U:
893 case OPC_ADD_S:
894 case OPC_SUB_U:
895 case OPC_SUB_S:
896 case OPC_CMPS_U:
897 case OPC_CMPS_S:
898 case OPC_MIN_U:
899 case OPC_MIN_S:
900 case OPC_MAX_U:
901 case OPC_MAX_S:
902 case OPC_CMPV_U:
903 case OPC_CMPV_S:
904 case OPC_MUL_U24:
905 case OPC_MUL_S24:
906 case OPC_MULL_U:
907 case OPC_CLZ_S:
908 case OPC_ABSNEG_S:
909 case OPC_AND_B:
910 case OPC_OR_B:
911 case OPC_NOT_B:
912 case OPC_XOR_B:
913 case OPC_BFREV_B:
914 case OPC_CLZ_B:
915 case OPC_SHL_B:
916 case OPC_SHR_B:
917 case OPC_ASHR_B:
918 case OPC_MGEN_B:
919 case OPC_GETBIT_B:
920 case OPC_CBITS_B:
921 case OPC_BARY_F:
922 return true;
923
924 default:
925 return false;
926 }
927 }
928
929 static inline bool ir3_cat2_float(opc_t opc)
930 {
931 switch (opc) {
932 case OPC_ADD_F:
933 case OPC_MIN_F:
934 case OPC_MAX_F:
935 case OPC_MUL_F:
936 case OPC_SIGN_F:
937 case OPC_CMPS_F:
938 case OPC_ABSNEG_F:
939 case OPC_CMPV_F:
940 case OPC_FLOOR_F:
941 case OPC_CEIL_F:
942 case OPC_RNDNE_F:
943 case OPC_RNDAZ_F:
944 case OPC_TRUNC_F:
945 return true;
946
947 default:
948 return false;
949 }
950 }
951
952 static inline bool ir3_cat3_float(opc_t opc)
953 {
954 switch (opc) {
955 case OPC_MAD_F16:
956 case OPC_MAD_F32:
957 case OPC_SEL_F16:
958 case OPC_SEL_F32:
959 return true;
960 default:
961 return false;
962 }
963 }
964
965 /* map cat2 instruction to valid abs/neg flags: */
966 static inline unsigned ir3_cat2_absneg(opc_t opc)
967 {
968 switch (opc) {
969 case OPC_ADD_F:
970 case OPC_MIN_F:
971 case OPC_MAX_F:
972 case OPC_MUL_F:
973 case OPC_SIGN_F:
974 case OPC_CMPS_F:
975 case OPC_ABSNEG_F:
976 case OPC_CMPV_F:
977 case OPC_FLOOR_F:
978 case OPC_CEIL_F:
979 case OPC_RNDNE_F:
980 case OPC_RNDAZ_F:
981 case OPC_TRUNC_F:
982 case OPC_BARY_F:
983 return IR3_REG_FABS | IR3_REG_FNEG;
984
985 case OPC_ADD_U:
986 case OPC_ADD_S:
987 case OPC_SUB_U:
988 case OPC_SUB_S:
989 case OPC_CMPS_U:
990 case OPC_CMPS_S:
991 case OPC_MIN_U:
992 case OPC_MIN_S:
993 case OPC_MAX_U:
994 case OPC_MAX_S:
995 case OPC_CMPV_U:
996 case OPC_CMPV_S:
997 case OPC_MUL_U24:
998 case OPC_MUL_S24:
999 case OPC_MULL_U:
1000 case OPC_CLZ_S:
1001 return 0;
1002
1003 case OPC_ABSNEG_S:
1004 return IR3_REG_SABS | IR3_REG_SNEG;
1005
1006 case OPC_AND_B:
1007 case OPC_OR_B:
1008 case OPC_NOT_B:
1009 case OPC_XOR_B:
1010 case OPC_BFREV_B:
1011 case OPC_CLZ_B:
1012 case OPC_SHL_B:
1013 case OPC_SHR_B:
1014 case OPC_ASHR_B:
1015 case OPC_MGEN_B:
1016 case OPC_GETBIT_B:
1017 case OPC_CBITS_B:
1018 return IR3_REG_BNOT;
1019
1020 default:
1021 return 0;
1022 }
1023 }
1024
1025 /* map cat3 instructions to valid abs/neg flags: */
1026 static inline unsigned ir3_cat3_absneg(opc_t opc)
1027 {
1028 switch (opc) {
1029 case OPC_MAD_F16:
1030 case OPC_MAD_F32:
1031 case OPC_SEL_F16:
1032 case OPC_SEL_F32:
1033 return IR3_REG_FNEG;
1034
1035 case OPC_MAD_U16:
1036 case OPC_MADSH_U16:
1037 case OPC_MAD_S16:
1038 case OPC_MADSH_M16:
1039 case OPC_MAD_U24:
1040 case OPC_MAD_S24:
1041 case OPC_SEL_S16:
1042 case OPC_SEL_S32:
1043 case OPC_SAD_S16:
1044 case OPC_SAD_S32:
1045 /* neg *may* work on 3rd src.. */
1046
1047 case OPC_SEL_B16:
1048 case OPC_SEL_B32:
1049
1050 default:
1051 return 0;
1052 }
1053 }
1054
1055 #define MASK(n) ((1 << (n)) - 1)
1056
1057 /* iterator for an instructions's sources (reg), also returns src #: */
1058 #define foreach_src_n(__srcreg, __n, __instr) \
1059 if ((__instr)->regs_count) \
1060 for (unsigned __cnt = (__instr)->regs_count - 1, __n = 0; __n < __cnt; __n++) \
1061 if ((__srcreg = (__instr)->regs[__n + 1]))
1062
1063 /* iterator for an instructions's sources (reg): */
1064 #define foreach_src(__srcreg, __instr) \
1065 foreach_src_n(__srcreg, __i, __instr)
1066
1067 static inline unsigned __ssa_src_cnt(struct ir3_instruction *instr)
1068 {
1069 unsigned cnt = instr->regs_count + instr->deps_count;
1070 if (instr->address)
1071 cnt++;
1072 return cnt;
1073 }
1074
1075 static inline struct ir3_instruction * __ssa_src_n(struct ir3_instruction *instr, unsigned n)
1076 {
1077 if (n == (instr->regs_count + instr->deps_count))
1078 return instr->address;
1079 if (n >= instr->regs_count)
1080 return instr->deps[n - instr->regs_count];
1081 return ssa(instr->regs[n]);
1082 }
1083
1084 static inline bool __is_false_dep(struct ir3_instruction *instr, unsigned n)
1085 {
1086 if (n == (instr->regs_count + instr->deps_count))
1087 return false;
1088 if (n >= instr->regs_count)
1089 return true;
1090 return false;
1091 }
1092
1093 #define __src_cnt(__instr) ((__instr)->address ? (__instr)->regs_count : (__instr)->regs_count - 1)
1094
1095 /* iterator for an instruction's SSA sources (instr), also returns src #: */
1096 #define foreach_ssa_src_n(__srcinst, __n, __instr) \
1097 for (unsigned __cnt = __ssa_src_cnt(__instr), __n = 0; __n < __cnt; __n++) \
1098 if ((__srcinst = __ssa_src_n(__instr, __n)))
1099
1100 /* iterator for an instruction's SSA sources (instr): */
1101 #define foreach_ssa_src(__srcinst, __instr) \
1102 foreach_ssa_src_n(__srcinst, __i, __instr)
1103
1104 /* iterators for shader inputs: */
1105 #define foreach_input_n(__ininstr, __cnt, __ir) \
1106 for (unsigned __cnt = 0; __cnt < (__ir)->inputs_count; __cnt++) \
1107 if ((__ininstr = (__ir)->inputs[__cnt]))
1108 #define foreach_input(__ininstr, __ir) \
1109 foreach_input_n(__ininstr, __i, __ir)
1110
1111 /* iterators for shader outputs: */
1112 #define foreach_output_n(__outinstr, __cnt, __ir) \
1113 for (unsigned __cnt = 0; __cnt < (__ir)->outputs_count; __cnt++) \
1114 if ((__outinstr = (__ir)->outputs[__cnt]))
1115 #define foreach_output(__outinstr, __ir) \
1116 foreach_output_n(__outinstr, __i, __ir)
1117
1118 /* iterators for instructions: */
1119 #define foreach_instr(__instr, __list) \
1120 list_for_each_entry(struct ir3_instruction, __instr, __list, node)
1121 #define foreach_instr_rev(__instr, __list) \
1122 list_for_each_entry_rev(struct ir3_instruction, __instr, __list, node)
1123 #define foreach_instr_safe(__instr, __list) \
1124 list_for_each_entry_safe(struct ir3_instruction, __instr, __list, node)
1125
1126 /* iterators for blocks: */
1127 #define foreach_block(__block, __list) \
1128 list_for_each_entry(struct ir3_block, __block, __list, node)
1129 #define foreach_block_safe(__block, __list) \
1130 list_for_each_entry_safe(struct ir3_block, __block, __list, node)
1131
1132 /* iterators for arrays: */
1133 #define foreach_array(__array, __list) \
1134 list_for_each_entry(struct ir3_array, __array, __list, node)
1135
1136 /* dump: */
1137 void ir3_print(struct ir3 *ir);
1138 void ir3_print_instr(struct ir3_instruction *instr);
1139
1140 /* delay calculation: */
1141 int ir3_delayslots(struct ir3_instruction *assigner,
1142 struct ir3_instruction *consumer, unsigned n);
1143 unsigned ir3_delay_calc(struct ir3_block *block, struct ir3_instruction *instr,
1144 bool soft, bool pred);
1145 void ir3_remove_nops(struct ir3 *ir);
1146
1147 /* depth calculation: */
1148 struct ir3_shader_variant;
1149 void ir3_insert_by_depth(struct ir3_instruction *instr, struct list_head *list);
1150 void ir3_depth(struct ir3 *ir, struct ir3_shader_variant *so);
1151
1152 /* copy-propagate: */
1153 void ir3_cp(struct ir3 *ir, struct ir3_shader_variant *so);
1154
1155 /* group neighbors and insert mov's to resolve conflicts: */
1156 void ir3_group(struct ir3 *ir);
1157
1158 /* Sethi–Ullman numbering: */
1159 void ir3_sun(struct ir3 *ir);
1160
1161 /* scheduling: */
1162 void ir3_sched_add_deps(struct ir3 *ir);
1163 int ir3_sched(struct ir3 *ir);
1164
1165 struct ir3_context;
1166 int ir3_postsched(struct ir3_context *ctx);
1167
1168 bool ir3_a6xx_fixup_atomic_dests(struct ir3 *ir, struct ir3_shader_variant *so);
1169
1170 /* register assignment: */
1171 struct ir3_ra_reg_set * ir3_ra_alloc_reg_set(struct ir3_compiler *compiler);
1172 int ir3_ra(struct ir3_shader_variant *v, struct ir3_instruction **precolor, unsigned nprecolor);
1173
1174 /* legalize: */
1175 void ir3_legalize(struct ir3 *ir, struct ir3_shader_variant *so, int *max_bary);
1176
1177 /* ************************************************************************* */
1178 /* instruction helpers */
1179
1180 /* creates SSA src of correct type (ie. half vs full precision) */
1181 static inline struct ir3_register * __ssa_src(struct ir3_instruction *instr,
1182 struct ir3_instruction *src, unsigned flags)
1183 {
1184 struct ir3_register *reg;
1185 if (src->regs[0]->flags & IR3_REG_HALF)
1186 flags |= IR3_REG_HALF;
1187 reg = ir3_reg_create(instr, 0, IR3_REG_SSA | flags);
1188 reg->instr = src;
1189 reg->wrmask = src->regs[0]->wrmask;
1190 return reg;
1191 }
1192
1193 static inline struct ir3_register * __ssa_dst(struct ir3_instruction *instr)
1194 {
1195 struct ir3_register *reg = ir3_reg_create(instr, 0, 0);
1196 reg->flags |= IR3_REG_SSA;
1197 return reg;
1198 }
1199
1200 static inline struct ir3_instruction *
1201 create_immed_typed(struct ir3_block *block, uint32_t val, type_t type)
1202 {
1203 struct ir3_instruction *mov;
1204 unsigned flags = (type_size(type) < 32) ? IR3_REG_HALF : 0;
1205
1206 mov = ir3_instr_create(block, OPC_MOV);
1207 mov->cat1.src_type = type;
1208 mov->cat1.dst_type = type;
1209 __ssa_dst(mov)->flags |= flags;
1210 ir3_reg_create(mov, 0, IR3_REG_IMMED | flags)->uim_val = val;
1211
1212 return mov;
1213 }
1214
1215 static inline struct ir3_instruction *
1216 create_immed(struct ir3_block *block, uint32_t val)
1217 {
1218 return create_immed_typed(block, val, TYPE_U32);
1219 }
1220
1221 static inline struct ir3_instruction *
1222 create_uniform_typed(struct ir3_block *block, unsigned n, type_t type)
1223 {
1224 struct ir3_instruction *mov;
1225 unsigned flags = (type_size(type) < 32) ? IR3_REG_HALF : 0;
1226
1227 mov = ir3_instr_create(block, OPC_MOV);
1228 mov->cat1.src_type = type;
1229 mov->cat1.dst_type = type;
1230 __ssa_dst(mov)->flags |= flags;
1231 ir3_reg_create(mov, n, IR3_REG_CONST | flags);
1232
1233 return mov;
1234 }
1235
1236 static inline struct ir3_instruction *
1237 create_uniform(struct ir3_block *block, unsigned n)
1238 {
1239 return create_uniform_typed(block, n, TYPE_F32);
1240 }
1241
1242 static inline struct ir3_instruction *
1243 create_uniform_indirect(struct ir3_block *block, int n,
1244 struct ir3_instruction *address)
1245 {
1246 struct ir3_instruction *mov;
1247
1248 mov = ir3_instr_create(block, OPC_MOV);
1249 mov->cat1.src_type = TYPE_U32;
1250 mov->cat1.dst_type = TYPE_U32;
1251 __ssa_dst(mov);
1252 ir3_reg_create(mov, 0, IR3_REG_CONST | IR3_REG_RELATIV)->array.offset = n;
1253
1254 ir3_instr_set_address(mov, address);
1255
1256 return mov;
1257 }
1258
1259 static inline struct ir3_instruction *
1260 ir3_MOV(struct ir3_block *block, struct ir3_instruction *src, type_t type)
1261 {
1262 struct ir3_instruction *instr = ir3_instr_create(block, OPC_MOV);
1263 __ssa_dst(instr);
1264 if (src->regs[0]->flags & IR3_REG_ARRAY) {
1265 struct ir3_register *src_reg = __ssa_src(instr, src, IR3_REG_ARRAY);
1266 src_reg->array = src->regs[0]->array;
1267 } else {
1268 __ssa_src(instr, src, src->regs[0]->flags & IR3_REG_HIGH);
1269 }
1270 debug_assert(!(src->regs[0]->flags & IR3_REG_RELATIV));
1271 instr->cat1.src_type = type;
1272 instr->cat1.dst_type = type;
1273 return instr;
1274 }
1275
1276 static inline struct ir3_instruction *
1277 ir3_COV(struct ir3_block *block, struct ir3_instruction *src,
1278 type_t src_type, type_t dst_type)
1279 {
1280 struct ir3_instruction *instr = ir3_instr_create(block, OPC_MOV);
1281 unsigned dst_flags = (type_size(dst_type) < 32) ? IR3_REG_HALF : 0;
1282 unsigned src_flags = (type_size(src_type) < 32) ? IR3_REG_HALF : 0;
1283
1284 debug_assert((src->regs[0]->flags & IR3_REG_HALF) == src_flags);
1285
1286 __ssa_dst(instr)->flags |= dst_flags;
1287 __ssa_src(instr, src, 0);
1288 instr->cat1.src_type = src_type;
1289 instr->cat1.dst_type = dst_type;
1290 debug_assert(!(src->regs[0]->flags & IR3_REG_ARRAY));
1291 return instr;
1292 }
1293
1294 static inline struct ir3_instruction *
1295 ir3_NOP(struct ir3_block *block)
1296 {
1297 return ir3_instr_create(block, OPC_NOP);
1298 }
1299
1300 #define IR3_INSTR_0 0
1301
1302 #define __INSTR0(flag, name, opc) \
1303 static inline struct ir3_instruction * \
1304 ir3_##name(struct ir3_block *block) \
1305 { \
1306 struct ir3_instruction *instr = \
1307 ir3_instr_create(block, opc); \
1308 instr->flags |= flag; \
1309 return instr; \
1310 }
1311 #define INSTR0F(f, name) __INSTR0(IR3_INSTR_##f, name##_##f, OPC_##name)
1312 #define INSTR0(name) __INSTR0(0, name, OPC_##name)
1313
1314 #define __INSTR1(flag, name, opc) \
1315 static inline struct ir3_instruction * \
1316 ir3_##name(struct ir3_block *block, \
1317 struct ir3_instruction *a, unsigned aflags) \
1318 { \
1319 struct ir3_instruction *instr = \
1320 ir3_instr_create(block, opc); \
1321 __ssa_dst(instr); \
1322 __ssa_src(instr, a, aflags); \
1323 instr->flags |= flag; \
1324 return instr; \
1325 }
1326 #define INSTR1F(f, name) __INSTR1(IR3_INSTR_##f, name##_##f, OPC_##name)
1327 #define INSTR1(name) __INSTR1(0, name, OPC_##name)
1328
1329 #define __INSTR2(flag, name, opc) \
1330 static inline struct ir3_instruction * \
1331 ir3_##name(struct ir3_block *block, \
1332 struct ir3_instruction *a, unsigned aflags, \
1333 struct ir3_instruction *b, unsigned bflags) \
1334 { \
1335 struct ir3_instruction *instr = \
1336 ir3_instr_create(block, opc); \
1337 __ssa_dst(instr); \
1338 __ssa_src(instr, a, aflags); \
1339 __ssa_src(instr, b, bflags); \
1340 instr->flags |= flag; \
1341 return instr; \
1342 }
1343 #define INSTR2F(f, name) __INSTR2(IR3_INSTR_##f, name##_##f, OPC_##name)
1344 #define INSTR2(name) __INSTR2(0, name, OPC_##name)
1345
1346 #define __INSTR3(flag, name, opc) \
1347 static inline struct ir3_instruction * \
1348 ir3_##name(struct ir3_block *block, \
1349 struct ir3_instruction *a, unsigned aflags, \
1350 struct ir3_instruction *b, unsigned bflags, \
1351 struct ir3_instruction *c, unsigned cflags) \
1352 { \
1353 struct ir3_instruction *instr = \
1354 ir3_instr_create2(block, opc, 4); \
1355 __ssa_dst(instr); \
1356 __ssa_src(instr, a, aflags); \
1357 __ssa_src(instr, b, bflags); \
1358 __ssa_src(instr, c, cflags); \
1359 instr->flags |= flag; \
1360 return instr; \
1361 }
1362 #define INSTR3F(f, name) __INSTR3(IR3_INSTR_##f, name##_##f, OPC_##name)
1363 #define INSTR3(name) __INSTR3(0, name, OPC_##name)
1364
1365 #define __INSTR4(flag, name, opc) \
1366 static inline struct ir3_instruction * \
1367 ir3_##name(struct ir3_block *block, \
1368 struct ir3_instruction *a, unsigned aflags, \
1369 struct ir3_instruction *b, unsigned bflags, \
1370 struct ir3_instruction *c, unsigned cflags, \
1371 struct ir3_instruction *d, unsigned dflags) \
1372 { \
1373 struct ir3_instruction *instr = \
1374 ir3_instr_create2(block, opc, 5); \
1375 __ssa_dst(instr); \
1376 __ssa_src(instr, a, aflags); \
1377 __ssa_src(instr, b, bflags); \
1378 __ssa_src(instr, c, cflags); \
1379 __ssa_src(instr, d, dflags); \
1380 instr->flags |= flag; \
1381 return instr; \
1382 }
1383 #define INSTR4F(f, name) __INSTR4(IR3_INSTR_##f, name##_##f, OPC_##name)
1384 #define INSTR4(name) __INSTR4(0, name, OPC_##name)
1385
1386 /* cat0 instructions: */
1387 INSTR1(BR)
1388 INSTR0(JUMP)
1389 INSTR1(KILL)
1390 INSTR0(END)
1391 INSTR0(CHSH)
1392 INSTR0(CHMASK)
1393 INSTR1(IF)
1394 INSTR0(ELSE)
1395 INSTR0(ENDIF)
1396
1397 /* cat2 instructions, most 2 src but some 1 src: */
1398 INSTR2(ADD_F)
1399 INSTR2(MIN_F)
1400 INSTR2(MAX_F)
1401 INSTR2(MUL_F)
1402 INSTR1(SIGN_F)
1403 INSTR2(CMPS_F)
1404 INSTR1(ABSNEG_F)
1405 INSTR2(CMPV_F)
1406 INSTR1(FLOOR_F)
1407 INSTR1(CEIL_F)
1408 INSTR1(RNDNE_F)
1409 INSTR1(RNDAZ_F)
1410 INSTR1(TRUNC_F)
1411 INSTR2(ADD_U)
1412 INSTR2(ADD_S)
1413 INSTR2(SUB_U)
1414 INSTR2(SUB_S)
1415 INSTR2(CMPS_U)
1416 INSTR2(CMPS_S)
1417 INSTR2(MIN_U)
1418 INSTR2(MIN_S)
1419 INSTR2(MAX_U)
1420 INSTR2(MAX_S)
1421 INSTR1(ABSNEG_S)
1422 INSTR2(AND_B)
1423 INSTR2(OR_B)
1424 INSTR1(NOT_B)
1425 INSTR2(XOR_B)
1426 INSTR2(CMPV_U)
1427 INSTR2(CMPV_S)
1428 INSTR2(MUL_U24)
1429 INSTR2(MUL_S24)
1430 INSTR2(MULL_U)
1431 INSTR1(BFREV_B)
1432 INSTR1(CLZ_S)
1433 INSTR1(CLZ_B)
1434 INSTR2(SHL_B)
1435 INSTR2(SHR_B)
1436 INSTR2(ASHR_B)
1437 INSTR2(BARY_F)
1438 INSTR2(MGEN_B)
1439 INSTR2(GETBIT_B)
1440 INSTR1(SETRM)
1441 INSTR1(CBITS_B)
1442 INSTR2(SHB)
1443 INSTR2(MSAD)
1444
1445 /* cat3 instructions: */
1446 INSTR3(MAD_U16)
1447 INSTR3(MADSH_U16)
1448 INSTR3(MAD_S16)
1449 INSTR3(MADSH_M16)
1450 INSTR3(MAD_U24)
1451 INSTR3(MAD_S24)
1452 INSTR3(MAD_F16)
1453 INSTR3(MAD_F32)
1454 INSTR3(SEL_B16)
1455 INSTR3(SEL_B32)
1456 INSTR3(SEL_S16)
1457 INSTR3(SEL_S32)
1458 INSTR3(SEL_F16)
1459 INSTR3(SEL_F32)
1460 INSTR3(SAD_S16)
1461 INSTR3(SAD_S32)
1462
1463 /* cat4 instructions: */
1464 INSTR1(RCP)
1465 INSTR1(RSQ)
1466 INSTR1(HRSQ)
1467 INSTR1(LOG2)
1468 INSTR1(HLOG2)
1469 INSTR1(EXP2)
1470 INSTR1(HEXP2)
1471 INSTR1(SIN)
1472 INSTR1(COS)
1473 INSTR1(SQRT)
1474
1475 /* cat5 instructions: */
1476 INSTR1(DSX)
1477 INSTR1(DSXPP_1)
1478 INSTR1(DSY)
1479 INSTR1(DSYPP_1)
1480 INSTR1F(3D, DSX)
1481 INSTR1F(3D, DSY)
1482 INSTR1(RGETPOS)
1483
1484 static inline struct ir3_instruction *
1485 ir3_SAM(struct ir3_block *block, opc_t opc, type_t type,
1486 unsigned wrmask, unsigned flags, struct ir3_instruction *samp_tex,
1487 struct ir3_instruction *src0, struct ir3_instruction *src1)
1488 {
1489 struct ir3_instruction *sam;
1490
1491 sam = ir3_instr_create(block, opc);
1492 sam->flags |= flags | IR3_INSTR_S2EN;
1493 __ssa_dst(sam)->wrmask = wrmask;
1494 __ssa_src(sam, samp_tex, IR3_REG_HALF);
1495 if (src0) {
1496 __ssa_src(sam, src0, 0)->wrmask = (1 << (src0->regs_count - 1)) - 1;
1497 }
1498 if (src1) {
1499 __ssa_src(sam, src1, 0)->wrmask =(1 << (src1->regs_count - 1)) - 1;
1500 }
1501 sam->cat5.type = type;
1502
1503 return sam;
1504 }
1505
1506 /* cat6 instructions: */
1507 INSTR2(LDLV)
1508 INSTR3(LDG)
1509 INSTR3(LDL)
1510 INSTR3(LDLW)
1511 INSTR3(STG)
1512 INSTR3(STL)
1513 INSTR3(STLW)
1514 INSTR1(RESINFO)
1515 INSTR1(RESFMT)
1516 INSTR2(ATOMIC_ADD)
1517 INSTR2(ATOMIC_SUB)
1518 INSTR2(ATOMIC_XCHG)
1519 INSTR2(ATOMIC_INC)
1520 INSTR2(ATOMIC_DEC)
1521 INSTR2(ATOMIC_CMPXCHG)
1522 INSTR2(ATOMIC_MIN)
1523 INSTR2(ATOMIC_MAX)
1524 INSTR2(ATOMIC_AND)
1525 INSTR2(ATOMIC_OR)
1526 INSTR2(ATOMIC_XOR)
1527 #if GPU >= 600
1528 INSTR3(STIB);
1529 INSTR2(LDIB);
1530 INSTR3F(G, ATOMIC_ADD)
1531 INSTR3F(G, ATOMIC_SUB)
1532 INSTR3F(G, ATOMIC_XCHG)
1533 INSTR3F(G, ATOMIC_INC)
1534 INSTR3F(G, ATOMIC_DEC)
1535 INSTR3F(G, ATOMIC_CMPXCHG)
1536 INSTR3F(G, ATOMIC_MIN)
1537 INSTR3F(G, ATOMIC_MAX)
1538 INSTR3F(G, ATOMIC_AND)
1539 INSTR3F(G, ATOMIC_OR)
1540 INSTR3F(G, ATOMIC_XOR)
1541 #elif GPU >= 400
1542 INSTR3(LDGB)
1543 INSTR4(STGB)
1544 INSTR4(STIB)
1545 INSTR4F(G, ATOMIC_ADD)
1546 INSTR4F(G, ATOMIC_SUB)
1547 INSTR4F(G, ATOMIC_XCHG)
1548 INSTR4F(G, ATOMIC_INC)
1549 INSTR4F(G, ATOMIC_DEC)
1550 INSTR4F(G, ATOMIC_CMPXCHG)
1551 INSTR4F(G, ATOMIC_MIN)
1552 INSTR4F(G, ATOMIC_MAX)
1553 INSTR4F(G, ATOMIC_AND)
1554 INSTR4F(G, ATOMIC_OR)
1555 INSTR4F(G, ATOMIC_XOR)
1556 #endif
1557
1558 INSTR4F(G, STG)
1559
1560 /* cat7 instructions: */
1561 INSTR0(BAR)
1562 INSTR0(FENCE)
1563
1564 /* meta instructions: */
1565 INSTR0(META_TEX_PREFETCH);
1566
1567 /* ************************************************************************* */
1568 /* split this out or find some helper to use.. like main/bitset.h.. */
1569
1570 #include <string.h>
1571
1572 #define MAX_REG 256
1573
1574 typedef uint8_t regmask_t[2 * MAX_REG / 8];
1575
1576 static inline unsigned regmask_idx(struct ir3_register *reg)
1577 {
1578 unsigned num = (reg->flags & IR3_REG_RELATIV) ? reg->array.offset : reg->num;
1579 debug_assert(num < MAX_REG);
1580 if (reg->flags & IR3_REG_HALF) {
1581 if (reg->merged) {
1582 num /= 2;
1583 } else {
1584 num += MAX_REG;
1585 }
1586 }
1587 return num;
1588 }
1589
1590 static inline void regmask_init(regmask_t *regmask)
1591 {
1592 memset(regmask, 0, sizeof(*regmask));
1593 }
1594
1595 static inline void regmask_set(regmask_t *regmask, struct ir3_register *reg)
1596 {
1597 unsigned idx = regmask_idx(reg);
1598 if (reg->flags & IR3_REG_RELATIV) {
1599 unsigned i;
1600 for (i = 0; i < reg->size; i++, idx++)
1601 (*regmask)[idx / 8] |= 1 << (idx % 8);
1602 } else {
1603 unsigned mask;
1604 for (mask = reg->wrmask; mask; mask >>= 1, idx++)
1605 if (mask & 1)
1606 (*regmask)[idx / 8] |= 1 << (idx % 8);
1607 }
1608 }
1609
1610 static inline void regmask_or(regmask_t *dst, regmask_t *a, regmask_t *b)
1611 {
1612 unsigned i;
1613 for (i = 0; i < ARRAY_SIZE(*dst); i++)
1614 (*dst)[i] = (*a)[i] | (*b)[i];
1615 }
1616
1617 /* set bits in a if not set in b, conceptually:
1618 * a |= (reg & ~b)
1619 */
1620 static inline void regmask_set_if_not(regmask_t *a,
1621 struct ir3_register *reg, regmask_t *b)
1622 {
1623 unsigned idx = regmask_idx(reg);
1624 if (reg->flags & IR3_REG_RELATIV) {
1625 unsigned i;
1626 for (i = 0; i < reg->size; i++, idx++)
1627 if (!((*b)[idx / 8] & (1 << (idx % 8))))
1628 (*a)[idx / 8] |= 1 << (idx % 8);
1629 } else {
1630 unsigned mask;
1631 for (mask = reg->wrmask; mask; mask >>= 1, idx++)
1632 if (mask & 1)
1633 if (!((*b)[idx / 8] & (1 << (idx % 8))))
1634 (*a)[idx / 8] |= 1 << (idx % 8);
1635 }
1636 }
1637
1638 static inline bool regmask_get(regmask_t *regmask,
1639 struct ir3_register *reg)
1640 {
1641 unsigned idx = regmask_idx(reg);
1642 if (reg->flags & IR3_REG_RELATIV) {
1643 unsigned i;
1644 for (i = 0; i < reg->size; i++, idx++)
1645 if ((*regmask)[idx / 8] & (1 << (idx % 8)))
1646 return true;
1647 } else {
1648 unsigned mask;
1649 for (mask = reg->wrmask; mask; mask >>= 1, idx++)
1650 if (mask & 1)
1651 if ((*regmask)[idx / 8] & (1 << (idx % 8)))
1652 return true;
1653 }
1654 return false;
1655 }
1656
1657 /* ************************************************************************* */
1658
1659 #endif /* IR3_H_ */