freedreno/ir3: re-work assembler API
[mesa.git] / src / freedreno / ir3 / ir3_shader.h
1 /*
2 * Copyright (C) 2014 Rob Clark <robclark@freedesktop.org>
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:
24 * Rob Clark <robclark@freedesktop.org>
25 */
26
27 #ifndef IR3_SHADER_H_
28 #define IR3_SHADER_H_
29
30 #include <stdio.h>
31
32 #include "c11/threads.h"
33 #include "compiler/shader_enums.h"
34 #include "compiler/nir/nir.h"
35 #include "util/bitscan.h"
36
37 #include "ir3.h"
38
39 struct glsl_type;
40
41 /* driver param indices: */
42 enum ir3_driver_param {
43 /* compute shader driver params: */
44 IR3_DP_NUM_WORK_GROUPS_X = 0,
45 IR3_DP_NUM_WORK_GROUPS_Y = 1,
46 IR3_DP_NUM_WORK_GROUPS_Z = 2,
47 IR3_DP_LOCAL_GROUP_SIZE_X = 4,
48 IR3_DP_LOCAL_GROUP_SIZE_Y = 5,
49 IR3_DP_LOCAL_GROUP_SIZE_Z = 6,
50 /* NOTE: gl_NumWorkGroups should be vec4 aligned because
51 * glDispatchComputeIndirect() needs to load these from
52 * the info->indirect buffer. Keep that in mind when/if
53 * adding any addition CS driver params.
54 */
55 IR3_DP_CS_COUNT = 8, /* must be aligned to vec4 */
56
57 /* vertex shader driver params: */
58 IR3_DP_VTXID_BASE = 0,
59 IR3_DP_VTXCNT_MAX = 1,
60 IR3_DP_INSTID_BASE = 2,
61 /* user-clip-plane components, up to 8x vec4's: */
62 IR3_DP_UCP0_X = 4,
63 /* .... */
64 IR3_DP_UCP7_W = 35,
65 IR3_DP_VS_COUNT = 36 /* must be aligned to vec4 */
66 };
67
68 #define IR3_MAX_SHADER_BUFFERS 32
69 #define IR3_MAX_SHADER_IMAGES 32
70 #define IR3_MAX_SO_BUFFERS 4
71 #define IR3_MAX_SO_STREAMS 4
72 #define IR3_MAX_SO_OUTPUTS 64
73 #define IR3_MAX_UBO_PUSH_RANGES 32
74
75
76 /**
77 * Describes the layout of shader consts. This includes:
78 * + User consts + driver lowered UBO ranges
79 * + SSBO sizes
80 * + Image sizes/dimensions
81 * + Driver params (ie. IR3_DP_*)
82 * + TFBO addresses (for generations that do not have hardware streamout)
83 * + Lowered immediates
84 *
85 * For consts needed to pass internal values to shader which may or may not
86 * be required, rather than allocating worst-case const space, we scan the
87 * shader and allocate consts as-needed:
88 *
89 * + SSBO sizes: only needed if shader has a get_buffer_size intrinsic
90 * for a given SSBO
91 *
92 * + Image dimensions: needed to calculate pixel offset, but only for
93 * images that have a image_store intrinsic
94 *
95 * Layout of constant registers, each section aligned to vec4. Note
96 * that pointer size (ubo, etc) changes depending on generation.
97 *
98 * user consts
99 * UBO addresses
100 * SSBO sizes
101 * if (vertex shader) {
102 * driver params (IR3_DP_*)
103 * if (stream_output.num_outputs > 0)
104 * stream-out addresses
105 * } else if (compute_shader) {
106 * driver params (IR3_DP_*)
107 * }
108 * immediates
109 *
110 * Immediates go last mostly because they are inserted in the CP pass
111 * after the nir -> ir3 frontend.
112 *
113 * Note UBO size in bytes should be aligned to vec4
114 */
115 struct ir3_const_state {
116 unsigned num_ubos;
117 unsigned num_reserved_user_consts;
118 unsigned num_driver_params; /* scalar */
119
120 struct {
121 /* user const start at zero */
122 unsigned ubo;
123 /* NOTE that a3xx might need a section for SSBO addresses too */
124 unsigned ssbo_sizes;
125 unsigned image_dims;
126 unsigned driver_param;
127 unsigned tfbo;
128 unsigned primitive_param;
129 unsigned primitive_map;
130 unsigned immediate;
131 } offsets;
132
133 struct {
134 uint32_t mask; /* bitmask of SSBOs that have get_buffer_size */
135 uint32_t count; /* number of consts allocated */
136 /* one const allocated per SSBO which has get_buffer_size,
137 * ssbo_sizes.off[ssbo_id] is offset from start of ssbo_sizes
138 * consts:
139 */
140 uint32_t off[IR3_MAX_SHADER_BUFFERS];
141 } ssbo_size;
142
143 struct {
144 uint32_t mask; /* bitmask of images that have image_store */
145 uint32_t count; /* number of consts allocated */
146 /* three const allocated per image which has image_store:
147 * + cpp (bytes per pixel)
148 * + pitch (y pitch)
149 * + array_pitch (z pitch)
150 */
151 uint32_t off[IR3_MAX_SHADER_IMAGES];
152 } image_dims;
153
154 unsigned immediate_idx;
155 unsigned immediates_count;
156 unsigned immediates_size;
157 struct {
158 uint32_t val[4];
159 } *immediates;
160 };
161
162 /**
163 * A single output for vertex transform feedback.
164 */
165 struct ir3_stream_output {
166 unsigned register_index:6; /**< 0 to 63 (OUT index) */
167 unsigned start_component:2; /** 0 to 3 */
168 unsigned num_components:3; /** 1 to 4 */
169 unsigned output_buffer:3; /**< 0 to PIPE_MAX_SO_BUFFERS */
170 unsigned dst_offset:16; /**< offset into the buffer in dwords */
171 unsigned stream:2; /**< 0 to 3 */
172 };
173
174 /**
175 * Stream output for vertex transform feedback.
176 */
177 struct ir3_stream_output_info {
178 unsigned num_outputs;
179 /** stride for an entire vertex for each buffer in dwords */
180 uint16_t stride[IR3_MAX_SO_BUFFERS];
181
182 /**
183 * Array of stream outputs, in the order they are to be written in.
184 * Selected components are tightly packed into the output buffer.
185 */
186 struct ir3_stream_output output[IR3_MAX_SO_OUTPUTS];
187 };
188
189
190 /**
191 * Starting from a4xx, HW supports pre-dispatching texture sampling
192 * instructions prior to scheduling a shader stage, when the
193 * coordinate maps exactly to an output of the previous stage.
194 */
195
196 /**
197 * There is a limit in the number of pre-dispatches allowed for any
198 * given stage.
199 */
200 #define IR3_MAX_SAMPLER_PREFETCH 4
201
202 /**
203 * This is the output stream value for 'cmd', as used by blob. It may
204 * encode the return type (in 3 bits) but it hasn't been verified yet.
205 */
206 #define IR3_SAMPLER_PREFETCH_CMD 0x4
207 #define IR3_SAMPLER_BINDLESS_PREFETCH_CMD 0x6
208
209 /**
210 * Stream output for texture sampling pre-dispatches.
211 */
212 struct ir3_sampler_prefetch {
213 uint8_t src;
214 uint8_t samp_id;
215 uint8_t tex_id;
216 uint16_t samp_bindless_id;
217 uint16_t tex_bindless_id;
218 uint8_t dst;
219 uint8_t wrmask;
220 uint8_t half_precision;
221 uint8_t cmd;
222 };
223
224
225 /* Configuration key used to identify a shader variant.. different
226 * shader variants can be used to implement features not supported
227 * in hw (two sided color), binning-pass vertex shader, etc.
228 *
229 * When adding to this struct, please update ir3_shader_variant()'s debug
230 * output.
231 */
232 struct ir3_shader_key {
233 union {
234 struct {
235 /*
236 * Combined Vertex/Fragment shader parameters:
237 */
238 unsigned ucp_enables : 8;
239
240 /* do we need to check {v,f}saturate_{s,t,r}? */
241 unsigned has_per_samp : 1;
242
243 /*
244 * Vertex shader variant parameters:
245 */
246 unsigned vclamp_color : 1;
247
248 /*
249 * Fragment shader variant parameters:
250 */
251 unsigned sample_shading : 1;
252 unsigned msaa : 1;
253 unsigned color_two_side : 1;
254 /* used when shader needs to handle flat varyings (a4xx)
255 * for front/back color inputs to frag shader:
256 */
257 unsigned rasterflat : 1;
258 unsigned fclamp_color : 1;
259
260 /* Indicates that this is a tessellation pipeline which requires a
261 * whole different kind of vertex shader. In case of
262 * tessellation, this field also tells us which kind of output
263 * topology the TES uses, which the TCS needs to know.
264 */
265 #define IR3_TESS_NONE 0
266 #define IR3_TESS_TRIANGLES 1
267 #define IR3_TESS_QUADS 2
268 #define IR3_TESS_ISOLINES 3
269 unsigned tessellation : 2;
270
271 unsigned has_gs : 1;
272 };
273 uint32_t global;
274 };
275
276 /* bitmask of sampler which needs coords clamped for vertex
277 * shader:
278 */
279 uint16_t vsaturate_s, vsaturate_t, vsaturate_r;
280
281 /* bitmask of sampler which needs coords clamped for frag
282 * shader:
283 */
284 uint16_t fsaturate_s, fsaturate_t, fsaturate_r;
285
286 /* bitmask of ms shifts */
287 uint32_t vsamples, fsamples;
288
289 /* bitmask of samplers which need astc srgb workaround: */
290 uint16_t vastc_srgb, fastc_srgb;
291 };
292
293 static inline unsigned
294 ir3_tess_mode(unsigned gl_tess_mode)
295 {
296 switch (gl_tess_mode) {
297 case GL_ISOLINES:
298 return IR3_TESS_ISOLINES;
299 case GL_TRIANGLES:
300 return IR3_TESS_TRIANGLES;
301 case GL_QUADS:
302 return IR3_TESS_QUADS;
303 default:
304 unreachable("bad tessmode");
305 }
306 }
307
308 static inline bool
309 ir3_shader_key_equal(struct ir3_shader_key *a, struct ir3_shader_key *b)
310 {
311 /* slow-path if we need to check {v,f}saturate_{s,t,r} */
312 if (a->has_per_samp || b->has_per_samp)
313 return memcmp(a, b, sizeof(struct ir3_shader_key)) == 0;
314 return a->global == b->global;
315 }
316
317 /* will the two keys produce different lowering for a fragment shader? */
318 static inline bool
319 ir3_shader_key_changes_fs(struct ir3_shader_key *key, struct ir3_shader_key *last_key)
320 {
321 if (last_key->has_per_samp || key->has_per_samp) {
322 if ((last_key->fsaturate_s != key->fsaturate_s) ||
323 (last_key->fsaturate_t != key->fsaturate_t) ||
324 (last_key->fsaturate_r != key->fsaturate_r) ||
325 (last_key->fsamples != key->fsamples) ||
326 (last_key->fastc_srgb != key->fastc_srgb))
327 return true;
328 }
329
330 if (last_key->fclamp_color != key->fclamp_color)
331 return true;
332
333 if (last_key->color_two_side != key->color_two_side)
334 return true;
335
336 if (last_key->rasterflat != key->rasterflat)
337 return true;
338
339 if (last_key->ucp_enables != key->ucp_enables)
340 return true;
341
342 return false;
343 }
344
345 /* will the two keys produce different lowering for a vertex shader? */
346 static inline bool
347 ir3_shader_key_changes_vs(struct ir3_shader_key *key, struct ir3_shader_key *last_key)
348 {
349 if (last_key->has_per_samp || key->has_per_samp) {
350 if ((last_key->vsaturate_s != key->vsaturate_s) ||
351 (last_key->vsaturate_t != key->vsaturate_t) ||
352 (last_key->vsaturate_r != key->vsaturate_r) ||
353 (last_key->vsamples != key->vsamples) ||
354 (last_key->vastc_srgb != key->vastc_srgb))
355 return true;
356 }
357
358 if (last_key->vclamp_color != key->vclamp_color)
359 return true;
360
361 if (last_key->ucp_enables != key->ucp_enables)
362 return true;
363
364 return false;
365 }
366
367 /**
368 * On a4xx+a5xx, Images share state with textures and SSBOs:
369 *
370 * + Uses texture (cat5) state/instruction (isam) to read
371 * + Uses SSBO state and instructions (cat6) to write and for atomics
372 *
373 * Starting with a6xx, Images and SSBOs are basically the same thing,
374 * with texture state and isam also used for SSBO reads.
375 *
376 * On top of that, gallium makes the SSBO (shader_buffers) state semi
377 * sparse, with the first half of the state space used for atomic
378 * counters lowered to atomic buffers. We could ignore this, but I
379 * don't think we could *really* handle the case of a single shader
380 * that used the max # of textures + images + SSBOs. And once we are
381 * offsetting images by num_ssbos (or visa versa) to map them into
382 * the same hardware state, the hardware state has become coupled to
383 * the shader state, so at this point we might as well just use a
384 * mapping table to remap things from image/SSBO idx to hw idx.
385 *
386 * To make things less (more?) confusing, for the hw "SSBO" state
387 * (since it is really both SSBO and Image) I'll use the name "IBO"
388 */
389 struct ir3_ibo_mapping {
390 #define IBO_INVALID 0xff
391 /* Maps logical SSBO state to hw tex state: */
392 uint8_t ssbo_to_tex[IR3_MAX_SHADER_BUFFERS];
393
394 /* Maps logical Image state to hw tex state: */
395 uint8_t image_to_tex[IR3_MAX_SHADER_IMAGES];
396
397 /* Maps hw state back to logical SSBO or Image state:
398 *
399 * note IBO_SSBO ORd into values to indicate that the
400 * hw slot is used for SSBO state vs Image state.
401 */
402 #define IBO_SSBO 0x80
403 uint8_t tex_to_image[32];
404
405 uint8_t num_tex; /* including real textures */
406 uint8_t tex_base; /* the number of real textures, ie. image/ssbo start here */
407 };
408
409 /* Represents half register in regid */
410 #define HALF_REG_ID 0x100
411
412 struct ir3_shader_variant {
413 struct fd_bo *bo;
414
415 /* variant id (for debug) */
416 uint32_t id;
417
418 struct ir3_shader_key key;
419
420 /* vertex shaders can have an extra version for hwbinning pass,
421 * which is pointed to by so->binning:
422 */
423 bool binning_pass;
424 // union {
425 struct ir3_shader_variant *binning;
426 struct ir3_shader_variant *nonbinning;
427 // };
428
429 struct ir3_info info;
430 struct ir3 *ir;
431
432 /* The actual binary shader instructions, size given by info.sizedwords: */
433 uint32_t *bin;
434
435 /* Levels of nesting of flow control:
436 */
437 unsigned branchstack;
438
439 unsigned max_sun;
440 unsigned loops;
441
442 /* the instructions length is in units of instruction groups
443 * (4 instructions for a3xx, 16 instructions for a4xx.. each
444 * instruction is 2 dwords):
445 */
446 unsigned instrlen;
447
448 /* the constants length is in units of vec4's, and is the sum of
449 * the uniforms and the built-in compiler constants
450 */
451 unsigned constlen;
452
453 /* About Linkage:
454 * + Let the frag shader determine the position/compmask for the
455 * varyings, since it is the place where we know if the varying
456 * is actually used, and if so, which components are used. So
457 * what the hw calls "outloc" is taken from the "inloc" of the
458 * frag shader.
459 * + From the vert shader, we only need the output regid
460 */
461
462 bool frag_face, color0_mrt;
463 uint8_t fragcoord_compmask;
464
465 /* NOTE: for input/outputs, slot is:
466 * gl_vert_attrib - for VS inputs
467 * gl_varying_slot - for VS output / FS input
468 * gl_frag_result - for FS output
469 */
470
471 /* varyings/outputs: */
472 unsigned outputs_count;
473 struct {
474 uint8_t slot;
475 uint8_t regid;
476 bool half : 1;
477 } outputs[32 + 2]; /* +POSITION +PSIZE */
478 bool writes_pos, writes_smask, writes_psize;
479
480 /* attributes (VS) / varyings (FS):
481 * Note that sysval's should come *after* normal inputs.
482 */
483 unsigned inputs_count;
484 struct {
485 uint8_t slot;
486 uint8_t regid;
487 uint8_t compmask;
488 /* location of input (ie. offset passed to bary.f, etc). This
489 * matches the SP_VS_VPC_DST_REG.OUTLOCn value (a3xx and a4xx
490 * have the OUTLOCn value offset by 8, presumably to account
491 * for gl_Position/gl_PointSize)
492 */
493 uint8_t inloc;
494 /* vertex shader specific: */
495 bool sysval : 1; /* slot is a gl_system_value */
496 /* fragment shader specific: */
497 bool bary : 1; /* fetched varying (vs one loaded into reg) */
498 bool rasterflat : 1; /* special handling for emit->rasterflat */
499 bool use_ldlv : 1; /* internal to ir3_compiler_nir */
500 bool half : 1;
501 enum glsl_interp_mode interpolate;
502 } inputs[32 + 2]; /* +POSITION +FACE */
503
504 /* sum of input components (scalar). For frag shaders, it only counts
505 * the varying inputs:
506 */
507 unsigned total_in;
508
509 /* For frag shaders, the total number of inputs (not scalar,
510 * ie. SP_VS_PARAM_REG.TOTALVSOUTVAR)
511 */
512 unsigned varying_in;
513
514 /* Remapping table to map Image and SSBO to hw state: */
515 struct ir3_ibo_mapping image_mapping;
516
517 /* number of samplers/textures (which are currently 1:1): */
518 int num_samp;
519
520 /* is there an implicit sampler to read framebuffer (FS only).. if
521 * so the sampler-idx is 'num_samp - 1' (ie. it is appended after
522 * the last "real" texture)
523 */
524 bool fb_read;
525
526 /* do we have one or more SSBO instructions: */
527 bool has_ssbo;
528
529 /* Which bindless resources are used, for filling out sp_xs_config */
530 bool bindless_tex;
531 bool bindless_samp;
532 bool bindless_ibo;
533 bool bindless_ubo;
534
535 /* do we need derivatives: */
536 bool need_pixlod;
537
538 bool need_fine_derivatives;
539
540 /* do we have image write, etc (which prevents early-z): */
541 bool no_earlyz;
542
543 /* do we have kill, which also prevents early-z, but not necessarily
544 * early-lrz (as long as lrz-write is disabled, which must be handled
545 * outside of ir3. Unlike other no_earlyz cases, kill doesn't have
546 * side effects that prevent early-lrz discard.
547 */
548 bool has_kill;
549
550 bool per_samp;
551
552 /* for astc srgb workaround, the number/base of additional
553 * alpha tex states we need, and index of original tex states
554 */
555 struct {
556 unsigned base, count;
557 unsigned orig_idx[16];
558 } astc_srgb;
559
560 /* shader variants form a linked list: */
561 struct ir3_shader_variant *next;
562
563 /* replicated here to avoid passing extra ptrs everywhere: */
564 gl_shader_stage type;
565 struct ir3_shader *shader;
566
567 /* texture sampler pre-dispatches */
568 uint32_t num_sampler_prefetch;
569 struct ir3_sampler_prefetch sampler_prefetch[IR3_MAX_SAMPLER_PREFETCH];
570 };
571
572 static inline const char *
573 ir3_shader_stage(struct ir3_shader_variant *v)
574 {
575 switch (v->type) {
576 case MESA_SHADER_VERTEX: return v->binning_pass ? "BVERT" : "VERT";
577 case MESA_SHADER_TESS_CTRL: return "TCS";
578 case MESA_SHADER_TESS_EVAL: return "TES";
579 case MESA_SHADER_GEOMETRY: return "GEOM";
580 case MESA_SHADER_FRAGMENT: return "FRAG";
581 case MESA_SHADER_COMPUTE: return "CL";
582 default:
583 unreachable("invalid type");
584 return NULL;
585 }
586 }
587
588 struct ir3_ubo_range {
589 uint32_t offset; /* start offset to push in the const register file */
590 uint32_t block; /* Which constant block */
591 uint32_t start, end; /* range of block that's actually used */
592 uint16_t bindless_base; /* For bindless, which base register is used */
593 bool bindless;
594 };
595
596 struct ir3_ubo_analysis_state {
597 struct ir3_ubo_range range[IR3_MAX_UBO_PUSH_RANGES];
598 uint32_t num_enabled;
599 uint32_t size;
600 uint32_t lower_count;
601 uint32_t cmdstream_size; /* for per-gen backend to stash required cmdstream size */
602 };
603
604
605 struct ir3_shader {
606 gl_shader_stage type;
607
608 /* shader id (for debug): */
609 uint32_t id;
610 uint32_t variant_count;
611
612 /* Set by freedreno after shader_state_create, so we can emit debug info
613 * when recompiling a shader at draw time.
614 */
615 bool initial_variants_done;
616
617 struct ir3_compiler *compiler;
618
619 struct ir3_ubo_analysis_state ubo_state;
620
621 /* Number of UBOs loaded by LDC, as opposed to LDG through pointers in
622 * ubo_state.
623 */
624 unsigned num_ubos;
625
626 struct ir3_const_state const_state;
627
628 struct nir_shader *nir;
629 struct ir3_stream_output_info stream_output;
630
631 struct ir3_shader_variant *variants;
632 mtx_t variants_lock;
633
634 uint32_t output_size; /* Size in dwords of all outputs for VS, size of entire patch for HS. */
635
636 /* Map from driver_location to byte offset in per-primitive storage */
637 unsigned output_loc[32];
638
639 /* Bitmask of bits of the shader key used by this shader. Used to avoid
640 * recompiles for GL NOS that doesn't actually apply to the shader.
641 */
642 struct ir3_shader_key key_mask;
643 };
644
645 void * ir3_shader_assemble(struct ir3_shader_variant *v);
646 struct ir3_shader_variant * ir3_shader_get_variant(struct ir3_shader *shader,
647 struct ir3_shader_key *key, bool binning_pass, bool *created);
648 struct ir3_shader * ir3_shader_from_nir(struct ir3_compiler *compiler, nir_shader *nir,
649 unsigned reserved_user_consts, struct ir3_stream_output_info *stream_output);
650 void ir3_shader_destroy(struct ir3_shader *shader);
651 void ir3_shader_disasm(struct ir3_shader_variant *so, uint32_t *bin, FILE *out);
652 uint64_t ir3_shader_outputs(const struct ir3_shader *so);
653
654 int
655 ir3_glsl_type_size(const struct glsl_type *type, bool bindless);
656
657 /*
658 * Helper/util:
659 */
660
661 /* clears shader-key flags which don't apply to the given shader.
662 */
663 static inline void
664 ir3_key_clear_unused(struct ir3_shader_key *key, struct ir3_shader *shader)
665 {
666 uint32_t *key_bits = (uint32_t *)key;
667 uint32_t *key_mask = (uint32_t *)&shader->key_mask;
668 STATIC_ASSERT(sizeof(*key) % 4 == 0);
669 for (int i = 0; i < sizeof(*key) >> 2; i++)
670 key_bits[i] &= key_mask[i];
671 }
672
673 static inline int
674 ir3_find_output(const struct ir3_shader_variant *so, gl_varying_slot slot)
675 {
676 int j;
677
678 for (j = 0; j < so->outputs_count; j++)
679 if (so->outputs[j].slot == slot)
680 return j;
681
682 /* it seems optional to have a OUT.BCOLOR[n] for each OUT.COLOR[n]
683 * in the vertex shader.. but the fragment shader doesn't know this
684 * so it will always have both IN.COLOR[n] and IN.BCOLOR[n]. So
685 * at link time if there is no matching OUT.BCOLOR[n], we must map
686 * OUT.COLOR[n] to IN.BCOLOR[n]. And visa versa if there is only
687 * a OUT.BCOLOR[n] but no matching OUT.COLOR[n]
688 */
689 if (slot == VARYING_SLOT_BFC0) {
690 slot = VARYING_SLOT_COL0;
691 } else if (slot == VARYING_SLOT_BFC1) {
692 slot = VARYING_SLOT_COL1;
693 } else if (slot == VARYING_SLOT_COL0) {
694 slot = VARYING_SLOT_BFC0;
695 } else if (slot == VARYING_SLOT_COL1) {
696 slot = VARYING_SLOT_BFC1;
697 } else {
698 return -1;
699 }
700
701 for (j = 0; j < so->outputs_count; j++)
702 if (so->outputs[j].slot == slot)
703 return j;
704
705 debug_assert(0);
706
707 return -1;
708 }
709
710 static inline int
711 ir3_next_varying(const struct ir3_shader_variant *so, int i)
712 {
713 while (++i < so->inputs_count)
714 if (so->inputs[i].compmask && so->inputs[i].bary)
715 break;
716 return i;
717 }
718
719 struct ir3_shader_linkage {
720 /* Maximum location either consumed by the fragment shader or produced by
721 * the last geometry stage, i.e. the size required for each vertex in the
722 * VPC in DWORD's.
723 */
724 uint8_t max_loc;
725
726 /* Number of entries in var. */
727 uint8_t cnt;
728
729 /* Bitset of locations used, including ones which are only used by the FS.
730 */
731 uint32_t varmask[4];
732
733 /* Map from VS output to location. */
734 struct {
735 uint8_t regid;
736 uint8_t compmask;
737 uint8_t loc;
738 } var[32];
739
740 /* location for fixed-function gl_PrimitiveID passthrough */
741 uint8_t primid_loc;
742 };
743
744 static inline void
745 ir3_link_add(struct ir3_shader_linkage *l, uint8_t regid_, uint8_t compmask, uint8_t loc)
746 {
747
748
749 for (int j = 0; j < util_last_bit(compmask); j++) {
750 uint8_t comploc = loc + j;
751 l->varmask[comploc / 32] |= 1 << (comploc % 32);
752 }
753
754 l->max_loc = MAX2(l->max_loc, loc + util_last_bit(compmask));
755
756 if (regid_ != regid(63, 0)) {
757 int i = l->cnt++;
758 debug_assert(i < ARRAY_SIZE(l->var));
759
760 l->var[i].regid = regid_;
761 l->var[i].compmask = compmask;
762 l->var[i].loc = loc;
763 }
764 }
765
766 static inline void
767 ir3_link_shaders(struct ir3_shader_linkage *l,
768 const struct ir3_shader_variant *vs,
769 const struct ir3_shader_variant *fs,
770 bool pack_vs_out)
771 {
772 /* On older platforms, varmask isn't programmed at all, and it appears
773 * that the hardware generates a mask of used VPC locations using the VS
774 * output map, and hangs if a FS bary instruction references a location
775 * not in the list. This means that we need to have a dummy entry in the
776 * VS out map for things like gl_PointCoord which aren't written by the
777 * VS. Furthermore we can't use r63.x, so just pick a random register to
778 * use if there is no VS output.
779 */
780 const unsigned default_regid = pack_vs_out ? regid(63, 0) : regid(0, 0);
781 int j = -1, k;
782
783 l->primid_loc = 0xff;
784
785 while (l->cnt < ARRAY_SIZE(l->var)) {
786 j = ir3_next_varying(fs, j);
787
788 if (j >= fs->inputs_count)
789 break;
790
791 if (fs->inputs[j].inloc >= fs->total_in)
792 continue;
793
794 k = ir3_find_output(vs, fs->inputs[j].slot);
795
796 if (k < 0 && fs->inputs[j].slot == VARYING_SLOT_PRIMITIVE_ID) {
797 l->primid_loc = fs->inputs[j].inloc;
798 }
799
800 ir3_link_add(l, k >= 0 ? vs->outputs[k].regid : default_regid,
801 fs->inputs[j].compmask, fs->inputs[j].inloc);
802 }
803 }
804
805 static inline uint32_t
806 ir3_find_output_regid(const struct ir3_shader_variant *so, unsigned slot)
807 {
808 int j;
809 for (j = 0; j < so->outputs_count; j++)
810 if (so->outputs[j].slot == slot) {
811 uint32_t regid = so->outputs[j].regid;
812 if (so->outputs[j].half)
813 regid |= HALF_REG_ID;
814 return regid;
815 }
816 return regid(63, 0);
817 }
818
819 #define VARYING_SLOT_GS_HEADER_IR3 (VARYING_SLOT_MAX + 0)
820 #define VARYING_SLOT_GS_VERTEX_FLAGS_IR3 (VARYING_SLOT_MAX + 1)
821 #define VARYING_SLOT_TCS_HEADER_IR3 (VARYING_SLOT_MAX + 2)
822
823
824 static inline uint32_t
825 ir3_find_sysval_regid(const struct ir3_shader_variant *so, unsigned slot)
826 {
827 int j;
828 for (j = 0; j < so->inputs_count; j++)
829 if (so->inputs[j].sysval && (so->inputs[j].slot == slot))
830 return so->inputs[j].regid;
831 return regid(63, 0);
832 }
833
834 /* calculate register footprint in terms of half-regs (ie. one full
835 * reg counts as two half-regs).
836 */
837 static inline uint32_t
838 ir3_shader_halfregs(const struct ir3_shader_variant *v)
839 {
840 return (2 * (v->info.max_reg + 1)) + (v->info.max_half_reg + 1);
841 }
842
843 static inline uint32_t
844 ir3_shader_nibo(const struct ir3_shader_variant *v)
845 {
846 /* The dummy variant used in binning mode won't have an actual shader. */
847 if (!v->shader)
848 return 0;
849
850 return v->shader->nir->info.num_ssbos + v->shader->nir->info.num_images;
851 }
852
853 #endif /* IR3_SHADER_H_ */