freedreno/ir3: remove input ncomp field
[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 /* user-clip-plane components, up to 8x vec4's: */
61 IR3_DP_UCP0_X = 4,
62 /* .... */
63 IR3_DP_UCP7_W = 35,
64 IR3_DP_VS_COUNT = 36 /* must be aligned to vec4 */
65 };
66
67 #define IR3_MAX_SHADER_BUFFERS 32
68 #define IR3_MAX_SHADER_IMAGES 32
69 #define IR3_MAX_SO_BUFFERS 4
70 #define IR3_MAX_SO_OUTPUTS 64
71 #define IR3_MAX_CONSTANT_BUFFERS 32
72
73
74 /**
75 * Describes the layout of shader consts. This includes:
76 * + Driver lowered UBO ranges
77 * + SSBO sizes
78 * + Image sizes/dimensions
79 * + Driver params (ie. IR3_DP_*)
80 * + TFBO addresses (for generations that do not have hardware streamout)
81 * + Lowered immediates
82 *
83 * For consts needed to pass internal values to shader which may or may not
84 * be required, rather than allocating worst-case const space, we scan the
85 * shader and allocate consts as-needed:
86 *
87 * + SSBO sizes: only needed if shader has a get_buffer_size intrinsic
88 * for a given SSBO
89 *
90 * + Image dimensions: needed to calculate pixel offset, but only for
91 * images that have a image_store intrinsic
92 *
93 * Layout of constant registers, each section aligned to vec4. Note
94 * that pointer size (ubo, etc) changes depending on generation.
95 *
96 * user consts
97 * UBO addresses
98 * SSBO sizes
99 * if (vertex shader) {
100 * driver params (IR3_DP_*)
101 * if (stream_output.num_outputs > 0)
102 * stream-out addresses
103 * } else if (compute_shader) {
104 * driver params (IR3_DP_*)
105 * }
106 * immediates
107 *
108 * Immediates go last mostly because they are inserted in the CP pass
109 * after the nir -> ir3 frontend.
110 *
111 * Note UBO size in bytes should be aligned to vec4
112 */
113 struct ir3_const_state {
114 unsigned num_ubos;
115 unsigned num_driver_params; /* scalar */
116
117 struct {
118 /* user const start at zero */
119 unsigned ubo;
120 /* NOTE that a3xx might need a section for SSBO addresses too */
121 unsigned ssbo_sizes;
122 unsigned image_dims;
123 unsigned driver_param;
124 unsigned tfbo;
125 unsigned immediate;
126 } offsets;
127
128 struct {
129 uint32_t mask; /* bitmask of SSBOs that have get_buffer_size */
130 uint32_t count; /* number of consts allocated */
131 /* one const allocated per SSBO which has get_buffer_size,
132 * ssbo_sizes.off[ssbo_id] is offset from start of ssbo_sizes
133 * consts:
134 */
135 uint32_t off[IR3_MAX_SHADER_BUFFERS];
136 } ssbo_size;
137
138 struct {
139 uint32_t mask; /* bitmask of images that have image_store */
140 uint32_t count; /* number of consts allocated */
141 /* three const allocated per image which has image_store:
142 * + cpp (bytes per pixel)
143 * + pitch (y pitch)
144 * + array_pitch (z pitch)
145 */
146 uint32_t off[IR3_MAX_SHADER_IMAGES];
147 } image_dims;
148
149 unsigned immediate_idx;
150 unsigned immediates_count;
151 unsigned immediates_size;
152 struct {
153 uint32_t val[4];
154 } *immediates;
155 };
156
157 /**
158 * A single output for vertex transform feedback.
159 */
160 struct ir3_stream_output {
161 unsigned register_index:6; /**< 0 to 63 (OUT index) */
162 unsigned start_component:2; /** 0 to 3 */
163 unsigned num_components:3; /** 1 to 4 */
164 unsigned output_buffer:3; /**< 0 to PIPE_MAX_SO_BUFFERS */
165 unsigned dst_offset:16; /**< offset into the buffer in dwords */
166 unsigned stream:2; /**< 0 to 3 */
167 };
168
169 /**
170 * Stream output for vertex transform feedback.
171 */
172 struct ir3_stream_output_info {
173 unsigned num_outputs;
174 /** stride for an entire vertex for each buffer in dwords */
175 uint16_t stride[IR3_MAX_SO_BUFFERS];
176
177 /**
178 * Array of stream outputs, in the order they are to be written in.
179 * Selected components are tightly packed into the output buffer.
180 */
181 struct ir3_stream_output output[IR3_MAX_SO_OUTPUTS];
182 };
183
184 /* Configuration key used to identify a shader variant.. different
185 * shader variants can be used to implement features not supported
186 * in hw (two sided color), binning-pass vertex shader, etc.
187 */
188 struct ir3_shader_key {
189 union {
190 struct {
191 /*
192 * Combined Vertex/Fragment shader parameters:
193 */
194 unsigned ucp_enables : 8;
195
196 /* do we need to check {v,f}saturate_{s,t,r}? */
197 unsigned has_per_samp : 1;
198
199 /*
200 * Vertex shader variant parameters:
201 */
202 unsigned vclamp_color : 1;
203
204 /*
205 * Fragment shader variant parameters:
206 */
207 unsigned sample_shading : 1;
208 unsigned msaa : 1;
209 unsigned color_two_side : 1;
210 unsigned half_precision : 1;
211 /* used when shader needs to handle flat varyings (a4xx)
212 * for front/back color inputs to frag shader:
213 */
214 unsigned rasterflat : 1;
215 unsigned fclamp_color : 1;
216 };
217 uint32_t global;
218 };
219
220 /* bitmask of sampler which needs coords clamped for vertex
221 * shader:
222 */
223 uint16_t vsaturate_s, vsaturate_t, vsaturate_r;
224
225 /* bitmask of sampler which needs coords clamped for frag
226 * shader:
227 */
228 uint16_t fsaturate_s, fsaturate_t, fsaturate_r;
229
230 /* bitmask of ms shifts */
231 uint32_t vsamples, fsamples;
232
233 /* bitmask of samplers which need astc srgb workaround: */
234 uint16_t vastc_srgb, fastc_srgb;
235 };
236
237 static inline bool
238 ir3_shader_key_equal(struct ir3_shader_key *a, struct ir3_shader_key *b)
239 {
240 /* slow-path if we need to check {v,f}saturate_{s,t,r} */
241 if (a->has_per_samp || b->has_per_samp)
242 return memcmp(a, b, sizeof(struct ir3_shader_key)) == 0;
243 return a->global == b->global;
244 }
245
246 /* will the two keys produce different lowering for a fragment shader? */
247 static inline bool
248 ir3_shader_key_changes_fs(struct ir3_shader_key *key, struct ir3_shader_key *last_key)
249 {
250 if (last_key->has_per_samp || key->has_per_samp) {
251 if ((last_key->fsaturate_s != key->fsaturate_s) ||
252 (last_key->fsaturate_t != key->fsaturate_t) ||
253 (last_key->fsaturate_r != key->fsaturate_r) ||
254 (last_key->fsamples != key->fsamples) ||
255 (last_key->fastc_srgb != key->fastc_srgb))
256 return true;
257 }
258
259 if (last_key->fclamp_color != key->fclamp_color)
260 return true;
261
262 if (last_key->color_two_side != key->color_two_side)
263 return true;
264
265 if (last_key->half_precision != key->half_precision)
266 return true;
267
268 if (last_key->rasterflat != key->rasterflat)
269 return true;
270
271 if (last_key->ucp_enables != key->ucp_enables)
272 return true;
273
274 return false;
275 }
276
277 /* will the two keys produce different lowering for a vertex shader? */
278 static inline bool
279 ir3_shader_key_changes_vs(struct ir3_shader_key *key, struct ir3_shader_key *last_key)
280 {
281 if (last_key->has_per_samp || key->has_per_samp) {
282 if ((last_key->vsaturate_s != key->vsaturate_s) ||
283 (last_key->vsaturate_t != key->vsaturate_t) ||
284 (last_key->vsaturate_r != key->vsaturate_r) ||
285 (last_key->vsamples != key->vsamples) ||
286 (last_key->vastc_srgb != key->vastc_srgb))
287 return true;
288 }
289
290 if (last_key->vclamp_color != key->vclamp_color)
291 return true;
292
293 if (last_key->ucp_enables != key->ucp_enables)
294 return true;
295
296 return false;
297 }
298
299 /* clears shader-key flags which don't apply to the given shader
300 * stage
301 */
302 static inline void
303 ir3_normalize_key(struct ir3_shader_key *key, gl_shader_stage type)
304 {
305 switch (type) {
306 case MESA_SHADER_FRAGMENT:
307 if (key->has_per_samp) {
308 key->vsaturate_s = 0;
309 key->vsaturate_t = 0;
310 key->vsaturate_r = 0;
311 key->vastc_srgb = 0;
312 key->vsamples = 0;
313 }
314 break;
315 case MESA_SHADER_VERTEX:
316 key->color_two_side = false;
317 key->half_precision = false;
318 key->rasterflat = false;
319 if (key->has_per_samp) {
320 key->fsaturate_s = 0;
321 key->fsaturate_t = 0;
322 key->fsaturate_r = 0;
323 key->fastc_srgb = 0;
324 key->fsamples = 0;
325 }
326 break;
327 default:
328 /* TODO */
329 break;
330 }
331 }
332
333 /**
334 * On a4xx+a5xx, Images share state with textures and SSBOs:
335 *
336 * + Uses texture (cat5) state/instruction (isam) to read
337 * + Uses SSBO state and instructions (cat6) to write and for atomics
338 *
339 * Starting with a6xx, Images and SSBOs are basically the same thing,
340 * with texture state and isam also used for SSBO reads.
341 *
342 * On top of that, gallium makes the SSBO (shader_buffers) state semi
343 * sparse, with the first half of the state space used for atomic
344 * counters lowered to atomic buffers. We could ignore this, but I
345 * don't think we could *really* handle the case of a single shader
346 * that used the max # of textures + images + SSBOs. And once we are
347 * offsetting images by num_ssbos (or visa versa) to map them into
348 * the same hardware state, the hardware state has become coupled to
349 * the shader state, so at this point we might as well just use a
350 * mapping table to remap things from image/SSBO idx to hw idx.
351 *
352 * To make things less (more?) confusing, for the hw "SSBO" state
353 * (since it is really both SSBO and Image) I'll use the name "IBO"
354 */
355 struct ir3_ibo_mapping {
356 #define IBO_INVALID 0xff
357 /* Maps logical SSBO state to hw state: */
358 uint8_t ssbo_to_ibo[IR3_MAX_SHADER_BUFFERS];
359 uint8_t ssbo_to_tex[IR3_MAX_SHADER_BUFFERS];
360
361 /* Maps logical Image state to hw state: */
362 uint8_t image_to_ibo[IR3_MAX_SHADER_IMAGES];
363 uint8_t image_to_tex[IR3_MAX_SHADER_IMAGES];
364
365 /* Maps hw state back to logical SSBO or Image state:
366 *
367 * note IBO_SSBO ORd into values to indicate that the
368 * hw slot is used for SSBO state vs Image state.
369 */
370 #define IBO_SSBO 0x80
371 uint8_t ibo_to_image[32];
372 uint8_t tex_to_image[32];
373
374 uint8_t num_ibo;
375 uint8_t num_tex; /* including real textures */
376 uint8_t tex_base; /* the number of real textures, ie. image/ssbo start here */
377 };
378
379 /* Represents half register in regid */
380 #define HALF_REG_ID 0x100
381
382 struct ir3_shader_variant {
383 struct fd_bo *bo;
384
385 /* variant id (for debug) */
386 uint32_t id;
387
388 struct ir3_shader_key key;
389
390 /* vertex shaders can have an extra version for hwbinning pass,
391 * which is pointed to by so->binning:
392 */
393 bool binning_pass;
394 // union {
395 struct ir3_shader_variant *binning;
396 struct ir3_shader_variant *nonbinning;
397 // };
398
399 struct ir3_info info;
400 struct ir3 *ir;
401
402 /* Levels of nesting of flow control:
403 */
404 unsigned branchstack;
405
406 unsigned max_sun;
407 unsigned loops;
408
409 /* the instructions length is in units of instruction groups
410 * (4 instructions for a3xx, 16 instructions for a4xx.. each
411 * instruction is 2 dwords):
412 */
413 unsigned instrlen;
414
415 /* the constants length is in units of vec4's, and is the sum of
416 * the uniforms and the built-in compiler constants
417 */
418 unsigned constlen;
419
420 /* About Linkage:
421 * + Let the frag shader determine the position/compmask for the
422 * varyings, since it is the place where we know if the varying
423 * is actually used, and if so, which components are used. So
424 * what the hw calls "outloc" is taken from the "inloc" of the
425 * frag shader.
426 * + From the vert shader, we only need the output regid
427 */
428
429 bool frag_coord, frag_face, color0_mrt;
430
431 /* NOTE: for input/outputs, slot is:
432 * gl_vert_attrib - for VS inputs
433 * gl_varying_slot - for VS output / FS input
434 * gl_frag_result - for FS output
435 */
436
437 /* varyings/outputs: */
438 unsigned outputs_count;
439 struct {
440 uint8_t slot;
441 uint8_t regid;
442 bool half : 1;
443 } outputs[16 + 2]; /* +POSITION +PSIZE */
444 bool writes_pos, writes_smask, writes_psize;
445
446 /* attributes (VS) / varyings (FS):
447 * Note that sysval's should come *after* normal inputs.
448 */
449 unsigned inputs_count;
450 struct {
451 uint8_t slot;
452 uint8_t regid;
453 uint8_t compmask;
454 /* location of input (ie. offset passed to bary.f, etc). This
455 * matches the SP_VS_VPC_DST_REG.OUTLOCn value (a3xx and a4xx
456 * have the OUTLOCn value offset by 8, presumably to account
457 * for gl_Position/gl_PointSize)
458 */
459 uint8_t inloc;
460 /* vertex shader specific: */
461 bool sysval : 1; /* slot is a gl_system_value */
462 /* fragment shader specific: */
463 bool bary : 1; /* fetched varying (vs one loaded into reg) */
464 bool rasterflat : 1; /* special handling for emit->rasterflat */
465 bool use_ldlv : 1; /* internal to ir3_compiler_nir */
466 bool half : 1;
467 enum glsl_interp_mode interpolate;
468 } inputs[16 + 2]; /* +POSITION +FACE */
469
470 /* sum of input components (scalar). For frag shaders, it only counts
471 * the varying inputs:
472 */
473 unsigned total_in;
474
475 /* For frag shaders, the total number of inputs (not scalar,
476 * ie. SP_VS_PARAM_REG.TOTALVSOUTVAR)
477 */
478 unsigned varying_in;
479
480 /* Remapping table to map Image and SSBO to hw state: */
481 struct ir3_ibo_mapping image_mapping;
482
483 /* number of samplers/textures (which are currently 1:1): */
484 int num_samp;
485
486 /* is there an implicit sampler to read framebuffer (FS only).. if
487 * so the sampler-idx is 'num_samp - 1' (ie. it is appended after
488 * the last "real" texture)
489 */
490 bool fb_read;
491
492 /* do we have one or more SSBO instructions: */
493 bool has_ssbo;
494
495 /* do we need derivatives: */
496 bool need_pixlod;
497
498 /* do we have kill, image write, etc (which prevents early-z): */
499 bool no_earlyz;
500
501 bool per_samp;
502
503 /* for astc srgb workaround, the number/base of additional
504 * alpha tex states we need, and index of original tex states
505 */
506 struct {
507 unsigned base, count;
508 unsigned orig_idx[16];
509 } astc_srgb;
510
511 /* shader variants form a linked list: */
512 struct ir3_shader_variant *next;
513
514 /* replicated here to avoid passing extra ptrs everywhere: */
515 gl_shader_stage type;
516 struct ir3_shader *shader;
517 };
518
519 struct ir3_ubo_range {
520 uint32_t offset; /* start offset of this block in const register file */
521 uint32_t start, end; /* range of block that's actually used */
522 };
523
524 struct ir3_ubo_analysis_state
525 {
526 struct ir3_ubo_range range[IR3_MAX_CONSTANT_BUFFERS];
527 uint32_t size;
528 uint32_t lower_count;
529 uint32_t cmdstream_size; /* for per-gen backend to stash required cmdstream size */
530 };
531
532
533 struct ir3_shader {
534 gl_shader_stage type;
535
536 /* shader id (for debug): */
537 uint32_t id;
538 uint32_t variant_count;
539
540 /* so we know when we can disable TGSI related hacks: */
541 bool from_tgsi;
542
543 struct ir3_compiler *compiler;
544
545 struct ir3_ubo_analysis_state ubo_state;
546 struct ir3_const_state const_state;
547
548 struct nir_shader *nir;
549 struct ir3_stream_output_info stream_output;
550
551 struct ir3_shader_variant *variants;
552 mtx_t variants_lock;
553 };
554
555 void * ir3_shader_assemble(struct ir3_shader_variant *v, uint32_t gpu_id);
556 struct ir3_shader_variant * ir3_shader_get_variant(struct ir3_shader *shader,
557 struct ir3_shader_key *key, bool binning_pass, bool *created);
558 struct ir3_shader * ir3_shader_from_nir(struct ir3_compiler *compiler, nir_shader *nir);
559 void ir3_shader_destroy(struct ir3_shader *shader);
560 void ir3_shader_disasm(struct ir3_shader_variant *so, uint32_t *bin, FILE *out);
561 uint64_t ir3_shader_outputs(const struct ir3_shader *so);
562
563 int
564 ir3_glsl_type_size(const struct glsl_type *type, bool bindless);
565
566 static inline const char *
567 ir3_shader_stage(struct ir3_shader *shader)
568 {
569 switch (shader->type) {
570 case MESA_SHADER_VERTEX: return "VERT";
571 case MESA_SHADER_TESS_CTRL: return "TCS";
572 case MESA_SHADER_TESS_EVAL: return "TES";
573 case MESA_SHADER_GEOMETRY: return "GEOM";
574 case MESA_SHADER_FRAGMENT: return "FRAG";
575 case MESA_SHADER_COMPUTE: return "CL";
576 default:
577 unreachable("invalid type");
578 return NULL;
579 }
580 }
581
582 /*
583 * Helper/util:
584 */
585
586 static inline int
587 ir3_find_output(const struct ir3_shader_variant *so, gl_varying_slot slot)
588 {
589 int j;
590
591 for (j = 0; j < so->outputs_count; j++)
592 if (so->outputs[j].slot == slot)
593 return j;
594
595 /* it seems optional to have a OUT.BCOLOR[n] for each OUT.COLOR[n]
596 * in the vertex shader.. but the fragment shader doesn't know this
597 * so it will always have both IN.COLOR[n] and IN.BCOLOR[n]. So
598 * at link time if there is no matching OUT.BCOLOR[n], we must map
599 * OUT.COLOR[n] to IN.BCOLOR[n]. And visa versa if there is only
600 * a OUT.BCOLOR[n] but no matching OUT.COLOR[n]
601 */
602 if (slot == VARYING_SLOT_BFC0) {
603 slot = VARYING_SLOT_COL0;
604 } else if (slot == VARYING_SLOT_BFC1) {
605 slot = VARYING_SLOT_COL1;
606 } else if (slot == VARYING_SLOT_COL0) {
607 slot = VARYING_SLOT_BFC0;
608 } else if (slot == VARYING_SLOT_COL1) {
609 slot = VARYING_SLOT_BFC1;
610 } else {
611 return 0;
612 }
613
614 for (j = 0; j < so->outputs_count; j++)
615 if (so->outputs[j].slot == slot)
616 return j;
617
618 debug_assert(0);
619
620 return 0;
621 }
622
623 static inline int
624 ir3_next_varying(const struct ir3_shader_variant *so, int i)
625 {
626 while (++i < so->inputs_count)
627 if (so->inputs[i].compmask && so->inputs[i].bary)
628 break;
629 return i;
630 }
631
632 struct ir3_shader_linkage {
633 uint8_t max_loc;
634 uint8_t cnt;
635 struct {
636 uint8_t regid;
637 uint8_t compmask;
638 uint8_t loc;
639 } var[32];
640 };
641
642 static inline void
643 ir3_link_add(struct ir3_shader_linkage *l, uint8_t regid, uint8_t compmask, uint8_t loc)
644 {
645 int i = l->cnt++;
646
647 debug_assert(i < ARRAY_SIZE(l->var));
648
649 l->var[i].regid = regid;
650 l->var[i].compmask = compmask;
651 l->var[i].loc = loc;
652 l->max_loc = MAX2(l->max_loc, loc + util_last_bit(compmask));
653 }
654
655 static inline void
656 ir3_link_shaders(struct ir3_shader_linkage *l,
657 const struct ir3_shader_variant *vs,
658 const struct ir3_shader_variant *fs)
659 {
660 int j = -1, k;
661
662 while (l->cnt < ARRAY_SIZE(l->var)) {
663 j = ir3_next_varying(fs, j);
664
665 if (j >= fs->inputs_count)
666 break;
667
668 if (fs->inputs[j].inloc >= fs->total_in)
669 continue;
670
671 k = ir3_find_output(vs, fs->inputs[j].slot);
672
673 ir3_link_add(l, vs->outputs[k].regid,
674 fs->inputs[j].compmask, fs->inputs[j].inloc);
675 }
676 }
677
678 static inline uint32_t
679 ir3_find_output_regid(const struct ir3_shader_variant *so, unsigned slot)
680 {
681 int j;
682 for (j = 0; j < so->outputs_count; j++)
683 if (so->outputs[j].slot == slot) {
684 uint32_t regid = so->outputs[j].regid;
685 if (so->outputs[j].half)
686 regid |= HALF_REG_ID;
687 return regid;
688 }
689 return regid(63, 0);
690 }
691
692 static inline uint32_t
693 ir3_find_sysval_regid(const struct ir3_shader_variant *so, unsigned slot)
694 {
695 int j;
696 for (j = 0; j < so->inputs_count; j++)
697 if (so->inputs[j].sysval && (so->inputs[j].slot == slot))
698 return so->inputs[j].regid;
699 return regid(63, 0);
700 }
701
702 /* calculate register footprint in terms of half-regs (ie. one full
703 * reg counts as two half-regs).
704 */
705 static inline uint32_t
706 ir3_shader_halfregs(const struct ir3_shader_variant *v)
707 {
708 return (2 * (v->info.max_reg + 1)) + (v->info.max_half_reg + 1);
709 }
710
711 #endif /* IR3_SHADER_H_ */