freedreno/ir3: remove tgsi f/e
[mesa.git] / src / gallium / drivers / 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 "util/u_debug.h"
31 #include "util/list.h"
32
33 #include "instr-a3xx.h"
34 #include "disasm.h" /* TODO move 'enum shader_t' somewhere else.. */
35
36 /* low level intermediate representation of an adreno shader program */
37
38 struct ir3;
39 struct ir3_instruction;
40 struct ir3_block;
41
42 struct ir3_info {
43 uint16_t sizedwords;
44 uint16_t instrs_count; /* expanded to account for rpt's */
45 /* NOTE: max_reg, etc, does not include registers not touched
46 * by the shader (ie. vertex fetched via VFD_DECODE but not
47 * touched by shader)
48 */
49 int8_t max_reg; /* highest GPR # used by shader */
50 int8_t max_half_reg;
51 int16_t max_const;
52 };
53
54 struct ir3_register {
55 enum {
56 IR3_REG_CONST = 0x001,
57 IR3_REG_IMMED = 0x002,
58 IR3_REG_HALF = 0x004,
59 IR3_REG_RELATIV= 0x008,
60 IR3_REG_R = 0x010,
61 /* Most instructions, it seems, can do float abs/neg but not
62 * integer. The CP pass needs to know what is intended (int or
63 * float) in order to do the right thing. For this reason the
64 * abs/neg flags are split out into float and int variants. In
65 * addition, .b (bitwise) operations, the negate is actually a
66 * bitwise not, so split that out into a new flag to make it
67 * more clear.
68 */
69 IR3_REG_FNEG = 0x020,
70 IR3_REG_FABS = 0x040,
71 IR3_REG_SNEG = 0x080,
72 IR3_REG_SABS = 0x100,
73 IR3_REG_BNOT = 0x200,
74 IR3_REG_EVEN = 0x400,
75 IR3_REG_POS_INF= 0x800,
76 /* (ei) flag, end-input? Set on last bary, presumably to signal
77 * that the shader needs no more input:
78 */
79 IR3_REG_EI = 0x1000,
80 /* meta-flags, for intermediate stages of IR, ie.
81 * before register assignment is done:
82 */
83 IR3_REG_SSA = 0x2000, /* 'instr' is ptr to assigning instr */
84 IR3_REG_IA = 0x4000, /* meta-input dst is "assigned" */
85 IR3_REG_ADDR = 0x8000, /* register is a0.x */
86 } flags;
87 union {
88 /* normal registers:
89 * the component is in the low two bits of the reg #, so
90 * rN.x becomes: (N << 2) | x
91 */
92 int num;
93 /* immediate: */
94 int32_t iim_val;
95 uint32_t uim_val;
96 float fim_val;
97 /* relative: */
98 int offset;
99 };
100
101 /* for IR3_REG_SSA, src registers contain ptr back to
102 * assigning instruction.
103 */
104 struct ir3_instruction *instr;
105
106 union {
107 /* used for cat5 instructions, but also for internal/IR level
108 * tracking of what registers are read/written by an instruction.
109 * wrmask may be a bad name since it is used to represent both
110 * src and dst that touch multiple adjacent registers.
111 */
112 unsigned wrmask;
113 /* for relative addressing, 32bits for array size is too small,
114 * but otoh we don't need to deal with disjoint sets, so instead
115 * use a simple size field (number of scalar components).
116 */
117 unsigned size;
118 };
119 };
120
121 struct ir3_instruction {
122 struct ir3_block *block;
123 int category;
124 opc_t opc;
125 enum {
126 /* (sy) flag is set on first instruction, and after sample
127 * instructions (probably just on RAW hazard).
128 */
129 IR3_INSTR_SY = 0x001,
130 /* (ss) flag is set on first instruction, and first instruction
131 * to depend on the result of "long" instructions (RAW hazard):
132 *
133 * rcp, rsq, log2, exp2, sin, cos, sqrt
134 *
135 * It seems to synchronize until all in-flight instructions are
136 * completed, for example:
137 *
138 * rsq hr1.w, hr1.w
139 * add.f hr2.z, (neg)hr2.z, hc0.y
140 * mul.f hr2.w, (neg)hr2.y, (neg)hr2.y
141 * rsq hr2.x, hr2.x
142 * (rpt1)nop
143 * mad.f16 hr2.w, hr2.z, hr2.z, hr2.w
144 * nop
145 * mad.f16 hr2.w, (neg)hr0.w, (neg)hr0.w, hr2.w
146 * (ss)(rpt2)mul.f hr1.x, (r)hr1.x, hr1.w
147 * (rpt2)mul.f hr0.x, (neg)(r)hr0.x, hr2.x
148 *
149 * The last mul.f does not have (ss) set, presumably because the
150 * (ss) on the previous instruction does the job.
151 *
152 * The blob driver also seems to set it on WAR hazards, although
153 * not really clear if this is needed or just blob compiler being
154 * sloppy. So far I haven't found a case where removing the (ss)
155 * causes problems for WAR hazard, but I could just be getting
156 * lucky:
157 *
158 * rcp r1.y, r3.y
159 * (ss)(rpt2)mad.f32 r3.y, (r)c9.x, r1.x, (r)r3.z
160 *
161 */
162 IR3_INSTR_SS = 0x002,
163 /* (jp) flag is set on jump targets:
164 */
165 IR3_INSTR_JP = 0x004,
166 IR3_INSTR_UL = 0x008,
167 IR3_INSTR_3D = 0x010,
168 IR3_INSTR_A = 0x020,
169 IR3_INSTR_O = 0x040,
170 IR3_INSTR_P = 0x080,
171 IR3_INSTR_S = 0x100,
172 IR3_INSTR_S2EN = 0x200,
173 /* meta-flags, for intermediate stages of IR, ie.
174 * before register assignment is done:
175 */
176 IR3_INSTR_MARK = 0x1000,
177 } flags;
178 int repeat;
179 #ifdef DEBUG
180 unsigned regs_max;
181 #endif
182 unsigned regs_count;
183 struct ir3_register **regs;
184 union {
185 struct {
186 char inv;
187 char comp;
188 int immed;
189 } cat0;
190 struct {
191 type_t src_type, dst_type;
192 } cat1;
193 struct {
194 enum {
195 IR3_COND_LT = 0,
196 IR3_COND_LE = 1,
197 IR3_COND_GT = 2,
198 IR3_COND_GE = 3,
199 IR3_COND_EQ = 4,
200 IR3_COND_NE = 5,
201 } condition;
202 } cat2;
203 struct {
204 unsigned samp, tex;
205 type_t type;
206 } cat5;
207 struct {
208 type_t type;
209 int offset;
210 int iim_val;
211 } cat6;
212 /* for meta-instructions, just used to hold extra data
213 * before instruction scheduling, etc
214 */
215 struct {
216 int off; /* component/offset */
217 } fo;
218 struct {
219 int aid;
220 } fi;
221 struct {
222 struct ir3_block *if_block, *else_block;
223 } flow;
224 struct {
225 struct ir3_block *block;
226 } inout;
227
228 /* XXX keep this as big as all other union members! */
229 uint32_t info[3];
230 };
231
232 /* transient values used during various algorithms: */
233 union {
234 /* The instruction depth is the max dependency distance to output.
235 *
236 * You can also think of it as the "cost", if we did any sort of
237 * optimization for register footprint. Ie. a value that is just
238 * result of moving a const to a reg would have a low cost, so to
239 * it could make sense to duplicate the instruction at various
240 * points where the result is needed to reduce register footprint.
241 *
242 * DEPTH_UNUSED used to mark unused instructions after depth
243 * calculation pass.
244 */
245 #define DEPTH_UNUSED ~0
246 unsigned depth;
247 };
248
249 /* Used during CP and RA stages. For fanin and shader inputs/
250 * outputs where we need a sequence of consecutive registers,
251 * keep track of each src instructions left (ie 'n-1') and right
252 * (ie 'n+1') neighbor. The front-end must insert enough mov's
253 * to ensure that each instruction has at most one left and at
254 * most one right neighbor. During the copy-propagation pass,
255 * we only remove mov's when we can preserve this constraint.
256 * And during the RA stage, we use the neighbor information to
257 * allocate a block of registers in one shot.
258 *
259 * TODO: maybe just add something like:
260 * struct ir3_instruction_ref {
261 * struct ir3_instruction *instr;
262 * unsigned cnt;
263 * }
264 *
265 * Or can we get away without the refcnt stuff? It seems like
266 * it should be overkill.. the problem is if, potentially after
267 * already eliminating some mov's, if you have a single mov that
268 * needs to be grouped with it's neighbors in two different
269 * places (ex. shader output and a fanin).
270 */
271 struct {
272 struct ir3_instruction *left, *right;
273 uint16_t left_cnt, right_cnt;
274 } cp;
275
276 /* an instruction can reference at most one address register amongst
277 * it's src/dst registers. Beyond that, you need to insert mov's.
278 */
279 struct ir3_instruction *address;
280
281 /* in case of a instruction with relative dst instruction, we need to
282 * capture the dependency on the fanin for the previous values of
283 * the array elements. Since we don't know at compile time actually
284 * which array elements are written, this serves to preserve the
285 * unconditional write to array elements prior to the conditional
286 * write.
287 *
288 * TODO only cat1 can do indirect write.. we could maybe move this
289 * into instr->cat1.fanin (but would require the frontend to insert
290 * the extra mov)
291 */
292 struct ir3_instruction *fanin;
293
294 /* Entry in ir3_block's instruction list: */
295 struct list_head node;
296
297 #ifdef DEBUG
298 uint32_t serialno;
299 #endif
300 };
301
302 static inline struct ir3_instruction *
303 ir3_neighbor_first(struct ir3_instruction *instr)
304 {
305 while (instr->cp.left)
306 instr = instr->cp.left;
307 return instr;
308 }
309
310 static inline int ir3_neighbor_count(struct ir3_instruction *instr)
311 {
312 int num = 1;
313
314 debug_assert(!instr->cp.left);
315
316 while (instr->cp.right) {
317 num++;
318 instr = instr->cp.right;
319 }
320
321 return num;
322 }
323
324 struct ir3_heap_chunk;
325
326 struct ir3 {
327
328 /* Track bary.f (and ldlv) instructions.. this is needed in
329 * scheduling to ensure that all varying fetches happen before
330 * any potential kill instructions. The hw gets grumpy if all
331 * threads in a group are killed before the last bary.f gets
332 * a chance to signal end of input (ei).
333 */
334 unsigned baryfs_count, baryfs_sz;
335 struct ir3_instruction **baryfs;
336
337 /* Track all indirect instructions (read and write). To avoid
338 * deadlock scenario where an address register gets scheduled,
339 * but other dependent src instructions cannot be scheduled due
340 * to dependency on a *different* address register value, the
341 * scheduler needs to ensure that all dependencies other than
342 * the instruction other than the address register are scheduled
343 * before the one that writes the address register. Having a
344 * convenient list of instructions that reference some address
345 * register simplifies this.
346 */
347 unsigned indirects_count, indirects_sz;
348 struct ir3_instruction **indirects;
349 /* and same for instructions that consume predicate register: */
350 unsigned predicates_count, predicates_sz;
351 struct ir3_instruction **predicates;
352
353 struct ir3_block *block;
354 unsigned heap_idx;
355 struct ir3_heap_chunk *chunk;
356 };
357
358 struct ir3_block {
359 struct ir3 *shader;
360 unsigned ntemporaries, ninputs, noutputs;
361 /* maps TGSI_FILE_TEMPORARY index back to the assigning instruction: */
362 struct ir3_instruction **temporaries;
363 struct ir3_instruction **inputs;
364 struct ir3_instruction **outputs;
365 /* only a single address register: */
366 struct ir3_instruction *address;
367 struct list_head instr_list;
368 };
369
370 struct ir3 * ir3_create(void);
371 void ir3_destroy(struct ir3 *shader);
372 void * ir3_assemble(struct ir3 *shader,
373 struct ir3_info *info, uint32_t gpu_id);
374 void * ir3_alloc(struct ir3 *shader, int sz);
375
376 struct ir3_block * ir3_block_create(struct ir3 *shader,
377 unsigned ntmp, unsigned nin, unsigned nout);
378
379 struct ir3_instruction * ir3_instr_create(struct ir3_block *block,
380 int category, opc_t opc);
381 struct ir3_instruction * ir3_instr_create2(struct ir3_block *block,
382 int category, opc_t opc, int nreg);
383 struct ir3_instruction * ir3_instr_clone(struct ir3_instruction *instr);
384 const char *ir3_instr_name(struct ir3_instruction *instr);
385
386 struct ir3_register * ir3_reg_create(struct ir3_instruction *instr,
387 int num, int flags);
388
389
390 static inline bool ir3_instr_check_mark(struct ir3_instruction *instr)
391 {
392 if (instr->flags & IR3_INSTR_MARK)
393 return true; /* already visited */
394 instr->flags |= IR3_INSTR_MARK;
395 return false;
396 }
397
398 static inline void ir3_clear_mark(struct ir3 *shader)
399 {
400 /* TODO would be nice to drop the instruction array.. for
401 * new compiler, _clear_mark() is all we use it for, and
402 * we could probably manage a linked list instead..
403 *
404 * Also, we'll probably want to mark instructions within
405 * a block, so tracking the list of instrs globally is
406 * unlikely to be what we want.
407 */
408 list_for_each_entry (struct ir3_instruction, instr, &shader->block->instr_list, node)
409 instr->flags &= ~IR3_INSTR_MARK;
410 }
411
412 static inline int ir3_instr_regno(struct ir3_instruction *instr,
413 struct ir3_register *reg)
414 {
415 unsigned i;
416 for (i = 0; i < instr->regs_count; i++)
417 if (reg == instr->regs[i])
418 return i;
419 return -1;
420 }
421
422
423 #define MAX_ARRAYS 16
424
425 /* comp:
426 * 0 - x
427 * 1 - y
428 * 2 - z
429 * 3 - w
430 */
431 static inline uint32_t regid(int num, int comp)
432 {
433 return (num << 2) | (comp & 0x3);
434 }
435
436 static inline uint32_t reg_num(struct ir3_register *reg)
437 {
438 return reg->num >> 2;
439 }
440
441 static inline uint32_t reg_comp(struct ir3_register *reg)
442 {
443 return reg->num & 0x3;
444 }
445
446 static inline bool is_flow(struct ir3_instruction *instr)
447 {
448 return (instr->category == 0);
449 }
450
451 static inline bool is_kill(struct ir3_instruction *instr)
452 {
453 return is_flow(instr) && (instr->opc == OPC_KILL);
454 }
455
456 static inline bool is_nop(struct ir3_instruction *instr)
457 {
458 return is_flow(instr) && (instr->opc == OPC_NOP);
459 }
460
461 /* Is it a non-transformative (ie. not type changing) mov? This can
462 * also include absneg.s/absneg.f, which for the most part can be
463 * treated as a mov (single src argument).
464 */
465 static inline bool is_same_type_mov(struct ir3_instruction *instr)
466 {
467 struct ir3_register *dst = instr->regs[0];
468
469 /* mov's that write to a0.x or p0.x are special: */
470 if (dst->num == regid(REG_P0, 0))
471 return false;
472 if (dst->num == regid(REG_A0, 0))
473 return false;
474
475 if ((instr->category == 1) &&
476 (instr->cat1.src_type == instr->cat1.dst_type))
477 return true;
478 if ((instr->category == 2) && ((instr->opc == OPC_ABSNEG_F) ||
479 (instr->opc == OPC_ABSNEG_S)))
480 return true;
481 return false;
482 }
483
484 static inline bool is_alu(struct ir3_instruction *instr)
485 {
486 return (1 <= instr->category) && (instr->category <= 3);
487 }
488
489 static inline bool is_sfu(struct ir3_instruction *instr)
490 {
491 return (instr->category == 4);
492 }
493
494 static inline bool is_tex(struct ir3_instruction *instr)
495 {
496 return (instr->category == 5);
497 }
498
499 static inline bool is_mem(struct ir3_instruction *instr)
500 {
501 return (instr->category == 6);
502 }
503
504 static inline bool is_input(struct ir3_instruction *instr)
505 {
506 /* in some cases, ldlv is used to fetch varying without
507 * interpolation.. fortunately inloc is the first src
508 * register in either case
509 */
510 if (is_mem(instr) && (instr->opc == OPC_LDLV))
511 return true;
512 return (instr->category == 2) && (instr->opc == OPC_BARY_F);
513 }
514
515 static inline bool is_meta(struct ir3_instruction *instr)
516 {
517 /* TODO how should we count PHI (and maybe fan-in/out) which
518 * might actually contribute some instructions to the final
519 * result?
520 */
521 return (instr->category == -1);
522 }
523
524 static inline bool writes_addr(struct ir3_instruction *instr)
525 {
526 if (instr->regs_count > 0) {
527 struct ir3_register *dst = instr->regs[0];
528 return !!(dst->flags & IR3_REG_ADDR);
529 }
530 return false;
531 }
532
533 static inline bool writes_pred(struct ir3_instruction *instr)
534 {
535 if (instr->regs_count > 0) {
536 struct ir3_register *dst = instr->regs[0];
537 return reg_num(dst) == REG_P0;
538 }
539 return false;
540 }
541
542 /* returns defining instruction for reg */
543 /* TODO better name */
544 static inline struct ir3_instruction *ssa(struct ir3_register *reg)
545 {
546 if (reg->flags & IR3_REG_SSA)
547 return reg->instr;
548 return NULL;
549 }
550
551 static inline bool conflicts(struct ir3_instruction *a,
552 struct ir3_instruction *b)
553 {
554 return (a && b) && (a != b);
555 }
556
557 static inline bool reg_gpr(struct ir3_register *r)
558 {
559 if (r->flags & (IR3_REG_CONST | IR3_REG_IMMED | IR3_REG_ADDR))
560 return false;
561 if ((reg_num(r) == REG_A0) || (reg_num(r) == REG_P0))
562 return false;
563 return true;
564 }
565
566 /* some cat2 instructions (ie. those which are not float) can embed an
567 * immediate:
568 */
569 static inline bool ir3_cat2_int(opc_t opc)
570 {
571 switch (opc) {
572 case OPC_ADD_U:
573 case OPC_ADD_S:
574 case OPC_SUB_U:
575 case OPC_SUB_S:
576 case OPC_CMPS_U:
577 case OPC_CMPS_S:
578 case OPC_MIN_U:
579 case OPC_MIN_S:
580 case OPC_MAX_U:
581 case OPC_MAX_S:
582 case OPC_CMPV_U:
583 case OPC_CMPV_S:
584 case OPC_MUL_U:
585 case OPC_MUL_S:
586 case OPC_MULL_U:
587 case OPC_CLZ_S:
588 case OPC_ABSNEG_S:
589 case OPC_AND_B:
590 case OPC_OR_B:
591 case OPC_NOT_B:
592 case OPC_XOR_B:
593 case OPC_BFREV_B:
594 case OPC_CLZ_B:
595 case OPC_SHL_B:
596 case OPC_SHR_B:
597 case OPC_ASHR_B:
598 case OPC_MGEN_B:
599 case OPC_GETBIT_B:
600 case OPC_CBITS_B:
601 case OPC_BARY_F:
602 return true;
603
604 default:
605 return false;
606 }
607 }
608
609
610 /* map cat2 instruction to valid abs/neg flags: */
611 static inline unsigned ir3_cat2_absneg(opc_t opc)
612 {
613 switch (opc) {
614 case OPC_ADD_F:
615 case OPC_MIN_F:
616 case OPC_MAX_F:
617 case OPC_MUL_F:
618 case OPC_SIGN_F:
619 case OPC_CMPS_F:
620 case OPC_ABSNEG_F:
621 case OPC_CMPV_F:
622 case OPC_FLOOR_F:
623 case OPC_CEIL_F:
624 case OPC_RNDNE_F:
625 case OPC_RNDAZ_F:
626 case OPC_TRUNC_F:
627 case OPC_BARY_F:
628 return IR3_REG_FABS | IR3_REG_FNEG;
629
630 case OPC_ADD_U:
631 case OPC_ADD_S:
632 case OPC_SUB_U:
633 case OPC_SUB_S:
634 case OPC_CMPS_U:
635 case OPC_CMPS_S:
636 case OPC_MIN_U:
637 case OPC_MIN_S:
638 case OPC_MAX_U:
639 case OPC_MAX_S:
640 case OPC_CMPV_U:
641 case OPC_CMPV_S:
642 case OPC_MUL_U:
643 case OPC_MUL_S:
644 case OPC_MULL_U:
645 case OPC_CLZ_S:
646 return 0;
647
648 case OPC_ABSNEG_S:
649 return IR3_REG_SABS | IR3_REG_SNEG;
650
651 case OPC_AND_B:
652 case OPC_OR_B:
653 case OPC_NOT_B:
654 case OPC_XOR_B:
655 case OPC_BFREV_B:
656 case OPC_CLZ_B:
657 case OPC_SHL_B:
658 case OPC_SHR_B:
659 case OPC_ASHR_B:
660 case OPC_MGEN_B:
661 case OPC_GETBIT_B:
662 case OPC_CBITS_B:
663 return IR3_REG_BNOT;
664
665 default:
666 return 0;
667 }
668 }
669
670 /* map cat3 instructions to valid abs/neg flags: */
671 static inline unsigned ir3_cat3_absneg(opc_t opc)
672 {
673 switch (opc) {
674 case OPC_MAD_F16:
675 case OPC_MAD_F32:
676 case OPC_SEL_F16:
677 case OPC_SEL_F32:
678 return IR3_REG_FNEG;
679
680 case OPC_MAD_U16:
681 case OPC_MADSH_U16:
682 case OPC_MAD_S16:
683 case OPC_MADSH_M16:
684 case OPC_MAD_U24:
685 case OPC_MAD_S24:
686 case OPC_SEL_S16:
687 case OPC_SEL_S32:
688 case OPC_SAD_S16:
689 case OPC_SAD_S32:
690 /* neg *may* work on 3rd src.. */
691
692 case OPC_SEL_B16:
693 case OPC_SEL_B32:
694
695 default:
696 return 0;
697 }
698 }
699
700 #define array_insert(arr, val) do { \
701 if (arr ## _count == arr ## _sz) { \
702 arr ## _sz = MAX2(2 * arr ## _sz, 16); \
703 arr = realloc(arr, arr ## _sz * sizeof(arr[0])); \
704 } \
705 arr[arr ##_count++] = val; \
706 } while (0)
707
708 /* iterator for an instructions's sources (reg), also returns src #: */
709 #define foreach_src_n(__srcreg, __n, __instr) \
710 if ((__instr)->regs_count) \
711 for (unsigned __cnt = (__instr)->regs_count - 1, __n = 0; __n < __cnt; __n++) \
712 if ((__srcreg = (__instr)->regs[__n + 1]))
713
714 /* iterator for an instructions's sources (reg): */
715 #define foreach_src(__srcreg, __instr) \
716 foreach_src_n(__srcreg, __i, __instr)
717
718 static inline unsigned __ssa_src_cnt(struct ir3_instruction *instr)
719 {
720 if (instr->fanin)
721 return instr->regs_count + 2;
722 if (instr->address)
723 return instr->regs_count + 1;
724 return instr->regs_count;
725 }
726
727 static inline struct ir3_instruction * __ssa_src_n(struct ir3_instruction *instr, unsigned n)
728 {
729 if (n == (instr->regs_count + 1))
730 return instr->fanin;
731 if (n == (instr->regs_count + 0))
732 return instr->address;
733 return ssa(instr->regs[n]);
734 }
735
736 #define __src_cnt(__instr) ((__instr)->address ? (__instr)->regs_count : (__instr)->regs_count - 1)
737
738 /* iterator for an instruction's SSA sources (instr), also returns src #: */
739 #define foreach_ssa_src_n(__srcinst, __n, __instr) \
740 if ((__instr)->regs_count) \
741 for (unsigned __cnt = __ssa_src_cnt(__instr) - 1, __n = 0; __n < __cnt; __n++) \
742 if ((__srcinst = __ssa_src_n(__instr, __n + 1)))
743
744 /* iterator for an instruction's SSA sources (instr): */
745 #define foreach_ssa_src(__srcinst, __instr) \
746 foreach_ssa_src_n(__srcinst, __i, __instr)
747
748
749 /* dump: */
750 void ir3_print(struct ir3 *ir);
751 void ir3_print_instr(struct ir3_instruction *instr);
752
753 /* flatten if/else: */
754 int ir3_block_flatten(struct ir3_block *block);
755
756 /* depth calculation: */
757 int ir3_delayslots(struct ir3_instruction *assigner,
758 struct ir3_instruction *consumer, unsigned n);
759 void ir3_insert_by_depth(struct ir3_instruction *instr, struct list_head *list);
760 void ir3_block_depth(struct ir3_block *block);
761
762 /* copy-propagate: */
763 void ir3_block_cp(struct ir3_block *block);
764
765 /* group neighbors and insert mov's to resolve conflicts: */
766 void ir3_block_group(struct ir3_block *block);
767
768 /* scheduling: */
769 int ir3_block_sched(struct ir3_block *block);
770
771 /* register assignment: */
772 int ir3_block_ra(struct ir3_block *block, enum shader_t type,
773 bool frag_coord, bool frag_face);
774
775 /* legalize: */
776 void ir3_block_legalize(struct ir3_block *block,
777 bool *has_samp, int *max_bary);
778
779 /* ************************************************************************* */
780 /* instruction helpers */
781
782 static inline struct ir3_instruction *
783 ir3_MOV(struct ir3_block *block, struct ir3_instruction *src, type_t type)
784 {
785 struct ir3_instruction *instr =
786 ir3_instr_create(block, 1, 0);
787 ir3_reg_create(instr, 0, 0); /* dst */
788 ir3_reg_create(instr, 0, IR3_REG_SSA)->instr = src;
789 instr->cat1.src_type = type;
790 instr->cat1.dst_type = type;
791 return instr;
792 }
793
794 static inline struct ir3_instruction *
795 ir3_COV(struct ir3_block *block, struct ir3_instruction *src,
796 type_t src_type, type_t dst_type)
797 {
798 struct ir3_instruction *instr =
799 ir3_instr_create(block, 1, 0);
800 ir3_reg_create(instr, 0, 0); /* dst */
801 ir3_reg_create(instr, 0, IR3_REG_SSA)->instr = src;
802 instr->cat1.src_type = src_type;
803 instr->cat1.dst_type = dst_type;
804 return instr;
805 }
806
807 static inline struct ir3_instruction *
808 ir3_NOP(struct ir3_block *block)
809 {
810 return ir3_instr_create(block, 0, OPC_NOP);
811 }
812
813 #define INSTR1(CAT, name) \
814 static inline struct ir3_instruction * \
815 ir3_##name(struct ir3_block *block, \
816 struct ir3_instruction *a, unsigned aflags) \
817 { \
818 struct ir3_instruction *instr = \
819 ir3_instr_create(block, CAT, OPC_##name); \
820 ir3_reg_create(instr, 0, 0); /* dst */ \
821 ir3_reg_create(instr, 0, IR3_REG_SSA | aflags)->instr = a; \
822 return instr; \
823 }
824
825 #define INSTR2(CAT, name) \
826 static inline struct ir3_instruction * \
827 ir3_##name(struct ir3_block *block, \
828 struct ir3_instruction *a, unsigned aflags, \
829 struct ir3_instruction *b, unsigned bflags) \
830 { \
831 struct ir3_instruction *instr = \
832 ir3_instr_create(block, CAT, OPC_##name); \
833 ir3_reg_create(instr, 0, 0); /* dst */ \
834 ir3_reg_create(instr, 0, IR3_REG_SSA | aflags)->instr = a; \
835 ir3_reg_create(instr, 0, IR3_REG_SSA | bflags)->instr = b; \
836 return instr; \
837 }
838
839 #define INSTR3(CAT, name) \
840 static inline struct ir3_instruction * \
841 ir3_##name(struct ir3_block *block, \
842 struct ir3_instruction *a, unsigned aflags, \
843 struct ir3_instruction *b, unsigned bflags, \
844 struct ir3_instruction *c, unsigned cflags) \
845 { \
846 struct ir3_instruction *instr = \
847 ir3_instr_create(block, CAT, OPC_##name); \
848 ir3_reg_create(instr, 0, 0); /* dst */ \
849 ir3_reg_create(instr, 0, IR3_REG_SSA | aflags)->instr = a; \
850 ir3_reg_create(instr, 0, IR3_REG_SSA | bflags)->instr = b; \
851 ir3_reg_create(instr, 0, IR3_REG_SSA | cflags)->instr = c; \
852 return instr; \
853 }
854
855 /* cat0 instructions: */
856 INSTR1(0, KILL);
857
858 /* cat2 instructions, most 2 src but some 1 src: */
859 INSTR2(2, ADD_F)
860 INSTR2(2, MIN_F)
861 INSTR2(2, MAX_F)
862 INSTR2(2, MUL_F)
863 INSTR1(2, SIGN_F)
864 INSTR2(2, CMPS_F)
865 INSTR1(2, ABSNEG_F)
866 INSTR2(2, CMPV_F)
867 INSTR1(2, FLOOR_F)
868 INSTR1(2, CEIL_F)
869 INSTR1(2, RNDNE_F)
870 INSTR1(2, RNDAZ_F)
871 INSTR1(2, TRUNC_F)
872 INSTR2(2, ADD_U)
873 INSTR2(2, ADD_S)
874 INSTR2(2, SUB_U)
875 INSTR2(2, SUB_S)
876 INSTR2(2, CMPS_U)
877 INSTR2(2, CMPS_S)
878 INSTR2(2, MIN_U)
879 INSTR2(2, MIN_S)
880 INSTR2(2, MAX_U)
881 INSTR2(2, MAX_S)
882 INSTR1(2, ABSNEG_S)
883 INSTR2(2, AND_B)
884 INSTR2(2, OR_B)
885 INSTR1(2, NOT_B)
886 INSTR2(2, XOR_B)
887 INSTR2(2, CMPV_U)
888 INSTR2(2, CMPV_S)
889 INSTR2(2, MUL_U)
890 INSTR2(2, MUL_S)
891 INSTR2(2, MULL_U)
892 INSTR1(2, BFREV_B)
893 INSTR1(2, CLZ_S)
894 INSTR1(2, CLZ_B)
895 INSTR2(2, SHL_B)
896 INSTR2(2, SHR_B)
897 INSTR2(2, ASHR_B)
898 INSTR2(2, BARY_F)
899 INSTR2(2, MGEN_B)
900 INSTR2(2, GETBIT_B)
901 INSTR1(2, SETRM)
902 INSTR1(2, CBITS_B)
903 INSTR2(2, SHB)
904 INSTR2(2, MSAD)
905
906 /* cat3 instructions: */
907 INSTR3(3, MAD_U16)
908 INSTR3(3, MADSH_U16)
909 INSTR3(3, MAD_S16)
910 INSTR3(3, MADSH_M16)
911 INSTR3(3, MAD_U24)
912 INSTR3(3, MAD_S24)
913 INSTR3(3, MAD_F16)
914 INSTR3(3, MAD_F32)
915 INSTR3(3, SEL_B16)
916 INSTR3(3, SEL_B32)
917 INSTR3(3, SEL_S16)
918 INSTR3(3, SEL_S32)
919 INSTR3(3, SEL_F16)
920 INSTR3(3, SEL_F32)
921 INSTR3(3, SAD_S16)
922 INSTR3(3, SAD_S32)
923
924 /* cat4 instructions: */
925 INSTR1(4, RCP)
926 INSTR1(4, RSQ)
927 INSTR1(4, LOG2)
928 INSTR1(4, EXP2)
929 INSTR1(4, SIN)
930 INSTR1(4, COS)
931 INSTR1(4, SQRT)
932
933 /* cat5 instructions: */
934 INSTR1(5, DSX)
935 INSTR1(5, DSY)
936
937 static inline struct ir3_instruction *
938 ir3_SAM(struct ir3_block *block, opc_t opc, type_t type,
939 unsigned wrmask, unsigned flags, unsigned samp, unsigned tex,
940 struct ir3_instruction *src0, struct ir3_instruction *src1)
941 {
942 struct ir3_instruction *sam;
943 struct ir3_register *reg;
944
945 sam = ir3_instr_create(block, 5, opc);
946 sam->flags |= flags;
947 ir3_reg_create(sam, 0, 0)->wrmask = wrmask;
948 if (src0) {
949 reg = ir3_reg_create(sam, 0, IR3_REG_SSA);
950 reg->wrmask = (1 << (src0->regs_count - 1)) - 1;
951 reg->instr = src0;
952 }
953 if (src1) {
954 reg = ir3_reg_create(sam, 0, IR3_REG_SSA);
955 reg->instr = src1;
956 reg->wrmask = (1 << (src1->regs_count - 1)) - 1;
957 }
958 sam->cat5.samp = samp;
959 sam->cat5.tex = tex;
960 sam->cat5.type = type;
961
962 return sam;
963 }
964
965 /* cat6 instructions: */
966 INSTR2(6, LDLV)
967 INSTR2(6, LDG)
968
969 /* ************************************************************************* */
970 /* split this out or find some helper to use.. like main/bitset.h.. */
971
972 #include <string.h>
973
974 #define MAX_REG 256
975
976 typedef uint8_t regmask_t[2 * MAX_REG / 8];
977
978 static inline unsigned regmask_idx(struct ir3_register *reg)
979 {
980 unsigned num = reg->num;
981 debug_assert(num < MAX_REG);
982 if (reg->flags & IR3_REG_HALF)
983 num += MAX_REG;
984 return num;
985 }
986
987 static inline void regmask_init(regmask_t *regmask)
988 {
989 memset(regmask, 0, sizeof(*regmask));
990 }
991
992 static inline void regmask_set(regmask_t *regmask, struct ir3_register *reg)
993 {
994 unsigned idx = regmask_idx(reg);
995 if (reg->flags & IR3_REG_RELATIV) {
996 unsigned i;
997 for (i = 0; i < reg->size; i++, idx++)
998 (*regmask)[idx / 8] |= 1 << (idx % 8);
999 } else {
1000 unsigned mask;
1001 for (mask = reg->wrmask; mask; mask >>= 1, idx++)
1002 if (mask & 1)
1003 (*regmask)[idx / 8] |= 1 << (idx % 8);
1004 }
1005 }
1006
1007 static inline void regmask_or(regmask_t *dst, regmask_t *a, regmask_t *b)
1008 {
1009 unsigned i;
1010 for (i = 0; i < ARRAY_SIZE(*dst); i++)
1011 (*dst)[i] = (*a)[i] | (*b)[i];
1012 }
1013
1014 /* set bits in a if not set in b, conceptually:
1015 * a |= (reg & ~b)
1016 */
1017 static inline void regmask_set_if_not(regmask_t *a,
1018 struct ir3_register *reg, regmask_t *b)
1019 {
1020 unsigned idx = regmask_idx(reg);
1021 if (reg->flags & IR3_REG_RELATIV) {
1022 unsigned i;
1023 for (i = 0; i < reg->size; i++, idx++)
1024 if (!((*b)[idx / 8] & (1 << (idx % 8))))
1025 (*a)[idx / 8] |= 1 << (idx % 8);
1026 } else {
1027 unsigned mask;
1028 for (mask = reg->wrmask; mask; mask >>= 1, idx++)
1029 if (mask & 1)
1030 if (!((*b)[idx / 8] & (1 << (idx % 8))))
1031 (*a)[idx / 8] |= 1 << (idx % 8);
1032 }
1033 }
1034
1035 static inline bool regmask_get(regmask_t *regmask,
1036 struct ir3_register *reg)
1037 {
1038 unsigned idx = regmask_idx(reg);
1039 if (reg->flags & IR3_REG_RELATIV) {
1040 unsigned i;
1041 for (i = 0; i < reg->size; i++, idx++)
1042 if ((*regmask)[idx / 8] & (1 << (idx % 8)))
1043 return true;
1044 } else {
1045 unsigned mask;
1046 for (mask = reg->wrmask; mask; mask >>= 1, idx++)
1047 if (mask & 1)
1048 if ((*regmask)[idx / 8] & (1 << (idx % 8)))
1049 return true;
1050 }
1051 return false;
1052 }
1053
1054 /* ************************************************************************* */
1055
1056 #endif /* IR3_H_ */