blob: b8eeb64f9ac1166d70ecd47cfc9de5305740133b [file] [log] [blame]
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -05001/*
2 * Copyright (C) 2020 Collabora Ltd.
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 * Authors (Collabora):
24 * Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
25 */
26
27#ifndef __BIFROST_COMPILER_H
28#define __BIFROST_COMPILER_H
29
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -050030#include "bifrost.h"
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050031#include "compiler/nir/nir.h"
Alyssa Rosenzweig9b8cb9f2020-03-09 20:19:29 -040032#include "panfrost/util/pan_ir.h"
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050033
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050034/* Bifrost opcodes are tricky -- the same op may exist on both FMA and
35 * ADD with two completely different opcodes, and opcodes can be varying
36 * length in some cases. Then we have different opcodes for int vs float
37 * and then sometimes even for different typesizes. Further, virtually
38 * every op has a number of flags which depend on the op. In constrast
39 * to Midgard where you have a strict ALU/LDST/TEX division and within
40 * ALU you have strict int/float and that's it... here it's a *lot* more
41 * involved. As such, we use something much higher level for our IR,
42 * encoding "classes" of operations, letting the opcode details get
43 * sorted out at emit time.
44 *
45 * Please keep this list alphabetized. Please use a dictionary if you
46 * don't know how to do that.
47 */
48
49enum bi_class {
50 BI_ADD,
51 BI_ATEST,
52 BI_BRANCH,
53 BI_CMP,
54 BI_BLEND,
55 BI_BITWISE,
56 BI_CONVERT,
57 BI_CSEL,
58 BI_DISCARD,
59 BI_FMA,
Alyssa Rosenzweig6b7077e2020-03-19 16:58:48 -040060 BI_FMOV,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050061 BI_FREXP,
Alyssa Rosenzweig55f0d812020-03-10 08:03:20 -040062 BI_ISUB,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050063 BI_LOAD,
Alyssa Rosenzweig1ead0d32020-03-06 09:52:09 -050064 BI_LOAD_UNIFORM,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050065 BI_LOAD_ATTR,
66 BI_LOAD_VAR,
67 BI_LOAD_VAR_ADDRESS,
68 BI_MINMAX,
69 BI_MOV,
70 BI_SHIFT,
71 BI_STORE,
72 BI_STORE_VAR,
73 BI_SPECIAL, /* _FAST, _TABLE on supported GPUs */
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -050074 BI_SWIZZLE,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050075 BI_TEX,
76 BI_ROUND,
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050077 BI_NUM_CLASSES
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050078};
79
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050080/* Properties of a class... */
81extern unsigned bi_class_props[BI_NUM_CLASSES];
82
83/* abs/neg/outmod valid for a float op */
84#define BI_MODS (1 << 0)
85
Alyssa Rosenzweig34165c72020-03-02 20:46:37 -050086/* Generic enough that little class-specific information is required. In other
87 * words, it acts as a "normal" ALU op, even if the encoding ends up being
88 * irregular enough to warrant a separate class */
89#define BI_GENERIC (1 << 1)
90
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -050091/* Accepts a bifrost_roundmode */
92#define BI_ROUNDMODE (1 << 2)
93
Alyssa Rosenzweig99f3c1f2020-03-02 21:53:13 -050094/* Can be scheduled to FMA */
95#define BI_SCHED_FMA (1 << 3)
96
97/* Can be scheduled to ADD */
98#define BI_SCHED_ADD (1 << 4)
99
100/* Most ALU ops can do either, actually */
101#define BI_SCHED_ALL (BI_SCHED_FMA | BI_SCHED_ADD)
102
Alyssa Rosenzweigc70a1982020-03-03 08:16:50 -0500103/* Along with setting BI_SCHED_ADD, eats up the entire cycle, so FMA must be
104 * nopped out. Used for _FAST operations. */
105#define BI_SCHED_SLOW (1 << 5)
106
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500107/* Swizzling allowed for the 8/16-bit source */
108#define BI_SWIZZLABLE (1 << 6)
109
Alyssa Rosenzweig07228a62020-03-03 13:55:33 -0500110/* For scheduling purposes this is a high latency instruction and must be at
111 * the end of a clause. Implies ADD */
Alyssa Rosenzweige323df02020-03-18 13:42:12 -0400112#define BI_SCHED_HI_LATENCY (1 << 7)
Alyssa Rosenzweig07228a62020-03-03 13:55:33 -0500113
Alyssa Rosenzweig9458b012020-03-20 12:25:08 -0400114/* Intrinsic is vectorized and should read 4 components in the first source
115 * regardless of writemask */
Alyssa Rosenzweige1d95332020-03-11 21:41:57 -0400116#define BI_VECTOR (1 << 8)
117
Alyssa Rosenzweigd4fbf752020-03-18 12:08:28 -0400118/* Use a data register for src0/dest respectively, bypassing the usual
119 * register accessor. Mutually exclusive. */
120#define BI_DATA_REG_SRC (1 << 9)
121#define BI_DATA_REG_DEST (1 << 10)
122
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500123/* It can't get any worse than csel4... can it? */
124#define BIR_SRC_COUNT 4
125
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500126/* BI_LD_VARY */
127struct bi_load_vary {
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500128 enum bifrost_interp_mode interp_mode;
129 bool reuse;
130 bool flat;
131};
132
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500133/* BI_BRANCH encoding the details of the branch itself as well as a pointer to
134 * the target. We forward declare bi_block since this is mildly circular (not
135 * strictly, but this order of the file makes more sense I think)
136 *
137 * We define our own enum of conditions since the conditions in the hardware
138 * packed in crazy ways that would make manipulation unweildly (meaning changes
139 * based on port swapping, etc), so we defer dealing with that until emit time.
140 * Likewise, we expose NIR types instead of the crazy branch types, although
141 * the restrictions do eventually apply of course. */
142
143struct bi_block;
144
145enum bi_cond {
146 BI_COND_ALWAYS,
147 BI_COND_LT,
148 BI_COND_LE,
149 BI_COND_GE,
150 BI_COND_GT,
151 BI_COND_EQ,
152 BI_COND_NE,
153};
154
155struct bi_branch {
156 /* Types are specified in src_types and must be compatible (either both
157 * int, or both float, 16/32, and same size or 32/16 if float. Types
158 * ignored if BI_COND_ALWAYS is set for an unconditional branch. */
159
160 enum bi_cond cond;
161 struct bi_block *target;
162};
163
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500164/* Opcodes within a class */
165enum bi_minmax_op {
166 BI_MINMAX_MIN,
167 BI_MINMAX_MAX
168};
169
170enum bi_bitwise_op {
171 BI_BITWISE_AND,
172 BI_BITWISE_OR,
173 BI_BITWISE_XOR
174};
175
176enum bi_round_op {
177 BI_ROUND_MODE, /* use round mode */
178 BI_ROUND_ROUND /* i.e.: fround() */
179};
180
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400181enum bi_special_op {
182 BI_SPECIAL_FRCP,
183 BI_SPECIAL_FRSQ,
184 BI_SPECIAL_FATAN,
185 BI_SPECIAL_FSIN,
186 BI_SPECIAL_FCOS,
187 BI_SPECIAL_FEXP,
188 BI_SPECIAL_FLOG2,
189 BI_SPECIAL_FLOGE
190};
191
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500192typedef struct {
193 struct list_head link; /* Must be first */
194 enum bi_class type;
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500195
196 /* Indices, see bir_ssa_index etc. Note zero is special cased
197 * to "no argument" */
198 unsigned dest;
199 unsigned src[BIR_SRC_COUNT];
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500200
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400201 /* If one of the sources has BIR_INDEX_CONSTANT */
Alyssa Rosenzweigb5bdd892020-03-03 07:47:29 -0500202 union {
203 uint64_t u64;
204 uint32_t u32;
205 uint16_t u16[2];
206 uint8_t u8[4];
207 } constant;
208
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500209 /* Floating-point modifiers, type/class permitting. If not
210 * allowed for the type/class, these are ignored. */
211 enum bifrost_outmod outmod;
212 bool src_abs[BIR_SRC_COUNT];
213 bool src_neg[BIR_SRC_COUNT];
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -0500214
215 /* Round mode (requires BI_ROUNDMODE) */
216 enum bifrost_roundmode roundmode;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500217
Alyssa Rosenzweige9d480c2020-03-09 14:25:00 -0400218 /* Writemask (bit for each affected byte). This is quite restricted --
219 * ALU ops can only write to a single channel (exception: <32 in which
220 * you can write to 32/N contiguous aligned channels). Load/store can
221 * only write to all channels at once, in a sense. But it's still
222 * better to use this generic form than have synthetic ops flying
223 * about, since we're not essentially vector for RA purposes. */
224 uint16_t writemask;
225
Alyssa Rosenzweigc42002d2020-03-02 22:03:05 -0500226 /* Destination type. Usually the type of the instruction
227 * itself, but if sources and destination have different
228 * types, the type of the destination wins (so f2i would be
229 * int). Zero if there is no destination. Bitsize included */
230 nir_alu_type dest_type;
231
Alyssa Rosenzweig8929fe02020-03-03 08:37:15 -0500232 /* Source types if required by the class */
233 nir_alu_type src_types[BIR_SRC_COUNT];
234
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400235 /* If the source type is 8-bit or 16-bit such that SIMD is possible,
236 * and the class has BI_SWIZZLABLE, this is a swizzle in the usual
237 * sense. On non-SIMD instructions, it can be used for component
238 * selection, so we don't have to special case extraction. */
239 uint8_t swizzle[BIR_SRC_COUNT][NIR_MAX_VEC_COMPONENTS];
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500240
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500241 /* A class-specific op from which the actual opcode can be derived
242 * (along with the above information) */
243
244 union {
245 enum bi_minmax_op minmax;
246 enum bi_bitwise_op bitwise;
247 enum bi_round_op round;
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400248 enum bi_special_op special;
Alyssa Rosenzweig20c7d572020-03-10 08:47:20 -0400249 enum bi_cond compare;
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500250 } op;
251
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500252 /* Union for class-specific information */
253 union {
254 enum bifrost_minmax_mode minmax;
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500255 struct bi_load_vary load_vary;
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500256 struct bi_branch branch;
Alyssa Rosenzweig546c3012020-03-05 07:46:00 -0500257
258 /* For CSEL, the comparison op. BI_COND_ALWAYS doesn't make
259 * sense here but you can always just use a move for that */
260 enum bi_cond csel_cond;
Alyssa Rosenzweig92a4f262020-03-06 09:25:58 -0500261
262 /* For BLEND -- the location 0-7 */
263 unsigned blend_location;
Alyssa Rosenzweig9213b252020-03-20 12:38:53 -0400264
265 /* For STORE, STORE_VAR -- channel count */
266 unsigned store_channels;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500267 };
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500268} bi_instruction;
269
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500270/* Scheduling takes place in two steps. Step 1 groups instructions within a
271 * block into distinct clauses (bi_clause). Step 2 schedules instructions
272 * within a clause into FMA/ADD pairs (bi_bundle).
273 *
274 * A bi_bundle contains two paired instruction pointers. If a slot is unfilled,
275 * leave it NULL; the emitter will fill in a nop.
276 */
277
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500278typedef struct {
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500279 bi_instruction *fma;
280 bi_instruction *add;
281} bi_bundle;
282
283typedef struct {
284 struct list_head link;
285
286 /* A clause can have 8 instructions in bundled FMA/ADD sense, so there
287 * can be 8 bundles. But each bundle can have both an FMA and an ADD,
288 * so a clause can have up to 16 bi_instructions. Whether bundles or
289 * instructions are used depends on where in scheduling we are. */
290
291 unsigned instruction_count;
292 unsigned bundle_count;
293
294 union {
295 bi_instruction *instructions[16];
296 bi_bundle bundles[8];
297 };
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500298
299 /* For scoreboarding -- the clause ID (this is not globally unique!)
300 * and its dependencies in terms of other clauses, computed during
301 * scheduling and used when emitting code. Dependencies expressed as a
302 * bitfield matching the hardware, except shifted by a clause (the
303 * shift back to the ISA's off-by-one encoding is worked out when
304 * emitting clauses) */
305 unsigned scoreboard_id;
306 uint8_t dependencies;
307
308 /* Back-to-back corresponds directly to the back-to-back bit. Branch
309 * conditional corresponds to the branch conditional bit except that in
310 * the emitted code it's always set if back-to-bit is, whereas we use
311 * the actual value (without back-to-back so to speak) internally */
312 bool back_to_back;
313 bool branch_conditional;
314
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400315 /* Assigned data register */
316 unsigned data_register;
317
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500318 /* Corresponds to the usual bit but shifted by a clause */
319 bool data_register_write_barrier;
Alyssa Rosenzweigd3370bd2020-03-03 13:01:41 -0500320
321 /* Constants read by this clause. ISA limit. */
322 uint64_t constants[8];
323 unsigned constant_count;
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400324
325 /* What type of high latency instruction is here, basically */
326 unsigned clause_type;
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500327} bi_clause;
328
329typedef struct bi_block {
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400330 pan_block base; /* must be first */
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500331
332 /* If true, uses clauses; if false, uses instructions */
333 bool scheduled;
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500334 struct list_head clauses; /* list of bi_clause */
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500335} bi_block;
336
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500337typedef struct {
338 nir_shader *nir;
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -0500339 gl_shader_stage stage;
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500340 struct list_head blocks; /* list of bi_block */
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -0400341 struct panfrost_sysvals sysvals;
Alyssa Rosenzweig0b26cb12020-03-03 14:27:05 -0500342 uint32_t quirks;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500343
344 /* During NIR->BIR */
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500345 nir_function_impl *impl;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500346 bi_block *current_block;
347 unsigned block_name_count;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500348 bi_block *after_block;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500349 bi_block *break_block;
350 bi_block *continue_block;
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500351 bool emitted_atest;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500352
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500353 /* For creating temporaries */
354 unsigned temp_alloc;
355
Alyssa Rosenzweig56e1c602020-03-11 14:54:49 -0400356 /* Analysis results */
357 bool has_liveness;
358
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500359 /* Stats for shader-db */
360 unsigned instruction_count;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500361 unsigned loop_count;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500362} bi_context;
363
364static inline bi_instruction *
365bi_emit(bi_context *ctx, bi_instruction ins)
366{
367 bi_instruction *u = rzalloc(ctx, bi_instruction);
368 memcpy(u, &ins, sizeof(ins));
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400369 list_addtail(&u->link, &ctx->current_block->base.instructions);
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500370 return u;
371}
372
Alyssa Rosenzweig58a51c42020-03-19 17:21:34 -0400373static inline bi_instruction *
374bi_emit_before(bi_context *ctx, bi_instruction *tag, bi_instruction ins)
375{
376 bi_instruction *u = rzalloc(ctx, bi_instruction);
377 memcpy(u, &ins, sizeof(ins));
378 list_addtail(&u->link, &tag->link);
379 return u;
380}
381
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500382static inline void
383bi_remove_instruction(bi_instruction *ins)
384{
385 list_del(&ins->link);
386}
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500387
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500388/* So we can distinguish between SSA/reg/sentinel quickly */
389#define BIR_NO_ARG (0)
390#define BIR_IS_REG (1)
391
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500392/* If high bits are set, instead of SSA/registers, we have specials indexed by
393 * the low bits if necessary.
394 *
395 * Fixed register: do not allocate register, do not collect $200.
396 * Uniform: access a uniform register given by low bits.
Alyssa Rosenzweig11bccb02020-03-21 18:42:58 -0400397 * Constant: access the specified constant (specifies a bit offset / shift)
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500398 * Zero: special cased to avoid wasting a constant
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400399 * Passthrough: a bifrost_packed_src to passthrough T/T0/T1
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500400 */
401
402#define BIR_INDEX_REGISTER (1 << 31)
403#define BIR_INDEX_UNIFORM (1 << 30)
404#define BIR_INDEX_CONSTANT (1 << 29)
405#define BIR_INDEX_ZERO (1 << 28)
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400406#define BIR_INDEX_PASS (1 << 27)
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500407
408/* Keep me synced please so we can check src & BIR_SPECIAL */
409
410#define BIR_SPECIAL ((BIR_INDEX_REGISTER | BIR_INDEX_UNIFORM) | \
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400411 (BIR_INDEX_CONSTANT | BIR_INDEX_ZERO | BIR_INDEX_PASS))
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500412
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500413static inline unsigned
Alyssa Rosenzweig0bff6e52020-03-11 14:51:57 -0400414bi_max_temp(bi_context *ctx)
415{
416 unsigned alloc = MAX2(ctx->impl->reg_alloc, ctx->impl->ssa_alloc);
Alyssa Rosenzweige8139ef2020-03-11 20:39:36 -0400417 return ((alloc + 2 + ctx->temp_alloc) << 1);
Alyssa Rosenzweig0bff6e52020-03-11 14:51:57 -0400418}
419
420static inline unsigned
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500421bi_make_temp(bi_context *ctx)
422{
423 return (ctx->impl->ssa_alloc + 1 + ctx->temp_alloc++) << 1;
424}
425
426static inline unsigned
427bi_make_temp_reg(bi_context *ctx)
428{
429 return ((ctx->impl->reg_alloc + ctx->temp_alloc++) << 1) | BIR_IS_REG;
430}
431
432static inline unsigned
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500433bir_ssa_index(nir_ssa_def *ssa)
434{
435 /* Off-by-one ensures BIR_NO_ARG is skipped */
436 return ((ssa->index + 1) << 1) | 0;
437}
438
439static inline unsigned
440bir_src_index(nir_src *src)
441{
442 if (src->is_ssa)
443 return bir_ssa_index(src->ssa);
444 else {
445 assert(!src->reg.indirect);
446 return (src->reg.reg->index << 1) | BIR_IS_REG;
447 }
448}
449
450static inline unsigned
451bir_dest_index(nir_dest *dst)
452{
453 if (dst->is_ssa)
454 return bir_ssa_index(&dst->ssa);
455 else {
456 assert(!dst->reg.indirect);
457 return (dst->reg.reg->index << 1) | BIR_IS_REG;
458 }
459}
460
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500461/* Iterators for Bifrost IR */
462
463#define bi_foreach_block(ctx, v) \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400464 list_for_each_entry(pan_block, v, &ctx->blocks, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500465
466#define bi_foreach_block_from(ctx, from, v) \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400467 list_for_each_entry_from(pan_block, v, from, &ctx->blocks, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500468
469#define bi_foreach_instr_in_block(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400470 list_for_each_entry(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500471
472#define bi_foreach_instr_in_block_rev(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400473 list_for_each_entry_rev(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500474
475#define bi_foreach_instr_in_block_safe(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400476 list_for_each_entry_safe(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500477
478#define bi_foreach_instr_in_block_safe_rev(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400479 list_for_each_entry_safe_rev(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500480
481#define bi_foreach_instr_in_block_from(block, v, from) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400482 list_for_each_entry_from(bi_instruction, v, from, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500483
484#define bi_foreach_instr_in_block_from_rev(block, v, from) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400485 list_for_each_entry_from_rev(bi_instruction, v, from, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500486
487#define bi_foreach_clause_in_block(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400488 list_for_each_entry(bi_clause, v, &(block)->clauses, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500489
490#define bi_foreach_instr_global(ctx, v) \
491 bi_foreach_block(ctx, v_block) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400492 bi_foreach_instr_in_block((bi_block *) v_block, v)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500493
494#define bi_foreach_instr_global_safe(ctx, v) \
495 bi_foreach_block(ctx, v_block) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400496 bi_foreach_instr_in_block_safe((bi_block *) v_block, v)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500497
498/* Based on set_foreach, expanded with automatic type casts */
499
500#define bi_foreach_predecessor(blk, v) \
501 struct set_entry *_entry_##v; \
502 bi_block *v; \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400503 for (_entry_##v = _mesa_set_next_entry(blk->base.predecessors, NULL), \
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500504 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL); \
505 _entry_##v != NULL; \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400506 _entry_##v = _mesa_set_next_entry(blk->base.predecessors, _entry_##v), \
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500507 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL))
508
509#define bi_foreach_src(ins, v) \
510 for (unsigned v = 0; v < ARRAY_SIZE(ins->src); ++v)
511
Alyssa Rosenzweig6e0479a2020-03-11 14:48:55 -0400512static inline bi_instruction *
513bi_prev_op(bi_instruction *ins)
514{
515 return list_last_entry(&(ins->link), bi_instruction, link);
516}
517
518static inline bi_instruction *
519bi_next_op(bi_instruction *ins)
520{
521 return list_first_entry(&(ins->link), bi_instruction, link);
522}
523
Alyssa Rosenzweig9269c852020-03-12 14:16:22 -0400524static inline pan_block *
525pan_next_block(pan_block *block)
526{
527 return list_first_entry(&(block->link), pan_block, link);
528}
529
Alyssa Rosenzweig5d16a812020-03-04 09:19:06 -0500530/* BIR manipulation */
531
532bool bi_has_outmod(bi_instruction *ins);
533bool bi_has_source_mods(bi_instruction *ins);
534bool bi_is_src_swizzled(bi_instruction *ins, unsigned s);
Alyssa Rosenzweige94754a2020-03-11 14:40:01 -0400535bool bi_has_arg(bi_instruction *ins, unsigned arg);
Alyssa Rosenzweige1d95332020-03-11 21:41:57 -0400536uint16_t bi_from_bytemask(uint16_t bytemask, unsigned bytes);
Alyssa Rosenzweig9458b012020-03-20 12:25:08 -0400537unsigned bi_get_component_count(bi_instruction *ins, unsigned s);
Alyssa Rosenzweig908341e2020-03-20 11:52:33 -0400538unsigned bi_load32_components(bi_instruction *ins);
Alyssa Rosenzweige6230072020-03-11 14:46:01 -0400539uint16_t bi_bytemask_of_read_components(bi_instruction *ins, unsigned node);
Alyssa Rosenzweig11bccb02020-03-21 18:42:58 -0400540uint64_t bi_get_immediate(bi_instruction *ins, unsigned index);
Alyssa Rosenzweig5d16a812020-03-04 09:19:06 -0500541
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500542/* BIR passes */
543
Alyssa Rosenzweig58f91712020-03-11 15:10:32 -0400544bool bi_opt_dead_code_eliminate(bi_context *ctx, bi_block *block);
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500545void bi_schedule(bi_context *ctx);
Alyssa Rosenzweige8139ef2020-03-11 20:39:36 -0400546void bi_register_allocate(bi_context *ctx);
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500547
Alyssa Rosenzweig56e1c602020-03-11 14:54:49 -0400548/* Liveness */
549
550void bi_compute_liveness(bi_context *ctx);
551void bi_liveness_ins_update(uint16_t *live, bi_instruction *ins, unsigned max);
552void bi_invalidate_liveness(bi_context *ctx);
553bool bi_is_live_after(bi_context *ctx, bi_block *block, bi_instruction *start, int src);
554
Alyssa Rosenzweig9269c852020-03-12 14:16:22 -0400555/* Code emit */
556
557void bi_pack(bi_context *ctx, struct util_dynarray *emission);
558
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500559#endif