blob: 299cff5b01797a894cafbab78aab1c56495119b4 [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,
58 BI_FMA,
59 BI_FREXP,
60 BI_LOAD,
61 BI_LOAD_ATTR,
62 BI_LOAD_VAR,
63 BI_LOAD_VAR_ADDRESS,
64 BI_MINMAX,
65 BI_MOV,
66 BI_SHIFT,
67 BI_STORE,
68 BI_STORE_VAR,
69 BI_SPECIAL, /* _FAST, _TABLE on supported GPUs */
70 BI_TEX,
71 BI_ROUND,
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050072 BI_NUM_CLASSES
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050073};
74
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050075/* Properties of a class... */
76extern unsigned bi_class_props[BI_NUM_CLASSES];
77
78/* abs/neg/outmod valid for a float op */
79#define BI_MODS (1 << 0)
80
Alyssa Rosenzweig34165c72020-03-02 20:46:37 -050081/* Generic enough that little class-specific information is required. In other
82 * words, it acts as a "normal" ALU op, even if the encoding ends up being
83 * irregular enough to warrant a separate class */
84#define BI_GENERIC (1 << 1)
85
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -050086/* Accepts a bifrost_roundmode */
87#define BI_ROUNDMODE (1 << 2)
88
Alyssa Rosenzweig99f3c1f2020-03-02 21:53:13 -050089/* Can be scheduled to FMA */
90#define BI_SCHED_FMA (1 << 3)
91
92/* Can be scheduled to ADD */
93#define BI_SCHED_ADD (1 << 4)
94
95/* Most ALU ops can do either, actually */
96#define BI_SCHED_ALL (BI_SCHED_FMA | BI_SCHED_ADD)
97
Alyssa Rosenzweig230be612020-03-02 20:24:03 -050098/* It can't get any worse than csel4... can it? */
99#define BIR_SRC_COUNT 4
100
Alyssa Rosenzweigaa2f12d2020-03-02 21:19:16 -0500101/* Class-specific data for BI_LD_ATTR, BI_LD_VAR_ADDR */
102struct bi_load {
103 /* Note: no indirects here */
104 unsigned location;
105
106 /* Only for BI_LD_ATTR. But number of vector channels */
107 unsigned channels;
108};
109
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500110/* BI_LD_VARY */
111struct bi_load_vary {
112 /* All parameters used here. Indirect location specified in
113 * src1 and ignoring location, if present. */
114 struct bi_load load;
115
116 enum bifrost_interp_mode interp_mode;
117 bool reuse;
118 bool flat;
119};
120
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500121typedef struct {
122 struct list_head link; /* Must be first */
123 enum bi_class type;
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500124
125 /* Indices, see bir_ssa_index etc. Note zero is special cased
126 * to "no argument" */
127 unsigned dest;
128 unsigned src[BIR_SRC_COUNT];
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500129
Alyssa Rosenzweigb5bdd892020-03-03 07:47:29 -0500130 /* If one of the sources has BIR_INDEX_CONSTANT... */
131 union {
132 uint64_t u64;
133 uint32_t u32;
134 uint16_t u16[2];
135 uint8_t u8[4];
136 } constant;
137
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500138 /* Floating-point modifiers, type/class permitting. If not
139 * allowed for the type/class, these are ignored. */
140 enum bifrost_outmod outmod;
141 bool src_abs[BIR_SRC_COUNT];
142 bool src_neg[BIR_SRC_COUNT];
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -0500143
144 /* Round mode (requires BI_ROUNDMODE) */
145 enum bifrost_roundmode roundmode;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500146
Alyssa Rosenzweigc42002d2020-03-02 22:03:05 -0500147 /* Destination type. Usually the type of the instruction
148 * itself, but if sources and destination have different
149 * types, the type of the destination wins (so f2i would be
150 * int). Zero if there is no destination. Bitsize included */
151 nir_alu_type dest_type;
152
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500153 /* Union for class-specific information */
154 union {
155 enum bifrost_minmax_mode minmax;
Alyssa Rosenzweigaa2f12d2020-03-02 21:19:16 -0500156 struct bi_load load;
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500157 struct bi_load_vary load_vary;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500158 };
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500159} bi_instruction;
160
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500161/* Scheduling takes place in two steps. Step 1 groups instructions within a
162 * block into distinct clauses (bi_clause). Step 2 schedules instructions
163 * within a clause into FMA/ADD pairs (bi_bundle).
164 *
165 * A bi_bundle contains two paired instruction pointers. If a slot is unfilled,
166 * leave it NULL; the emitter will fill in a nop.
167 */
168
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500169typedef struct {
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500170 bi_instruction *fma;
171 bi_instruction *add;
172} bi_bundle;
173
174typedef struct {
175 struct list_head link;
176
177 /* A clause can have 8 instructions in bundled FMA/ADD sense, so there
178 * can be 8 bundles. But each bundle can have both an FMA and an ADD,
179 * so a clause can have up to 16 bi_instructions. Whether bundles or
180 * instructions are used depends on where in scheduling we are. */
181
182 unsigned instruction_count;
183 unsigned bundle_count;
184
185 union {
186 bi_instruction *instructions[16];
187 bi_bundle bundles[8];
188 };
189} bi_clause;
190
191typedef struct bi_block {
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500192 struct list_head link; /* must be first */
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500193 unsigned name; /* Just for pretty-printing */
194
195 /* If true, uses clauses; if false, uses instructions */
196 bool scheduled;
197
198 union {
199 struct list_head instructions; /* pre-schedule, list of bi_instructions */
200 struct list_head clauses; /* list of bi_clause */
201 };
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500202} bi_block;
203
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500204typedef struct {
205 nir_shader *nir;
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500206 struct list_head blocks; /* list of bi_block */
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500207} bi_context;
208
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500209/* So we can distinguish between SSA/reg/sentinel quickly */
210#define BIR_NO_ARG (0)
211#define BIR_IS_REG (1)
212
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500213/* If high bits are set, instead of SSA/registers, we have specials indexed by
214 * the low bits if necessary.
215 *
216 * Fixed register: do not allocate register, do not collect $200.
217 * Uniform: access a uniform register given by low bits.
218 * Constant: access the specified constant
219 * Zero: special cased to avoid wasting a constant
220 */
221
222#define BIR_INDEX_REGISTER (1 << 31)
223#define BIR_INDEX_UNIFORM (1 << 30)
224#define BIR_INDEX_CONSTANT (1 << 29)
225#define BIR_INDEX_ZERO (1 << 28)
226
227/* Keep me synced please so we can check src & BIR_SPECIAL */
228
229#define BIR_SPECIAL ((BIR_INDEX_REGISTER | BIR_INDEX_UNIFORM) | \
230 (BIR_INDEX_CONSTANT | BIR_INDEX_ZERO)
231
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500232static inline unsigned
233bir_ssa_index(nir_ssa_def *ssa)
234{
235 /* Off-by-one ensures BIR_NO_ARG is skipped */
236 return ((ssa->index + 1) << 1) | 0;
237}
238
239static inline unsigned
240bir_src_index(nir_src *src)
241{
242 if (src->is_ssa)
243 return bir_ssa_index(src->ssa);
244 else {
245 assert(!src->reg.indirect);
246 return (src->reg.reg->index << 1) | BIR_IS_REG;
247 }
248}
249
250static inline unsigned
251bir_dest_index(nir_dest *dst)
252{
253 if (dst->is_ssa)
254 return bir_ssa_index(&dst->ssa);
255 else {
256 assert(!dst->reg.indirect);
257 return (dst->reg.reg->index << 1) | BIR_IS_REG;
258 }
259}
260
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500261#endif