blob: 3fc819c8afc93b696555449577438452f210506b [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,
Alyssa Rosenzweig62c8c342020-04-14 12:33:08 -040071 BI_REDUCE_FMA,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050072 BI_SHIFT,
73 BI_STORE,
74 BI_STORE_VAR,
Alyssa Rosenzweigaf013782020-04-14 12:21:25 -040075 BI_SPECIAL, /* _FAST on supported GPUs */
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -050076 BI_SWIZZLE,
Alyssa Rosenzweigaf013782020-04-14 12:21:25 -040077 BI_TABLE,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050078 BI_TEX,
79 BI_ROUND,
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050080 BI_NUM_CLASSES
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050081};
82
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050083/* Properties of a class... */
84extern unsigned bi_class_props[BI_NUM_CLASSES];
85
86/* abs/neg/outmod valid for a float op */
87#define BI_MODS (1 << 0)
88
Alyssa Rosenzweig34165c72020-03-02 20:46:37 -050089/* Generic enough that little class-specific information is required. In other
90 * words, it acts as a "normal" ALU op, even if the encoding ends up being
91 * irregular enough to warrant a separate class */
92#define BI_GENERIC (1 << 1)
93
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -050094/* Accepts a bifrost_roundmode */
95#define BI_ROUNDMODE (1 << 2)
96
Alyssa Rosenzweig99f3c1f2020-03-02 21:53:13 -050097/* Can be scheduled to FMA */
98#define BI_SCHED_FMA (1 << 3)
99
100/* Can be scheduled to ADD */
101#define BI_SCHED_ADD (1 << 4)
102
103/* Most ALU ops can do either, actually */
104#define BI_SCHED_ALL (BI_SCHED_FMA | BI_SCHED_ADD)
105
Alyssa Rosenzweigc70a1982020-03-03 08:16:50 -0500106/* Along with setting BI_SCHED_ADD, eats up the entire cycle, so FMA must be
107 * nopped out. Used for _FAST operations. */
108#define BI_SCHED_SLOW (1 << 5)
109
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500110/* Swizzling allowed for the 8/16-bit source */
111#define BI_SWIZZLABLE (1 << 6)
112
Alyssa Rosenzweig07228a62020-03-03 13:55:33 -0500113/* For scheduling purposes this is a high latency instruction and must be at
114 * the end of a clause. Implies ADD */
Alyssa Rosenzweige323df02020-03-18 13:42:12 -0400115#define BI_SCHED_HI_LATENCY (1 << 7)
Alyssa Rosenzweig07228a62020-03-03 13:55:33 -0500116
Alyssa Rosenzweig9458b012020-03-20 12:25:08 -0400117/* Intrinsic is vectorized and should read 4 components in the first source
118 * regardless of writemask */
Alyssa Rosenzweige1d95332020-03-11 21:41:57 -0400119#define BI_VECTOR (1 << 8)
120
Alyssa Rosenzweigd4fbf752020-03-18 12:08:28 -0400121/* Use a data register for src0/dest respectively, bypassing the usual
122 * register accessor. Mutually exclusive. */
123#define BI_DATA_REG_SRC (1 << 9)
124#define BI_DATA_REG_DEST (1 << 10)
125
Alyssa Rosenzweigbd19e762020-03-30 12:25:20 -0400126/* Quirk: cannot encode multiple abs on FMA in fp16 mode */
127#define BI_NO_ABS_ABS_FP16_FMA (1 << 11)
128
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500129/* It can't get any worse than csel4... can it? */
130#define BIR_SRC_COUNT 4
131
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500132/* BI_LD_VARY */
133struct bi_load_vary {
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500134 enum bifrost_interp_mode interp_mode;
135 bool reuse;
136 bool flat;
137};
138
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500139/* BI_BRANCH encoding the details of the branch itself as well as a pointer to
140 * the target. We forward declare bi_block since this is mildly circular (not
141 * strictly, but this order of the file makes more sense I think)
142 *
143 * We define our own enum of conditions since the conditions in the hardware
144 * packed in crazy ways that would make manipulation unweildly (meaning changes
145 * based on port swapping, etc), so we defer dealing with that until emit time.
146 * Likewise, we expose NIR types instead of the crazy branch types, although
147 * the restrictions do eventually apply of course. */
148
149struct bi_block;
150
151enum bi_cond {
152 BI_COND_ALWAYS,
153 BI_COND_LT,
154 BI_COND_LE,
155 BI_COND_GE,
156 BI_COND_GT,
157 BI_COND_EQ,
158 BI_COND_NE,
159};
160
161struct bi_branch {
162 /* Types are specified in src_types and must be compatible (either both
163 * int, or both float, 16/32, and same size or 32/16 if float. Types
164 * ignored if BI_COND_ALWAYS is set for an unconditional branch. */
165
166 enum bi_cond cond;
167 struct bi_block *target;
168};
169
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500170/* Opcodes within a class */
171enum bi_minmax_op {
172 BI_MINMAX_MIN,
173 BI_MINMAX_MAX
174};
175
176enum bi_bitwise_op {
177 BI_BITWISE_AND,
178 BI_BITWISE_OR,
179 BI_BITWISE_XOR
180};
181
182enum bi_round_op {
183 BI_ROUND_MODE, /* use round mode */
184 BI_ROUND_ROUND /* i.e.: fround() */
185};
186
Alyssa Rosenzweigaf013782020-04-14 12:21:25 -0400187enum bi_table_op {
188 /* fp32 log2() with low precision, suitable for GL or half_log2() in
189 * CL. In the first argument, takes x. Letting u be such that x =
190 * 2^{-m} u with m integer and 0.75 <= u < 1.5, returns
191 * log2(u) / (u - 1). */
192
193 BI_TABLE_LOG2_U_OVER_U_1_LOW,
194};
195
Alyssa Rosenzweig62c8c342020-04-14 12:33:08 -0400196enum bi_reduce_op {
197 /* Takes two fp32 arguments and returns x + frexp(y). Used in
198 * low-precision log2 argument reduction on newer models. */
199
200 BI_REDUCE_ADD_FREXPM,
201};
202
Alyssa Rosenzweige067fd72020-04-14 12:37:29 -0400203enum bi_frexp_op {
204 BI_FREXPE_LOG,
205};
206
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400207enum bi_special_op {
208 BI_SPECIAL_FRCP,
209 BI_SPECIAL_FRSQ,
Alyssa Rosenzweigcc611562020-04-14 12:22:28 -0400210
211 /* fp32 exp2() with low precision, suitable for half_exp2() in CL or
212 * exp2() in GL. In the first argument, it takes f2i_rte(x * 2^24). In
213 * the second, it takes x itself. */
214 BI_SPECIAL_EXP2_LOW,
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400215};
216
Alyssa Rosenzweigf85746a2020-04-21 12:26:42 -0400217enum bi_tex_op {
218 BI_TEX_NORMAL,
219 BI_TEX_COMPACT,
220 BI_TEX_DUAL
221};
222
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500223typedef struct {
224 struct list_head link; /* Must be first */
225 enum bi_class type;
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500226
227 /* Indices, see bir_ssa_index etc. Note zero is special cased
228 * to "no argument" */
229 unsigned dest;
230 unsigned src[BIR_SRC_COUNT];
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500231
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400232 /* If one of the sources has BIR_INDEX_CONSTANT */
Alyssa Rosenzweigb5bdd892020-03-03 07:47:29 -0500233 union {
234 uint64_t u64;
235 uint32_t u32;
236 uint16_t u16[2];
237 uint8_t u8[4];
238 } constant;
239
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500240 /* Floating-point modifiers, type/class permitting. If not
241 * allowed for the type/class, these are ignored. */
242 enum bifrost_outmod outmod;
243 bool src_abs[BIR_SRC_COUNT];
244 bool src_neg[BIR_SRC_COUNT];
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -0500245
246 /* Round mode (requires BI_ROUNDMODE) */
247 enum bifrost_roundmode roundmode;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500248
Alyssa Rosenzweige9d480c2020-03-09 14:25:00 -0400249 /* Writemask (bit for each affected byte). This is quite restricted --
250 * ALU ops can only write to a single channel (exception: <32 in which
251 * you can write to 32/N contiguous aligned channels). Load/store can
252 * only write to all channels at once, in a sense. But it's still
253 * better to use this generic form than have synthetic ops flying
254 * about, since we're not essentially vector for RA purposes. */
255 uint16_t writemask;
256
Alyssa Rosenzweigc42002d2020-03-02 22:03:05 -0500257 /* Destination type. Usually the type of the instruction
258 * itself, but if sources and destination have different
259 * types, the type of the destination wins (so f2i would be
260 * int). Zero if there is no destination. Bitsize included */
261 nir_alu_type dest_type;
262
Alyssa Rosenzweig8929fe02020-03-03 08:37:15 -0500263 /* Source types if required by the class */
264 nir_alu_type src_types[BIR_SRC_COUNT];
265
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400266 /* If the source type is 8-bit or 16-bit such that SIMD is possible,
267 * and the class has BI_SWIZZLABLE, this is a swizzle in the usual
268 * sense. On non-SIMD instructions, it can be used for component
269 * selection, so we don't have to special case extraction. */
270 uint8_t swizzle[BIR_SRC_COUNT][NIR_MAX_VEC_COMPONENTS];
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500271
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500272 /* A class-specific op from which the actual opcode can be derived
273 * (along with the above information) */
274
275 union {
276 enum bi_minmax_op minmax;
277 enum bi_bitwise_op bitwise;
278 enum bi_round_op round;
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400279 enum bi_special_op special;
Alyssa Rosenzweig62c8c342020-04-14 12:33:08 -0400280 enum bi_reduce_op reduce;
Alyssa Rosenzweigaf013782020-04-14 12:21:25 -0400281 enum bi_table_op table;
Alyssa Rosenzweige067fd72020-04-14 12:37:29 -0400282 enum bi_frexp_op frexp;
Alyssa Rosenzweig20c7d572020-03-10 08:47:20 -0400283 enum bi_cond compare;
Alyssa Rosenzweigf85746a2020-04-21 12:26:42 -0400284 enum bi_tex_op texture;
Alyssa Rosenzweig4570c342020-04-14 16:13:53 -0400285
286 /* For FMA/ADD, should we add a biased exponent? */
287 bool mscale;
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500288 } op;
289
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500290 /* Union for class-specific information */
291 union {
292 enum bifrost_minmax_mode minmax;
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500293 struct bi_load_vary load_vary;
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500294 struct bi_branch branch;
Alyssa Rosenzweig546c3012020-03-05 07:46:00 -0500295
296 /* For CSEL, the comparison op. BI_COND_ALWAYS doesn't make
297 * sense here but you can always just use a move for that */
298 enum bi_cond csel_cond;
Alyssa Rosenzweig92a4f262020-03-06 09:25:58 -0500299
300 /* For BLEND -- the location 0-7 */
301 unsigned blend_location;
Alyssa Rosenzweig9213b252020-03-20 12:38:53 -0400302
303 /* For STORE, STORE_VAR -- channel count */
304 unsigned store_channels;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500305 };
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500306} bi_instruction;
307
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500308/* Scheduling takes place in two steps. Step 1 groups instructions within a
309 * block into distinct clauses (bi_clause). Step 2 schedules instructions
310 * within a clause into FMA/ADD pairs (bi_bundle).
311 *
312 * A bi_bundle contains two paired instruction pointers. If a slot is unfilled,
313 * leave it NULL; the emitter will fill in a nop.
314 */
315
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500316typedef struct {
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500317 bi_instruction *fma;
318 bi_instruction *add;
319} bi_bundle;
320
321typedef struct {
322 struct list_head link;
323
324 /* A clause can have 8 instructions in bundled FMA/ADD sense, so there
325 * can be 8 bundles. But each bundle can have both an FMA and an ADD,
326 * so a clause can have up to 16 bi_instructions. Whether bundles or
327 * instructions are used depends on where in scheduling we are. */
328
329 unsigned instruction_count;
330 unsigned bundle_count;
331
332 union {
333 bi_instruction *instructions[16];
334 bi_bundle bundles[8];
335 };
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500336
337 /* For scoreboarding -- the clause ID (this is not globally unique!)
338 * and its dependencies in terms of other clauses, computed during
339 * scheduling and used when emitting code. Dependencies expressed as a
340 * bitfield matching the hardware, except shifted by a clause (the
341 * shift back to the ISA's off-by-one encoding is worked out when
342 * emitting clauses) */
343 unsigned scoreboard_id;
344 uint8_t dependencies;
345
346 /* Back-to-back corresponds directly to the back-to-back bit. Branch
347 * conditional corresponds to the branch conditional bit except that in
348 * the emitted code it's always set if back-to-bit is, whereas we use
349 * the actual value (without back-to-back so to speak) internally */
350 bool back_to_back;
351 bool branch_conditional;
352
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400353 /* Assigned data register */
354 unsigned data_register;
355
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500356 /* Corresponds to the usual bit but shifted by a clause */
357 bool data_register_write_barrier;
Alyssa Rosenzweigd3370bd2020-03-03 13:01:41 -0500358
359 /* Constants read by this clause. ISA limit. */
360 uint64_t constants[8];
361 unsigned constant_count;
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400362
363 /* What type of high latency instruction is here, basically */
364 unsigned clause_type;
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500365} bi_clause;
366
367typedef struct bi_block {
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400368 pan_block base; /* must be first */
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500369
370 /* If true, uses clauses; if false, uses instructions */
371 bool scheduled;
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500372 struct list_head clauses; /* list of bi_clause */
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500373} bi_block;
374
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500375typedef struct {
376 nir_shader *nir;
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -0500377 gl_shader_stage stage;
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500378 struct list_head blocks; /* list of bi_block */
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -0400379 struct panfrost_sysvals sysvals;
Alyssa Rosenzweig0b26cb12020-03-03 14:27:05 -0500380 uint32_t quirks;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500381
382 /* During NIR->BIR */
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500383 nir_function_impl *impl;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500384 bi_block *current_block;
385 unsigned block_name_count;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500386 bi_block *after_block;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500387 bi_block *break_block;
388 bi_block *continue_block;
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500389 bool emitted_atest;
Alyssa Rosenzweig1a8f1a32020-04-23 19:26:01 -0400390 nir_alu_type *blend_types;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500391
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500392 /* For creating temporaries */
393 unsigned temp_alloc;
394
Alyssa Rosenzweig56e1c602020-03-11 14:54:49 -0400395 /* Analysis results */
396 bool has_liveness;
397
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500398 /* Stats for shader-db */
399 unsigned instruction_count;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500400 unsigned loop_count;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500401} bi_context;
402
403static inline bi_instruction *
404bi_emit(bi_context *ctx, bi_instruction ins)
405{
406 bi_instruction *u = rzalloc(ctx, bi_instruction);
407 memcpy(u, &ins, sizeof(ins));
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400408 list_addtail(&u->link, &ctx->current_block->base.instructions);
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500409 return u;
410}
411
Alyssa Rosenzweig58a51c42020-03-19 17:21:34 -0400412static inline bi_instruction *
413bi_emit_before(bi_context *ctx, bi_instruction *tag, bi_instruction ins)
414{
415 bi_instruction *u = rzalloc(ctx, bi_instruction);
416 memcpy(u, &ins, sizeof(ins));
417 list_addtail(&u->link, &tag->link);
418 return u;
419}
420
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500421static inline void
422bi_remove_instruction(bi_instruction *ins)
423{
424 list_del(&ins->link);
425}
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500426
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500427/* So we can distinguish between SSA/reg/sentinel quickly */
428#define BIR_NO_ARG (0)
429#define BIR_IS_REG (1)
430
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500431/* If high bits are set, instead of SSA/registers, we have specials indexed by
432 * the low bits if necessary.
433 *
434 * Fixed register: do not allocate register, do not collect $200.
435 * Uniform: access a uniform register given by low bits.
Alyssa Rosenzweig11bccb02020-03-21 18:42:58 -0400436 * Constant: access the specified constant (specifies a bit offset / shift)
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500437 * Zero: special cased to avoid wasting a constant
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400438 * Passthrough: a bifrost_packed_src to passthrough T/T0/T1
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500439 */
440
441#define BIR_INDEX_REGISTER (1 << 31)
442#define BIR_INDEX_UNIFORM (1 << 30)
443#define BIR_INDEX_CONSTANT (1 << 29)
444#define BIR_INDEX_ZERO (1 << 28)
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400445#define BIR_INDEX_PASS (1 << 27)
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500446
447/* Keep me synced please so we can check src & BIR_SPECIAL */
448
449#define BIR_SPECIAL ((BIR_INDEX_REGISTER | BIR_INDEX_UNIFORM) | \
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400450 (BIR_INDEX_CONSTANT | BIR_INDEX_ZERO | BIR_INDEX_PASS))
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500451
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500452static inline unsigned
Alyssa Rosenzweig0bff6e52020-03-11 14:51:57 -0400453bi_max_temp(bi_context *ctx)
454{
455 unsigned alloc = MAX2(ctx->impl->reg_alloc, ctx->impl->ssa_alloc);
Alyssa Rosenzweige8139ef2020-03-11 20:39:36 -0400456 return ((alloc + 2 + ctx->temp_alloc) << 1);
Alyssa Rosenzweig0bff6e52020-03-11 14:51:57 -0400457}
458
459static inline unsigned
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500460bi_make_temp(bi_context *ctx)
461{
462 return (ctx->impl->ssa_alloc + 1 + ctx->temp_alloc++) << 1;
463}
464
465static inline unsigned
466bi_make_temp_reg(bi_context *ctx)
467{
468 return ((ctx->impl->reg_alloc + ctx->temp_alloc++) << 1) | BIR_IS_REG;
469}
470
471static inline unsigned
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500472bir_ssa_index(nir_ssa_def *ssa)
473{
474 /* Off-by-one ensures BIR_NO_ARG is skipped */
475 return ((ssa->index + 1) << 1) | 0;
476}
477
478static inline unsigned
479bir_src_index(nir_src *src)
480{
481 if (src->is_ssa)
482 return bir_ssa_index(src->ssa);
483 else {
484 assert(!src->reg.indirect);
485 return (src->reg.reg->index << 1) | BIR_IS_REG;
486 }
487}
488
489static inline unsigned
490bir_dest_index(nir_dest *dst)
491{
492 if (dst->is_ssa)
493 return bir_ssa_index(&dst->ssa);
494 else {
495 assert(!dst->reg.indirect);
496 return (dst->reg.reg->index << 1) | BIR_IS_REG;
497 }
498}
499
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500500/* Iterators for Bifrost IR */
501
502#define bi_foreach_block(ctx, v) \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400503 list_for_each_entry(pan_block, v, &ctx->blocks, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500504
505#define bi_foreach_block_from(ctx, from, v) \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400506 list_for_each_entry_from(pan_block, v, from, &ctx->blocks, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500507
508#define bi_foreach_instr_in_block(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400509 list_for_each_entry(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500510
511#define bi_foreach_instr_in_block_rev(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400512 list_for_each_entry_rev(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500513
514#define bi_foreach_instr_in_block_safe(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400515 list_for_each_entry_safe(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500516
517#define bi_foreach_instr_in_block_safe_rev(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400518 list_for_each_entry_safe_rev(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500519
520#define bi_foreach_instr_in_block_from(block, v, from) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400521 list_for_each_entry_from(bi_instruction, v, from, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500522
523#define bi_foreach_instr_in_block_from_rev(block, v, from) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400524 list_for_each_entry_from_rev(bi_instruction, v, from, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500525
526#define bi_foreach_clause_in_block(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400527 list_for_each_entry(bi_clause, v, &(block)->clauses, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500528
529#define bi_foreach_instr_global(ctx, v) \
530 bi_foreach_block(ctx, v_block) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400531 bi_foreach_instr_in_block((bi_block *) v_block, v)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500532
533#define bi_foreach_instr_global_safe(ctx, v) \
534 bi_foreach_block(ctx, v_block) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400535 bi_foreach_instr_in_block_safe((bi_block *) v_block, v)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500536
537/* Based on set_foreach, expanded with automatic type casts */
538
539#define bi_foreach_predecessor(blk, v) \
540 struct set_entry *_entry_##v; \
541 bi_block *v; \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400542 for (_entry_##v = _mesa_set_next_entry(blk->base.predecessors, NULL), \
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500543 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL); \
544 _entry_##v != NULL; \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400545 _entry_##v = _mesa_set_next_entry(blk->base.predecessors, _entry_##v), \
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500546 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL))
547
548#define bi_foreach_src(ins, v) \
549 for (unsigned v = 0; v < ARRAY_SIZE(ins->src); ++v)
550
Alyssa Rosenzweig6e0479a2020-03-11 14:48:55 -0400551static inline bi_instruction *
552bi_prev_op(bi_instruction *ins)
553{
554 return list_last_entry(&(ins->link), bi_instruction, link);
555}
556
557static inline bi_instruction *
558bi_next_op(bi_instruction *ins)
559{
560 return list_first_entry(&(ins->link), bi_instruction, link);
561}
562
Alyssa Rosenzweig9269c852020-03-12 14:16:22 -0400563static inline pan_block *
564pan_next_block(pan_block *block)
565{
566 return list_first_entry(&(block->link), pan_block, link);
567}
568
Alyssa Rosenzweig8e522062020-04-14 18:52:21 -0400569/* Special functions */
570
571void bi_emit_fexp2(bi_context *ctx, nir_alu_instr *instr);
Alyssa Rosenzweig031ad0e2020-04-14 19:50:24 -0400572void bi_emit_flog2(bi_context *ctx, nir_alu_instr *instr);
Alyssa Rosenzweig8e522062020-04-14 18:52:21 -0400573
Alyssa Rosenzweig5d16a812020-03-04 09:19:06 -0500574/* BIR manipulation */
575
576bool bi_has_outmod(bi_instruction *ins);
577bool bi_has_source_mods(bi_instruction *ins);
578bool bi_is_src_swizzled(bi_instruction *ins, unsigned s);
Alyssa Rosenzweige94754a2020-03-11 14:40:01 -0400579bool bi_has_arg(bi_instruction *ins, unsigned arg);
Alyssa Rosenzweige1d95332020-03-11 21:41:57 -0400580uint16_t bi_from_bytemask(uint16_t bytemask, unsigned bytes);
Alyssa Rosenzweig9458b012020-03-20 12:25:08 -0400581unsigned bi_get_component_count(bi_instruction *ins, unsigned s);
Alyssa Rosenzweig908341e2020-03-20 11:52:33 -0400582unsigned bi_load32_components(bi_instruction *ins);
Alyssa Rosenzweige6230072020-03-11 14:46:01 -0400583uint16_t bi_bytemask_of_read_components(bi_instruction *ins, unsigned node);
Alyssa Rosenzweig11bccb02020-03-21 18:42:58 -0400584uint64_t bi_get_immediate(bi_instruction *ins, unsigned index);
Alyssa Rosenzweig375a7d02020-03-27 14:40:30 -0400585bool bi_writes_component(bi_instruction *ins, unsigned comp);
Alyssa Rosenzweig5d16a812020-03-04 09:19:06 -0500586
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500587/* BIR passes */
588
Alyssa Rosenzweige0a51d52020-03-22 17:31:23 -0400589void bi_lower_combine(bi_context *ctx, bi_block *block);
Alyssa Rosenzweig58f91712020-03-11 15:10:32 -0400590bool bi_opt_dead_code_eliminate(bi_context *ctx, bi_block *block);
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500591void bi_schedule(bi_context *ctx);
Alyssa Rosenzweige8139ef2020-03-11 20:39:36 -0400592void bi_register_allocate(bi_context *ctx);
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500593
Alyssa Rosenzweig56e1c602020-03-11 14:54:49 -0400594/* Liveness */
595
596void bi_compute_liveness(bi_context *ctx);
597void bi_liveness_ins_update(uint16_t *live, bi_instruction *ins, unsigned max);
598void bi_invalidate_liveness(bi_context *ctx);
599bool bi_is_live_after(bi_context *ctx, bi_block *block, bi_instruction *start, int src);
600
Alyssa Rosenzweig9269c852020-03-12 14:16:22 -0400601/* Code emit */
602
603void bi_pack(bi_context *ctx, struct util_dynarray *emission);
604
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500605#endif