diff options
author | Nicolai Hähnle <[email protected]> | 2017-08-04 16:47:48 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-08-22 09:50:53 +0200 |
commit | 4bbf6ded20522028262ab17f56603b904d2f8b85 (patch) | |
tree | 658ab8338eea65e7ec40a783358bd9af77518ccd /src/gallium/drivers/radeonsi/si_compute.c | |
parent | bbaad18c04ad31eaaa945cf644f5f9693c2e1f5e (diff) |
radeonsi: add reference count to si_compute
To allow keep-alive for deferred logging.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_compute.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_compute.c | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/src/gallium/drivers/radeonsi/si_compute.c b/src/gallium/drivers/radeonsi/si_compute.c index 5efdd3919d2..8c016ba65ab 100644 --- a/src/gallium/drivers/radeonsi/si_compute.c +++ b/src/gallium/drivers/radeonsi/si_compute.c @@ -151,6 +151,7 @@ static void *si_create_compute_state( struct si_screen *sscreen = (struct si_screen *)ctx->screen; struct si_compute *program = CALLOC_STRUCT(si_compute); + pipe_reference_init(&program->reference, 1); program->screen = (struct si_screen *)ctx->screen; program->ir_type = cso->ir_type; program->local_size = cso->req_local_mem; @@ -855,20 +856,24 @@ static void si_launch_grid( sctx->b.flags |= SI_CONTEXT_CS_PARTIAL_FLUSH; } +void si_destroy_compute(struct si_compute *program) +{ + if (program->ir_type == PIPE_SHADER_IR_TGSI) { + util_queue_drop_job(&program->screen->shader_compiler_queue, + &program->ready); + util_queue_fence_destroy(&program->ready); + } + + si_shader_destroy(&program->shader); + FREE(program); +} static void si_delete_compute_state(struct pipe_context *ctx, void* state){ struct si_compute *program = (struct si_compute *)state; struct si_context *sctx = (struct si_context*)ctx; - if (!state) { + if (!state) return; - } - - if (program->ir_type == PIPE_SHADER_IR_TGSI) { - util_queue_drop_job(&sctx->screen->shader_compiler_queue, - &program->ready); - util_queue_fence_destroy(&program->ready); - } if (program == sctx->cs_shader_state.program) sctx->cs_shader_state.program = NULL; @@ -876,8 +881,7 @@ static void si_delete_compute_state(struct pipe_context *ctx, void* state){ if (program == sctx->cs_shader_state.emitted_program) sctx->cs_shader_state.emitted_program = NULL; - si_shader_destroy(&program->shader); - FREE(program); + si_compute_reference(&program, NULL); } static void si_set_compute_resources(struct pipe_context * ctx_, |