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