radeonsi: add si_shader_destroy_binary

Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
Marek Olšák 2015-12-28 00:53:29 +01:00
parent 5c9f104567
commit ccd7d7e13d
2 changed files with 10 additions and 5 deletions

View File

@ -4218,6 +4218,14 @@ out:
return r;
}
void si_shader_destroy_binary(struct radeon_shader_binary *binary)
{
FREE(binary->code);
FREE(binary->rodata);
FREE(binary->relocs);
FREE(binary->disasm_string);
}
void si_shader_destroy(struct si_shader *shader)
{
if (shader->gs_copy_shader) {
@ -4229,9 +4237,5 @@ void si_shader_destroy(struct si_shader *shader)
r600_resource_reference(&shader->scratch_bo, NULL);
r600_resource_reference(&shader->bo, NULL);
FREE(shader->binary.code);
FREE(shader->binary.rodata);
FREE(shader->binary.relocs);
FREE(shader->binary.disasm_string);
si_shader_destroy_binary(&shader->binary);
}

View File

@ -341,6 +341,7 @@ int si_compile_llvm(struct si_screen *sscreen,
struct pipe_debug_callback *debug,
unsigned processor);
void si_shader_destroy(struct si_shader *shader);
void si_shader_destroy_binary(struct radeon_shader_binary *binary);
unsigned si_shader_io_get_unique_index(unsigned semantic_name, unsigned index);
int si_shader_binary_upload(struct si_screen *sscreen, struct si_shader *shader);
void si_shader_binary_read(struct si_screen *sscreen,