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