blob: 5da5b6d20a4dc2227512bd04d5538f2ecae6d6f8 [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"
32
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050033/* Bifrost opcodes are tricky -- the same op may exist on both FMA and
34 * ADD with two completely different opcodes, and opcodes can be varying
35 * length in some cases. Then we have different opcodes for int vs float
36 * and then sometimes even for different typesizes. Further, virtually
37 * every op has a number of flags which depend on the op. In constrast
38 * to Midgard where you have a strict ALU/LDST/TEX division and within
39 * ALU you have strict int/float and that's it... here it's a *lot* more
40 * involved. As such, we use something much higher level for our IR,
41 * encoding "classes" of operations, letting the opcode details get
42 * sorted out at emit time.
43 *
44 * Please keep this list alphabetized. Please use a dictionary if you
45 * don't know how to do that.
46 */
47
48enum bi_class {
49 BI_ADD,
50 BI_ATEST,
51 BI_BRANCH,
52 BI_CMP,
53 BI_BLEND,
54 BI_BITWISE,
55 BI_CONVERT,
56 BI_CSEL,
57 BI_DISCARD,
Alyssa Rosenzweigcb3cd8a2020-03-03 08:57:03 -050058 BI_EXTRACT,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050059 BI_FMA,
60 BI_FREXP,
61 BI_LOAD,
62 BI_LOAD_ATTR,
63 BI_LOAD_VAR,
64 BI_LOAD_VAR_ADDRESS,
Alyssa Rosenzweigcb3cd8a2020-03-03 08:57:03 -050065 BI_MAKE_VEC,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050066 BI_MINMAX,
67 BI_MOV,
68 BI_SHIFT,
69 BI_STORE,
70 BI_STORE_VAR,
71 BI_SPECIAL, /* _FAST, _TABLE on supported GPUs */
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -050072 BI_SWIZZLE,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050073 BI_TEX,
74 BI_ROUND,
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050075 BI_NUM_CLASSES
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050076};
77
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050078/* Properties of a class... */
79extern unsigned bi_class_props[BI_NUM_CLASSES];
80
81/* abs/neg/outmod valid for a float op */
82#define BI_MODS (1 << 0)
83
Alyssa Rosenzweig34165c72020-03-02 20:46:37 -050084/* Generic enough that little class-specific information is required. In other
85 * words, it acts as a "normal" ALU op, even if the encoding ends up being
86 * irregular enough to warrant a separate class */
87#define BI_GENERIC (1 << 1)
88
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -050089/* Accepts a bifrost_roundmode */
90#define BI_ROUNDMODE (1 << 2)
91
Alyssa Rosenzweig99f3c1f2020-03-02 21:53:13 -050092/* Can be scheduled to FMA */
93#define BI_SCHED_FMA (1 << 3)
94
95/* Can be scheduled to ADD */
96#define BI_SCHED_ADD (1 << 4)
97
98/* Most ALU ops can do either, actually */
99#define BI_SCHED_ALL (BI_SCHED_FMA | BI_SCHED_ADD)
100
Alyssa Rosenzweigc70a1982020-03-03 08:16:50 -0500101/* Along with setting BI_SCHED_ADD, eats up the entire cycle, so FMA must be
102 * nopped out. Used for _FAST operations. */
103#define BI_SCHED_SLOW (1 << 5)
104
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500105/* Swizzling allowed for the 8/16-bit source */
106#define BI_SWIZZLABLE (1 << 6)
107
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500108/* It can't get any worse than csel4... can it? */
109#define BIR_SRC_COUNT 4
110
Alyssa Rosenzweigaa2f12d2020-03-02 21:19:16 -0500111/* Class-specific data for BI_LD_ATTR, BI_LD_VAR_ADDR */
112struct bi_load {
113 /* Note: no indirects here */
114 unsigned location;
115
116 /* Only for BI_LD_ATTR. But number of vector channels */
117 unsigned channels;
118};
119
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500120/* BI_LD_VARY */
121struct bi_load_vary {
122 /* All parameters used here. Indirect location specified in
123 * src1 and ignoring location, if present. */
124 struct bi_load load;
125
126 enum bifrost_interp_mode interp_mode;
127 bool reuse;
128 bool flat;
129};
130
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500131/* BI_BRANCH encoding the details of the branch itself as well as a pointer to
132 * the target. We forward declare bi_block since this is mildly circular (not
133 * strictly, but this order of the file makes more sense I think)
134 *
135 * We define our own enum of conditions since the conditions in the hardware
136 * packed in crazy ways that would make manipulation unweildly (meaning changes
137 * based on port swapping, etc), so we defer dealing with that until emit time.
138 * Likewise, we expose NIR types instead of the crazy branch types, although
139 * the restrictions do eventually apply of course. */
140
141struct bi_block;
142
143enum bi_cond {
144 BI_COND_ALWAYS,
145 BI_COND_LT,
146 BI_COND_LE,
147 BI_COND_GE,
148 BI_COND_GT,
149 BI_COND_EQ,
150 BI_COND_NE,
151};
152
153struct bi_branch {
154 /* Types are specified in src_types and must be compatible (either both
155 * int, or both float, 16/32, and same size or 32/16 if float. Types
156 * ignored if BI_COND_ALWAYS is set for an unconditional branch. */
157
158 enum bi_cond cond;
159 struct bi_block *target;
160};
161
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500162/* Opcodes within a class */
163enum bi_minmax_op {
164 BI_MINMAX_MIN,
165 BI_MINMAX_MAX
166};
167
168enum bi_bitwise_op {
169 BI_BITWISE_AND,
170 BI_BITWISE_OR,
171 BI_BITWISE_XOR
172};
173
174enum bi_round_op {
175 BI_ROUND_MODE, /* use round mode */
176 BI_ROUND_ROUND /* i.e.: fround() */
177};
178
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500179typedef struct {
180 struct list_head link; /* Must be first */
181 enum bi_class type;
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500182
183 /* Indices, see bir_ssa_index etc. Note zero is special cased
184 * to "no argument" */
185 unsigned dest;
186 unsigned src[BIR_SRC_COUNT];
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500187
Alyssa Rosenzweigcb3cd8a2020-03-03 08:57:03 -0500188 /* If one of the sources has BIR_INDEX_CONSTANT... Also, for
189 * BI_EXTRACT, the component index is stored here. */
Alyssa Rosenzweigb5bdd892020-03-03 07:47:29 -0500190 union {
191 uint64_t u64;
192 uint32_t u32;
193 uint16_t u16[2];
194 uint8_t u8[4];
195 } constant;
196
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500197 /* Floating-point modifiers, type/class permitting. If not
198 * allowed for the type/class, these are ignored. */
199 enum bifrost_outmod outmod;
200 bool src_abs[BIR_SRC_COUNT];
201 bool src_neg[BIR_SRC_COUNT];
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -0500202
203 /* Round mode (requires BI_ROUNDMODE) */
204 enum bifrost_roundmode roundmode;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500205
Alyssa Rosenzweigc42002d2020-03-02 22:03:05 -0500206 /* Destination type. Usually the type of the instruction
207 * itself, but if sources and destination have different
208 * types, the type of the destination wins (so f2i would be
209 * int). Zero if there is no destination. Bitsize included */
210 nir_alu_type dest_type;
211
Alyssa Rosenzweig8929fe02020-03-03 08:37:15 -0500212 /* Source types if required by the class */
213 nir_alu_type src_types[BIR_SRC_COUNT];
214
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500215 /* If the source type is 8-bit or 16-bit such that SIMD is possible, and
216 * the class has BI_SWIZZLABLE, this is a swizzle for the input. Swizzles
217 * in practice only occur with one-source arguments (conversions,
218 * dedicated swizzle ops) and as component selection on two-sources
219 * where it is unambiguous which is which. Bounds are 32/type_size. */
220 unsigned swizzle[4];
221
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500222 /* A class-specific op from which the actual opcode can be derived
223 * (along with the above information) */
224
225 union {
226 enum bi_minmax_op minmax;
227 enum bi_bitwise_op bitwise;
228 enum bi_round_op round;
229 } op;
230
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500231 /* Union for class-specific information */
232 union {
233 enum bifrost_minmax_mode minmax;
Alyssa Rosenzweigaa2f12d2020-03-02 21:19:16 -0500234 struct bi_load load;
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500235 struct bi_load_vary load_vary;
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500236 struct bi_branch branch;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500237 };
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500238} bi_instruction;
239
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500240/* Scheduling takes place in two steps. Step 1 groups instructions within a
241 * block into distinct clauses (bi_clause). Step 2 schedules instructions
242 * within a clause into FMA/ADD pairs (bi_bundle).
243 *
244 * A bi_bundle contains two paired instruction pointers. If a slot is unfilled,
245 * leave it NULL; the emitter will fill in a nop.
246 */
247
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500248typedef struct {
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500249 bi_instruction *fma;
250 bi_instruction *add;
251} bi_bundle;
252
253typedef struct {
254 struct list_head link;
255
256 /* A clause can have 8 instructions in bundled FMA/ADD sense, so there
257 * can be 8 bundles. But each bundle can have both an FMA and an ADD,
258 * so a clause can have up to 16 bi_instructions. Whether bundles or
259 * instructions are used depends on where in scheduling we are. */
260
261 unsigned instruction_count;
262 unsigned bundle_count;
263
264 union {
265 bi_instruction *instructions[16];
266 bi_bundle bundles[8];
267 };
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500268
269 /* For scoreboarding -- the clause ID (this is not globally unique!)
270 * and its dependencies in terms of other clauses, computed during
271 * scheduling and used when emitting code. Dependencies expressed as a
272 * bitfield matching the hardware, except shifted by a clause (the
273 * shift back to the ISA's off-by-one encoding is worked out when
274 * emitting clauses) */
275 unsigned scoreboard_id;
276 uint8_t dependencies;
277
278 /* Back-to-back corresponds directly to the back-to-back bit. Branch
279 * conditional corresponds to the branch conditional bit except that in
280 * the emitted code it's always set if back-to-bit is, whereas we use
281 * the actual value (without back-to-back so to speak) internally */
282 bool back_to_back;
283 bool branch_conditional;
284
285 /* Corresponds to the usual bit but shifted by a clause */
286 bool data_register_write_barrier;
Alyssa Rosenzweigd3370bd2020-03-03 13:01:41 -0500287
288 /* Constants read by this clause. ISA limit. */
289 uint64_t constants[8];
290 unsigned constant_count;
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500291} bi_clause;
292
293typedef struct bi_block {
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500294 struct list_head link; /* must be first */
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500295 unsigned name; /* Just for pretty-printing */
296
297 /* If true, uses clauses; if false, uses instructions */
298 bool scheduled;
299
300 union {
301 struct list_head instructions; /* pre-schedule, list of bi_instructions */
302 struct list_head clauses; /* list of bi_clause */
303 };
Alyssa Rosenzweig2afddc42020-03-03 13:47:13 -0500304
305 /* Control flow graph */
306 struct set *predecessors;
307 struct bi_block *successors[2];
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500308} bi_block;
309
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500310typedef struct {
311 nir_shader *nir;
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500312 struct list_head blocks; /* list of bi_block */
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500313} bi_context;
314
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500315/* So we can distinguish between SSA/reg/sentinel quickly */
316#define BIR_NO_ARG (0)
317#define BIR_IS_REG (1)
318
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500319/* If high bits are set, instead of SSA/registers, we have specials indexed by
320 * the low bits if necessary.
321 *
322 * Fixed register: do not allocate register, do not collect $200.
323 * Uniform: access a uniform register given by low bits.
324 * Constant: access the specified constant
325 * Zero: special cased to avoid wasting a constant
326 */
327
328#define BIR_INDEX_REGISTER (1 << 31)
329#define BIR_INDEX_UNIFORM (1 << 30)
330#define BIR_INDEX_CONSTANT (1 << 29)
331#define BIR_INDEX_ZERO (1 << 28)
332
333/* Keep me synced please so we can check src & BIR_SPECIAL */
334
335#define BIR_SPECIAL ((BIR_INDEX_REGISTER | BIR_INDEX_UNIFORM) | \
336 (BIR_INDEX_CONSTANT | BIR_INDEX_ZERO)
337
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500338static inline unsigned
339bir_ssa_index(nir_ssa_def *ssa)
340{
341 /* Off-by-one ensures BIR_NO_ARG is skipped */
342 return ((ssa->index + 1) << 1) | 0;
343}
344
345static inline unsigned
346bir_src_index(nir_src *src)
347{
348 if (src->is_ssa)
349 return bir_ssa_index(src->ssa);
350 else {
351 assert(!src->reg.indirect);
352 return (src->reg.reg->index << 1) | BIR_IS_REG;
353 }
354}
355
356static inline unsigned
357bir_dest_index(nir_dest *dst)
358{
359 if (dst->is_ssa)
360 return bir_ssa_index(&dst->ssa);
361 else {
362 assert(!dst->reg.indirect);
363 return (dst->reg.reg->index << 1) | BIR_IS_REG;
364 }
365}
366
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500367#endif