blob: 11689c4a797edc1c82398508ec7a82d0e3ffbf96 [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,
Boris Brezillon8da0a1d2020-10-12 15:02:29 +020069 BI_LOAD_TILE,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050070 BI_MINMAX,
71 BI_MOV,
Alyssa Rosenzweig62c8c342020-04-14 12:33:08 -040072 BI_REDUCE_FMA,
Alyssa Rosenzweigee561f02020-04-24 19:10:44 -040073 BI_SELECT,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050074 BI_STORE,
75 BI_STORE_VAR,
Boris Brezillon0ed8eee2020-10-28 13:27:07 +010076 BI_SPECIAL_ADD, /* _FAST on supported GPUs */
77 BI_SPECIAL_FMA, /* _FAST on supported GPUs */
Alyssa Rosenzweigaf013782020-04-14 12:21:25 -040078 BI_TABLE,
Alyssa Rosenzweig6ed1bdf2020-10-06 10:31:04 -040079 BI_TEXS,
80 BI_TEXC,
81 BI_TEXC_DUAL,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050082 BI_ROUND,
Chris Forbesa0a70872020-07-26 15:54:14 -070083 BI_IMUL,
Alyssa Rosenzweig2b1db362020-11-04 08:18:22 -050084 BI_ZS_EMIT,
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050085 BI_NUM_CLASSES
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050086};
87
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050088/* Properties of a class... */
89extern unsigned bi_class_props[BI_NUM_CLASSES];
90
91/* abs/neg/outmod valid for a float op */
92#define BI_MODS (1 << 0)
93
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -040094/* Accepts a bi_cond */
95#define BI_CONDITIONAL (1 << 1)
Alyssa Rosenzweig34165c72020-03-02 20:46:37 -050096
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -050097/* Accepts a bifrost_roundmode */
98#define BI_ROUNDMODE (1 << 2)
99
Alyssa Rosenzweig99f3c1f2020-03-02 21:53:13 -0500100/* Can be scheduled to FMA */
101#define BI_SCHED_FMA (1 << 3)
102
103/* Can be scheduled to ADD */
104#define BI_SCHED_ADD (1 << 4)
105
106/* Most ALU ops can do either, actually */
107#define BI_SCHED_ALL (BI_SCHED_FMA | BI_SCHED_ADD)
108
Alyssa Rosenzweigc70a1982020-03-03 08:16:50 -0500109/* Along with setting BI_SCHED_ADD, eats up the entire cycle, so FMA must be
110 * nopped out. Used for _FAST operations. */
111#define BI_SCHED_SLOW (1 << 5)
112
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500113/* Swizzling allowed for the 8/16-bit source */
114#define BI_SWIZZLABLE (1 << 6)
115
Alyssa Rosenzweig07228a62020-03-03 13:55:33 -0500116/* For scheduling purposes this is a high latency instruction and must be at
117 * the end of a clause. Implies ADD */
Alyssa Rosenzweige323df02020-03-18 13:42:12 -0400118#define BI_SCHED_HI_LATENCY (1 << 7)
Alyssa Rosenzweig07228a62020-03-03 13:55:33 -0500119
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400120/* Intrinsic is vectorized and acts with `vector_channels` components */
Alyssa Rosenzweige1d95332020-03-11 21:41:57 -0400121#define BI_VECTOR (1 << 8)
122
Alyssa Rosenzweigd4fbf752020-03-18 12:08:28 -0400123/* Use a data register for src0/dest respectively, bypassing the usual
Alyssa Rosenzweig30895012020-10-06 12:14:32 -0400124 * register accessor. */
Alyssa Rosenzweigd4fbf752020-03-18 12:08:28 -0400125#define BI_DATA_REG_SRC (1 << 9)
126#define BI_DATA_REG_DEST (1 << 10)
127
Alyssa Rosenzweigbd19e762020-03-30 12:25:20 -0400128/* Quirk: cannot encode multiple abs on FMA in fp16 mode */
129#define BI_NO_ABS_ABS_FP16_FMA (1 << 11)
130
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500131/* It can't get any worse than csel4... can it? */
132#define BIR_SRC_COUNT 4
133
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500134/* BI_LD_VARY */
135struct bi_load_vary {
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500136 enum bifrost_interp_mode interp_mode;
137 bool reuse;
138 bool flat;
139};
140
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500141/* BI_BRANCH encoding the details of the branch itself as well as a pointer to
142 * the target. We forward declare bi_block since this is mildly circular (not
143 * strictly, but this order of the file makes more sense I think)
144 *
145 * We define our own enum of conditions since the conditions in the hardware
146 * packed in crazy ways that would make manipulation unweildly (meaning changes
Alyssa Rosenzweig514da972020-09-20 15:34:38 -0400147 * based on slot swapping, etc), so we defer dealing with that until emit time.
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500148 * Likewise, we expose NIR types instead of the crazy branch types, although
149 * the restrictions do eventually apply of course. */
150
151struct bi_block;
152
Alyssa Rosenzweig2ff53872020-08-03 12:48:44 -0400153/* Sync with gen-pack.py */
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500154enum bi_cond {
Alyssa Rosenzweig2ff53872020-08-03 12:48:44 -0400155 BI_COND_ALWAYS = 0,
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500156 BI_COND_LT,
157 BI_COND_LE,
158 BI_COND_GE,
159 BI_COND_GT,
160 BI_COND_EQ,
161 BI_COND_NE,
162};
163
Alyssa Rosenzweig6f5b7882020-07-31 17:29:50 -0400164/* Segments, as synced with ISA. Used as an immediate in LOAD/STORE
165 * instructions for address calculation, and directly in SEG_ADD/SEG_SUB
166 * instructions. */
167
168enum bi_segment {
169 /* No segment (use global addressing, offset from GPU VA 0x0) */
170 BI_SEGMENT_NONE = 1,
171
172 /* Within workgroup local memory (shared memory). Relative to
173 * wls_base_pointer in the draw's thread storage descriptor */
174 BI_SEGMENT_WLS = 2,
175
176 /* Within one of the bound uniform buffers. Low 32-bits are the index
177 * within the uniform buffer; high 32-bits are the index of the uniform
178 * buffer itself. Relative to the uniform_array_pointer indexed within
179 * the draw's uniform remap table indexed by the high 32-bits. */
180 BI_SEGMENT_UBO = 4,
181
182 /* Within thread local storage (for spilling). Relative to
183 * tls_base_pointer in the draw's thread storage descriptor */
184 BI_SEGMENT_TLS = 7
185};
186
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500187/* Opcodes within a class */
188enum bi_minmax_op {
189 BI_MINMAX_MIN,
190 BI_MINMAX_MAX
191};
192
193enum bi_bitwise_op {
194 BI_BITWISE_AND,
195 BI_BITWISE_OR,
196 BI_BITWISE_XOR
197};
198
Alyssa Rosenzweigcf3c3562020-05-04 14:04:35 -0400199enum bi_imath_op {
200 BI_IMATH_ADD,
201 BI_IMATH_SUB,
202};
203
Chris Forbesa0a70872020-07-26 15:54:14 -0700204enum bi_imul_op {
205 BI_IMUL_IMUL,
206};
207
Alyssa Rosenzweigaf013782020-04-14 12:21:25 -0400208enum bi_table_op {
209 /* fp32 log2() with low precision, suitable for GL or half_log2() in
210 * CL. In the first argument, takes x. Letting u be such that x =
211 * 2^{-m} u with m integer and 0.75 <= u < 1.5, returns
212 * log2(u) / (u - 1). */
213
214 BI_TABLE_LOG2_U_OVER_U_1_LOW,
215};
216
Alyssa Rosenzweig62c8c342020-04-14 12:33:08 -0400217enum bi_reduce_op {
218 /* Takes two fp32 arguments and returns x + frexp(y). Used in
219 * low-precision log2 argument reduction on newer models. */
220
221 BI_REDUCE_ADD_FREXPM,
222};
223
Alyssa Rosenzweige067fd72020-04-14 12:37:29 -0400224enum bi_frexp_op {
225 BI_FREXPE_LOG,
226};
227
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400228enum bi_special_op {
229 BI_SPECIAL_FRCP,
230 BI_SPECIAL_FRSQ,
Alyssa Rosenzweigcc611562020-04-14 12:22:28 -0400231
232 /* fp32 exp2() with low precision, suitable for half_exp2() in CL or
233 * exp2() in GL. In the first argument, it takes f2i_rte(x * 2^24). In
234 * the second, it takes x itself. */
235 BI_SPECIAL_EXP2_LOW,
Chris Forbes1882b1e2020-07-27 11:51:31 -0700236 BI_SPECIAL_IABS,
Boris Brezillonf76558b2020-10-28 13:27:38 +0100237
238 /* cubemap coordinates extraction helpers */
239 BI_SPECIAL_CUBEFACE1,
240 BI_SPECIAL_CUBEFACE2,
241 BI_SPECIAL_CUBE_SSEL,
242 BI_SPECIAL_CUBE_TSEL,
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400243};
244
Alyssa Rosenzweig9b415bf2020-04-28 13:48:37 -0400245struct bi_bitwise {
Alyssa Rosenzweigd2158a52020-09-09 17:46:58 -0400246 bool dest_invert;
247 bool src1_invert;
Alyssa Rosenzweig9b415bf2020-04-28 13:48:37 -0400248 bool rshift; /* false for lshift */
249};
250
Alyssa Rosenzweigfc634dc2020-04-30 16:08:01 -0400251struct bi_texture {
252 /* Constant indices. Indirect would need to be in src[..] like normal,
253 * we can reserve some sentinels there for that for future. */
254 unsigned texture_index, sampler_index;
Alyssa Rosenzweig67d89562020-08-03 12:47:57 -0400255
256 /* Should the LOD be computed based on neighboring pixels? Only valid
257 * in fragment shaders. */
258 bool compute_lod;
Alyssa Rosenzweigfc634dc2020-04-30 16:08:01 -0400259};
260
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500261typedef struct {
262 struct list_head link; /* Must be first */
263 enum bi_class type;
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500264
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400265 /* Indices, see pan_ssa_index etc. Note zero is special cased
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500266 * to "no argument" */
267 unsigned dest;
268 unsigned src[BIR_SRC_COUNT];
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500269
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400270 /* 32-bit word offset for destination, added to the register number in
271 * RA when lowering combines */
272 unsigned dest_offset;
273
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400274 /* If one of the sources has BIR_INDEX_CONSTANT */
Alyssa Rosenzweigb5bdd892020-03-03 07:47:29 -0500275 union {
276 uint64_t u64;
277 uint32_t u32;
278 uint16_t u16[2];
279 uint8_t u8[4];
280 } constant;
281
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500282 /* Floating-point modifiers, type/class permitting. If not
283 * allowed for the type/class, these are ignored. */
284 enum bifrost_outmod outmod;
285 bool src_abs[BIR_SRC_COUNT];
286 bool src_neg[BIR_SRC_COUNT];
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -0500287
288 /* Round mode (requires BI_ROUNDMODE) */
289 enum bifrost_roundmode roundmode;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500290
Alyssa Rosenzweigc42002d2020-03-02 22:03:05 -0500291 /* Destination type. Usually the type of the instruction
292 * itself, but if sources and destination have different
293 * types, the type of the destination wins (so f2i would be
294 * int). Zero if there is no destination. Bitsize included */
295 nir_alu_type dest_type;
296
Alyssa Rosenzweig8929fe02020-03-03 08:37:15 -0500297 /* Source types if required by the class */
298 nir_alu_type src_types[BIR_SRC_COUNT];
299
Alyssa Rosenzweig8dd3a812020-07-31 18:48:27 -0400300 /* register_format if applicable */
301 nir_alu_type format;
302
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400303 /* If the source type is 8-bit or 16-bit such that SIMD is possible,
304 * and the class has BI_SWIZZLABLE, this is a swizzle in the usual
305 * sense. On non-SIMD instructions, it can be used for component
306 * selection, so we don't have to special case extraction. */
307 uint8_t swizzle[BIR_SRC_COUNT][NIR_MAX_VEC_COMPONENTS];
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500308
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400309 /* For VECTOR ops, how many channels are written? */
310 unsigned vector_channels;
311
Alyssa Rosenzweig39ec3eb2020-10-06 10:42:39 -0400312 /* For texture ops, the skip bit. Set if helper invocations can skip
313 * the operation. That is, set if the result of this texture operation
314 * is never used for cross-lane operation (including texture
315 * coordinates and derivatives) as determined by data flow analysis
316 * (like Midgard) */
317 bool skip;
318
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -0400319 /* The comparison op. BI_COND_ALWAYS may not be valid. */
320 enum bi_cond cond;
321
Alyssa Rosenzweig6f5b7882020-07-31 17:29:50 -0400322 /* For memory ops, base address */
323 enum bi_segment segment;
324
Alyssa Rosenzweigab9abc92020-10-14 18:57:20 -0400325 /* Can we spill the value written here? Used to prevent
326 * useless double fills */
327 bool no_spill;
328
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500329 /* A class-specific op from which the actual opcode can be derived
330 * (along with the above information) */
331
332 union {
333 enum bi_minmax_op minmax;
334 enum bi_bitwise_op bitwise;
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400335 enum bi_special_op special;
Alyssa Rosenzweig62c8c342020-04-14 12:33:08 -0400336 enum bi_reduce_op reduce;
Alyssa Rosenzweigaf013782020-04-14 12:21:25 -0400337 enum bi_table_op table;
Alyssa Rosenzweige067fd72020-04-14 12:37:29 -0400338 enum bi_frexp_op frexp;
Alyssa Rosenzweigcf3c3562020-05-04 14:04:35 -0400339 enum bi_imath_op imath;
Chris Forbesa0a70872020-07-26 15:54:14 -0700340 enum bi_imul_op imul;
Alyssa Rosenzweig4570c342020-04-14 16:13:53 -0400341
342 /* For FMA/ADD, should we add a biased exponent? */
343 bool mscale;
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500344 } op;
345
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500346 /* Union for class-specific information */
347 union {
348 enum bifrost_minmax_mode minmax;
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500349 struct bi_load_vary load_vary;
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -0400350 struct bi_block *branch_target;
Alyssa Rosenzweig92a4f262020-03-06 09:25:58 -0500351
352 /* For BLEND -- the location 0-7 */
353 unsigned blend_location;
Alyssa Rosenzweig9b415bf2020-04-28 13:48:37 -0400354
355 struct bi_bitwise bitwise;
Alyssa Rosenzweigfc634dc2020-04-30 16:08:01 -0400356 struct bi_texture texture;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500357 };
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500358} bi_instruction;
359
Alyssa Rosenzweig514da972020-09-20 15:34:38 -0400360/* Represents the assignment of slots for a given bi_bundle */
Alyssa Rosenzweig79f30d82020-05-05 14:23:41 -0400361
Alyssa Rosenzweigdd96b452020-05-05 14:30:06 -0400362typedef struct {
Alyssa Rosenzweig514da972020-09-20 15:34:38 -0400363 /* Register to assign to each slot */
364 unsigned slot[4];
Alyssa Rosenzweig79f30d82020-05-05 14:23:41 -0400365
Alyssa Rosenzweig514da972020-09-20 15:34:38 -0400366 /* Read slots can be disabled */
Alyssa Rosenzweig79f30d82020-05-05 14:23:41 -0400367 bool enabled[2];
368
Alyssa Rosenzweig7a0f3b62020-09-20 16:24:04 -0400369 /* Configuration for slots 2/3 */
370 struct bifrost_reg_ctrl_23 slot23;
Alyssa Rosenzweig79f30d82020-05-05 14:23:41 -0400371
Boris Brezillonf25850b2020-10-12 10:57:40 +0200372 /* Fast-Access-Uniform RAM index */
373 uint8_t fau_idx;
Alyssa Rosenzweig79f30d82020-05-05 14:23:41 -0400374
375 /* Whether writes are actually for the last instruction */
376 bool first_instruction;
Alyssa Rosenzweigdd96b452020-05-05 14:30:06 -0400377} bi_registers;
Alyssa Rosenzweig79f30d82020-05-05 14:23:41 -0400378
Alyssa Rosenzweig59f8f202020-05-05 14:17:58 -0400379/* A bi_bundle contains two paired instruction pointers. If a slot is unfilled,
Alyssa Rosenzweigb042dde2020-05-05 14:28:53 -0400380 * leave it NULL; the emitter will fill in a nop. Instructions reference
Alyssa Rosenzweig514da972020-09-20 15:34:38 -0400381 * registers via slots which are assigned per bundle.
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500382 */
383
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500384typedef struct {
Boris Brezillonf25850b2020-10-12 10:57:40 +0200385 uint8_t fau_idx;
Alyssa Rosenzweigdd96b452020-05-05 14:30:06 -0400386 bi_registers regs;
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500387 bi_instruction *fma;
388 bi_instruction *add;
389} bi_bundle;
390
Alyssa Rosenzweig64bedbf2020-05-28 13:48:46 -0400391struct bi_block;
392
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500393typedef struct {
394 struct list_head link;
395
Alyssa Rosenzweig64bedbf2020-05-28 13:48:46 -0400396 /* Link back up for branch calculations */
397 struct bi_block *block;
398
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500399 /* A clause can have 8 instructions in bundled FMA/ADD sense, so there
Alyssa Rosenzweigc3de28b2020-05-05 17:29:24 -0400400 * can be 8 bundles. */
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500401
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500402 unsigned bundle_count;
Alyssa Rosenzweigc3de28b2020-05-05 17:29:24 -0400403 bi_bundle bundles[8];
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500404
405 /* For scoreboarding -- the clause ID (this is not globally unique!)
406 * and its dependencies in terms of other clauses, computed during
407 * scheduling and used when emitting code. Dependencies expressed as a
408 * bitfield matching the hardware, except shifted by a clause (the
409 * shift back to the ISA's off-by-one encoding is worked out when
410 * emitting clauses) */
411 unsigned scoreboard_id;
412 uint8_t dependencies;
413
Alyssa Rosenzweiga2277982020-10-02 15:13:29 -0400414 /* See ISA header for description */
415 enum bifrost_flow flow_control;
Alyssa Rosenzweig4131bc32020-10-02 13:46:35 -0400416
417 /* Can we prefetch the next clause? Usually it makes sense, except for
418 * clauses ending in unconditional branches */
419 bool next_clause_prefetch;
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500420
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400421 /* Assigned data register */
Alyssa Rosenzweig785344e2020-10-02 13:53:03 -0400422 unsigned staging_register;
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400423
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500424 /* Corresponds to the usual bit but shifted by a clause */
Alyssa Rosenzweig785344e2020-10-02 13:53:03 -0400425 bool staging_barrier;
Alyssa Rosenzweigd3370bd2020-03-03 13:01:41 -0500426
Alyssa Rosenzweiga658a4f2020-05-05 16:15:16 -0400427 /* Constants read by this clause. ISA limit. Must satisfy:
428 *
429 * constant_count + bundle_count <= 13
430 *
431 * Also implicitly constant_count <= bundle_count since a bundle only
432 * reads a single constant.
433 */
Alyssa Rosenzweigd3370bd2020-03-03 13:01:41 -0500434 uint64_t constants[8];
435 unsigned constant_count;
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400436
Alyssa Rosenzweig627872e2020-05-28 12:53:22 -0400437 /* Branches encode a constant offset relative to the program counter
438 * with some magic flags. By convention, if there is a branch, its
439 * constant will be last. Set this flag to indicate this is required.
440 */
441 bool branch_constant;
442
Alyssa Rosenzweig42af9f42020-03-18 12:18:30 -0400443 /* What type of high latency instruction is here, basically */
Alyssa Rosenzweig2b9484c22020-10-02 14:02:25 -0400444 unsigned message_type;
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500445} bi_clause;
446
447typedef struct bi_block {
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400448 pan_block base; /* must be first */
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500449
450 /* If true, uses clauses; if false, uses instructions */
451 bool scheduled;
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500452 struct list_head clauses; /* list of bi_clause */
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500453} bi_block;
454
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500455typedef struct {
456 nir_shader *nir;
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -0500457 gl_shader_stage stage;
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500458 struct list_head blocks; /* list of bi_block */
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -0400459 struct panfrost_sysvals sysvals;
Alyssa Rosenzweig0b26cb12020-03-03 14:27:05 -0500460 uint32_t quirks;
Alyssa Rosenzweigf0421092020-10-14 20:48:08 -0400461 unsigned tls_size;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500462
Boris Brezillon111cf7f2020-10-12 15:00:02 +0200463 /* Is internally a blend shader? Depends on stage == FRAGMENT */
464 bool is_blend;
465
466 /* Blend constants */
467 float blend_constants[4];
468
Boris Brezillon2f3f5da2020-10-13 12:26:11 +0200469 /* Blend return offsets */
470 uint32_t blend_ret_offsets[8];
471
Boris Brezillon111cf7f2020-10-12 15:00:02 +0200472 /* Blend tile buffer conversion desc */
473 uint64_t blend_desc;
474
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500475 /* During NIR->BIR */
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500476 nir_function_impl *impl;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500477 bi_block *current_block;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500478 bi_block *after_block;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500479 bi_block *break_block;
480 bi_block *continue_block;
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500481 bool emitted_atest;
Alyssa Rosenzweig1a8f1a32020-04-23 19:26:01 -0400482 nir_alu_type *blend_types;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500483
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500484 /* For creating temporaries */
485 unsigned temp_alloc;
486
Alyssa Rosenzweig56e1c602020-03-11 14:54:49 -0400487 /* Analysis results */
488 bool has_liveness;
489
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500490 /* Stats for shader-db */
491 unsigned instruction_count;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500492 unsigned loop_count;
Alyssa Rosenzweig171bf192020-10-14 19:14:43 -0400493 unsigned spills;
494 unsigned fills;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500495} bi_context;
496
497static inline bi_instruction *
498bi_emit(bi_context *ctx, bi_instruction ins)
499{
500 bi_instruction *u = rzalloc(ctx, bi_instruction);
501 memcpy(u, &ins, sizeof(ins));
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400502 list_addtail(&u->link, &ctx->current_block->base.instructions);
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500503 return u;
504}
505
Alyssa Rosenzweig58a51c42020-03-19 17:21:34 -0400506static inline bi_instruction *
507bi_emit_before(bi_context *ctx, bi_instruction *tag, bi_instruction ins)
508{
509 bi_instruction *u = rzalloc(ctx, bi_instruction);
510 memcpy(u, &ins, sizeof(ins));
511 list_addtail(&u->link, &tag->link);
512 return u;
513}
514
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500515static inline void
516bi_remove_instruction(bi_instruction *ins)
517{
518 list_del(&ins->link);
519}
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500520
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500521/* If high bits are set, instead of SSA/registers, we have specials indexed by
522 * the low bits if necessary.
523 *
524 * Fixed register: do not allocate register, do not collect $200.
525 * Uniform: access a uniform register given by low bits.
Alyssa Rosenzweig11bccb02020-03-21 18:42:58 -0400526 * Constant: access the specified constant (specifies a bit offset / shift)
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500527 * Zero: special cased to avoid wasting a constant
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400528 * Passthrough: a bifrost_packed_src to passthrough T/T0/T1
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500529 */
530
531#define BIR_INDEX_REGISTER (1 << 31)
532#define BIR_INDEX_UNIFORM (1 << 30)
533#define BIR_INDEX_CONSTANT (1 << 29)
534#define BIR_INDEX_ZERO (1 << 28)
Alyssa Rosenzweigcd40e182020-03-18 09:57:32 -0400535#define BIR_INDEX_PASS (1 << 27)
Boris Brezillon16179c82020-10-12 11:19:45 +0200536#define BIR_INDEX_BLEND (1 << 26)
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500537
538/* Keep me synced please so we can check src & BIR_SPECIAL */
539
Boris Brezillon16179c82020-10-12 11:19:45 +0200540#define BIR_SPECIAL (BIR_INDEX_REGISTER | BIR_INDEX_UNIFORM | \
541 BIR_INDEX_CONSTANT | BIR_INDEX_ZERO | \
542 BIR_INDEX_PASS | BIR_INDEX_BLEND)
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500543
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500544static inline unsigned
Alyssa Rosenzweig0bff6e52020-03-11 14:51:57 -0400545bi_max_temp(bi_context *ctx)
546{
547 unsigned alloc = MAX2(ctx->impl->reg_alloc, ctx->impl->ssa_alloc);
Alyssa Rosenzweige8139ef2020-03-11 20:39:36 -0400548 return ((alloc + 2 + ctx->temp_alloc) << 1);
Alyssa Rosenzweig0bff6e52020-03-11 14:51:57 -0400549}
550
551static inline unsigned
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500552bi_make_temp(bi_context *ctx)
553{
554 return (ctx->impl->ssa_alloc + 1 + ctx->temp_alloc++) << 1;
555}
556
557static inline unsigned
558bi_make_temp_reg(bi_context *ctx)
559{
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400560 return ((ctx->impl->reg_alloc + ctx->temp_alloc++) << 1) | PAN_IS_REG;
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500561}
562
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500563/* Iterators for Bifrost IR */
564
565#define bi_foreach_block(ctx, v) \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400566 list_for_each_entry(pan_block, v, &ctx->blocks, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500567
568#define bi_foreach_block_from(ctx, from, v) \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400569 list_for_each_entry_from(pan_block, v, from, &ctx->blocks, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500570
Alyssa Rosenzweiga4273152020-05-28 15:01:38 -0400571#define bi_foreach_block_from_rev(ctx, from, v) \
572 list_for_each_entry_from_rev(pan_block, v, from, &ctx->blocks, link)
573
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500574#define bi_foreach_instr_in_block(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400575 list_for_each_entry(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500576
577#define bi_foreach_instr_in_block_rev(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400578 list_for_each_entry_rev(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500579
580#define bi_foreach_instr_in_block_safe(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400581 list_for_each_entry_safe(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500582
583#define bi_foreach_instr_in_block_safe_rev(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400584 list_for_each_entry_safe_rev(bi_instruction, v, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500585
586#define bi_foreach_instr_in_block_from(block, v, from) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400587 list_for_each_entry_from(bi_instruction, v, from, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500588
589#define bi_foreach_instr_in_block_from_rev(block, v, from) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400590 list_for_each_entry_from_rev(bi_instruction, v, from, &(block)->base.instructions, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500591
592#define bi_foreach_clause_in_block(block, v) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400593 list_for_each_entry(bi_clause, v, &(block)->clauses, link)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500594
Alyssa Rosenzweig74be83d2020-10-14 20:38:33 -0400595#define bi_foreach_clause_in_block_safe(block, v) \
596 list_for_each_entry_safe(bi_clause, v, &(block)->clauses, link)
597
Alyssa Rosenzweig64c49ab2020-05-28 13:49:41 -0400598#define bi_foreach_clause_in_block_from(block, v, from) \
599 list_for_each_entry_from(bi_clause, v, from, &(block)->clauses, link)
600
601#define bi_foreach_clause_in_block_from_rev(block, v, from) \
602 list_for_each_entry_from_rev(bi_clause, v, from, &(block)->clauses, link)
603
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500604#define bi_foreach_instr_global(ctx, v) \
605 bi_foreach_block(ctx, v_block) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400606 bi_foreach_instr_in_block((bi_block *) v_block, v)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500607
608#define bi_foreach_instr_global_safe(ctx, v) \
609 bi_foreach_block(ctx, v_block) \
Alyssa Rosenzweigc63105f2020-03-11 21:04:26 -0400610 bi_foreach_instr_in_block_safe((bi_block *) v_block, v)
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500611
612/* Based on set_foreach, expanded with automatic type casts */
613
614#define bi_foreach_predecessor(blk, v) \
615 struct set_entry *_entry_##v; \
616 bi_block *v; \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400617 for (_entry_##v = _mesa_set_next_entry(blk->base.predecessors, NULL), \
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500618 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL); \
619 _entry_##v != NULL; \
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -0400620 _entry_##v = _mesa_set_next_entry(blk->base.predecessors, _entry_##v), \
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500621 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL))
622
623#define bi_foreach_src(ins, v) \
624 for (unsigned v = 0; v < ARRAY_SIZE(ins->src); ++v)
625
Alyssa Rosenzweig6e0479a2020-03-11 14:48:55 -0400626static inline bi_instruction *
627bi_prev_op(bi_instruction *ins)
628{
629 return list_last_entry(&(ins->link), bi_instruction, link);
630}
631
632static inline bi_instruction *
633bi_next_op(bi_instruction *ins)
634{
635 return list_first_entry(&(ins->link), bi_instruction, link);
636}
637
Alyssa Rosenzweig9269c852020-03-12 14:16:22 -0400638static inline pan_block *
639pan_next_block(pan_block *block)
640{
641 return list_first_entry(&(block->link), pan_block, link);
642}
643
Alyssa Rosenzweig8e522062020-04-14 18:52:21 -0400644/* Special functions */
645
646void bi_emit_fexp2(bi_context *ctx, nir_alu_instr *instr);
Alyssa Rosenzweig031ad0e2020-04-14 19:50:24 -0400647void bi_emit_flog2(bi_context *ctx, nir_alu_instr *instr);
Alyssa Rosenzweig8e522062020-04-14 18:52:21 -0400648
Alyssa Rosenzweig5d16a812020-03-04 09:19:06 -0500649/* BIR manipulation */
650
651bool bi_has_outmod(bi_instruction *ins);
652bool bi_has_source_mods(bi_instruction *ins);
653bool bi_is_src_swizzled(bi_instruction *ins, unsigned s);
Alyssa Rosenzweige94754a2020-03-11 14:40:01 -0400654bool bi_has_arg(bi_instruction *ins, unsigned arg);
Alyssa Rosenzweige1d95332020-03-11 21:41:57 -0400655uint16_t bi_from_bytemask(uint16_t bytemask, unsigned bytes);
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400656unsigned bi_get_component_count(bi_instruction *ins, signed s);
Alyssa Rosenzweige6230072020-03-11 14:46:01 -0400657uint16_t bi_bytemask_of_read_components(bi_instruction *ins, unsigned node);
Alyssa Rosenzweig11bccb02020-03-21 18:42:58 -0400658uint64_t bi_get_immediate(bi_instruction *ins, unsigned index);
Alyssa Rosenzweig375a7d02020-03-27 14:40:30 -0400659bool bi_writes_component(bi_instruction *ins, unsigned comp);
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400660unsigned bi_writemask(bi_instruction *ins);
Alyssa Rosenzweig30895012020-10-06 12:14:32 -0400661void bi_rewrite_uses(bi_context *ctx, unsigned old, unsigned oldc, unsigned new, unsigned newc);
Alyssa Rosenzweig5d16a812020-03-04 09:19:06 -0500662
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500663/* BIR passes */
664
Alyssa Rosenzweige0a51d52020-03-22 17:31:23 -0400665void bi_lower_combine(bi_context *ctx, bi_block *block);
Alyssa Rosenzweig58f91712020-03-11 15:10:32 -0400666bool bi_opt_dead_code_eliminate(bi_context *ctx, bi_block *block);
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500667void bi_schedule(bi_context *ctx);
Alyssa Rosenzweige8139ef2020-03-11 20:39:36 -0400668void bi_register_allocate(bi_context *ctx);
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500669
Alyssa Rosenzweig2ff54ca2020-10-14 20:38:13 -0400670bi_clause *bi_make_singleton(void *memctx, bi_instruction *ins,
671 bi_block *block,
672 unsigned scoreboard_id,
673 unsigned dependencies,
674 bool osrb);
675
Alyssa Rosenzweig56e1c602020-03-11 14:54:49 -0400676/* Liveness */
677
678void bi_compute_liveness(bi_context *ctx);
679void bi_liveness_ins_update(uint16_t *live, bi_instruction *ins, unsigned max);
680void bi_invalidate_liveness(bi_context *ctx);
681bool bi_is_live_after(bi_context *ctx, bi_block *block, bi_instruction *start, int src);
682
Alyssa Rosenzweig2a4e4472020-05-05 17:58:16 -0400683/* Layout */
684
685bool bi_can_insert_bundle(bi_clause *clause, bool constant);
Alyssa Rosenzweigb3ae0882020-05-05 18:20:08 -0400686unsigned bi_clause_quadwords(bi_clause *clause);
Alyssa Rosenzweig682b63c2020-05-28 13:49:59 -0400687signed bi_block_offset(bi_context *ctx, bi_clause *start, bi_block *target);
Alyssa Rosenzweig2a4e4472020-05-05 17:58:16 -0400688
Alyssa Rosenzweig9269c852020-03-12 14:16:22 -0400689/* Code emit */
690
691void bi_pack(bi_context *ctx, struct util_dynarray *emission);
692
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500693#endif