pan/bi: Use IMATH for nir_op_iadd
[mesa.git] / src / panfrost / bifrost / compiler.h
1 /*
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
30 #include "bifrost.h"
31 #include "compiler/nir/nir.h"
32 #include "panfrost/util/pan_ir.h"
33
34 /* 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
49 enum bi_class {
50 BI_ADD,
51 BI_ATEST,
52 BI_BRANCH,
53 BI_CMP,
54 BI_BLEND,
55 BI_BITWISE,
56 BI_COMBINE,
57 BI_CONVERT,
58 BI_CSEL,
59 BI_DISCARD,
60 BI_FMA,
61 BI_FMOV,
62 BI_FREXP,
63 BI_IMATH,
64 BI_LOAD,
65 BI_LOAD_UNIFORM,
66 BI_LOAD_ATTR,
67 BI_LOAD_VAR,
68 BI_LOAD_VAR_ADDRESS,
69 BI_MINMAX,
70 BI_MOV,
71 BI_REDUCE_FMA,
72 BI_SELECT,
73 BI_SHIFT,
74 BI_STORE,
75 BI_STORE_VAR,
76 BI_SPECIAL, /* _FAST on supported GPUs */
77 BI_TABLE,
78 BI_TEX,
79 BI_ROUND,
80 BI_NUM_CLASSES
81 };
82
83 /* Properties of a class... */
84 extern unsigned bi_class_props[BI_NUM_CLASSES];
85
86 /* abs/neg/outmod valid for a float op */
87 #define BI_MODS (1 << 0)
88
89 /* Accepts a bi_cond */
90 #define BI_CONDITIONAL (1 << 1)
91
92 /* Accepts a bifrost_roundmode */
93 #define BI_ROUNDMODE (1 << 2)
94
95 /* 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
104 /* 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
108 /* Swizzling allowed for the 8/16-bit source */
109 #define BI_SWIZZLABLE (1 << 6)
110
111 /* For scheduling purposes this is a high latency instruction and must be at
112 * the end of a clause. Implies ADD */
113 #define BI_SCHED_HI_LATENCY (1 << 7)
114
115 /* Intrinsic is vectorized and acts with `vector_channels` components */
116 #define BI_VECTOR (1 << 8)
117
118 /* 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
123 /* Quirk: cannot encode multiple abs on FMA in fp16 mode */
124 #define BI_NO_ABS_ABS_FP16_FMA (1 << 11)
125
126 /* It can't get any worse than csel4... can it? */
127 #define BIR_SRC_COUNT 4
128
129 /* BI_LD_VARY */
130 struct bi_load_vary {
131 enum bifrost_interp_mode interp_mode;
132 bool reuse;
133 bool flat;
134 };
135
136 /* 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
146 struct bi_block;
147
148 enum 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
158 /* Opcodes within a class */
159 enum bi_minmax_op {
160 BI_MINMAX_MIN,
161 BI_MINMAX_MAX
162 };
163
164 enum bi_bitwise_op {
165 BI_BITWISE_AND,
166 BI_BITWISE_OR,
167 BI_BITWISE_XOR
168 };
169
170 enum bi_imath_op {
171 BI_IMATH_ADD,
172 BI_IMATH_SUB,
173 };
174
175 enum bi_table_op {
176 /* fp32 log2() with low precision, suitable for GL or half_log2() in
177 * CL. In the first argument, takes x. Letting u be such that x =
178 * 2^{-m} u with m integer and 0.75 <= u < 1.5, returns
179 * log2(u) / (u - 1). */
180
181 BI_TABLE_LOG2_U_OVER_U_1_LOW,
182 };
183
184 enum bi_reduce_op {
185 /* Takes two fp32 arguments and returns x + frexp(y). Used in
186 * low-precision log2 argument reduction on newer models. */
187
188 BI_REDUCE_ADD_FREXPM,
189 };
190
191 enum bi_frexp_op {
192 BI_FREXPE_LOG,
193 };
194
195 enum bi_special_op {
196 BI_SPECIAL_FRCP,
197 BI_SPECIAL_FRSQ,
198
199 /* fp32 exp2() with low precision, suitable for half_exp2() in CL or
200 * exp2() in GL. In the first argument, it takes f2i_rte(x * 2^24). In
201 * the second, it takes x itself. */
202 BI_SPECIAL_EXP2_LOW,
203 };
204
205 enum bi_tex_op {
206 BI_TEX_NORMAL,
207 BI_TEX_COMPACT,
208 BI_TEX_DUAL
209 };
210
211 struct bi_bitwise {
212 bool src_invert[2];
213 bool rshift; /* false for lshift */
214 };
215
216 struct bi_texture {
217 /* Constant indices. Indirect would need to be in src[..] like normal,
218 * we can reserve some sentinels there for that for future. */
219 unsigned texture_index, sampler_index;
220 };
221
222 typedef struct {
223 struct list_head link; /* Must be first */
224 enum bi_class type;
225
226 /* Indices, see pan_ssa_index etc. Note zero is special cased
227 * to "no argument" */
228 unsigned dest;
229 unsigned src[BIR_SRC_COUNT];
230
231 /* 32-bit word offset for destination, added to the register number in
232 * RA when lowering combines */
233 unsigned dest_offset;
234
235 /* If one of the sources has BIR_INDEX_CONSTANT */
236 union {
237 uint64_t u64;
238 uint32_t u32;
239 uint16_t u16[2];
240 uint8_t u8[4];
241 } constant;
242
243 /* Floating-point modifiers, type/class permitting. If not
244 * allowed for the type/class, these are ignored. */
245 enum bifrost_outmod outmod;
246 bool src_abs[BIR_SRC_COUNT];
247 bool src_neg[BIR_SRC_COUNT];
248
249 /* Round mode (requires BI_ROUNDMODE) */
250 enum bifrost_roundmode roundmode;
251
252 /* Destination type. Usually the type of the instruction
253 * itself, but if sources and destination have different
254 * types, the type of the destination wins (so f2i would be
255 * int). Zero if there is no destination. Bitsize included */
256 nir_alu_type dest_type;
257
258 /* Source types if required by the class */
259 nir_alu_type src_types[BIR_SRC_COUNT];
260
261 /* If the source type is 8-bit or 16-bit such that SIMD is possible,
262 * and the class has BI_SWIZZLABLE, this is a swizzle in the usual
263 * sense. On non-SIMD instructions, it can be used for component
264 * selection, so we don't have to special case extraction. */
265 uint8_t swizzle[BIR_SRC_COUNT][NIR_MAX_VEC_COMPONENTS];
266
267 /* For VECTOR ops, how many channels are written? */
268 unsigned vector_channels;
269
270 /* The comparison op. BI_COND_ALWAYS may not be valid. */
271 enum bi_cond cond;
272
273 /* A class-specific op from which the actual opcode can be derived
274 * (along with the above information) */
275
276 union {
277 enum bi_minmax_op minmax;
278 enum bi_bitwise_op bitwise;
279 enum bi_special_op special;
280 enum bi_reduce_op reduce;
281 enum bi_table_op table;
282 enum bi_frexp_op frexp;
283 enum bi_tex_op texture;
284 enum bi_imath_op imath;
285
286 /* For FMA/ADD, should we add a biased exponent? */
287 bool mscale;
288 } op;
289
290 /* Union for class-specific information */
291 union {
292 enum bifrost_minmax_mode minmax;
293 struct bi_load_vary load_vary;
294 struct bi_block *branch_target;
295
296 /* For BLEND -- the location 0-7 */
297 unsigned blend_location;
298
299 struct bi_bitwise bitwise;
300 struct bi_texture texture;
301 };
302 } bi_instruction;
303
304 /* Scheduling takes place in two steps. Step 1 groups instructions within a
305 * block into distinct clauses (bi_clause). Step 2 schedules instructions
306 * within a clause into FMA/ADD pairs (bi_bundle).
307 *
308 * A bi_bundle contains two paired instruction pointers. If a slot is unfilled,
309 * leave it NULL; the emitter will fill in a nop.
310 */
311
312 typedef struct {
313 bi_instruction *fma;
314 bi_instruction *add;
315 } bi_bundle;
316
317 typedef struct {
318 struct list_head link;
319
320 /* A clause can have 8 instructions in bundled FMA/ADD sense, so there
321 * can be 8 bundles. But each bundle can have both an FMA and an ADD,
322 * so a clause can have up to 16 bi_instructions. Whether bundles or
323 * instructions are used depends on where in scheduling we are. */
324
325 unsigned instruction_count;
326 unsigned bundle_count;
327
328 union {
329 bi_instruction *instructions[16];
330 bi_bundle bundles[8];
331 };
332
333 /* For scoreboarding -- the clause ID (this is not globally unique!)
334 * and its dependencies in terms of other clauses, computed during
335 * scheduling and used when emitting code. Dependencies expressed as a
336 * bitfield matching the hardware, except shifted by a clause (the
337 * shift back to the ISA's off-by-one encoding is worked out when
338 * emitting clauses) */
339 unsigned scoreboard_id;
340 uint8_t dependencies;
341
342 /* Back-to-back corresponds directly to the back-to-back bit. Branch
343 * conditional corresponds to the branch conditional bit except that in
344 * the emitted code it's always set if back-to-bit is, whereas we use
345 * the actual value (without back-to-back so to speak) internally */
346 bool back_to_back;
347 bool branch_conditional;
348
349 /* Assigned data register */
350 unsigned data_register;
351
352 /* Corresponds to the usual bit but shifted by a clause */
353 bool data_register_write_barrier;
354
355 /* Constants read by this clause. ISA limit. */
356 uint64_t constants[8];
357 unsigned constant_count;
358
359 /* What type of high latency instruction is here, basically */
360 unsigned clause_type;
361 } bi_clause;
362
363 typedef struct bi_block {
364 pan_block base; /* must be first */
365
366 /* If true, uses clauses; if false, uses instructions */
367 bool scheduled;
368 struct list_head clauses; /* list of bi_clause */
369 } bi_block;
370
371 typedef struct {
372 nir_shader *nir;
373 gl_shader_stage stage;
374 struct list_head blocks; /* list of bi_block */
375 struct panfrost_sysvals sysvals;
376 uint32_t quirks;
377
378 /* During NIR->BIR */
379 nir_function_impl *impl;
380 bi_block *current_block;
381 unsigned block_name_count;
382 bi_block *after_block;
383 bi_block *break_block;
384 bi_block *continue_block;
385 bool emitted_atest;
386 nir_alu_type *blend_types;
387
388 /* For creating temporaries */
389 unsigned temp_alloc;
390
391 /* Analysis results */
392 bool has_liveness;
393
394 /* Stats for shader-db */
395 unsigned instruction_count;
396 unsigned loop_count;
397 } bi_context;
398
399 static inline bi_instruction *
400 bi_emit(bi_context *ctx, bi_instruction ins)
401 {
402 bi_instruction *u = rzalloc(ctx, bi_instruction);
403 memcpy(u, &ins, sizeof(ins));
404 list_addtail(&u->link, &ctx->current_block->base.instructions);
405 return u;
406 }
407
408 static inline bi_instruction *
409 bi_emit_before(bi_context *ctx, bi_instruction *tag, bi_instruction ins)
410 {
411 bi_instruction *u = rzalloc(ctx, bi_instruction);
412 memcpy(u, &ins, sizeof(ins));
413 list_addtail(&u->link, &tag->link);
414 return u;
415 }
416
417 static inline void
418 bi_remove_instruction(bi_instruction *ins)
419 {
420 list_del(&ins->link);
421 }
422
423 /* If high bits are set, instead of SSA/registers, we have specials indexed by
424 * the low bits if necessary.
425 *
426 * Fixed register: do not allocate register, do not collect $200.
427 * Uniform: access a uniform register given by low bits.
428 * Constant: access the specified constant (specifies a bit offset / shift)
429 * Zero: special cased to avoid wasting a constant
430 * Passthrough: a bifrost_packed_src to passthrough T/T0/T1
431 */
432
433 #define BIR_INDEX_REGISTER (1 << 31)
434 #define BIR_INDEX_UNIFORM (1 << 30)
435 #define BIR_INDEX_CONSTANT (1 << 29)
436 #define BIR_INDEX_ZERO (1 << 28)
437 #define BIR_INDEX_PASS (1 << 27)
438
439 /* Keep me synced please so we can check src & BIR_SPECIAL */
440
441 #define BIR_SPECIAL ((BIR_INDEX_REGISTER | BIR_INDEX_UNIFORM) | \
442 (BIR_INDEX_CONSTANT | BIR_INDEX_ZERO | BIR_INDEX_PASS))
443
444 static inline unsigned
445 bi_max_temp(bi_context *ctx)
446 {
447 unsigned alloc = MAX2(ctx->impl->reg_alloc, ctx->impl->ssa_alloc);
448 return ((alloc + 2 + ctx->temp_alloc) << 1);
449 }
450
451 static inline unsigned
452 bi_make_temp(bi_context *ctx)
453 {
454 return (ctx->impl->ssa_alloc + 1 + ctx->temp_alloc++) << 1;
455 }
456
457 static inline unsigned
458 bi_make_temp_reg(bi_context *ctx)
459 {
460 return ((ctx->impl->reg_alloc + ctx->temp_alloc++) << 1) | PAN_IS_REG;
461 }
462
463 /* Iterators for Bifrost IR */
464
465 #define bi_foreach_block(ctx, v) \
466 list_for_each_entry(pan_block, v, &ctx->blocks, link)
467
468 #define bi_foreach_block_from(ctx, from, v) \
469 list_for_each_entry_from(pan_block, v, from, &ctx->blocks, link)
470
471 #define bi_foreach_instr_in_block(block, v) \
472 list_for_each_entry(bi_instruction, v, &(block)->base.instructions, link)
473
474 #define bi_foreach_instr_in_block_rev(block, v) \
475 list_for_each_entry_rev(bi_instruction, v, &(block)->base.instructions, link)
476
477 #define bi_foreach_instr_in_block_safe(block, v) \
478 list_for_each_entry_safe(bi_instruction, v, &(block)->base.instructions, link)
479
480 #define bi_foreach_instr_in_block_safe_rev(block, v) \
481 list_for_each_entry_safe_rev(bi_instruction, v, &(block)->base.instructions, link)
482
483 #define bi_foreach_instr_in_block_from(block, v, from) \
484 list_for_each_entry_from(bi_instruction, v, from, &(block)->base.instructions, link)
485
486 #define bi_foreach_instr_in_block_from_rev(block, v, from) \
487 list_for_each_entry_from_rev(bi_instruction, v, from, &(block)->base.instructions, link)
488
489 #define bi_foreach_clause_in_block(block, v) \
490 list_for_each_entry(bi_clause, v, &(block)->clauses, link)
491
492 #define bi_foreach_instr_global(ctx, v) \
493 bi_foreach_block(ctx, v_block) \
494 bi_foreach_instr_in_block((bi_block *) v_block, v)
495
496 #define bi_foreach_instr_global_safe(ctx, v) \
497 bi_foreach_block(ctx, v_block) \
498 bi_foreach_instr_in_block_safe((bi_block *) v_block, v)
499
500 /* Based on set_foreach, expanded with automatic type casts */
501
502 #define bi_foreach_predecessor(blk, v) \
503 struct set_entry *_entry_##v; \
504 bi_block *v; \
505 for (_entry_##v = _mesa_set_next_entry(blk->base.predecessors, NULL), \
506 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL); \
507 _entry_##v != NULL; \
508 _entry_##v = _mesa_set_next_entry(blk->base.predecessors, _entry_##v), \
509 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL))
510
511 #define bi_foreach_src(ins, v) \
512 for (unsigned v = 0; v < ARRAY_SIZE(ins->src); ++v)
513
514 static inline bi_instruction *
515 bi_prev_op(bi_instruction *ins)
516 {
517 return list_last_entry(&(ins->link), bi_instruction, link);
518 }
519
520 static inline bi_instruction *
521 bi_next_op(bi_instruction *ins)
522 {
523 return list_first_entry(&(ins->link), bi_instruction, link);
524 }
525
526 static inline pan_block *
527 pan_next_block(pan_block *block)
528 {
529 return list_first_entry(&(block->link), pan_block, link);
530 }
531
532 /* Special functions */
533
534 void bi_emit_fexp2(bi_context *ctx, nir_alu_instr *instr);
535 void bi_emit_flog2(bi_context *ctx, nir_alu_instr *instr);
536
537 /* BIR manipulation */
538
539 bool bi_has_outmod(bi_instruction *ins);
540 bool bi_has_source_mods(bi_instruction *ins);
541 bool bi_is_src_swizzled(bi_instruction *ins, unsigned s);
542 bool bi_has_arg(bi_instruction *ins, unsigned arg);
543 uint16_t bi_from_bytemask(uint16_t bytemask, unsigned bytes);
544 unsigned bi_get_component_count(bi_instruction *ins, signed s);
545 uint16_t bi_bytemask_of_read_components(bi_instruction *ins, unsigned node);
546 uint64_t bi_get_immediate(bi_instruction *ins, unsigned index);
547 bool bi_writes_component(bi_instruction *ins, unsigned comp);
548 unsigned bi_writemask(bi_instruction *ins);
549
550 /* BIR passes */
551
552 void bi_lower_combine(bi_context *ctx, bi_block *block);
553 bool bi_opt_dead_code_eliminate(bi_context *ctx, bi_block *block);
554 void bi_schedule(bi_context *ctx);
555 void bi_register_allocate(bi_context *ctx);
556
557 /* Liveness */
558
559 void bi_compute_liveness(bi_context *ctx);
560 void bi_liveness_ins_update(uint16_t *live, bi_instruction *ins, unsigned max);
561 void bi_invalidate_liveness(bi_context *ctx);
562 bool bi_is_live_after(bi_context *ctx, bi_block *block, bi_instruction *start, int src);
563
564 /* Code emit */
565
566 void bi_pack(bi_context *ctx, struct util_dynarray *emission);
567
568 #endif