blob: 3a895c2a6d116d666b118b256ac03f86175f6a10 [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,
Alyssa Rosenzweige0a51d52020-03-22 17:31:23 -040056 BI_COMBINE,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050057 BI_CONVERT,
58 BI_CSEL,
59 BI_DISCARD,
60 BI_FMA,
Alyssa Rosenzweig6b7077e2020-03-19 16:58:48 -040061 BI_FMOV,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050062 BI_FREXP,
Alyssa Rosenzweig55f0d812020-03-10 08:03:20 -040063 BI_ISUB,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050064 BI_LOAD,
Alyssa Rosenzweig1ead0d32020-03-06 09:52:09 -050065 BI_LOAD_UNIFORM,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050066 BI_LOAD_ATTR,
67 BI_LOAD_VAR,
68 BI_LOAD_VAR_ADDRESS,
69 BI_MINMAX,
70 BI_MOV,
71 BI_SHIFT,
72 BI_STORE,
73 BI_STORE_VAR,
74 BI_SPECIAL, /* _FAST, _TABLE on supported GPUs */
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -050075 BI_SWIZZLE,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050076 BI_TEX,
77 BI_ROUND,
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050078 BI_NUM_CLASSES
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050079};
80
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050081/* Properties of a class... */
82extern unsigned bi_class_props[BI_NUM_CLASSES];
83
84/* abs/neg/outmod valid for a float op */
85#define BI_MODS (1 << 0)
86
Alyssa Rosenzweig34165c72020-03-02 20:46:37 -050087/* Generic enough that little class-specific information is required. In other
88 * words, it acts as a "normal" ALU op, even if the encoding ends up being
89 * irregular enough to warrant a separate class */
90#define BI_GENERIC (1 << 1)
91
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -050092/* Accepts a bifrost_roundmode */
93#define BI_ROUNDMODE (1 << 2)
94
Alyssa Rosenzweig99f3c1f2020-03-02 21:53:13 -050095/* Can be scheduled to FMA */
96#define BI_SCHED_FMA (1 << 3)
97
98/* Can be scheduled to ADD */
99#define BI_SCHED_ADD (1 << 4)
100
101/* Most ALU ops can do either, actually */
102#define BI_SCHED_ALL (BI_SCHED_FMA | BI_SCHED_ADD)
103
Alyssa Rosenzweigc70a1982020-03-03 08:16:50 -0500104/* Along with setting BI_SCHED_ADD, eats up the entire cycle, so FMA must be
105 * nopped out. Used for _FAST operations. */
106#define BI_SCHED_SLOW (1 << 5)
107
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500108/* Swizzling allowed for the 8/16-bit source */
109#define BI_SWIZZLABLE (1 << 6)
110
Alyssa Rosenzweig07228a62020-03-03 13:55:33 -0500111/* For scheduling purposes this is a high latency instruction and must be at
112 * the end of a clause. Implies ADD */
Alyssa Rosenzweige323df02020-03-18 13:42:12 -0400113#define BI_SCHED_HI_LATENCY (1 << 7)
Alyssa Rosenzweig07228a62020-03-03 13:55:33 -0500114
Alyssa Rosenzweig9458b012020-03-20 12:25:08 -0400115/* Intrinsic is vectorized and should read 4 components in the first source
116 * regardless of writemask */
Alyssa Rosenzweige1d95332020-03-11 21:41:57 -0400117#define BI_VECTOR (1 << 8)
118
Alyssa Rosenzweigd4fbf752020-03-18 12:08:28 -0400119/* Use a data register for src0/dest respectively, bypassing the usual
120 * register accessor. Mutually exclusive. */
121#define BI_DATA_REG_SRC (1 << 9)
122#define BI_DATA_REG_DEST (1 << 10)
123
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500124/* It can't get any worse than csel4... can it? */
125#define BIR_SRC_COUNT 4
126
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500127/* BI_LD_VARY */
128struct bi_load_vary {
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500129 enum bifrost_interp_mode interp_mode;
130 bool reuse;
131 bool flat;
132};
133
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500134/* BI_BRANCH encoding the details of the branch itself as well as a pointer to
135 * the target. We forward declare bi_block since this is mildly circular (not
136 * strictly, but this order of the file makes more sense I think)
137 *
138 * We define our own enum of conditions since the conditions in the hardware
139 * packed in crazy ways that would make manipulation unweildly (meaning changes
140 * based on port swapping, etc), so we defer dealing with that until emit time.
141 * Likewise, we expose NIR types instead of the crazy branch types, although
142 * the restrictions do eventually apply of course. */
143
144struct bi_block;
145
146enum bi_cond {
147 BI_COND_ALWAYS,
148 BI_COND_LT,
149 BI_COND_LE,
150 BI_COND_GE,
151 BI_COND_GT,
152 BI_COND_EQ,
153 BI_COND_NE,
154};
155
156struct bi_branch {
157 /* Types are specified in src_types and must be compatible (either both
158 * int, or both float, 16/32, and same size or 32/16 if float. Types
159 * ignored if BI_COND_ALWAYS is set for an unconditional branch. */
160
161 enum bi_cond cond;
162 struct bi_block *target;
163};
164
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500165/* Opcodes within a class */
166enum bi_minmax_op {
167 BI_MINMAX_MIN,
168 BI_MINMAX_MAX
169};
170
171enum bi_bitwise_op {
172 BI_BITWISE_AND,
173 BI_BITWISE_OR,
174 BI_BITWISE_XOR
175};
176
177enum bi_round_op {
178 BI_ROUND_MODE, /* use round mode */
179 BI_ROUND_ROUND /* i.e.: fround() */
180};
181
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400182enum bi_special_op {
183 BI_SPECIAL_FRCP,
184 BI_SPECIAL_FRSQ,
185 BI_SPECIAL_FATAN,
186 BI_SPECIAL_FSIN,
187 BI_SPECIAL_FCOS,
188 BI_SPECIAL_FEXP,
189 BI_SPECIAL_FLOG2,
190 BI_SPECIAL_FLOGE
191};
192
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500193typedef struct {
194 struct list_head link; /* Must be first */
195 enum bi_class type;
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500196
197 /* Indices, see bir_ssa_index etc. Note zero is special cased
198 * to "no argument" */
199 unsigned dest;
200 unsigned src[BIR_SRC_COUNT];
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500201
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400202 /* If one of the sources has BIR_INDEX_CONSTANT */
Alyssa Rosenzweigb5bdd892020-03-03 07:47:29 -0500203 union {
204 uint64_t u64;
205 uint32_t u32;
206 uint16_t u16[2];
207 uint8_t u8[4];
208 } constant;
209
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500210 /* Floating-point modifiers, type/class permitting. If not
211 * allowed for the type/class, these are ignored. */
212 enum bifrost_outmod outmod;
213 bool src_abs[BIR_SRC_COUNT];
214 bool src_neg[BIR_SRC_COUNT];
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -0500215
216 /* Round mode (requires BI_ROUNDMODE) */
217 enum bifrost_roundmode roundmode;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500218
Alyssa Rosenzweige9d480c2020-03-09 14:25:00 -0400219 /* Writemask (bit for each affected byte). This is quite restricted --
220 * ALU ops can only write to a single channel (exception: <32 in which
221 * you can write to 32/N contiguous aligned channels). Load/store can
222 * only write to all channels at once, in a sense. But it's still
223 * better to use this generic form than have synthetic ops flying
224 * about, since we're not essentially vector for RA purposes. */
225 uint16_t writemask;
226
Alyssa Rosenzweigc42002d2020-03-02 22:03:05 -0500227 /* Destination type. Usually the type of the instruction
228 * itself, but if sources and destination have different
229 * types, the type of the destination wins (so f2i would be
230 * int). Zero if there is no destination. Bitsize included */
231 nir_alu_type dest_type;
232
Alyssa Rosenzweig8929fe02020-03-03 08:37:15 -0500233 /* Source types if required by the class */
234 nir_alu_type src_types[BIR_SRC_COUNT];
235
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400236 /* If the source type is 8-bit or 16-bit such that SIMD is possible,
237 * and the class has BI_SWIZZLABLE, this is a swizzle in the usual
238 * sense. On non-SIMD instructions, it can be used for component
239 * selection, so we don't have to special case extraction. */
240 uint8_t swizzle[BIR_SRC_COUNT][NIR_MAX_VEC_COMPONENTS];
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500241
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500242 /* A class-specific op from which the actual opcode can be derived
243 * (along with the above information) */
244
245 union {
246 enum bi_minmax_op minmax;
247 enum bi_bitwise_op bitwise;
248 enum bi_round_op round;
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400249 enum bi_special_op special;
Alyssa Rosenzweig20c7d572020-03-10 08:47:20 -0400250 enum bi_cond compare;
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500251 } op;
252
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500253 /* Union for class-specific information */
254 union {
255 enum bifrost_minmax_mode minmax;
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500256 struct bi_load_vary load_vary;
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500257 struct bi_branch branch;
Alyssa Rosenzweig546c3012020-03-05 07:46:00 -0500258
259 /* For CSEL, the comparison op. BI_COND_ALWAYS doesn't make
260 * sense here but you can always just use a move for that */
261 enum bi_cond csel_cond;
Alyssa Rosenzweig92a4f262020-03-06 09:25:58 -0500262
263 /* For BLEND -- the location 0-7 */
264 unsigned blend_location;
Alyssa Rosenzweig9213b252020-03-20 12:38:53 -0400265
266 /* For STORE, STORE_VAR -- channel count */
267 unsigned store_channels;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500268 };
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500269} bi_instruction;
270
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500271/* Scheduling takes place in two steps. Step 1 groups instructions within a
272 * block into distinct clauses (bi_clause). Step 2 schedules instructions
273 * within a clause into FMA/ADD pairs (bi_bundle).
274 *
275 * A bi_bundle contains two paired instruction pointers. If a slot is unfilled,
276 * leave it NULL; the emitter will fill in a nop.
277 */
278
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500279typedef struct {
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500280 bi_instruction *fma;
281 bi_instruction *add;
282} bi_bundle;
283
284typedef struct {
285 struct list_head link;
286
287 /* A clause can have 8 instructions in bundled FMA/ADD sense, so there
288 * can be 8 bundles. But each bundle can have both an FMA and an ADD,
289 * so a clause can have up to 16 bi_instructions. Whether bundles or
290 * instructions are used depends on where in scheduling we are. */
291
292 unsigned instruction_count;
293 unsigned bundle_count;
294
295 union {
296 bi_instruction *instructions[16];
297 bi_bundle bundles[8];
298 };
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500299
300 /* For scoreboarding -- the clause ID (this is not globally unique!)
301 * and its dependencies in terms of other clauses, computed during
302 * scheduling and used when emitting code. Dependencies expressed as a
303 * bitfield matching the hardware, except shifted by a clause (the
304 * shift back to the ISA's off-by-one encoding is worked out when
305 * emitting clauses) */
306 unsigned scoreboard_id;
307 uint8_t dependencies;
308
309 /* Back-to-back corresponds directly to the back-to-back bit. Branch
310 * conditional corresponds to the branch conditional bit except that in
311 * the emitted code it's always set if back-to-bit is, whereas we use
312 * the actual value (without back-to-back so to speak) internally */
313 bool back_to_back;
314 bool branch_conditional;
315
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400316 /* Assigned data register */
317 unsigned data_register;
318
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500319 /* Corresponds to the usual bit but shifted by a clause */
320 bool data_register_write_barrier;
Alyssa Rosenzweigd3370bd2020-03-03 13:01:41 -0500321
322 /* Constants read by this clause. ISA limit. */
323 uint64_t constants[8];
324 unsigned constant_count;
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400325
326 /* What type of high latency instruction is here, basically */
327 unsigned clause_type;
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500328} bi_clause;
329
330typedef struct bi_block {
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400331 pan_block base; /* must be first */
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500332
333 /* If true, uses clauses; if false, uses instructions */
334 bool scheduled;
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500335 struct list_head clauses; /* list of bi_clause */
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500336} bi_block;
337
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500338typedef struct {
339 nir_shader *nir;
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -0500340 gl_shader_stage stage;
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500341 struct list_head blocks; /* list of bi_block */
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -0400342 struct panfrost_sysvals sysvals;
Alyssa Rosenzweig0b26cb12020-03-03 14:27:05 -0500343 uint32_t quirks;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500344
345 /* During NIR->BIR */
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500346 nir_function_impl *impl;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500347 bi_block *current_block;
348 unsigned block_name_count;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500349 bi_block *after_block;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500350 bi_block *break_block;
351 bi_block *continue_block;
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500352 bool emitted_atest;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500353
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500354 /* For creating temporaries */
355 unsigned temp_alloc;
356
Alyssa Rosenzweig56e1c602020-03-11 14:54:49 -0400357 /* Analysis results */
358 bool has_liveness;
359
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500360 /* Stats for shader-db */
361 unsigned instruction_count;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500362 unsigned loop_count;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500363} bi_context;
364
365static inline bi_instruction *
366bi_emit(bi_context *ctx, bi_instruction ins)
367{
368 bi_instruction *u = rzalloc(ctx, bi_instruction);
369 memcpy(u, &ins, sizeof(ins));
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400370 list_addtail(&u->link, &ctx->current_block->base.instructions);
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500371 return u;
372}
373
Alyssa Rosenzweig58a51c42020-03-19 17:21:34 -0400374static inline bi_instruction *
375bi_emit_before(bi_context *ctx, bi_instruction *tag, bi_instruction ins)
376{
377 bi_instruction *u = rzalloc(ctx, bi_instruction);
378 memcpy(u, &ins, sizeof(ins));
379 list_addtail(&u->link, &tag->link);
380 return u;
381}
382
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500383static inline void
384bi_remove_instruction(bi_instruction *ins)
385{
386 list_del(&ins->link);
387}
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500388
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500389/* So we can distinguish between SSA/reg/sentinel quickly */
390#define BIR_NO_ARG (0)
391#define BIR_IS_REG (1)
392
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500393/* If high bits are set, instead of SSA/registers, we have specials indexed by
394 * the low bits if necessary.
395 *
396 * Fixed register: do not allocate register, do not collect $200.
397 * Uniform: access a uniform register given by low bits.
Alyssa Rosenzweig11bccb02020-03-21 18:42:58 -0400398 * Constant: access the specified constant (specifies a bit offset / shift)
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500399 * Zero: special cased to avoid wasting a constant
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400400 * Passthrough: a bifrost_packed_src to passthrough T/T0/T1
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500401 */
402
403#define BIR_INDEX_REGISTER (1 << 31)
404#define BIR_INDEX_UNIFORM (1 << 30)
405#define BIR_INDEX_CONSTANT (1 << 29)
406#define BIR_INDEX_ZERO (1 << 28)
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400407#define BIR_INDEX_PASS (1 << 27)
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500408
409/* Keep me synced please so we can check src & BIR_SPECIAL */
410
411#define BIR_SPECIAL ((BIR_INDEX_REGISTER | BIR_INDEX_UNIFORM) | \
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400412 (BIR_INDEX_CONSTANT | BIR_INDEX_ZERO | BIR_INDEX_PASS))
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500413
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500414static inline unsigned
Alyssa Rosenzweig0bff6e52020-03-11 14:51:57 -0400415bi_max_temp(bi_context *ctx)
416{
417 unsigned alloc = MAX2(ctx->impl->reg_alloc, ctx->impl->ssa_alloc);
Alyssa Rosenzweige8139ef2020-03-11 20:39:36 -0400418 return ((alloc + 2 + ctx->temp_alloc) << 1);
Alyssa Rosenzweig0bff6e52020-03-11 14:51:57 -0400419}
420
421static inline unsigned
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500422bi_make_temp(bi_context *ctx)
423{
424 return (ctx->impl->ssa_alloc + 1 + ctx->temp_alloc++) << 1;
425}
426
427static inline unsigned
428bi_make_temp_reg(bi_context *ctx)
429{
430 return ((ctx->impl->reg_alloc + ctx->temp_alloc++) << 1) | BIR_IS_REG;
431}
432
433static inline unsigned
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500434bir_ssa_index(nir_ssa_def *ssa)
435{
436 /* Off-by-one ensures BIR_NO_ARG is skipped */
437 return ((ssa->index + 1) << 1) | 0;
438}
439
440static inline unsigned
441bir_src_index(nir_src *src)
442{
443 if (src->is_ssa)
444 return bir_ssa_index(src->ssa);
445 else {
446 assert(!src->reg.indirect);
447 return (src->reg.reg->index << 1) | BIR_IS_REG;
448 }
449}
450
451static inline unsigned
452bir_dest_index(nir_dest *dst)
453{
454 if (dst->is_ssa)
455 return bir_ssa_index(&dst->ssa);
456 else {
457 assert(!dst->reg.indirect);
458 return (dst->reg.reg->index << 1) | BIR_IS_REG;
459 }
460}
461
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500462/* Iterators for Bifrost IR */
463
464#define bi_foreach_block(ctx, v) \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400465 list_for_each_entry(pan_block, v, &ctx->blocks, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500466
467#define bi_foreach_block_from(ctx, from, v) \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400468 list_for_each_entry_from(pan_block, v, from, &ctx->blocks, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500469
470#define bi_foreach_instr_in_block(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400471 list_for_each_entry(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500472
473#define bi_foreach_instr_in_block_rev(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400474 list_for_each_entry_rev(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500475
476#define bi_foreach_instr_in_block_safe(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400477 list_for_each_entry_safe(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500478
479#define bi_foreach_instr_in_block_safe_rev(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400480 list_for_each_entry_safe_rev(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500481
482#define bi_foreach_instr_in_block_from(block, v, from) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400483 list_for_each_entry_from(bi_instruction, v, from, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500484
485#define bi_foreach_instr_in_block_from_rev(block, v, from) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400486 list_for_each_entry_from_rev(bi_instruction, v, from, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500487
488#define bi_foreach_clause_in_block(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400489 list_for_each_entry(bi_clause, v, &(block)->clauses, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500490
491#define bi_foreach_instr_global(ctx, v) \
492 bi_foreach_block(ctx, v_block) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400493 bi_foreach_instr_in_block((bi_block *) v_block, v)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500494
495#define bi_foreach_instr_global_safe(ctx, v) \
496 bi_foreach_block(ctx, v_block) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400497 bi_foreach_instr_in_block_safe((bi_block *) v_block, v)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500498
499/* Based on set_foreach, expanded with automatic type casts */
500
501#define bi_foreach_predecessor(blk, v) \
502 struct set_entry *_entry_##v; \
503 bi_block *v; \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400504 for (_entry_##v = _mesa_set_next_entry(blk->base.predecessors, NULL), \
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500505 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL); \
506 _entry_##v != NULL; \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400507 _entry_##v = _mesa_set_next_entry(blk->base.predecessors, _entry_##v), \
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500508 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL))
509
510#define bi_foreach_src(ins, v) \
511 for (unsigned v = 0; v < ARRAY_SIZE(ins->src); ++v)
512
Alyssa Rosenzweig6e0479a2020-03-11 14:48:55 -0400513static inline bi_instruction *
514bi_prev_op(bi_instruction *ins)
515{
516 return list_last_entry(&(ins->link), bi_instruction, link);
517}
518
519static inline bi_instruction *
520bi_next_op(bi_instruction *ins)
521{
522 return list_first_entry(&(ins->link), bi_instruction, link);
523}
524
Alyssa Rosenzweig9269c852020-03-12 14:16:22 -0400525static inline pan_block *
526pan_next_block(pan_block *block)
527{
528 return list_first_entry(&(block->link), pan_block, link);
529}
530
Alyssa Rosenzweig5d16a812020-03-04 09:19:06 -0500531/* BIR manipulation */
532
533bool bi_has_outmod(bi_instruction *ins);
534bool bi_has_source_mods(bi_instruction *ins);
535bool bi_is_src_swizzled(bi_instruction *ins, unsigned s);
Alyssa Rosenzweige94754a2020-03-11 14:40:01 -0400536bool bi_has_arg(bi_instruction *ins, unsigned arg);
Alyssa Rosenzweige1d95332020-03-11 21:41:57 -0400537uint16_t bi_from_bytemask(uint16_t bytemask, unsigned bytes);
Alyssa Rosenzweig9458b012020-03-20 12:25:08 -0400538unsigned bi_get_component_count(bi_instruction *ins, unsigned s);
Alyssa Rosenzweig908341e2020-03-20 11:52:33 -0400539unsigned bi_load32_components(bi_instruction *ins);
Alyssa Rosenzweige6230072020-03-11 14:46:01 -0400540uint16_t bi_bytemask_of_read_components(bi_instruction *ins, unsigned node);
Alyssa Rosenzweig11bccb02020-03-21 18:42:58 -0400541uint64_t bi_get_immediate(bi_instruction *ins, unsigned index);
Alyssa Rosenzweig5d16a812020-03-04 09:19:06 -0500542
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500543/* BIR passes */
544
Alyssa Rosenzweige0a51d52020-03-22 17:31:23 -0400545void bi_lower_combine(bi_context *ctx, bi_block *block);
Alyssa Rosenzweig58f91712020-03-11 15:10:32 -0400546bool bi_opt_dead_code_eliminate(bi_context *ctx, bi_block *block);
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500547void bi_schedule(bi_context *ctx);
Alyssa Rosenzweige8139ef2020-03-11 20:39:36 -0400548void bi_register_allocate(bi_context *ctx);
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500549
Alyssa Rosenzweig56e1c602020-03-11 14:54:49 -0400550/* Liveness */
551
552void bi_compute_liveness(bi_context *ctx);
553void bi_liveness_ins_update(uint16_t *live, bi_instruction *ins, unsigned max);
554void bi_invalidate_liveness(bi_context *ctx);
555bool bi_is_live_after(bi_context *ctx, bi_block *block, bi_instruction *start, int src);
556
Alyssa Rosenzweig9269c852020-03-12 14:16:22 -0400557/* Code emit */
558
559void bi_pack(bi_context *ctx, struct util_dynarray *emission);
560
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500561#endif