blob: 32361cc37e1c44d16776bb90eb64332f92c1a7f9 [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 Rosenzweig1a94dae2020-05-04 14:00:13 -040063 BI_IMATH,
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 Rosenzweigee561f02020-04-24 19:10:44 -040072 BI_SELECT,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050073 BI_STORE,
74 BI_STORE_VAR,
Alyssa Rosenzweigaf013782020-04-14 12:21:25 -040075 BI_SPECIAL, /* _FAST on supported GPUs */
Alyssa Rosenzweigaf013782020-04-14 12:21:25 -040076 BI_TABLE,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050077 BI_TEX,
78 BI_ROUND,
Chris Forbesa0a70872020-07-26 15:54:14 -070079 BI_IMUL,
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 Rosenzweig6627b202020-05-01 18:13:54 -040089/* Accepts a bi_cond */
90#define BI_CONDITIONAL (1 << 1)
Alyssa Rosenzweig34165c72020-03-02 20:46:37 -050091
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 Rosenzweigb2c6cf22020-04-24 17:20:28 -0400115/* Intrinsic is vectorized and acts with `vector_channels` components */
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 Rosenzweigbd19e762020-03-30 12:25:20 -0400123/* Quirk: cannot encode multiple abs on FMA in fp16 mode */
124#define BI_NO_ABS_ABS_FP16_FMA (1 << 11)
125
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500126/* It can't get any worse than csel4... can it? */
127#define BIR_SRC_COUNT 4
128
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500129/* BI_LD_VARY */
130struct bi_load_vary {
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500131 enum bifrost_interp_mode interp_mode;
132 bool reuse;
133 bool flat;
134};
135
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500136/* BI_BRANCH encoding the details of the branch itself as well as a pointer to
137 * the target. We forward declare bi_block since this is mildly circular (not
138 * strictly, but this order of the file makes more sense I think)
139 *
140 * We define our own enum of conditions since the conditions in the hardware
141 * packed in crazy ways that would make manipulation unweildly (meaning changes
142 * based on port swapping, etc), so we defer dealing with that until emit time.
143 * Likewise, we expose NIR types instead of the crazy branch types, although
144 * the restrictions do eventually apply of course. */
145
146struct bi_block;
147
148enum bi_cond {
149 BI_COND_ALWAYS,
150 BI_COND_LT,
151 BI_COND_LE,
152 BI_COND_GE,
153 BI_COND_GT,
154 BI_COND_EQ,
155 BI_COND_NE,
156};
157
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500158/* Opcodes within a class */
159enum bi_minmax_op {
160 BI_MINMAX_MIN,
161 BI_MINMAX_MAX
162};
163
164enum bi_bitwise_op {
165 BI_BITWISE_AND,
166 BI_BITWISE_OR,
167 BI_BITWISE_XOR
168};
169
Alyssa Rosenzweigcf3c3562020-05-04 14:04:35 -0400170enum bi_imath_op {
171 BI_IMATH_ADD,
172 BI_IMATH_SUB,
173};
174
Chris Forbesa0a70872020-07-26 15:54:14 -0700175enum bi_imul_op {
176 BI_IMUL_IMUL,
177};
178
Alyssa Rosenzweigaf013782020-04-14 12:21:25 -0400179enum bi_table_op {
180 /* fp32 log2() with low precision, suitable for GL or half_log2() in
181 * CL. In the first argument, takes x. Letting u be such that x =
182 * 2^{-m} u with m integer and 0.75 <= u < 1.5, returns
183 * log2(u) / (u - 1). */
184
185 BI_TABLE_LOG2_U_OVER_U_1_LOW,
186};
187
Alyssa Rosenzweig62c8c342020-04-14 12:33:08 -0400188enum bi_reduce_op {
189 /* Takes two fp32 arguments and returns x + frexp(y). Used in
190 * low-precision log2 argument reduction on newer models. */
191
192 BI_REDUCE_ADD_FREXPM,
193};
194
Alyssa Rosenzweige067fd72020-04-14 12:37:29 -0400195enum bi_frexp_op {
196 BI_FREXPE_LOG,
197};
198
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400199enum bi_special_op {
200 BI_SPECIAL_FRCP,
201 BI_SPECIAL_FRSQ,
Alyssa Rosenzweigcc611562020-04-14 12:22:28 -0400202
203 /* fp32 exp2() with low precision, suitable for half_exp2() in CL or
204 * exp2() in GL. In the first argument, it takes f2i_rte(x * 2^24). In
205 * the second, it takes x itself. */
206 BI_SPECIAL_EXP2_LOW,
Chris Forbes1882b1e2020-07-27 11:51:31 -0700207 BI_SPECIAL_IABS,
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400208};
209
Alyssa Rosenzweigf85746a2020-04-21 12:26:42 -0400210enum bi_tex_op {
211 BI_TEX_NORMAL,
212 BI_TEX_COMPACT,
213 BI_TEX_DUAL
214};
215
Alyssa Rosenzweig9b415bf2020-04-28 13:48:37 -0400216struct bi_bitwise {
217 bool src_invert[2];
218 bool rshift; /* false for lshift */
219};
220
Alyssa Rosenzweigfc634dc2020-04-30 16:08:01 -0400221struct bi_texture {
222 /* Constant indices. Indirect would need to be in src[..] like normal,
223 * we can reserve some sentinels there for that for future. */
224 unsigned texture_index, sampler_index;
225};
226
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500227typedef struct {
228 struct list_head link; /* Must be first */
229 enum bi_class type;
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500230
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400231 /* Indices, see pan_ssa_index etc. Note zero is special cased
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500232 * to "no argument" */
233 unsigned dest;
234 unsigned src[BIR_SRC_COUNT];
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500235
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400236 /* 32-bit word offset for destination, added to the register number in
237 * RA when lowering combines */
238 unsigned dest_offset;
239
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400240 /* If one of the sources has BIR_INDEX_CONSTANT */
Alyssa Rosenzweigb5bdd892020-03-03 07:47:29 -0500241 union {
242 uint64_t u64;
243 uint32_t u32;
244 uint16_t u16[2];
245 uint8_t u8[4];
246 } constant;
247
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500248 /* Floating-point modifiers, type/class permitting. If not
249 * allowed for the type/class, these are ignored. */
250 enum bifrost_outmod outmod;
251 bool src_abs[BIR_SRC_COUNT];
252 bool src_neg[BIR_SRC_COUNT];
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -0500253
254 /* Round mode (requires BI_ROUNDMODE) */
255 enum bifrost_roundmode roundmode;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500256
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 Rosenzweigb2c6cf22020-04-24 17:20:28 -0400272 /* For VECTOR ops, how many channels are written? */
273 unsigned vector_channels;
274
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -0400275 /* The comparison op. BI_COND_ALWAYS may not be valid. */
276 enum bi_cond cond;
277
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500278 /* A class-specific op from which the actual opcode can be derived
279 * (along with the above information) */
280
281 union {
282 enum bi_minmax_op minmax;
283 enum bi_bitwise_op bitwise;
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400284 enum bi_special_op special;
Alyssa Rosenzweig62c8c342020-04-14 12:33:08 -0400285 enum bi_reduce_op reduce;
Alyssa Rosenzweigaf013782020-04-14 12:21:25 -0400286 enum bi_table_op table;
Alyssa Rosenzweige067fd72020-04-14 12:37:29 -0400287 enum bi_frexp_op frexp;
Alyssa Rosenzweigf85746a2020-04-21 12:26:42 -0400288 enum bi_tex_op texture;
Alyssa Rosenzweigcf3c3562020-05-04 14:04:35 -0400289 enum bi_imath_op imath;
Chris Forbesa0a70872020-07-26 15:54:14 -0700290 enum bi_imul_op imul;
Alyssa Rosenzweig4570c342020-04-14 16:13:53 -0400291
292 /* For FMA/ADD, should we add a biased exponent? */
293 bool mscale;
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500294 } op;
295
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500296 /* Union for class-specific information */
297 union {
298 enum bifrost_minmax_mode minmax;
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500299 struct bi_load_vary load_vary;
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -0400300 struct bi_block *branch_target;
Alyssa Rosenzweig92a4f262020-03-06 09:25:58 -0500301
302 /* For BLEND -- the location 0-7 */
303 unsigned blend_location;
Alyssa Rosenzweig9b415bf2020-04-28 13:48:37 -0400304
305 struct bi_bitwise bitwise;
Alyssa Rosenzweigfc634dc2020-04-30 16:08:01 -0400306 struct bi_texture texture;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500307 };
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500308} bi_instruction;
309
Alyssa Rosenzweig79f30d82020-05-05 14:23:41 -0400310/* Represents the assignment of ports for a given bi_bundle */
311
Alyssa Rosenzweigdd96b452020-05-05 14:30:06 -0400312typedef struct {
Alyssa Rosenzweig79f30d82020-05-05 14:23:41 -0400313 /* Register to assign to each port */
314 unsigned port[4];
315
316 /* Read ports can be disabled */
317 bool enabled[2];
318
319 /* Should we write FMA? what about ADD? If only a single port is
320 * enabled it is in port 2, else ADD/FMA is 2/3 respectively */
321 bool write_fma, write_add;
322
323 /* Should we read with port 3? */
324 bool read_port3;
325
326 /* Packed uniform/constant */
327 uint8_t uniform_constant;
328
329 /* Whether writes are actually for the last instruction */
330 bool first_instruction;
Alyssa Rosenzweigdd96b452020-05-05 14:30:06 -0400331} bi_registers;
Alyssa Rosenzweig79f30d82020-05-05 14:23:41 -0400332
Alyssa Rosenzweig59f8f202020-05-05 14:17:58 -0400333/* A bi_bundle contains two paired instruction pointers. If a slot is unfilled,
Alyssa Rosenzweigb042dde2020-05-05 14:28:53 -0400334 * leave it NULL; the emitter will fill in a nop. Instructions reference
335 * registers via ports which are assigned per bundle.
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500336 */
337
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500338typedef struct {
Alyssa Rosenzweigdd96b452020-05-05 14:30:06 -0400339 bi_registers regs;
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500340 bi_instruction *fma;
341 bi_instruction *add;
342} bi_bundle;
343
Alyssa Rosenzweig64bedbf2020-05-28 13:48:46 -0400344struct bi_block;
345
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500346typedef struct {
347 struct list_head link;
348
Alyssa Rosenzweig64bedbf2020-05-28 13:48:46 -0400349 /* Link back up for branch calculations */
350 struct bi_block *block;
351
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500352 /* A clause can have 8 instructions in bundled FMA/ADD sense, so there
Alyssa Rosenzweigc3de28b2020-05-05 17:29:24 -0400353 * can be 8 bundles. */
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500354
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500355 unsigned bundle_count;
Alyssa Rosenzweigc3de28b2020-05-05 17:29:24 -0400356 bi_bundle bundles[8];
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500357
358 /* For scoreboarding -- the clause ID (this is not globally unique!)
359 * and its dependencies in terms of other clauses, computed during
360 * scheduling and used when emitting code. Dependencies expressed as a
361 * bitfield matching the hardware, except shifted by a clause (the
362 * shift back to the ISA's off-by-one encoding is worked out when
363 * emitting clauses) */
364 unsigned scoreboard_id;
365 uint8_t dependencies;
366
367 /* Back-to-back corresponds directly to the back-to-back bit. Branch
368 * conditional corresponds to the branch conditional bit except that in
369 * the emitted code it's always set if back-to-bit is, whereas we use
370 * the actual value (without back-to-back so to speak) internally */
371 bool back_to_back;
372 bool branch_conditional;
373
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400374 /* Assigned data register */
375 unsigned data_register;
376
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500377 /* Corresponds to the usual bit but shifted by a clause */
378 bool data_register_write_barrier;
Alyssa Rosenzweigd3370bd2020-03-03 13:01:41 -0500379
Alyssa Rosenzweiga658a4f2020-05-05 16:15:16 -0400380 /* Constants read by this clause. ISA limit. Must satisfy:
381 *
382 * constant_count + bundle_count <= 13
383 *
384 * Also implicitly constant_count <= bundle_count since a bundle only
385 * reads a single constant.
386 */
Alyssa Rosenzweigd3370bd2020-03-03 13:01:41 -0500387 uint64_t constants[8];
388 unsigned constant_count;
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400389
Alyssa Rosenzweig627872e2020-05-28 12:53:22 -0400390 /* Branches encode a constant offset relative to the program counter
391 * with some magic flags. By convention, if there is a branch, its
392 * constant will be last. Set this flag to indicate this is required.
393 */
394 bool branch_constant;
395
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400396 /* What type of high latency instruction is here, basically */
397 unsigned clause_type;
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500398} bi_clause;
399
400typedef struct bi_block {
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400401 pan_block base; /* must be first */
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500402
403 /* If true, uses clauses; if false, uses instructions */
404 bool scheduled;
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500405 struct list_head clauses; /* list of bi_clause */
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500406} bi_block;
407
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500408typedef struct {
409 nir_shader *nir;
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -0500410 gl_shader_stage stage;
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500411 struct list_head blocks; /* list of bi_block */
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -0400412 struct panfrost_sysvals sysvals;
Alyssa Rosenzweig0b26cb12020-03-03 14:27:05 -0500413 uint32_t quirks;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500414
415 /* During NIR->BIR */
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500416 nir_function_impl *impl;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500417 bi_block *current_block;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500418 bi_block *after_block;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500419 bi_block *break_block;
420 bi_block *continue_block;
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500421 bool emitted_atest;
Alyssa Rosenzweig1a8f1a32020-04-23 19:26:01 -0400422 nir_alu_type *blend_types;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500423
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500424 /* For creating temporaries */
425 unsigned temp_alloc;
426
Alyssa Rosenzweig56e1c602020-03-11 14:54:49 -0400427 /* Analysis results */
428 bool has_liveness;
429
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500430 /* Stats for shader-db */
431 unsigned instruction_count;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500432 unsigned loop_count;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500433} bi_context;
434
435static inline bi_instruction *
436bi_emit(bi_context *ctx, bi_instruction ins)
437{
438 bi_instruction *u = rzalloc(ctx, bi_instruction);
439 memcpy(u, &ins, sizeof(ins));
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400440 list_addtail(&u->link, &ctx->current_block->base.instructions);
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500441 return u;
442}
443
Alyssa Rosenzweig58a51c42020-03-19 17:21:34 -0400444static inline bi_instruction *
445bi_emit_before(bi_context *ctx, bi_instruction *tag, bi_instruction ins)
446{
447 bi_instruction *u = rzalloc(ctx, bi_instruction);
448 memcpy(u, &ins, sizeof(ins));
449 list_addtail(&u->link, &tag->link);
450 return u;
451}
452
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500453static inline void
454bi_remove_instruction(bi_instruction *ins)
455{
456 list_del(&ins->link);
457}
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500458
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500459/* If high bits are set, instead of SSA/registers, we have specials indexed by
460 * the low bits if necessary.
461 *
462 * Fixed register: do not allocate register, do not collect $200.
463 * Uniform: access a uniform register given by low bits.
Alyssa Rosenzweig11bccb02020-03-21 18:42:58 -0400464 * Constant: access the specified constant (specifies a bit offset / shift)
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500465 * Zero: special cased to avoid wasting a constant
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400466 * Passthrough: a bifrost_packed_src to passthrough T/T0/T1
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500467 */
468
469#define BIR_INDEX_REGISTER (1 << 31)
470#define BIR_INDEX_UNIFORM (1 << 30)
471#define BIR_INDEX_CONSTANT (1 << 29)
472#define BIR_INDEX_ZERO (1 << 28)
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400473#define BIR_INDEX_PASS (1 << 27)
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500474
475/* Keep me synced please so we can check src & BIR_SPECIAL */
476
477#define BIR_SPECIAL ((BIR_INDEX_REGISTER | BIR_INDEX_UNIFORM) | \
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400478 (BIR_INDEX_CONSTANT | BIR_INDEX_ZERO | BIR_INDEX_PASS))
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500479
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500480static inline unsigned
Alyssa Rosenzweig0bff6e52020-03-11 14:51:57 -0400481bi_max_temp(bi_context *ctx)
482{
483 unsigned alloc = MAX2(ctx->impl->reg_alloc, ctx->impl->ssa_alloc);
Alyssa Rosenzweige8139ef2020-03-11 20:39:36 -0400484 return ((alloc + 2 + ctx->temp_alloc) << 1);
Alyssa Rosenzweig0bff6e52020-03-11 14:51:57 -0400485}
486
487static inline unsigned
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500488bi_make_temp(bi_context *ctx)
489{
490 return (ctx->impl->ssa_alloc + 1 + ctx->temp_alloc++) << 1;
491}
492
493static inline unsigned
494bi_make_temp_reg(bi_context *ctx)
495{
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400496 return ((ctx->impl->reg_alloc + ctx->temp_alloc++) << 1) | PAN_IS_REG;
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500497}
498
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500499/* Iterators for Bifrost IR */
500
501#define bi_foreach_block(ctx, v) \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400502 list_for_each_entry(pan_block, v, &ctx->blocks, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500503
504#define bi_foreach_block_from(ctx, from, v) \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400505 list_for_each_entry_from(pan_block, v, from, &ctx->blocks, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500506
Alyssa Rosenzweiga4273152020-05-28 15:01:38 -0400507#define bi_foreach_block_from_rev(ctx, from, v) \
508 list_for_each_entry_from_rev(pan_block, v, from, &ctx->blocks, link)
509
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500510#define bi_foreach_instr_in_block(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400511 list_for_each_entry(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500512
513#define bi_foreach_instr_in_block_rev(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400514 list_for_each_entry_rev(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500515
516#define bi_foreach_instr_in_block_safe(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400517 list_for_each_entry_safe(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500518
519#define bi_foreach_instr_in_block_safe_rev(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400520 list_for_each_entry_safe_rev(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500521
522#define bi_foreach_instr_in_block_from(block, v, from) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400523 list_for_each_entry_from(bi_instruction, v, from, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500524
525#define bi_foreach_instr_in_block_from_rev(block, v, from) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400526 list_for_each_entry_from_rev(bi_instruction, v, from, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500527
528#define bi_foreach_clause_in_block(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400529 list_for_each_entry(bi_clause, v, &(block)->clauses, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500530
Alyssa Rosenzweig64c49ab2020-05-28 13:49:41 -0400531#define bi_foreach_clause_in_block_from(block, v, from) \
532 list_for_each_entry_from(bi_clause, v, from, &(block)->clauses, link)
533
534#define bi_foreach_clause_in_block_from_rev(block, v, from) \
535 list_for_each_entry_from_rev(bi_clause, v, from, &(block)->clauses, link)
536
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500537#define bi_foreach_instr_global(ctx, v) \
538 bi_foreach_block(ctx, v_block) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400539 bi_foreach_instr_in_block((bi_block *) v_block, v)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500540
541#define bi_foreach_instr_global_safe(ctx, v) \
542 bi_foreach_block(ctx, v_block) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400543 bi_foreach_instr_in_block_safe((bi_block *) v_block, v)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500544
545/* Based on set_foreach, expanded with automatic type casts */
546
547#define bi_foreach_predecessor(blk, v) \
548 struct set_entry *_entry_##v; \
549 bi_block *v; \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400550 for (_entry_##v = _mesa_set_next_entry(blk->base.predecessors, NULL), \
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500551 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL); \
552 _entry_##v != NULL; \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400553 _entry_##v = _mesa_set_next_entry(blk->base.predecessors, _entry_##v), \
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500554 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL))
555
556#define bi_foreach_src(ins, v) \
557 for (unsigned v = 0; v < ARRAY_SIZE(ins->src); ++v)
558
Alyssa Rosenzweig6e0479a2020-03-11 14:48:55 -0400559static inline bi_instruction *
560bi_prev_op(bi_instruction *ins)
561{
562 return list_last_entry(&(ins->link), bi_instruction, link);
563}
564
565static inline bi_instruction *
566bi_next_op(bi_instruction *ins)
567{
568 return list_first_entry(&(ins->link), bi_instruction, link);
569}
570
Alyssa Rosenzweig9269c852020-03-12 14:16:22 -0400571static inline pan_block *
572pan_next_block(pan_block *block)
573{
574 return list_first_entry(&(block->link), pan_block, link);
575}
576
Alyssa Rosenzweig8e522062020-04-14 18:52:21 -0400577/* Special functions */
578
579void bi_emit_fexp2(bi_context *ctx, nir_alu_instr *instr);
Alyssa Rosenzweig031ad0e2020-04-14 19:50:24 -0400580void bi_emit_flog2(bi_context *ctx, nir_alu_instr *instr);
Alyssa Rosenzweig8e522062020-04-14 18:52:21 -0400581
Alyssa Rosenzweig5d16a812020-03-04 09:19:06 -0500582/* BIR manipulation */
583
584bool bi_has_outmod(bi_instruction *ins);
585bool bi_has_source_mods(bi_instruction *ins);
586bool bi_is_src_swizzled(bi_instruction *ins, unsigned s);
Alyssa Rosenzweige94754a2020-03-11 14:40:01 -0400587bool bi_has_arg(bi_instruction *ins, unsigned arg);
Alyssa Rosenzweige1d95332020-03-11 21:41:57 -0400588uint16_t bi_from_bytemask(uint16_t bytemask, unsigned bytes);
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400589unsigned bi_get_component_count(bi_instruction *ins, signed s);
Alyssa Rosenzweige6230072020-03-11 14:46:01 -0400590uint16_t bi_bytemask_of_read_components(bi_instruction *ins, unsigned node);
Alyssa Rosenzweig11bccb02020-03-21 18:42:58 -0400591uint64_t bi_get_immediate(bi_instruction *ins, unsigned index);
Alyssa Rosenzweig375a7d02020-03-27 14:40:30 -0400592bool bi_writes_component(bi_instruction *ins, unsigned comp);
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400593unsigned bi_writemask(bi_instruction *ins);
Alyssa Rosenzweig5d16a812020-03-04 09:19:06 -0500594
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500595/* BIR passes */
596
Alyssa Rosenzweige0a51d52020-03-22 17:31:23 -0400597void bi_lower_combine(bi_context *ctx, bi_block *block);
Alyssa Rosenzweig58f91712020-03-11 15:10:32 -0400598bool bi_opt_dead_code_eliminate(bi_context *ctx, bi_block *block);
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500599void bi_schedule(bi_context *ctx);
Alyssa Rosenzweige8139ef2020-03-11 20:39:36 -0400600void bi_register_allocate(bi_context *ctx);
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500601
Alyssa Rosenzweig56e1c602020-03-11 14:54:49 -0400602/* Liveness */
603
604void bi_compute_liveness(bi_context *ctx);
605void bi_liveness_ins_update(uint16_t *live, bi_instruction *ins, unsigned max);
606void bi_invalidate_liveness(bi_context *ctx);
607bool bi_is_live_after(bi_context *ctx, bi_block *block, bi_instruction *start, int src);
608
Alyssa Rosenzweig2a4e4472020-05-05 17:58:16 -0400609/* Layout */
610
611bool bi_can_insert_bundle(bi_clause *clause, bool constant);
Alyssa Rosenzweigb3ae0882020-05-05 18:20:08 -0400612unsigned bi_clause_quadwords(bi_clause *clause);
Alyssa Rosenzweig682b63c2020-05-28 13:49:59 -0400613signed bi_block_offset(bi_context *ctx, bi_clause *start, bi_block *target);
Alyssa Rosenzweig2a4e4472020-05-05 17:58:16 -0400614
Alyssa Rosenzweig9269c852020-03-12 14:16:22 -0400615/* Code emit */
616
617void bi_pack(bi_context *ctx, struct util_dynarray *emission);
618
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500619#endif