freedreno/ir3: debug cleanup
[mesa.git] / src / gallium / drivers / freedreno / ir3 / ir3_gallium.c
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 #include "pipe/p_state.h"
28 #include "pipe/p_screen.h"
29 #include "util/u_string.h"
30 #include "util/u_memory.h"
31 #include "util/u_inlines.h"
32 #include "util/u_format.h"
33 #include "tgsi/tgsi_dump.h"
34 #include "tgsi/tgsi_parse.h"
35
36 #include "nir/tgsi_to_nir.h"
37
38 #include "freedreno_context.h"
39 #include "freedreno_util.h"
40
41 #include "ir3/ir3_shader.h"
42 #include "ir3/ir3_gallium.h"
43 #include "ir3/ir3_compiler.h"
44 #include "ir3/ir3_nir.h"
45
46 static void
47 dump_shader_info(struct ir3_shader_variant *v, bool binning_pass,
48 struct pipe_debug_callback *debug)
49 {
50 if (!unlikely(fd_mesa_debug & FD_DBG_SHADERDB))
51 return;
52
53 pipe_debug_message(debug, SHADER_INFO,
54 "%s shader: %u inst, %u dwords, "
55 "%u half, %u full, %u constlen, "
56 "%u (ss), %u (sy), %d max_sun, %d loops\n",
57 ir3_shader_stage(v),
58 v->info.instrs_count,
59 v->info.sizedwords,
60 v->info.max_half_reg + 1,
61 v->info.max_reg + 1,
62 v->constlen,
63 v->info.ss, v->info.sy,
64 v->max_sun, v->loops);
65 }
66
67 struct ir3_shader_variant *
68 ir3_shader_variant(struct ir3_shader *shader, struct ir3_shader_key key,
69 bool binning_pass, struct pipe_debug_callback *debug)
70 {
71 struct ir3_shader_variant *v;
72 bool created = false;
73
74 /* some shader key values only apply to vertex or frag shader,
75 * so normalize the key to avoid constructing multiple identical
76 * variants:
77 */
78 ir3_normalize_key(&key, shader->type);
79
80 v = ir3_shader_get_variant(shader, &key, binning_pass, &created);
81
82 if (created) {
83 dump_shader_info(v, binning_pass, debug);
84 }
85
86 return v;
87 }
88
89 static void
90 copy_stream_out(struct ir3_stream_output_info *i,
91 const struct pipe_stream_output_info *p)
92 {
93 STATIC_ASSERT(ARRAY_SIZE(i->stride) == ARRAY_SIZE(p->stride));
94 STATIC_ASSERT(ARRAY_SIZE(i->output) == ARRAY_SIZE(p->output));
95
96 i->num_outputs = p->num_outputs;
97 for (int n = 0; n < ARRAY_SIZE(i->stride); n++)
98 i->stride[n] = p->stride[n];
99
100 for (int n = 0; n < ARRAY_SIZE(i->output); n++) {
101 i->output[n].register_index = p->output[n].register_index;
102 i->output[n].start_component = p->output[n].start_component;
103 i->output[n].num_components = p->output[n].num_components;
104 i->output[n].output_buffer = p->output[n].output_buffer;
105 i->output[n].dst_offset = p->output[n].dst_offset;
106 i->output[n].stream = p->output[n].stream;
107 }
108 }
109
110 struct ir3_shader *
111 ir3_shader_create(struct ir3_compiler *compiler,
112 const struct pipe_shader_state *cso,
113 struct pipe_debug_callback *debug,
114 struct pipe_screen *screen)
115 {
116 nir_shader *nir;
117 if (cso->type == PIPE_SHADER_IR_NIR) {
118 /* we take ownership of the reference: */
119 nir = cso->ir.nir;
120 } else {
121 debug_assert(cso->type == PIPE_SHADER_IR_TGSI);
122 if (ir3_shader_debug & IR3_DBG_DISASM) {
123 tgsi_dump(cso->tokens, 0);
124 }
125 nir = tgsi_to_nir(cso->tokens, screen);
126 }
127
128 struct ir3_shader *shader = ir3_shader_from_nir(compiler, nir);
129
130 copy_stream_out(&shader->stream_output, &cso->stream_output);
131
132 if (fd_mesa_debug & FD_DBG_SHADERDB) {
133 /* if shader-db run, create a standard variant immediately
134 * (as otherwise nothing will trigger the shader to be
135 * actually compiled)
136 */
137 static struct ir3_shader_key key; /* static is implicitly zeroed */
138 ir3_shader_variant(shader, key, false, debug);
139
140 if (nir->info.stage != MESA_SHADER_FRAGMENT)
141 ir3_shader_variant(shader, key, true, debug);
142 }
143 return shader;
144 }
145
146 /* a bit annoying that compute-shader and normal shader state objects
147 * aren't a bit more aligned.
148 */
149 struct ir3_shader *
150 ir3_shader_create_compute(struct ir3_compiler *compiler,
151 const struct pipe_compute_state *cso,
152 struct pipe_debug_callback *debug,
153 struct pipe_screen *screen)
154 {
155 nir_shader *nir;
156 if (cso->ir_type == PIPE_SHADER_IR_NIR) {
157 /* we take ownership of the reference: */
158 nir = (nir_shader *)cso->prog;
159 } else {
160 debug_assert(cso->ir_type == PIPE_SHADER_IR_TGSI);
161 if (ir3_shader_debug & IR3_DBG_DISASM) {
162 tgsi_dump(cso->prog, 0);
163 }
164 nir = tgsi_to_nir(cso->prog, screen);
165 }
166
167 struct ir3_shader *shader = ir3_shader_from_nir(compiler, nir);
168
169 return shader;
170 }
171
172 /* This has to reach into the fd_context a bit more than the rest of
173 * ir3, but it needs to be aligned with the compiler, so both agree
174 * on which const regs hold what. And the logic is identical between
175 * a3xx/a4xx, the only difference is small details in the actual
176 * CP_LOAD_STATE packets (which is handled inside the generation
177 * specific ctx->emit_const(_bo)() fxns)
178 */
179
180 #include "freedreno_resource.h"
181
182 static inline bool
183 is_stateobj(struct fd_ringbuffer *ring)
184 {
185 /* XXX this is an ugly way to differentiate.. */
186 return !!(ring->flags & FD_RINGBUFFER_STREAMING);
187 }
188
189 static inline void
190 ring_wfi(struct fd_batch *batch, struct fd_ringbuffer *ring)
191 {
192 /* when we emit const state via ring (IB2) we need a WFI, but when
193 * it is emit'd via stateobj, we don't
194 */
195 if (is_stateobj(ring))
196 return;
197
198 fd_wfi(batch, ring);
199 }
200
201 static void
202 emit_const(struct fd_screen *screen, struct fd_ringbuffer *ring,
203 const struct ir3_shader_variant *v, uint32_t dst_offset,
204 uint32_t offset, uint32_t size,
205 const void *user_buffer, struct pipe_resource *buffer)
206 {
207 assert(dst_offset + size <= v->constlen * 4);
208
209 screen->emit_const(ring, v->type, dst_offset,
210 offset, size, user_buffer, buffer);
211 }
212
213 /**
214 * Indirectly calculates size of cmdstream needed for ir3_emit_user_consts().
215 * Returns number of packets, and total size of all the payload.
216 *
217 * The value can be a worst-case, ie. some shader variants may not read all
218 * consts, etc.
219 *
220 * Returns size in dwords.
221 */
222 void
223 ir3_user_consts_size(struct ir3_ubo_analysis_state *state,
224 unsigned *packets, unsigned *size)
225 {
226 *packets = *size = 0;
227
228 for (uint32_t i = 0; i < ARRAY_SIZE(state->range); i++) {
229 if (state->range[i].start < state->range[i].end) {
230 *size += state->range[i].end - state->range[i].start;
231 (*packets)++;
232 }
233 }
234 }
235
236 void
237 ir3_emit_user_consts(struct fd_screen *screen, const struct ir3_shader_variant *v,
238 struct fd_ringbuffer *ring, struct fd_constbuf_stateobj *constbuf)
239 {
240 struct ir3_ubo_analysis_state *state;
241 state = &v->shader->ubo_state;
242
243 for (uint32_t i = 0; i < ARRAY_SIZE(state->range); i++) {
244 struct pipe_constant_buffer *cb = &constbuf->cb[i];
245
246 if (state->range[i].start < state->range[i].end &&
247 constbuf->enabled_mask & (1 << i)) {
248
249 uint32_t size = state->range[i].end - state->range[i].start;
250 uint32_t offset = cb->buffer_offset + state->range[i].start;
251
252 /* and even if the start of the const buffer is before
253 * first_immediate, the end may not be:
254 */
255 size = MIN2(size, (16 * v->constlen) - state->range[i].offset);
256
257 if (size == 0)
258 continue;
259
260 /* things should be aligned to vec4: */
261 debug_assert((state->range[i].offset % 16) == 0);
262 debug_assert((size % 16) == 0);
263 debug_assert((offset % 16) == 0);
264
265 emit_const(screen, ring, v, state->range[i].offset / 4,
266 offset, size / 4, cb->user_buffer, cb->buffer);
267 }
268 }
269 }
270
271 void
272 ir3_emit_ubos(struct fd_screen *screen, const struct ir3_shader_variant *v,
273 struct fd_ringbuffer *ring, struct fd_constbuf_stateobj *constbuf)
274 {
275 const struct ir3_const_state *const_state = &v->shader->const_state;
276 uint32_t offset = const_state->offsets.ubo;
277 if (v->constlen > offset) {
278 uint32_t params = const_state->num_ubos;
279 uint32_t offsets[params];
280 struct pipe_resource *prscs[params];
281
282 for (uint32_t i = 0; i < params; i++) {
283 const uint32_t index = i + 1; /* UBOs start at index 1 */
284 struct pipe_constant_buffer *cb = &constbuf->cb[index];
285 assert(!cb->user_buffer);
286
287 if ((constbuf->enabled_mask & (1 << index)) && cb->buffer) {
288 offsets[i] = cb->buffer_offset;
289 prscs[i] = cb->buffer;
290 } else {
291 offsets[i] = 0;
292 prscs[i] = NULL;
293 }
294 }
295
296 assert(offset * 4 + params < v->constlen * 4);
297
298 screen->emit_const_bo(ring, v->type, false, offset * 4, params, prscs, offsets);
299 }
300 }
301
302 void
303 ir3_emit_ssbo_sizes(struct fd_screen *screen, const struct ir3_shader_variant *v,
304 struct fd_ringbuffer *ring, struct fd_shaderbuf_stateobj *sb)
305 {
306 const struct ir3_const_state *const_state = &v->shader->const_state;
307 uint32_t offset = const_state->offsets.ssbo_sizes;
308 if (v->constlen > offset) {
309 uint32_t sizes[align(const_state->ssbo_size.count, 4)];
310 unsigned mask = const_state->ssbo_size.mask;
311
312 while (mask) {
313 unsigned index = u_bit_scan(&mask);
314 unsigned off = const_state->ssbo_size.off[index];
315 sizes[off] = sb->sb[index].buffer_size;
316 }
317
318 emit_const(screen, ring, v, offset * 4,
319 0, ARRAY_SIZE(sizes), sizes, NULL);
320 }
321 }
322
323 void
324 ir3_emit_image_dims(struct fd_screen *screen, const struct ir3_shader_variant *v,
325 struct fd_ringbuffer *ring, struct fd_shaderimg_stateobj *si)
326 {
327 const struct ir3_const_state *const_state = &v->shader->const_state;
328 uint32_t offset = const_state->offsets.image_dims;
329 if (v->constlen > offset) {
330 uint32_t dims[align(const_state->image_dims.count, 4)];
331 unsigned mask = const_state->image_dims.mask;
332
333 while (mask) {
334 struct pipe_image_view *img;
335 struct fd_resource *rsc;
336 unsigned index = u_bit_scan(&mask);
337 unsigned off = const_state->image_dims.off[index];
338
339 img = &si->si[index];
340 rsc = fd_resource(img->resource);
341
342 dims[off + 0] = util_format_get_blocksize(img->format);
343 if (img->resource->target != PIPE_BUFFER) {
344 unsigned lvl = img->u.tex.level;
345 /* note for 2d/cube/etc images, even if re-interpreted
346 * as a different color format, the pixel size should
347 * be the same, so use original dimensions for y and z
348 * stride:
349 */
350 dims[off + 1] = rsc->slices[lvl].pitch * rsc->cpp;
351 /* see corresponding logic in fd_resource_offset(): */
352 if (rsc->layer_first) {
353 dims[off + 2] = rsc->layer_size;
354 } else {
355 dims[off + 2] = rsc->slices[lvl].size0;
356 }
357 } else {
358 /* For buffer-backed images, the log2 of the format's
359 * bytes-per-pixel is placed on the 2nd slot. This is useful
360 * when emitting image_size instructions, for which we need
361 * to divide by bpp for image buffers. Since the bpp
362 * can only be power-of-two, the division is implemented
363 * as a SHR, and for that it is handy to have the log2 of
364 * bpp as a constant. (log2 = first-set-bit - 1)
365 */
366 dims[off + 1] = ffs(dims[off + 0]) - 1;
367 }
368 }
369 uint32_t size = MIN2(ARRAY_SIZE(dims), v->constlen * 4 - offset * 4);
370
371 emit_const(screen, ring, v, offset * 4, 0, size, dims, NULL);
372 }
373 }
374
375 void
376 ir3_emit_immediates(struct fd_screen *screen, const struct ir3_shader_variant *v,
377 struct fd_ringbuffer *ring)
378 {
379 const struct ir3_const_state *const_state = &v->shader->const_state;
380 uint32_t base = const_state->offsets.immediate;
381 int size = const_state->immediates_count;
382
383 /* truncate size to avoid writing constants that shader
384 * does not use:
385 */
386 size = MIN2(size + base, v->constlen) - base;
387
388 /* convert out of vec4: */
389 base *= 4;
390 size *= 4;
391
392 if (size > 0) {
393 emit_const(screen, ring, v, base,
394 0, size, const_state->immediates[0].val, NULL);
395 }
396 }
397
398 static uint32_t
399 link_geometry_stages(const struct ir3_shader_variant *producer,
400 const struct ir3_shader_variant *consumer,
401 uint32_t *locs)
402 {
403 uint32_t num_loc = 0;
404
405 nir_foreach_variable(in_var, &consumer->shader->nir->inputs) {
406 nir_foreach_variable(out_var, &producer->shader->nir->outputs) {
407 if (in_var->data.location == out_var->data.location) {
408 locs[in_var->data.driver_location] =
409 producer->shader->output_loc[out_var->data.driver_location] * 4;
410
411 debug_assert(num_loc <= in_var->data.driver_location + 1);
412 num_loc = in_var->data.driver_location + 1;
413 }
414 }
415 }
416
417 return num_loc;
418 }
419
420 void
421 ir3_emit_link_map(struct fd_screen *screen,
422 const struct ir3_shader_variant *producer,
423 const struct ir3_shader_variant *v, struct fd_ringbuffer *ring)
424 {
425 const struct ir3_const_state *const_state = &v->shader->const_state;
426 uint32_t base = const_state->offsets.primitive_map;
427 uint32_t patch_locs[MAX_VARYING] = { }, num_loc;
428
429 num_loc = link_geometry_stages(producer, v, patch_locs);
430
431 int size = DIV_ROUND_UP(num_loc, 4);
432
433 /* truncate size to avoid writing constants that shader
434 * does not use:
435 */
436 size = MIN2(size + base, v->constlen) - base;
437
438 /* convert out of vec4: */
439 base *= 4;
440 size *= 4;
441
442 if (size > 0)
443 emit_const(screen, ring, v, base, 0, size, patch_locs, NULL);
444 }
445
446 /* emit stream-out buffers: */
447 static void
448 emit_tfbos(struct fd_context *ctx, const struct ir3_shader_variant *v,
449 struct fd_ringbuffer *ring)
450 {
451 /* streamout addresses after driver-params: */
452 const struct ir3_const_state *const_state = &v->shader->const_state;
453 uint32_t offset = const_state->offsets.tfbo;
454 if (v->constlen > offset) {
455 struct fd_streamout_stateobj *so = &ctx->streamout;
456 struct ir3_stream_output_info *info = &v->shader->stream_output;
457 uint32_t params = 4;
458 uint32_t offsets[params];
459 struct pipe_resource *prscs[params];
460
461 for (uint32_t i = 0; i < params; i++) {
462 struct pipe_stream_output_target *target = so->targets[i];
463
464 if (target) {
465 offsets[i] = (so->offsets[i] * info->stride[i] * 4) +
466 target->buffer_offset;
467 prscs[i] = target->buffer;
468 } else {
469 offsets[i] = 0;
470 prscs[i] = NULL;
471 }
472 }
473
474 assert(offset * 4 + params < v->constlen * 4);
475
476 ctx->screen->emit_const_bo(ring, v->type, true, offset * 4, params, prscs, offsets);
477 }
478 }
479
480 static uint32_t
481 max_tf_vtx(struct fd_context *ctx, const struct ir3_shader_variant *v)
482 {
483 struct fd_streamout_stateobj *so = &ctx->streamout;
484 struct ir3_stream_output_info *info = &v->shader->stream_output;
485 uint32_t maxvtxcnt = 0x7fffffff;
486
487 if (ctx->screen->gpu_id >= 500)
488 return 0;
489 if (v->binning_pass)
490 return 0;
491 if (v->shader->stream_output.num_outputs == 0)
492 return 0;
493 if (so->num_targets == 0)
494 return 0;
495
496 /* offset to write to is:
497 *
498 * total_vtxcnt = vtxcnt + offsets[i]
499 * offset = total_vtxcnt * stride[i]
500 *
501 * offset = vtxcnt * stride[i] ; calculated in shader
502 * + offsets[i] * stride[i] ; calculated at emit_tfbos()
503 *
504 * assuming for each vtx, each target buffer will have data written
505 * up to 'offset + stride[i]', that leaves maxvtxcnt as:
506 *
507 * buffer_size = (maxvtxcnt * stride[i]) + stride[i]
508 * maxvtxcnt = (buffer_size - stride[i]) / stride[i]
509 *
510 * but shader is actually doing a less-than (rather than less-than-
511 * equal) check, so we can drop the -stride[i].
512 *
513 * TODO is assumption about `offset + stride[i]` legit?
514 */
515 for (unsigned i = 0; i < so->num_targets; i++) {
516 struct pipe_stream_output_target *target = so->targets[i];
517 unsigned stride = info->stride[i] * 4; /* convert dwords->bytes */
518 if (target) {
519 uint32_t max = target->buffer_size / stride;
520 maxvtxcnt = MIN2(maxvtxcnt, max);
521 }
522 }
523
524 return maxvtxcnt;
525 }
526
527 static void
528 emit_common_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring,
529 struct fd_context *ctx, enum pipe_shader_type t)
530 {
531 enum fd_dirty_shader_state dirty = ctx->dirty_shader[t];
532
533 /* When we use CP_SET_DRAW_STATE objects to emit constant state,
534 * if we emit any of it we need to emit all. This is because
535 * we are using the same state-group-id each time for uniform
536 * state, and if previous update is never evaluated (due to no
537 * visible primitives in the current tile) then the new stateobj
538 * completely replaces the old one.
539 *
540 * Possibly if we split up different parts of the const state to
541 * different state-objects we could avoid this.
542 */
543 if (dirty && is_stateobj(ring))
544 dirty = ~0;
545
546 if (dirty & (FD_DIRTY_SHADER_PROG | FD_DIRTY_SHADER_CONST)) {
547 struct fd_constbuf_stateobj *constbuf;
548 bool shader_dirty;
549
550 constbuf = &ctx->constbuf[t];
551 shader_dirty = !!(dirty & FD_DIRTY_SHADER_PROG);
552
553 ring_wfi(ctx->batch, ring);
554
555 ir3_emit_user_consts(ctx->screen, v, ring, constbuf);
556 ir3_emit_ubos(ctx->screen, v, ring, constbuf);
557 if (shader_dirty)
558 ir3_emit_immediates(ctx->screen, v, ring);
559 }
560
561 if (dirty & (FD_DIRTY_SHADER_PROG | FD_DIRTY_SHADER_SSBO)) {
562 struct fd_shaderbuf_stateobj *sb = &ctx->shaderbuf[t];
563 ring_wfi(ctx->batch, ring);
564 ir3_emit_ssbo_sizes(ctx->screen, v, ring, sb);
565 }
566
567 if (dirty & (FD_DIRTY_SHADER_PROG | FD_DIRTY_SHADER_IMAGE)) {
568 struct fd_shaderimg_stateobj *si = &ctx->shaderimg[t];
569 ring_wfi(ctx->batch, ring);
570 ir3_emit_image_dims(ctx->screen, v, ring, si);
571 }
572 }
573
574 void
575 ir3_emit_vs_driver_params(const struct ir3_shader_variant *v,
576 struct fd_ringbuffer *ring, struct fd_context *ctx,
577 const struct pipe_draw_info *info)
578 {
579 debug_assert(ir3_needs_vs_driver_params(v));
580
581 const struct ir3_const_state *const_state = &v->shader->const_state;
582 uint32_t offset = const_state->offsets.driver_param;
583 uint32_t vertex_params[IR3_DP_VS_COUNT] = {
584 [IR3_DP_VTXID_BASE] = info->index_size ?
585 info->index_bias : info->start,
586 [IR3_DP_VTXCNT_MAX] = max_tf_vtx(ctx, v),
587 };
588 /* if no user-clip-planes, we don't need to emit the
589 * entire thing:
590 */
591 uint32_t vertex_params_size = 4;
592
593 if (v->key.ucp_enables) {
594 struct pipe_clip_state *ucp = &ctx->ucp;
595 unsigned pos = IR3_DP_UCP0_X;
596 for (unsigned i = 0; pos <= IR3_DP_UCP7_W; i++) {
597 for (unsigned j = 0; j < 4; j++) {
598 vertex_params[pos] = fui(ucp->ucp[i][j]);
599 pos++;
600 }
601 }
602 vertex_params_size = ARRAY_SIZE(vertex_params);
603 }
604
605 vertex_params_size = MAX2(vertex_params_size, const_state->num_driver_params);
606
607 bool needs_vtxid_base =
608 ir3_find_sysval_regid(v, SYSTEM_VALUE_VERTEX_ID_ZERO_BASE) != regid(63, 0);
609
610 /* for indirect draw, we need to copy VTXID_BASE from
611 * indirect-draw parameters buffer.. which is annoying
612 * and means we can't easily emit these consts in cmd
613 * stream so need to copy them to bo.
614 */
615 if (info->indirect && needs_vtxid_base) {
616 struct pipe_draw_indirect_info *indirect = info->indirect;
617 struct pipe_resource *vertex_params_rsc =
618 pipe_buffer_create(&ctx->screen->base,
619 PIPE_BIND_CONSTANT_BUFFER, PIPE_USAGE_STREAM,
620 vertex_params_size * 4);
621 unsigned src_off = info->indirect->offset;;
622 void *ptr;
623
624 ptr = fd_bo_map(fd_resource(vertex_params_rsc)->bo);
625 memcpy(ptr, vertex_params, vertex_params_size * 4);
626
627 if (info->index_size) {
628 /* indexed draw, index_bias is 4th field: */
629 src_off += 3 * 4;
630 } else {
631 /* non-indexed draw, start is 3rd field: */
632 src_off += 2 * 4;
633 }
634
635 /* copy index_bias or start from draw params: */
636 ctx->screen->mem_to_mem(ring, vertex_params_rsc, 0,
637 indirect->buffer, src_off, 1);
638
639 emit_const(ctx->screen, ring, v, offset * 4, 0,
640 vertex_params_size, NULL, vertex_params_rsc);
641
642 pipe_resource_reference(&vertex_params_rsc, NULL);
643 } else {
644 emit_const(ctx->screen, ring, v, offset * 4, 0,
645 vertex_params_size, vertex_params, NULL);
646 }
647
648 /* if needed, emit stream-out buffer addresses: */
649 if (vertex_params[IR3_DP_VTXCNT_MAX] > 0) {
650 emit_tfbos(ctx, v, ring);
651 }
652 }
653
654 void
655 ir3_emit_vs_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring,
656 struct fd_context *ctx, const struct pipe_draw_info *info)
657 {
658 debug_assert(v->type == MESA_SHADER_VERTEX);
659
660 emit_common_consts(v, ring, ctx, PIPE_SHADER_VERTEX);
661
662 /* emit driver params every time: */
663 if (info && ir3_needs_vs_driver_params(v)) {
664 ring_wfi(ctx->batch, ring);
665 ir3_emit_vs_driver_params(v, ring, ctx, info);
666 }
667 }
668
669 void
670 ir3_emit_fs_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring,
671 struct fd_context *ctx)
672 {
673 debug_assert(v->type == MESA_SHADER_FRAGMENT);
674
675 emit_common_consts(v, ring, ctx, PIPE_SHADER_FRAGMENT);
676 }
677
678 /* emit compute-shader consts: */
679 void
680 ir3_emit_cs_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring,
681 struct fd_context *ctx, const struct pipe_grid_info *info)
682 {
683 debug_assert(gl_shader_stage_is_compute(v->type));
684
685 emit_common_consts(v, ring, ctx, PIPE_SHADER_COMPUTE);
686
687 /* emit compute-shader driver-params: */
688 const struct ir3_const_state *const_state = &v->shader->const_state;
689 uint32_t offset = const_state->offsets.driver_param;
690 if (v->constlen > offset) {
691 ring_wfi(ctx->batch, ring);
692
693 if (info->indirect) {
694 struct pipe_resource *indirect = NULL;
695 unsigned indirect_offset;
696
697 /* This is a bit awkward, but CP_LOAD_STATE.EXT_SRC_ADDR needs
698 * to be aligned more strongly than 4 bytes. So in this case
699 * we need a temporary buffer to copy NumWorkGroups.xyz to.
700 *
701 * TODO if previous compute job is writing to info->indirect,
702 * we might need a WFI.. but since we currently flush for each
703 * compute job, we are probably ok for now.
704 */
705 if (info->indirect_offset & 0xf) {
706 indirect = pipe_buffer_create(&ctx->screen->base,
707 PIPE_BIND_COMMAND_ARGS_BUFFER, PIPE_USAGE_STREAM,
708 0x1000);
709 indirect_offset = 0;
710
711 ctx->screen->mem_to_mem(ring, indirect, 0, info->indirect,
712 info->indirect_offset, 3);
713 } else {
714 pipe_resource_reference(&indirect, info->indirect);
715 indirect_offset = info->indirect_offset;
716 }
717
718 emit_const(ctx->screen, ring, v, offset * 4,
719 indirect_offset, 4, NULL, indirect);
720
721 pipe_resource_reference(&indirect, NULL);
722 } else {
723 uint32_t compute_params[IR3_DP_CS_COUNT] = {
724 [IR3_DP_NUM_WORK_GROUPS_X] = info->grid[0],
725 [IR3_DP_NUM_WORK_GROUPS_Y] = info->grid[1],
726 [IR3_DP_NUM_WORK_GROUPS_Z] = info->grid[2],
727 [IR3_DP_LOCAL_GROUP_SIZE_X] = info->block[0],
728 [IR3_DP_LOCAL_GROUP_SIZE_Y] = info->block[1],
729 [IR3_DP_LOCAL_GROUP_SIZE_Z] = info->block[2],
730 };
731 uint32_t size = MIN2(const_state->num_driver_params,
732 v->constlen * 4 - offset * 4);
733
734 emit_const(ctx->screen, ring, v, offset * 4, 0, size,
735 compute_params, NULL);
736 }
737 }
738 }
739
740 static void *
741 ir3_shader_state_create(struct pipe_context *pctx, const struct pipe_shader_state *cso)
742 {
743 struct fd_context *ctx = fd_context(pctx);
744 struct ir3_compiler *compiler = ctx->screen->compiler;
745 return ir3_shader_create(compiler, cso, &ctx->debug, pctx->screen);
746 }
747
748 static void
749 ir3_shader_state_delete(struct pipe_context *pctx, void *hwcso)
750 {
751 struct ir3_shader *so = hwcso;
752 ir3_shader_destroy(so);
753 }
754
755 void
756 ir3_prog_init(struct pipe_context *pctx)
757 {
758 pctx->create_vs_state = ir3_shader_state_create;
759 pctx->delete_vs_state = ir3_shader_state_delete;
760
761 pctx->create_tcs_state = ir3_shader_state_create;
762 pctx->delete_tcs_state = ir3_shader_state_delete;
763
764 pctx->create_tes_state = ir3_shader_state_create;
765 pctx->delete_tes_state = ir3_shader_state_delete;
766
767 pctx->create_gs_state = ir3_shader_state_create;
768 pctx->delete_gs_state = ir3_shader_state_delete;
769
770 pctx->create_fs_state = ir3_shader_state_create;
771 pctx->delete_fs_state = ir3_shader_state_delete;
772 }