93182c710c271c9ed160b685291777bca572849b
[mesa.git] / src / gallium / drivers / freedreno / ir3 / ir3_shader.h
1 /* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
2
3 /*
4 * Copyright (C) 2014 Rob Clark <robclark@freedesktop.org>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 * Authors:
26 * Rob Clark <robclark@freedesktop.org>
27 */
28
29 #ifndef IR3_SHADER_H_
30 #define IR3_SHADER_H_
31
32 #include "pipe/p_state.h"
33 #include "compiler/shader_enums.h"
34 #include "util/bitscan.h"
35
36 #include "ir3.h"
37 #include "disasm.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 /**
68 * For consts needed to pass internal values to shader which may or may not
69 * be required, rather than allocating worst-case const space, we scan the
70 * shader and allocate consts as-needed:
71 *
72 * + SSBO sizes: only needed if shader has a get_buffer_size intrinsic
73 * for a given SSBO
74 *
75 * + Image dimensions: needed to calculate pixel offset, but only for
76 * images that have a image_store intrinsic
77 */
78 struct ir3_driver_const_layout {
79 struct {
80 uint32_t mask; /* bitmask of SSBOs that have get_buffer_size */
81 uint32_t count; /* number of consts allocated */
82 /* one const allocated per SSBO which has get_buffer_size,
83 * ssbo_sizes.off[ssbo_id] is offset from start of ssbo_sizes
84 * consts:
85 */
86 uint32_t off[PIPE_MAX_SHADER_BUFFERS];
87 } ssbo_size;
88
89 struct {
90 uint32_t mask; /* bitmask of images that have image_store */
91 uint32_t count; /* number of consts allocated */
92 /* three const allocated per image which has image_store:
93 * + cpp (bytes per pixel)
94 * + pitch (y pitch)
95 * + array_pitch (z pitch)
96 */
97 uint32_t off[PIPE_MAX_SHADER_IMAGES];
98 } image_dims;
99 };
100
101 /* Configuration key used to identify a shader variant.. different
102 * shader variants can be used to implement features not supported
103 * in hw (two sided color), binning-pass vertex shader, etc.
104 */
105 struct ir3_shader_key {
106 union {
107 struct {
108 /*
109 * Combined Vertex/Fragment shader parameters:
110 */
111 unsigned ucp_enables : 8;
112
113 /* do we need to check {v,f}saturate_{s,t,r}? */
114 unsigned has_per_samp : 1;
115
116 /*
117 * Vertex shader variant parameters:
118 */
119 unsigned binning_pass : 1;
120 unsigned vclamp_color : 1;
121
122 /*
123 * Fragment shader variant parameters:
124 */
125 unsigned color_two_side : 1;
126 unsigned half_precision : 1;
127 /* used when shader needs to handle flat varyings (a4xx)
128 * for front/back color inputs to frag shader:
129 */
130 unsigned rasterflat : 1;
131 unsigned fclamp_color : 1;
132 };
133 uint32_t global;
134 };
135
136 /* bitmask of sampler which needs coords clamped for vertex
137 * shader:
138 */
139 uint16_t vsaturate_s, vsaturate_t, vsaturate_r;
140
141 /* bitmask of sampler which needs coords clamped for frag
142 * shader:
143 */
144 uint16_t fsaturate_s, fsaturate_t, fsaturate_r;
145
146 /* bitmask of ms shifts */
147 uint32_t vsamples, fsamples;
148
149 /* bitmask of samplers which need astc srgb workaround: */
150 uint16_t vastc_srgb, fastc_srgb;
151 };
152
153 static inline bool
154 ir3_shader_key_equal(struct ir3_shader_key *a, struct ir3_shader_key *b)
155 {
156 /* slow-path if we need to check {v,f}saturate_{s,t,r} */
157 if (a->has_per_samp || b->has_per_samp)
158 return memcmp(a, b, sizeof(struct ir3_shader_key)) == 0;
159 return a->global == b->global;
160 }
161
162 /* will the two keys produce different lowering for a fragment shader? */
163 static inline bool
164 ir3_shader_key_changes_fs(struct ir3_shader_key *key, struct ir3_shader_key *last_key)
165 {
166 if (last_key->has_per_samp || key->has_per_samp) {
167 if ((last_key->fsaturate_s != key->fsaturate_s) ||
168 (last_key->fsaturate_t != key->fsaturate_t) ||
169 (last_key->fsaturate_r != key->fsaturate_r) ||
170 (last_key->fsamples != key->fsamples) ||
171 (last_key->fastc_srgb != key->fastc_srgb))
172 return true;
173 }
174
175 if (last_key->fclamp_color != key->fclamp_color)
176 return true;
177
178 if (last_key->color_two_side != key->color_two_side)
179 return true;
180
181 if (last_key->half_precision != key->half_precision)
182 return true;
183
184 if (last_key->rasterflat != key->rasterflat)
185 return true;
186
187 if (last_key->ucp_enables != key->ucp_enables)
188 return true;
189
190 return false;
191 }
192
193 /* will the two keys produce different lowering for a vertex shader? */
194 static inline bool
195 ir3_shader_key_changes_vs(struct ir3_shader_key *key, struct ir3_shader_key *last_key)
196 {
197 if (last_key->has_per_samp || key->has_per_samp) {
198 if ((last_key->vsaturate_s != key->vsaturate_s) ||
199 (last_key->vsaturate_t != key->vsaturate_t) ||
200 (last_key->vsaturate_r != key->vsaturate_r) ||
201 (last_key->vsamples != key->vsamples) ||
202 (last_key->vastc_srgb != key->vastc_srgb))
203 return true;
204 }
205
206 if (last_key->vclamp_color != key->vclamp_color)
207 return true;
208
209 if (last_key->ucp_enables != key->ucp_enables)
210 return true;
211
212 return false;
213 }
214
215 struct ir3_shader_variant {
216 struct fd_bo *bo;
217
218 /* variant id (for debug) */
219 uint32_t id;
220
221 struct ir3_shader_key key;
222
223 struct ir3_driver_const_layout const_layout;
224 struct ir3_info info;
225 struct ir3 *ir;
226
227 /* the instructions length is in units of instruction groups
228 * (4 instructions for a3xx, 16 instructions for a4xx.. each
229 * instruction is 2 dwords):
230 */
231 unsigned instrlen;
232
233 /* the constants length is in units of vec4's, and is the sum of
234 * the uniforms and the built-in compiler constants
235 */
236 unsigned constlen;
237
238 /* number of uniforms (in vec4), not including built-in compiler
239 * constants, etc.
240 */
241 unsigned num_uniforms;
242
243 unsigned num_ubos;
244
245 /* About Linkage:
246 * + Let the frag shader determine the position/compmask for the
247 * varyings, since it is the place where we know if the varying
248 * is actually used, and if so, which components are used. So
249 * what the hw calls "outloc" is taken from the "inloc" of the
250 * frag shader.
251 * + From the vert shader, we only need the output regid
252 */
253
254 /* for frag shader, pos_regid holds the frag_vcoord, ie. what is passed
255 * to bary.f instructions
256 */
257 uint8_t pos_regid;
258 bool frag_coord, frag_face, color0_mrt;
259
260 /* NOTE: for input/outputs, slot is:
261 * gl_vert_attrib - for VS inputs
262 * gl_varying_slot - for VS output / FS input
263 * gl_frag_result - for FS output
264 */
265
266 /* varyings/outputs: */
267 unsigned outputs_count;
268 struct {
269 uint8_t slot;
270 uint8_t regid;
271 } outputs[16 + 2]; /* +POSITION +PSIZE */
272 bool writes_pos, writes_psize;
273
274 /* attributes (VS) / varyings (FS):
275 * Note that sysval's should come *after* normal inputs.
276 */
277 unsigned inputs_count;
278 struct {
279 uint8_t slot;
280 uint8_t regid;
281 uint8_t compmask;
282 uint8_t ncomp;
283 /* location of input (ie. offset passed to bary.f, etc). This
284 * matches the SP_VS_VPC_DST_REG.OUTLOCn value (a3xx and a4xx
285 * have the OUTLOCn value offset by 8, presumably to account
286 * for gl_Position/gl_PointSize)
287 */
288 uint8_t inloc;
289 /* vertex shader specific: */
290 bool sysval : 1; /* slot is a gl_system_value */
291 /* fragment shader specific: */
292 bool bary : 1; /* fetched varying (vs one loaded into reg) */
293 bool rasterflat : 1; /* special handling for emit->rasterflat */
294 enum glsl_interp_mode interpolate;
295 } inputs[16 + 2]; /* +POSITION +FACE */
296
297 /* sum of input components (scalar). For frag shaders, it only counts
298 * the varying inputs:
299 */
300 unsigned total_in;
301
302 /* For frag shaders, the total number of inputs (not scalar,
303 * ie. SP_VS_PARAM_REG.TOTALVSOUTVAR)
304 */
305 unsigned varying_in;
306
307 /* do we have one or more texture sample instructions: */
308 bool has_samp;
309
310 /* do we have one or more SSBO instructions: */
311 bool has_ssbo;
312
313 /* do we have kill instructions: */
314 bool has_kill;
315
316 /* Layout of constant registers, each section (in vec4). Pointer size
317 * is 32b (a3xx, a4xx), or 64b (a5xx+), which effects the size of the
318 * UBO and stream-out consts.
319 */
320 struct {
321 /* user const start at zero */
322 unsigned ubo;
323 /* NOTE that a3xx might need a section for SSBO addresses too */
324 unsigned ssbo_sizes;
325 unsigned image_dims;
326 unsigned driver_param;
327 unsigned tfbo;
328 unsigned immediate;
329 } constbase;
330
331 unsigned immediates_count;
332 struct {
333 uint32_t val[4];
334 } immediates[64];
335
336 /* for astc srgb workaround, the number/base of additional
337 * alpha tex states we need, and index of original tex states
338 */
339 struct {
340 unsigned base, count;
341 unsigned orig_idx[16];
342 } astc_srgb;
343
344 /* shader variants form a linked list: */
345 struct ir3_shader_variant *next;
346
347 /* replicated here to avoid passing extra ptrs everywhere: */
348 enum shader_t type;
349 struct ir3_shader *shader;
350 };
351
352 typedef struct nir_shader nir_shader;
353
354 struct ir3_shader {
355 enum shader_t type;
356
357 /* shader id (for debug): */
358 uint32_t id;
359 uint32_t variant_count;
360
361 /* so we know when we can disable TGSI related hacks: */
362 bool from_tgsi;
363
364 struct ir3_compiler *compiler;
365
366 nir_shader *nir;
367 struct pipe_stream_output_info stream_output;
368
369 struct ir3_shader_variant *variants;
370 };
371
372 void * ir3_shader_assemble(struct ir3_shader_variant *v, uint32_t gpu_id);
373
374 struct ir3_shader * ir3_shader_create(struct ir3_compiler *compiler,
375 const struct pipe_shader_state *cso, enum shader_t type,
376 struct pipe_debug_callback *debug);
377 struct ir3_shader *
378 ir3_shader_create_compute(struct ir3_compiler *compiler,
379 const struct pipe_compute_state *cso,
380 struct pipe_debug_callback *debug);
381 void ir3_shader_destroy(struct ir3_shader *shader);
382 struct ir3_shader_variant * ir3_shader_variant(struct ir3_shader *shader,
383 struct ir3_shader_key key, struct pipe_debug_callback *debug);
384 void ir3_shader_disasm(struct ir3_shader_variant *so, uint32_t *bin, FILE *out);
385 uint64_t ir3_shader_outputs(const struct ir3_shader *so);
386
387 struct fd_ringbuffer;
388 struct fd_context;
389 void ir3_emit_vs_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring,
390 struct fd_context *ctx, const struct pipe_draw_info *info);
391 void ir3_emit_fs_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring,
392 struct fd_context *ctx);
393 void ir3_emit_cs_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring,
394 struct fd_context *ctx, const struct pipe_grid_info *info);
395
396 int
397 ir3_glsl_type_size(const struct glsl_type *type);
398
399 static inline const char *
400 ir3_shader_stage(struct ir3_shader *shader)
401 {
402 switch (shader->type) {
403 case SHADER_VERTEX: return "VERT";
404 case SHADER_FRAGMENT: return "FRAG";
405 case SHADER_COMPUTE: return "CL";
406 default:
407 unreachable("invalid type");
408 return NULL;
409 }
410 }
411
412 /*
413 * Helper/util:
414 */
415
416 #include "pipe/p_shader_tokens.h"
417
418 static inline int
419 ir3_find_output(const struct ir3_shader_variant *so, gl_varying_slot slot)
420 {
421 int j;
422
423 for (j = 0; j < so->outputs_count; j++)
424 if (so->outputs[j].slot == slot)
425 return j;
426
427 /* it seems optional to have a OUT.BCOLOR[n] for each OUT.COLOR[n]
428 * in the vertex shader.. but the fragment shader doesn't know this
429 * so it will always have both IN.COLOR[n] and IN.BCOLOR[n]. So
430 * at link time if there is no matching OUT.BCOLOR[n], we must map
431 * OUT.COLOR[n] to IN.BCOLOR[n]. And visa versa if there is only
432 * a OUT.BCOLOR[n] but no matching OUT.COLOR[n]
433 */
434 if (slot == VARYING_SLOT_BFC0) {
435 slot = VARYING_SLOT_COL0;
436 } else if (slot == VARYING_SLOT_BFC1) {
437 slot = VARYING_SLOT_COL1;
438 } else if (slot == VARYING_SLOT_COL0) {
439 slot = VARYING_SLOT_BFC0;
440 } else if (slot == VARYING_SLOT_COL1) {
441 slot = VARYING_SLOT_BFC1;
442 } else {
443 return 0;
444 }
445
446 for (j = 0; j < so->outputs_count; j++)
447 if (so->outputs[j].slot == slot)
448 return j;
449
450 debug_assert(0);
451
452 return 0;
453 }
454
455 static inline int
456 ir3_next_varying(const struct ir3_shader_variant *so, int i)
457 {
458 while (++i < so->inputs_count)
459 if (so->inputs[i].compmask && so->inputs[i].bary)
460 break;
461 return i;
462 }
463
464 struct ir3_shader_linkage {
465 uint8_t max_loc;
466 uint8_t cnt;
467 struct {
468 uint8_t regid;
469 uint8_t compmask;
470 uint8_t loc;
471 } var[32];
472 };
473
474 static inline void
475 ir3_link_add(struct ir3_shader_linkage *l, uint8_t regid, uint8_t compmask, uint8_t loc)
476 {
477 int i = l->cnt++;
478
479 debug_assert(i < ARRAY_SIZE(l->var));
480
481 l->var[i].regid = regid;
482 l->var[i].compmask = compmask;
483 l->var[i].loc = loc;
484 l->max_loc = MAX2(l->max_loc, loc + util_last_bit(compmask));
485 }
486
487 static inline void
488 ir3_link_shaders(struct ir3_shader_linkage *l,
489 const struct ir3_shader_variant *vs,
490 const struct ir3_shader_variant *fs)
491 {
492 int j = -1, k;
493
494 while (l->cnt < ARRAY_SIZE(l->var)) {
495 j = ir3_next_varying(fs, j);
496
497 if (j >= fs->inputs_count)
498 break;
499
500 if (fs->inputs[j].inloc >= fs->total_in)
501 continue;
502
503 k = ir3_find_output(vs, fs->inputs[j].slot);
504
505 ir3_link_add(l, vs->outputs[k].regid,
506 fs->inputs[j].compmask, fs->inputs[j].inloc);
507 }
508 }
509
510 static inline uint32_t
511 ir3_find_output_regid(const struct ir3_shader_variant *so, unsigned slot)
512 {
513 int j;
514 for (j = 0; j < so->outputs_count; j++)
515 if (so->outputs[j].slot == slot)
516 return so->outputs[j].regid;
517 return regid(63, 0);
518 }
519
520 static inline uint32_t
521 ir3_find_sysval_regid(const struct ir3_shader_variant *so, unsigned slot)
522 {
523 int j;
524 for (j = 0; j < so->inputs_count; j++)
525 if (so->inputs[j].sysval && (so->inputs[j].slot == slot))
526 return so->inputs[j].regid;
527 return regid(63, 0);
528 }
529
530 /* calculate register footprint in terms of half-regs (ie. one full
531 * reg counts as two half-regs).
532 */
533 static inline uint32_t
534 ir3_shader_halfregs(const struct ir3_shader_variant *v)
535 {
536 return (2 * (v->info.max_reg + 1)) + (v->info.max_half_reg + 1);
537 }
538
539 #endif /* IR3_SHADER_H_ */