75dff07404ef22f964bf04163e8be0026ce86cba
[mesa.git] / src / broadcom / compiler / v3d_compiler.h
1 /*
2 * Copyright © 2016 Broadcom
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
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #ifndef V3D_COMPILER_H
25 #define V3D_COMPILER_H
26
27 #include <assert.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <stdbool.h>
31 #include <stdint.h>
32 #include <string.h>
33
34 #include "util/macros.h"
35 #include "common/v3d_debug.h"
36 #include "common/v3d_device_info.h"
37 #include "common/v3d_limits.h"
38 #include "compiler/nir/nir.h"
39 #include "util/list.h"
40 #include "util/u_math.h"
41
42 #include "qpu/qpu_instr.h"
43 #include "pipe/p_state.h"
44
45 struct nir_builder;
46
47 struct v3d_fs_inputs {
48 /**
49 * Array of the meanings of the VPM inputs this shader needs.
50 *
51 * It doesn't include those that aren't part of the VPM, like
52 * point/line coordinates.
53 */
54 struct v3d_varying_slot *input_slots;
55 uint32_t num_inputs;
56 };
57
58 enum qfile {
59 /** An unused source or destination register. */
60 QFILE_NULL,
61
62 /** A physical register, such as the W coordinate payload. */
63 QFILE_REG,
64 /** One of the regsiters for fixed function interactions. */
65 QFILE_MAGIC,
66
67 /**
68 * A virtual register, that will be allocated to actual accumulator
69 * or physical registers later.
70 */
71 QFILE_TEMP,
72 QFILE_UNIF,
73 QFILE_TLB,
74 QFILE_TLBU,
75
76 /**
77 * VPM reads use this with an index value to say what part of the VPM
78 * is being read.
79 */
80 QFILE_VPM,
81
82 /**
83 * Stores an immediate value in the index field that will be used
84 * directly by qpu_load_imm().
85 */
86 QFILE_LOAD_IMM,
87
88 /**
89 * Stores an immediate value in the index field that can be turned
90 * into a small immediate field by qpu_encode_small_immediate().
91 */
92 QFILE_SMALL_IMM,
93 };
94
95 /**
96 * A reference to a QPU register or a virtual temp register.
97 */
98 struct qreg {
99 enum qfile file;
100 uint32_t index;
101 };
102
103 static inline struct qreg vir_reg(enum qfile file, uint32_t index)
104 {
105 return (struct qreg){file, index};
106 }
107
108 static inline struct qreg vir_nop_reg(void)
109 {
110 return (struct qreg){QFILE_NULL, 0};
111 }
112
113 /**
114 * A reference to an actual register at the QPU level, for register
115 * allocation.
116 */
117 struct qpu_reg {
118 bool magic;
119 bool smimm;
120 int index;
121 };
122
123 struct qinst {
124 /** Entry in qblock->instructions */
125 struct list_head link;
126
127 /**
128 * The instruction being wrapped. Its condition codes, pack flags,
129 * signals, etc. will all be used, with just the register references
130 * being replaced by the contents of qinst->dst and qinst->src[].
131 */
132 struct v3d_qpu_instr qpu;
133
134 /* Pre-register-allocation references to src/dst registers */
135 struct qreg dst;
136 struct qreg src[3];
137 bool cond_is_exec_mask;
138 bool has_implicit_uniform;
139 bool is_last_thrsw;
140
141 /* After vir_to_qpu.c: If instr reads a uniform, which uniform from
142 * the uncompiled stream it is.
143 */
144 int uniform;
145 };
146
147 enum quniform_contents {
148 /**
149 * Indicates that a constant 32-bit value is copied from the program's
150 * uniform contents.
151 */
152 QUNIFORM_CONSTANT,
153 /**
154 * Indicates that the program's uniform contents are used as an index
155 * into the GL uniform storage.
156 */
157 QUNIFORM_UNIFORM,
158
159 /** @{
160 * Scaling factors from clip coordinates to relative to the viewport
161 * center.
162 *
163 * This is used by the coordinate and vertex shaders to produce the
164 * 32-bit entry consisting of 2 16-bit fields with 12.4 signed fixed
165 * point offsets from the viewport ccenter.
166 */
167 QUNIFORM_VIEWPORT_X_SCALE,
168 QUNIFORM_VIEWPORT_Y_SCALE,
169 /** @} */
170
171 QUNIFORM_VIEWPORT_Z_OFFSET,
172 QUNIFORM_VIEWPORT_Z_SCALE,
173
174 QUNIFORM_USER_CLIP_PLANE,
175
176 /**
177 * A reference to a V3D 3.x texture config parameter 0 uniform.
178 *
179 * This is a uniform implicitly loaded with a QPU_W_TMU* write, which
180 * defines texture type, miplevels, and such. It will be found as a
181 * parameter to the first QOP_TEX_[STRB] instruction in a sequence.
182 */
183 QUNIFORM_TEXTURE_CONFIG_P0_0,
184 QUNIFORM_TEXTURE_CONFIG_P0_1,
185 QUNIFORM_TEXTURE_CONFIG_P0_2,
186 QUNIFORM_TEXTURE_CONFIG_P0_3,
187 QUNIFORM_TEXTURE_CONFIG_P0_4,
188 QUNIFORM_TEXTURE_CONFIG_P0_5,
189 QUNIFORM_TEXTURE_CONFIG_P0_6,
190 QUNIFORM_TEXTURE_CONFIG_P0_7,
191 QUNIFORM_TEXTURE_CONFIG_P0_8,
192 QUNIFORM_TEXTURE_CONFIG_P0_9,
193 QUNIFORM_TEXTURE_CONFIG_P0_10,
194 QUNIFORM_TEXTURE_CONFIG_P0_11,
195 QUNIFORM_TEXTURE_CONFIG_P0_12,
196 QUNIFORM_TEXTURE_CONFIG_P0_13,
197 QUNIFORM_TEXTURE_CONFIG_P0_14,
198 QUNIFORM_TEXTURE_CONFIG_P0_15,
199 QUNIFORM_TEXTURE_CONFIG_P0_16,
200 QUNIFORM_TEXTURE_CONFIG_P0_17,
201 QUNIFORM_TEXTURE_CONFIG_P0_18,
202 QUNIFORM_TEXTURE_CONFIG_P0_19,
203 QUNIFORM_TEXTURE_CONFIG_P0_20,
204 QUNIFORM_TEXTURE_CONFIG_P0_21,
205 QUNIFORM_TEXTURE_CONFIG_P0_22,
206 QUNIFORM_TEXTURE_CONFIG_P0_23,
207 QUNIFORM_TEXTURE_CONFIG_P0_24,
208 QUNIFORM_TEXTURE_CONFIG_P0_25,
209 QUNIFORM_TEXTURE_CONFIG_P0_26,
210 QUNIFORM_TEXTURE_CONFIG_P0_27,
211 QUNIFORM_TEXTURE_CONFIG_P0_28,
212 QUNIFORM_TEXTURE_CONFIG_P0_29,
213 QUNIFORM_TEXTURE_CONFIG_P0_30,
214 QUNIFORM_TEXTURE_CONFIG_P0_31,
215 QUNIFORM_TEXTURE_CONFIG_P0_32,
216
217 /**
218 * A reference to a V3D 3.x texture config parameter 1 uniform.
219 *
220 * This is a uniform implicitly loaded with a QPU_W_TMU* write, which
221 * has the pointer to the indirect texture state. Our data[] field
222 * will have a packed p1 value, but the address field will be just
223 * which texture unit's texture should be referenced.
224 */
225 QUNIFORM_TEXTURE_CONFIG_P1,
226
227 /* A V3D 4.x texture config parameter. The high 8 bits will be
228 * which texture or sampler is being sampled, and the driver must
229 * replace the address field with the appropriate address.
230 */
231 QUNIFORM_TMU_CONFIG_P0,
232 QUNIFORM_TMU_CONFIG_P1,
233
234 QUNIFORM_IMAGE_TMU_CONFIG_P0,
235
236 QUNIFORM_TEXTURE_FIRST_LEVEL,
237
238 QUNIFORM_TEXTURE_WIDTH,
239 QUNIFORM_TEXTURE_HEIGHT,
240 QUNIFORM_TEXTURE_DEPTH,
241 QUNIFORM_TEXTURE_ARRAY_SIZE,
242 QUNIFORM_TEXTURE_LEVELS,
243
244 QUNIFORM_UBO_ADDR,
245
246 QUNIFORM_TEXRECT_SCALE_X,
247 QUNIFORM_TEXRECT_SCALE_Y,
248
249 /* Returns the base offset of the SSBO given by the data value. */
250 QUNIFORM_SSBO_OFFSET,
251
252 /* Returns the size of the SSBO given by the data value. */
253 QUNIFORM_GET_BUFFER_SIZE,
254
255 /* Sizes (in pixels) of a shader image given by the data value. */
256 QUNIFORM_IMAGE_WIDTH,
257 QUNIFORM_IMAGE_HEIGHT,
258 QUNIFORM_IMAGE_DEPTH,
259 QUNIFORM_IMAGE_ARRAY_SIZE,
260
261 QUNIFORM_ALPHA_REF,
262
263 /* Number of workgroups passed to glDispatchCompute in the dimension
264 * selected by the data value.
265 */
266 QUNIFORM_NUM_WORK_GROUPS,
267
268 /**
269 * Returns the the offset of the scratch buffer for register spilling.
270 */
271 QUNIFORM_SPILL_OFFSET,
272 QUNIFORM_SPILL_SIZE_PER_THREAD,
273
274 /**
275 * Returns the offset of the shared memory for compute shaders.
276 *
277 * This will be accessed using TMU general memory operations, so the
278 * L2T cache will effectively be the shared memory area.
279 */
280 QUNIFORM_SHARED_OFFSET,
281 };
282
283 static inline uint32_t v3d_tmu_config_data_create(uint32_t unit, uint32_t value)
284 {
285 return unit << 24 | value;
286 }
287
288 static inline uint32_t v3d_tmu_config_data_get_unit(uint32_t data)
289 {
290 return data >> 24;
291 }
292
293 static inline uint32_t v3d_tmu_config_data_get_value(uint32_t data)
294 {
295 return data & 0xffffff;
296 }
297
298 struct v3d_varying_slot {
299 uint8_t slot_and_component;
300 };
301
302 static inline struct v3d_varying_slot
303 v3d_slot_from_slot_and_component(uint8_t slot, uint8_t component)
304 {
305 assert(slot < 255 / 4);
306 return (struct v3d_varying_slot){ (slot << 2) + component };
307 }
308
309 static inline uint8_t v3d_slot_get_slot(struct v3d_varying_slot slot)
310 {
311 return slot.slot_and_component >> 2;
312 }
313
314 static inline uint8_t v3d_slot_get_component(struct v3d_varying_slot slot)
315 {
316 return slot.slot_and_component & 3;
317 }
318
319 struct v3d_ubo_range {
320 /**
321 * offset in bytes from the start of the ubo where this range is
322 * uploaded.
323 *
324 * Only set once used is set.
325 */
326 uint32_t dst_offset;
327
328 /**
329 * offset in bytes from the start of the gallium uniforms where the
330 * data comes from.
331 */
332 uint32_t src_offset;
333
334 /** size in bytes of this ubo range */
335 uint32_t size;
336 };
337
338 struct v3d_key {
339 void *shader_state;
340 struct {
341 uint8_t swizzle[4];
342 uint8_t return_size;
343 uint8_t return_channels;
344 bool clamp_s:1;
345 bool clamp_t:1;
346 bool clamp_r:1;
347 } tex[V3D_MAX_TEXTURE_SAMPLERS];
348 uint8_t ucp_enables;
349 };
350
351 struct v3d_fs_key {
352 struct v3d_key base;
353 bool depth_enabled;
354 bool is_points;
355 bool is_lines;
356 bool alpha_test;
357 bool point_coord_upper_left;
358 bool light_twoside;
359 bool msaa;
360 bool sample_coverage;
361 bool sample_alpha_to_coverage;
362 bool sample_alpha_to_one;
363 bool clamp_color;
364 bool shade_model_flat;
365 /* Mask of which color render targets are present. */
366 uint8_t cbufs;
367 uint8_t swap_color_rb;
368 /* Mask of which render targets need to be written as 32-bit floats */
369 uint8_t f32_color_rb;
370 /* Masks of which render targets need to be written as ints/uints.
371 * Used by gallium to work around lost information in TGSI.
372 */
373 uint8_t int_color_rb;
374 uint8_t uint_color_rb;
375 uint8_t alpha_test_func;
376 uint8_t logicop_func;
377 uint32_t point_sprite_mask;
378
379 struct pipe_rt_blend_state blend;
380 };
381
382 struct v3d_vs_key {
383 struct v3d_key base;
384
385 struct v3d_varying_slot fs_inputs[V3D_MAX_FS_INPUTS];
386 uint8_t num_fs_inputs;
387
388 bool is_coord;
389 bool per_vertex_point_size;
390 bool clamp_color;
391 };
392
393 /** A basic block of VIR intructions. */
394 struct qblock {
395 struct list_head link;
396
397 struct list_head instructions;
398
399 struct set *predecessors;
400 struct qblock *successors[2];
401
402 int index;
403
404 /* Instruction IPs for the first and last instruction of the block.
405 * Set by qpu_schedule.c.
406 */
407 uint32_t start_qpu_ip;
408 uint32_t end_qpu_ip;
409
410 /* Instruction IP for the branch instruction of the block. Set by
411 * qpu_schedule.c.
412 */
413 uint32_t branch_qpu_ip;
414
415 /** Offset within the uniform stream at the start of the block. */
416 uint32_t start_uniform;
417 /** Offset within the uniform stream of the branch instruction */
418 uint32_t branch_uniform;
419
420 /** @{ used by v3d_vir_live_variables.c */
421 BITSET_WORD *def;
422 BITSET_WORD *defin;
423 BITSET_WORD *defout;
424 BITSET_WORD *use;
425 BITSET_WORD *live_in;
426 BITSET_WORD *live_out;
427 int start_ip, end_ip;
428 /** @} */
429 };
430
431 /** Which util/list.h add mode we should use when inserting an instruction. */
432 enum vir_cursor_mode {
433 vir_cursor_add,
434 vir_cursor_addtail,
435 };
436
437 /**
438 * Tracking structure for where new instructions should be inserted. Create
439 * with one of the vir_after_inst()-style helper functions.
440 *
441 * This does not protect against removal of the block or instruction, so we
442 * have an assert in instruction removal to try to catch it.
443 */
444 struct vir_cursor {
445 enum vir_cursor_mode mode;
446 struct list_head *link;
447 };
448
449 static inline struct vir_cursor
450 vir_before_inst(struct qinst *inst)
451 {
452 return (struct vir_cursor){ vir_cursor_addtail, &inst->link };
453 }
454
455 static inline struct vir_cursor
456 vir_after_inst(struct qinst *inst)
457 {
458 return (struct vir_cursor){ vir_cursor_add, &inst->link };
459 }
460
461 static inline struct vir_cursor
462 vir_before_block(struct qblock *block)
463 {
464 return (struct vir_cursor){ vir_cursor_add, &block->instructions };
465 }
466
467 static inline struct vir_cursor
468 vir_after_block(struct qblock *block)
469 {
470 return (struct vir_cursor){ vir_cursor_addtail, &block->instructions };
471 }
472
473 /**
474 * Compiler state saved across compiler invocations, for any expensive global
475 * setup.
476 */
477 struct v3d_compiler {
478 const struct v3d_device_info *devinfo;
479 struct ra_regs *regs;
480 unsigned int reg_class_phys[3];
481 unsigned int reg_class_phys_or_acc[3];
482 };
483
484 struct v3d_compile {
485 const struct v3d_device_info *devinfo;
486 nir_shader *s;
487 nir_function_impl *impl;
488 struct exec_list *cf_node_list;
489 const struct v3d_compiler *compiler;
490
491 void (*debug_output)(const char *msg,
492 void *debug_output_data);
493 void *debug_output_data;
494
495 /**
496 * Mapping from nir_register * or nir_ssa_def * to array of struct
497 * qreg for the values.
498 */
499 struct hash_table *def_ht;
500
501 /* For each temp, the instruction generating its value. */
502 struct qinst **defs;
503 uint32_t defs_array_size;
504
505 /**
506 * Inputs to the shader, arranged by TGSI declaration order.
507 *
508 * Not all fragment shader QFILE_VARY reads are present in this array.
509 */
510 struct qreg *inputs;
511 struct qreg *outputs;
512 bool msaa_per_sample_output;
513 struct qreg color_reads[V3D_MAX_SAMPLES];
514 struct qreg sample_colors[V3D_MAX_SAMPLES];
515 uint32_t inputs_array_size;
516 uint32_t outputs_array_size;
517 uint32_t uniforms_array_size;
518
519 /* Booleans for whether the corresponding QFILE_VARY[i] is
520 * flat-shaded. This includes gl_FragColor flat-shading, which is
521 * customized based on the shademodel_flat shader key.
522 */
523 uint32_t flat_shade_flags[BITSET_WORDS(V3D_MAX_FS_INPUTS)];
524
525 uint32_t noperspective_flags[BITSET_WORDS(V3D_MAX_FS_INPUTS)];
526
527 uint32_t centroid_flags[BITSET_WORDS(V3D_MAX_FS_INPUTS)];
528
529 bool uses_center_w;
530 bool writes_z;
531
532 struct v3d_ubo_range *ubo_ranges;
533 bool *ubo_range_used;
534 uint32_t ubo_ranges_array_size;
535 /** Number of uniform areas tracked in ubo_ranges. */
536 uint32_t num_ubo_ranges;
537 uint32_t next_ubo_dst_offset;
538
539 /* State for whether we're executing on each channel currently. 0 if
540 * yes, otherwise a block number + 1 that the channel jumped to.
541 */
542 struct qreg execute;
543 bool in_control_flow;
544
545 struct qreg line_x, point_x, point_y;
546
547 /**
548 * Instance ID, which comes in before the vertex attribute payload if
549 * the shader record requests it.
550 */
551 struct qreg iid;
552
553 /**
554 * Vertex ID, which comes in before the vertex attribute payload
555 * (after Instance ID) if the shader record requests it.
556 */
557 struct qreg vid;
558
559 /* Fragment shader payload regs. */
560 struct qreg payload_w, payload_w_centroid, payload_z;
561
562 struct qreg cs_payload[2];
563 struct qreg cs_shared_offset;
564 int local_invocation_index_bits;
565
566 uint8_t vattr_sizes[V3D_MAX_VS_INPUTS / 4];
567 uint32_t num_vpm_writes;
568
569 /* Size in bytes of registers that have been spilled. This is how much
570 * space needs to be available in the spill BO per thread per QPU.
571 */
572 uint32_t spill_size;
573 /* Shader-db stats */
574 uint32_t spills, fills, loops;
575 /**
576 * Register spilling's per-thread base address, shared between each
577 * spill/fill's addressing calculations.
578 */
579 struct qreg spill_base;
580 /* Bit vector of which temps may be spilled */
581 BITSET_WORD *spillable;
582
583 /**
584 * Array of the VARYING_SLOT_* of all FS QFILE_VARY reads.
585 *
586 * This includes those that aren't part of the VPM varyings, like
587 * point/line coordinates.
588 */
589 struct v3d_varying_slot input_slots[V3D_MAX_FS_INPUTS];
590
591 /**
592 * An entry per outputs[] in the VS indicating what the VARYING_SLOT_*
593 * of the output is. Used to emit from the VS in the order that the
594 * FS needs.
595 */
596 struct v3d_varying_slot *output_slots;
597
598 struct pipe_shader_state *shader_state;
599 struct v3d_key *key;
600 struct v3d_fs_key *fs_key;
601 struct v3d_vs_key *vs_key;
602
603 /* Live ranges of temps. */
604 int *temp_start, *temp_end;
605 bool live_intervals_valid;
606
607 uint32_t *uniform_data;
608 enum quniform_contents *uniform_contents;
609 uint32_t uniform_array_size;
610 uint32_t num_uniforms;
611 uint32_t num_outputs;
612 uint32_t output_position_index;
613 nir_variable *output_color_var[4];
614 uint32_t output_point_size_index;
615 uint32_t output_sample_mask_index;
616
617 struct qreg undef;
618 uint32_t num_temps;
619
620 struct vir_cursor cursor;
621 struct list_head blocks;
622 int next_block_index;
623 struct qblock *cur_block;
624 struct qblock *loop_cont_block;
625 struct qblock *loop_break_block;
626
627 uint64_t *qpu_insts;
628 uint32_t qpu_inst_count;
629 uint32_t qpu_inst_size;
630
631 /* For the FS, the number of varying inputs not counting the
632 * point/line varyings payload
633 */
634 uint32_t num_inputs;
635
636 /**
637 * Number of inputs from num_inputs remaining to be queued to the read
638 * FIFO in the VS/CS.
639 */
640 uint32_t num_inputs_remaining;
641
642 /* Number of inputs currently in the read FIFO for the VS/CS */
643 uint32_t num_inputs_in_fifo;
644
645 /** Next offset in the VPM to read from in the VS/CS */
646 uint32_t vpm_read_offset;
647
648 uint32_t program_id;
649 uint32_t variant_id;
650
651 /* Set to compile program in in 1x, 2x, or 4x threaded mode, where
652 * SIG_THREAD_SWITCH is used to hide texturing latency at the cost of
653 * limiting ourselves to the part of the physical reg space.
654 *
655 * On V3D 3.x, 2x or 4x divide the physical reg space by 2x or 4x. On
656 * V3D 4.x, all shaders are 2x threaded, and 4x only divides the
657 * physical reg space in half.
658 */
659 uint8_t threads;
660 struct qinst *last_thrsw;
661 bool last_thrsw_at_top_level;
662
663 bool failed;
664 };
665
666 struct v3d_uniform_list {
667 enum quniform_contents *contents;
668 uint32_t *data;
669 uint32_t count;
670 };
671
672 struct v3d_prog_data {
673 struct v3d_uniform_list uniforms;
674
675 struct v3d_ubo_range *ubo_ranges;
676 uint32_t num_ubo_ranges;
677 uint32_t ubo_size;
678 uint32_t spill_size;
679
680 uint8_t threads;
681
682 /* For threads > 1, whether the program should be dispatched in the
683 * after-final-THRSW state.
684 */
685 bool single_seg;
686 };
687
688 struct v3d_vs_prog_data {
689 struct v3d_prog_data base;
690
691 bool uses_iid, uses_vid;
692
693 /* Number of components read from each vertex attribute. */
694 uint8_t vattr_sizes[V3D_MAX_VS_INPUTS / 4];
695
696 /* Total number of components read, for the shader state record. */
697 uint32_t vpm_input_size;
698
699 /* Total number of components written, for the shader state record. */
700 uint32_t vpm_output_size;
701
702 /* Set if there should be separate VPM segments for input and output.
703 * If unset, vpm_input_size will be 0.
704 */
705 bool separate_segments;
706
707 /* Value to be programmed in VCM_CACHE_SIZE. */
708 uint8_t vcm_cache_size;
709 };
710
711 struct v3d_fs_prog_data {
712 struct v3d_prog_data base;
713
714 struct v3d_varying_slot input_slots[V3D_MAX_FS_INPUTS];
715
716 /* Array of flat shade flags.
717 *
718 * Each entry is only 24 bits (high 8 bits 0), to match the hardware
719 * packet layout.
720 */
721 uint32_t flat_shade_flags[((V3D_MAX_FS_INPUTS - 1) / 24) + 1];
722
723 uint32_t noperspective_flags[((V3D_MAX_FS_INPUTS - 1) / 24) + 1];
724
725 uint32_t centroid_flags[((V3D_MAX_FS_INPUTS - 1) / 24) + 1];
726
727 uint8_t num_inputs;
728 bool writes_z;
729 bool disable_ez;
730 bool uses_center_w;
731 };
732
733 /* Special nir_load_input intrinsic index for loading the current TLB
734 * destination color.
735 */
736 #define V3D_NIR_TLB_COLOR_READ_INPUT 2000000000
737
738 #define V3D_NIR_MS_MASK_OUTPUT 2000000000
739
740 extern const nir_shader_compiler_options v3d_nir_options;
741
742 const struct v3d_compiler *v3d_compiler_init(const struct v3d_device_info *devinfo);
743 void v3d_compiler_free(const struct v3d_compiler *compiler);
744 void v3d_optimize_nir(struct nir_shader *s);
745
746 uint64_t *v3d_compile(const struct v3d_compiler *compiler,
747 struct v3d_key *key,
748 struct v3d_prog_data **prog_data,
749 nir_shader *s,
750 void (*debug_output)(const char *msg,
751 void *debug_output_data),
752 void *debug_output_data,
753 int program_id, int variant_id,
754 uint32_t *final_assembly_size);
755
756 void v3d_nir_to_vir(struct v3d_compile *c);
757
758 void vir_compile_destroy(struct v3d_compile *c);
759 const char *vir_get_stage_name(struct v3d_compile *c);
760 struct qblock *vir_new_block(struct v3d_compile *c);
761 void vir_set_emit_block(struct v3d_compile *c, struct qblock *block);
762 void vir_link_blocks(struct qblock *predecessor, struct qblock *successor);
763 struct qblock *vir_entry_block(struct v3d_compile *c);
764 struct qblock *vir_exit_block(struct v3d_compile *c);
765 struct qinst *vir_add_inst(enum v3d_qpu_add_op op, struct qreg dst,
766 struct qreg src0, struct qreg src1);
767 struct qinst *vir_mul_inst(enum v3d_qpu_mul_op op, struct qreg dst,
768 struct qreg src0, struct qreg src1);
769 struct qinst *vir_branch_inst(enum v3d_qpu_branch_cond cond, struct qreg src0);
770 void vir_remove_instruction(struct v3d_compile *c, struct qinst *qinst);
771 struct qreg vir_uniform(struct v3d_compile *c,
772 enum quniform_contents contents,
773 uint32_t data);
774 void vir_schedule_instructions(struct v3d_compile *c);
775 struct v3d_qpu_instr v3d_qpu_nop(void);
776
777 struct qreg vir_emit_def(struct v3d_compile *c, struct qinst *inst);
778 struct qinst *vir_emit_nondef(struct v3d_compile *c, struct qinst *inst);
779 void vir_set_cond(struct qinst *inst, enum v3d_qpu_cond cond);
780 void vir_set_pf(struct qinst *inst, enum v3d_qpu_pf pf);
781 void vir_set_uf(struct qinst *inst, enum v3d_qpu_uf uf);
782 void vir_set_unpack(struct qinst *inst, int src,
783 enum v3d_qpu_input_unpack unpack);
784
785 struct qreg vir_get_temp(struct v3d_compile *c);
786 void vir_emit_last_thrsw(struct v3d_compile *c);
787 void vir_calculate_live_intervals(struct v3d_compile *c);
788 bool vir_has_implicit_uniform(struct qinst *inst);
789 int vir_get_implicit_uniform_src(struct qinst *inst);
790 int vir_get_non_sideband_nsrc(struct qinst *inst);
791 int vir_get_nsrc(struct qinst *inst);
792 bool vir_has_side_effects(struct v3d_compile *c, struct qinst *inst);
793 bool vir_get_add_op(struct qinst *inst, enum v3d_qpu_add_op *op);
794 bool vir_get_mul_op(struct qinst *inst, enum v3d_qpu_mul_op *op);
795 bool vir_is_raw_mov(struct qinst *inst);
796 bool vir_is_tex(struct qinst *inst);
797 bool vir_is_add(struct qinst *inst);
798 bool vir_is_mul(struct qinst *inst);
799 bool vir_writes_r3(const struct v3d_device_info *devinfo, struct qinst *inst);
800 bool vir_writes_r4(const struct v3d_device_info *devinfo, struct qinst *inst);
801 struct qreg vir_follow_movs(struct v3d_compile *c, struct qreg reg);
802 uint8_t vir_channels_written(struct qinst *inst);
803 struct qreg ntq_get_src(struct v3d_compile *c, nir_src src, int i);
804 void ntq_store_dest(struct v3d_compile *c, nir_dest *dest, int chan,
805 struct qreg result);
806 void vir_emit_thrsw(struct v3d_compile *c);
807
808 void vir_dump(struct v3d_compile *c);
809 void vir_dump_inst(struct v3d_compile *c, struct qinst *inst);
810 void vir_dump_uniform(enum quniform_contents contents, uint32_t data);
811
812 void vir_validate(struct v3d_compile *c);
813
814 void vir_optimize(struct v3d_compile *c);
815 bool vir_opt_algebraic(struct v3d_compile *c);
816 bool vir_opt_constant_folding(struct v3d_compile *c);
817 bool vir_opt_copy_propagate(struct v3d_compile *c);
818 bool vir_opt_dead_code(struct v3d_compile *c);
819 bool vir_opt_peephole_sf(struct v3d_compile *c);
820 bool vir_opt_small_immediates(struct v3d_compile *c);
821 bool vir_opt_vpm(struct v3d_compile *c);
822 void v3d_nir_lower_blend(nir_shader *s, struct v3d_compile *c);
823 void v3d_nir_lower_io(nir_shader *s, struct v3d_compile *c);
824 void v3d_nir_lower_txf_ms(nir_shader *s, struct v3d_compile *c);
825 void v3d_nir_lower_image_load_store(nir_shader *s);
826 void vir_lower_uniforms(struct v3d_compile *c);
827
828 void v3d33_vir_vpm_read_setup(struct v3d_compile *c, int num_components);
829 void v3d33_vir_vpm_write_setup(struct v3d_compile *c);
830 void v3d33_vir_emit_tex(struct v3d_compile *c, nir_tex_instr *instr);
831 void v3d40_vir_emit_tex(struct v3d_compile *c, nir_tex_instr *instr);
832 void v3d40_vir_emit_image_load_store(struct v3d_compile *c,
833 nir_intrinsic_instr *instr);
834
835 void v3d_vir_to_qpu(struct v3d_compile *c, struct qpu_reg *temp_registers);
836 uint32_t v3d_qpu_schedule_instructions(struct v3d_compile *c);
837 void qpu_validate(struct v3d_compile *c);
838 struct qpu_reg *v3d_register_allocate(struct v3d_compile *c, bool *spilled);
839 bool vir_init_reg_sets(struct v3d_compiler *compiler);
840
841 bool v3d_gl_format_is_return_32(GLenum format);
842
843 static inline bool
844 quniform_contents_is_texture_p0(enum quniform_contents contents)
845 {
846 return (contents >= QUNIFORM_TEXTURE_CONFIG_P0_0 &&
847 contents < (QUNIFORM_TEXTURE_CONFIG_P0_0 +
848 V3D_MAX_TEXTURE_SAMPLERS));
849 }
850
851 static inline bool
852 vir_in_nonuniform_control_flow(struct v3d_compile *c)
853 {
854 return c->execute.file != QFILE_NULL;
855 }
856
857 static inline struct qreg
858 vir_uniform_ui(struct v3d_compile *c, uint32_t ui)
859 {
860 return vir_uniform(c, QUNIFORM_CONSTANT, ui);
861 }
862
863 static inline struct qreg
864 vir_uniform_f(struct v3d_compile *c, float f)
865 {
866 return vir_uniform(c, QUNIFORM_CONSTANT, fui(f));
867 }
868
869 #define VIR_ALU0(name, vir_inst, op) \
870 static inline struct qreg \
871 vir_##name(struct v3d_compile *c) \
872 { \
873 return vir_emit_def(c, vir_inst(op, c->undef, \
874 c->undef, c->undef)); \
875 } \
876 static inline struct qinst * \
877 vir_##name##_dest(struct v3d_compile *c, struct qreg dest) \
878 { \
879 return vir_emit_nondef(c, vir_inst(op, dest, \
880 c->undef, c->undef)); \
881 }
882
883 #define VIR_ALU1(name, vir_inst, op) \
884 static inline struct qreg \
885 vir_##name(struct v3d_compile *c, struct qreg a) \
886 { \
887 return vir_emit_def(c, vir_inst(op, c->undef, \
888 a, c->undef)); \
889 } \
890 static inline struct qinst * \
891 vir_##name##_dest(struct v3d_compile *c, struct qreg dest, \
892 struct qreg a) \
893 { \
894 return vir_emit_nondef(c, vir_inst(op, dest, a, \
895 c->undef)); \
896 }
897
898 #define VIR_ALU2(name, vir_inst, op) \
899 static inline struct qreg \
900 vir_##name(struct v3d_compile *c, struct qreg a, struct qreg b) \
901 { \
902 return vir_emit_def(c, vir_inst(op, c->undef, a, b)); \
903 } \
904 static inline struct qinst * \
905 vir_##name##_dest(struct v3d_compile *c, struct qreg dest, \
906 struct qreg a, struct qreg b) \
907 { \
908 return vir_emit_nondef(c, vir_inst(op, dest, a, b)); \
909 }
910
911 #define VIR_NODST_0(name, vir_inst, op) \
912 static inline struct qinst * \
913 vir_##name(struct v3d_compile *c) \
914 { \
915 return vir_emit_nondef(c, vir_inst(op, c->undef, \
916 c->undef, c->undef)); \
917 }
918
919 #define VIR_NODST_1(name, vir_inst, op) \
920 static inline struct qinst * \
921 vir_##name(struct v3d_compile *c, struct qreg a) \
922 { \
923 return vir_emit_nondef(c, vir_inst(op, c->undef, \
924 a, c->undef)); \
925 }
926
927 #define VIR_NODST_2(name, vir_inst, op) \
928 static inline struct qinst * \
929 vir_##name(struct v3d_compile *c, struct qreg a, struct qreg b) \
930 { \
931 return vir_emit_nondef(c, vir_inst(op, c->undef, \
932 a, b)); \
933 }
934
935 #define VIR_SFU(name) \
936 static inline struct qreg \
937 vir_##name(struct v3d_compile *c, struct qreg a) \
938 { \
939 if (c->devinfo->ver >= 41) { \
940 return vir_emit_def(c, vir_add_inst(V3D_QPU_A_##name, \
941 c->undef, \
942 a, c->undef)); \
943 } else { \
944 vir_FMOV_dest(c, vir_reg(QFILE_MAGIC, V3D_QPU_WADDR_##name), a); \
945 return vir_FMOV(c, vir_reg(QFILE_MAGIC, V3D_QPU_WADDR_R4)); \
946 } \
947 } \
948 static inline struct qinst * \
949 vir_##name##_dest(struct v3d_compile *c, struct qreg dest, \
950 struct qreg a) \
951 { \
952 if (c->devinfo->ver >= 41) { \
953 return vir_emit_nondef(c, vir_add_inst(V3D_QPU_A_##name, \
954 dest, \
955 a, c->undef)); \
956 } else { \
957 vir_FMOV_dest(c, vir_reg(QFILE_MAGIC, V3D_QPU_WADDR_##name), a); \
958 return vir_FMOV_dest(c, dest, vir_reg(QFILE_MAGIC, V3D_QPU_WADDR_R4)); \
959 } \
960 }
961
962 #define VIR_A_ALU2(name) VIR_ALU2(name, vir_add_inst, V3D_QPU_A_##name)
963 #define VIR_M_ALU2(name) VIR_ALU2(name, vir_mul_inst, V3D_QPU_M_##name)
964 #define VIR_A_ALU1(name) VIR_ALU1(name, vir_add_inst, V3D_QPU_A_##name)
965 #define VIR_M_ALU1(name) VIR_ALU1(name, vir_mul_inst, V3D_QPU_M_##name)
966 #define VIR_A_ALU0(name) VIR_ALU0(name, vir_add_inst, V3D_QPU_A_##name)
967 #define VIR_M_ALU0(name) VIR_ALU0(name, vir_mul_inst, V3D_QPU_M_##name)
968 #define VIR_A_NODST_2(name) VIR_NODST_2(name, vir_add_inst, V3D_QPU_A_##name)
969 #define VIR_M_NODST_2(name) VIR_NODST_2(name, vir_mul_inst, V3D_QPU_M_##name)
970 #define VIR_A_NODST_1(name) VIR_NODST_1(name, vir_add_inst, V3D_QPU_A_##name)
971 #define VIR_M_NODST_1(name) VIR_NODST_1(name, vir_mul_inst, V3D_QPU_M_##name)
972 #define VIR_A_NODST_0(name) VIR_NODST_0(name, vir_add_inst, V3D_QPU_A_##name)
973
974 VIR_A_ALU2(FADD)
975 VIR_A_ALU2(VFPACK)
976 VIR_A_ALU2(FSUB)
977 VIR_A_ALU2(FMIN)
978 VIR_A_ALU2(FMAX)
979
980 VIR_A_ALU2(ADD)
981 VIR_A_ALU2(SUB)
982 VIR_A_ALU2(SHL)
983 VIR_A_ALU2(SHR)
984 VIR_A_ALU2(ASR)
985 VIR_A_ALU2(ROR)
986 VIR_A_ALU2(MIN)
987 VIR_A_ALU2(MAX)
988 VIR_A_ALU2(UMIN)
989 VIR_A_ALU2(UMAX)
990 VIR_A_ALU2(AND)
991 VIR_A_ALU2(OR)
992 VIR_A_ALU2(XOR)
993 VIR_A_ALU2(VADD)
994 VIR_A_ALU2(VSUB)
995 VIR_A_NODST_2(STVPMV)
996 VIR_A_ALU1(NOT)
997 VIR_A_ALU1(NEG)
998 VIR_A_ALU1(FLAPUSH)
999 VIR_A_ALU1(FLBPUSH)
1000 VIR_A_ALU1(FLPOP)
1001 VIR_A_ALU1(SETMSF)
1002 VIR_A_ALU1(SETREVF)
1003 VIR_A_ALU0(TIDX)
1004 VIR_A_ALU0(EIDX)
1005 VIR_A_ALU1(LDVPMV_IN)
1006 VIR_A_ALU1(LDVPMV_OUT)
1007 VIR_A_ALU0(TMUWT)
1008
1009 VIR_A_ALU0(FXCD)
1010 VIR_A_ALU0(XCD)
1011 VIR_A_ALU0(FYCD)
1012 VIR_A_ALU0(YCD)
1013 VIR_A_ALU0(MSF)
1014 VIR_A_ALU0(REVF)
1015 VIR_A_ALU0(BARRIERID)
1016 VIR_A_NODST_1(VPMSETUP)
1017 VIR_A_NODST_0(VPMWT)
1018 VIR_A_ALU2(FCMP)
1019 VIR_A_ALU2(VFMAX)
1020
1021 VIR_A_ALU1(FROUND)
1022 VIR_A_ALU1(FTOIN)
1023 VIR_A_ALU1(FTRUNC)
1024 VIR_A_ALU1(FTOIZ)
1025 VIR_A_ALU1(FFLOOR)
1026 VIR_A_ALU1(FTOUZ)
1027 VIR_A_ALU1(FCEIL)
1028 VIR_A_ALU1(FTOC)
1029
1030 VIR_A_ALU1(FDX)
1031 VIR_A_ALU1(FDY)
1032
1033 VIR_A_ALU1(ITOF)
1034 VIR_A_ALU1(CLZ)
1035 VIR_A_ALU1(UTOF)
1036
1037 VIR_M_ALU2(UMUL24)
1038 VIR_M_ALU2(FMUL)
1039 VIR_M_ALU2(SMUL24)
1040 VIR_M_NODST_2(MULTOP)
1041
1042 VIR_M_ALU1(MOV)
1043 VIR_M_ALU1(FMOV)
1044
1045 VIR_SFU(RECIP)
1046 VIR_SFU(RSQRT)
1047 VIR_SFU(EXP)
1048 VIR_SFU(LOG)
1049 VIR_SFU(SIN)
1050 VIR_SFU(RSQRT2)
1051
1052 static inline struct qinst *
1053 vir_MOV_cond(struct v3d_compile *c, enum v3d_qpu_cond cond,
1054 struct qreg dest, struct qreg src)
1055 {
1056 struct qinst *mov = vir_MOV_dest(c, dest, src);
1057 vir_set_cond(mov, cond);
1058 return mov;
1059 }
1060
1061 static inline struct qreg
1062 vir_SEL(struct v3d_compile *c, enum v3d_qpu_cond cond,
1063 struct qreg src0, struct qreg src1)
1064 {
1065 struct qreg t = vir_get_temp(c);
1066 vir_MOV_dest(c, t, src1);
1067 vir_MOV_cond(c, cond, t, src0);
1068 return t;
1069 }
1070
1071 static inline struct qinst *
1072 vir_NOP(struct v3d_compile *c)
1073 {
1074 return vir_emit_nondef(c, vir_add_inst(V3D_QPU_A_NOP,
1075 c->undef, c->undef, c->undef));
1076 }
1077
1078 static inline struct qreg
1079 vir_LDTMU(struct v3d_compile *c)
1080 {
1081 if (c->devinfo->ver >= 41) {
1082 struct qinst *ldtmu = vir_add_inst(V3D_QPU_A_NOP, c->undef,
1083 c->undef, c->undef);
1084 ldtmu->qpu.sig.ldtmu = true;
1085
1086 return vir_emit_def(c, ldtmu);
1087 } else {
1088 vir_NOP(c)->qpu.sig.ldtmu = true;
1089 return vir_MOV(c, vir_reg(QFILE_MAGIC, V3D_QPU_WADDR_R4));
1090 }
1091 }
1092
1093 static inline struct qreg
1094 vir_UMUL(struct v3d_compile *c, struct qreg src0, struct qreg src1)
1095 {
1096 vir_MULTOP(c, src0, src1);
1097 return vir_UMUL24(c, src0, src1);
1098 }
1099
1100 /*
1101 static inline struct qreg
1102 vir_LOAD_IMM(struct v3d_compile *c, uint32_t val)
1103 {
1104 return vir_emit_def(c, vir_inst(QOP_LOAD_IMM, c->undef,
1105 vir_reg(QFILE_LOAD_IMM, val), c->undef));
1106 }
1107
1108 static inline struct qreg
1109 vir_LOAD_IMM_U2(struct v3d_compile *c, uint32_t val)
1110 {
1111 return vir_emit_def(c, vir_inst(QOP_LOAD_IMM_U2, c->undef,
1112 vir_reg(QFILE_LOAD_IMM, val),
1113 c->undef));
1114 }
1115 static inline struct qreg
1116 vir_LOAD_IMM_I2(struct v3d_compile *c, uint32_t val)
1117 {
1118 return vir_emit_def(c, vir_inst(QOP_LOAD_IMM_I2, c->undef,
1119 vir_reg(QFILE_LOAD_IMM, val),
1120 c->undef));
1121 }
1122 */
1123
1124 static inline struct qinst *
1125 vir_BRANCH(struct v3d_compile *c, enum v3d_qpu_branch_cond cond)
1126 {
1127 /* The actual uniform_data value will be set at scheduling time */
1128 return vir_emit_nondef(c, vir_branch_inst(cond, vir_uniform_ui(c, 0)));
1129 }
1130
1131 #define vir_for_each_block(block, c) \
1132 list_for_each_entry(struct qblock, block, &c->blocks, link)
1133
1134 #define vir_for_each_block_rev(block, c) \
1135 list_for_each_entry_rev(struct qblock, block, &c->blocks, link)
1136
1137 /* Loop over the non-NULL members of the successors array. */
1138 #define vir_for_each_successor(succ, block) \
1139 for (struct qblock *succ = block->successors[0]; \
1140 succ != NULL; \
1141 succ = (succ == block->successors[1] ? NULL : \
1142 block->successors[1]))
1143
1144 #define vir_for_each_inst(inst, block) \
1145 list_for_each_entry(struct qinst, inst, &block->instructions, link)
1146
1147 #define vir_for_each_inst_rev(inst, block) \
1148 list_for_each_entry_rev(struct qinst, inst, &block->instructions, link)
1149
1150 #define vir_for_each_inst_safe(inst, block) \
1151 list_for_each_entry_safe(struct qinst, inst, &block->instructions, link)
1152
1153 #define vir_for_each_inst_inorder(inst, c) \
1154 vir_for_each_block(_block, c) \
1155 vir_for_each_inst(inst, _block)
1156
1157 #define vir_for_each_inst_inorder_safe(inst, c) \
1158 vir_for_each_block(_block, c) \
1159 vir_for_each_inst_safe(inst, _block)
1160
1161 #endif /* V3D_COMPILER_H */