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