radeonsi/gfx10: implement most performance counters
[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 /* Levels of nesting of flow control:
433 */
434 unsigned branchstack;
435
436 unsigned max_sun;
437 unsigned loops;
438
439 /* the instructions length is in units of instruction groups
440 * (4 instructions for a3xx, 16 instructions for a4xx.. each
441 * instruction is 2 dwords):
442 */
443 unsigned instrlen;
444
445 /* the constants length is in units of vec4's, and is the sum of
446 * the uniforms and the built-in compiler constants
447 */
448 unsigned constlen;
449
450 /* About Linkage:
451 * + Let the frag shader determine the position/compmask for the
452 * varyings, since it is the place where we know if the varying
453 * is actually used, and if so, which components are used. So
454 * what the hw calls "outloc" is taken from the "inloc" of the
455 * frag shader.
456 * + From the vert shader, we only need the output regid
457 */
458
459 bool frag_face, color0_mrt;
460 uint8_t fragcoord_compmask;
461
462 /* NOTE: for input/outputs, slot is:
463 * gl_vert_attrib - for VS inputs
464 * gl_varying_slot - for VS output / FS input
465 * gl_frag_result - for FS output
466 */
467
468 /* varyings/outputs: */
469 unsigned outputs_count;
470 struct {
471 uint8_t slot;
472 uint8_t regid;
473 bool half : 1;
474 } outputs[32 + 2]; /* +POSITION +PSIZE */
475 bool writes_pos, writes_smask, writes_psize;
476
477 /* attributes (VS) / varyings (FS):
478 * Note that sysval's should come *after* normal inputs.
479 */
480 unsigned inputs_count;
481 struct {
482 uint8_t slot;
483 uint8_t regid;
484 uint8_t compmask;
485 /* location of input (ie. offset passed to bary.f, etc). This
486 * matches the SP_VS_VPC_DST_REG.OUTLOCn value (a3xx and a4xx
487 * have the OUTLOCn value offset by 8, presumably to account
488 * for gl_Position/gl_PointSize)
489 */
490 uint8_t inloc;
491 /* vertex shader specific: */
492 bool sysval : 1; /* slot is a gl_system_value */
493 /* fragment shader specific: */
494 bool bary : 1; /* fetched varying (vs one loaded into reg) */
495 bool rasterflat : 1; /* special handling for emit->rasterflat */
496 bool use_ldlv : 1; /* internal to ir3_compiler_nir */
497 bool half : 1;
498 enum glsl_interp_mode interpolate;
499 } inputs[32 + 2]; /* +POSITION +FACE */
500
501 /* sum of input components (scalar). For frag shaders, it only counts
502 * the varying inputs:
503 */
504 unsigned total_in;
505
506 /* For frag shaders, the total number of inputs (not scalar,
507 * ie. SP_VS_PARAM_REG.TOTALVSOUTVAR)
508 */
509 unsigned varying_in;
510
511 /* Remapping table to map Image and SSBO to hw state: */
512 struct ir3_ibo_mapping image_mapping;
513
514 /* number of samplers/textures (which are currently 1:1): */
515 int num_samp;
516
517 /* is there an implicit sampler to read framebuffer (FS only).. if
518 * so the sampler-idx is 'num_samp - 1' (ie. it is appended after
519 * the last "real" texture)
520 */
521 bool fb_read;
522
523 /* do we have one or more SSBO instructions: */
524 bool has_ssbo;
525
526 /* Which bindless resources are used, for filling out sp_xs_config */
527 bool bindless_tex;
528 bool bindless_samp;
529 bool bindless_ibo;
530 bool bindless_ubo;
531
532 /* do we need derivatives: */
533 bool need_pixlod;
534
535 bool need_fine_derivatives;
536
537 /* do we have kill, image write, etc (which prevents early-z): */
538 bool no_earlyz;
539
540 bool per_samp;
541
542 /* for astc srgb workaround, the number/base of additional
543 * alpha tex states we need, and index of original tex states
544 */
545 struct {
546 unsigned base, count;
547 unsigned orig_idx[16];
548 } astc_srgb;
549
550 /* shader variants form a linked list: */
551 struct ir3_shader_variant *next;
552
553 /* replicated here to avoid passing extra ptrs everywhere: */
554 gl_shader_stage type;
555 struct ir3_shader *shader;
556
557 /* texture sampler pre-dispatches */
558 uint32_t num_sampler_prefetch;
559 struct ir3_sampler_prefetch sampler_prefetch[IR3_MAX_SAMPLER_PREFETCH];
560 };
561
562 static inline const char *
563 ir3_shader_stage(struct ir3_shader_variant *v)
564 {
565 switch (v->type) {
566 case MESA_SHADER_VERTEX: return v->binning_pass ? "BVERT" : "VERT";
567 case MESA_SHADER_TESS_CTRL: return "TCS";
568 case MESA_SHADER_TESS_EVAL: return "TES";
569 case MESA_SHADER_GEOMETRY: return "GEOM";
570 case MESA_SHADER_FRAGMENT: return "FRAG";
571 case MESA_SHADER_COMPUTE: return "CL";
572 default:
573 unreachable("invalid type");
574 return NULL;
575 }
576 }
577
578 struct ir3_ubo_range {
579 uint32_t offset; /* start offset to push in the const register file */
580 uint32_t block; /* Which constant block */
581 uint32_t start, end; /* range of block that's actually used */
582 uint16_t bindless_base; /* For bindless, which base register is used */
583 bool bindless;
584 };
585
586 struct ir3_ubo_analysis_state {
587 struct ir3_ubo_range range[IR3_MAX_UBO_PUSH_RANGES];
588 uint32_t num_enabled;
589 uint32_t size;
590 uint32_t lower_count;
591 uint32_t cmdstream_size; /* for per-gen backend to stash required cmdstream size */
592 };
593
594
595 struct ir3_shader {
596 gl_shader_stage type;
597
598 /* shader id (for debug): */
599 uint32_t id;
600 uint32_t variant_count;
601
602 /* Set by freedreno after shader_state_create, so we can emit debug info
603 * when recompiling a shader at draw time.
604 */
605 bool initial_variants_done;
606
607 struct ir3_compiler *compiler;
608
609 struct ir3_ubo_analysis_state ubo_state;
610
611 /* Number of UBOs loaded by LDC, as opposed to LDG through pointers in
612 * ubo_state.
613 */
614 unsigned num_ubos;
615
616 struct ir3_const_state const_state;
617
618 struct nir_shader *nir;
619 struct ir3_stream_output_info stream_output;
620
621 struct ir3_shader_variant *variants;
622 mtx_t variants_lock;
623
624 uint32_t output_size; /* Size in dwords of all outputs for VS, size of entire patch for HS. */
625
626 /* Map from driver_location to byte offset in per-primitive storage */
627 unsigned output_loc[32];
628
629 /* Bitmask of bits of the shader key used by this shader. Used to avoid
630 * recompiles for GL NOS that doesn't actually apply to the shader.
631 */
632 struct ir3_shader_key key_mask;
633 };
634
635 void * ir3_shader_assemble(struct ir3_shader_variant *v, uint32_t gpu_id);
636 struct ir3_shader_variant * ir3_shader_get_variant(struct ir3_shader *shader,
637 struct ir3_shader_key *key, bool binning_pass, bool *created);
638 struct ir3_shader * ir3_shader_from_nir(struct ir3_compiler *compiler, nir_shader *nir,
639 struct ir3_stream_output_info *stream_output);
640 void ir3_shader_destroy(struct ir3_shader *shader);
641 void ir3_shader_disasm(struct ir3_shader_variant *so, uint32_t *bin, FILE *out);
642 uint64_t ir3_shader_outputs(const struct ir3_shader *so);
643
644 int
645 ir3_glsl_type_size(const struct glsl_type *type, bool bindless);
646
647 /*
648 * Helper/util:
649 */
650
651 /* clears shader-key flags which don't apply to the given shader.
652 */
653 static inline void
654 ir3_key_clear_unused(struct ir3_shader_key *key, struct ir3_shader *shader)
655 {
656 uint32_t *key_bits = (uint32_t *)key;
657 uint32_t *key_mask = (uint32_t *)&shader->key_mask;
658 STATIC_ASSERT(sizeof(*key) % 4 == 0);
659 for (int i = 0; i < sizeof(*key) >> 2; i++)
660 key_bits[i] &= key_mask[i];
661 }
662
663 static inline int
664 ir3_find_output(const struct ir3_shader_variant *so, gl_varying_slot slot)
665 {
666 int j;
667
668 for (j = 0; j < so->outputs_count; j++)
669 if (so->outputs[j].slot == slot)
670 return j;
671
672 /* it seems optional to have a OUT.BCOLOR[n] for each OUT.COLOR[n]
673 * in the vertex shader.. but the fragment shader doesn't know this
674 * so it will always have both IN.COLOR[n] and IN.BCOLOR[n]. So
675 * at link time if there is no matching OUT.BCOLOR[n], we must map
676 * OUT.COLOR[n] to IN.BCOLOR[n]. And visa versa if there is only
677 * a OUT.BCOLOR[n] but no matching OUT.COLOR[n]
678 */
679 if (slot == VARYING_SLOT_BFC0) {
680 slot = VARYING_SLOT_COL0;
681 } else if (slot == VARYING_SLOT_BFC1) {
682 slot = VARYING_SLOT_COL1;
683 } else if (slot == VARYING_SLOT_COL0) {
684 slot = VARYING_SLOT_BFC0;
685 } else if (slot == VARYING_SLOT_COL1) {
686 slot = VARYING_SLOT_BFC1;
687 } else {
688 return -1;
689 }
690
691 for (j = 0; j < so->outputs_count; j++)
692 if (so->outputs[j].slot == slot)
693 return j;
694
695 debug_assert(0);
696
697 return -1;
698 }
699
700 static inline int
701 ir3_next_varying(const struct ir3_shader_variant *so, int i)
702 {
703 while (++i < so->inputs_count)
704 if (so->inputs[i].compmask && so->inputs[i].bary)
705 break;
706 return i;
707 }
708
709 struct ir3_shader_linkage {
710 /* Maximum location either consumed by the fragment shader or produced by
711 * the last geometry stage, i.e. the size required for each vertex in the
712 * VPC in DWORD's.
713 */
714 uint8_t max_loc;
715
716 /* Number of entries in var. */
717 uint8_t cnt;
718
719 /* Bitset of locations used, including ones which are only used by the FS.
720 */
721 uint32_t varmask[4];
722
723 /* Map from VS output to location. */
724 struct {
725 uint8_t regid;
726 uint8_t compmask;
727 uint8_t loc;
728 } var[32];
729
730 /* location for fixed-function gl_PrimitiveID passthrough */
731 uint8_t primid_loc;
732 };
733
734 static inline void
735 ir3_link_add(struct ir3_shader_linkage *l, uint8_t regid_, uint8_t compmask, uint8_t loc)
736 {
737
738
739 for (int j = 0; j < util_last_bit(compmask); j++) {
740 uint8_t comploc = loc + j;
741 l->varmask[comploc / 32] |= 1 << (comploc % 32);
742 }
743
744 l->max_loc = MAX2(l->max_loc, loc + util_last_bit(compmask));
745
746 if (regid_ != regid(63, 0)) {
747 int i = l->cnt++;
748 debug_assert(i < ARRAY_SIZE(l->var));
749
750 l->var[i].regid = regid_;
751 l->var[i].compmask = compmask;
752 l->var[i].loc = loc;
753 }
754 }
755
756 static inline void
757 ir3_link_shaders(struct ir3_shader_linkage *l,
758 const struct ir3_shader_variant *vs,
759 const struct ir3_shader_variant *fs,
760 bool pack_vs_out)
761 {
762 /* On older platforms, varmask isn't programmed at all, and it appears
763 * that the hardware generates a mask of used VPC locations using the VS
764 * output map, and hangs if a FS bary instruction references a location
765 * not in the list. This means that we need to have a dummy entry in the
766 * VS out map for things like gl_PointCoord which aren't written by the
767 * VS. Furthermore we can't use r63.x, so just pick a random register to
768 * use if there is no VS output.
769 */
770 const unsigned default_regid = pack_vs_out ? regid(63, 0) : regid(0, 0);
771 int j = -1, k;
772
773 l->primid_loc = 0xff;
774
775 while (l->cnt < ARRAY_SIZE(l->var)) {
776 j = ir3_next_varying(fs, j);
777
778 if (j >= fs->inputs_count)
779 break;
780
781 if (fs->inputs[j].inloc >= fs->total_in)
782 continue;
783
784 k = ir3_find_output(vs, fs->inputs[j].slot);
785
786 if (k < 0 && fs->inputs[j].slot == VARYING_SLOT_PRIMITIVE_ID) {
787 l->primid_loc = fs->inputs[j].inloc;
788 }
789
790 ir3_link_add(l, k >= 0 ? vs->outputs[k].regid : default_regid,
791 fs->inputs[j].compmask, fs->inputs[j].inloc);
792 }
793 }
794
795 static inline uint32_t
796 ir3_find_output_regid(const struct ir3_shader_variant *so, unsigned slot)
797 {
798 int j;
799 for (j = 0; j < so->outputs_count; j++)
800 if (so->outputs[j].slot == slot) {
801 uint32_t regid = so->outputs[j].regid;
802 if (so->outputs[j].half)
803 regid |= HALF_REG_ID;
804 return regid;
805 }
806 return regid(63, 0);
807 }
808
809 #define VARYING_SLOT_GS_HEADER_IR3 (VARYING_SLOT_MAX + 0)
810 #define VARYING_SLOT_GS_VERTEX_FLAGS_IR3 (VARYING_SLOT_MAX + 1)
811 #define VARYING_SLOT_TCS_HEADER_IR3 (VARYING_SLOT_MAX + 2)
812
813
814 static inline uint32_t
815 ir3_find_sysval_regid(const struct ir3_shader_variant *so, unsigned slot)
816 {
817 int j;
818 for (j = 0; j < so->inputs_count; j++)
819 if (so->inputs[j].sysval && (so->inputs[j].slot == slot))
820 return so->inputs[j].regid;
821 return regid(63, 0);
822 }
823
824 /* calculate register footprint in terms of half-regs (ie. one full
825 * reg counts as two half-regs).
826 */
827 static inline uint32_t
828 ir3_shader_halfregs(const struct ir3_shader_variant *v)
829 {
830 return (2 * (v->info.max_reg + 1)) + (v->info.max_half_reg + 1);
831 }
832
833 static inline uint32_t
834 ir3_shader_nibo(const struct ir3_shader_variant *v)
835 {
836 /* The dummy variant used in binning mode won't have an actual shader. */
837 if (!v->shader)
838 return 0;
839
840 return v->shader->nir->info.num_ssbos + v->shader->nir->info.num_images;
841 }
842
843 #endif /* IR3_SHADER_H_ */