radeonsi: inline si_shader_binary_read

Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
Marek Olšák 2016-01-03 17:05:05 +01:00
parent c9c031f3d0
commit b0df5f4c19
3 changed files with 3 additions and 11 deletions

View File

@ -138,8 +138,8 @@ static void *si_create_compute_state(
* the shader code to the GPU.
*/
init_scratch_buffer(sctx, program);
si_shader_binary_read(&program->shader.binary,
&program->shader.config);
si_shader_binary_read_config(&program->shader.binary,
&program->shader.config, 0);
si_shader_dump(sctx->screen, &program->shader.binary,
&program->shader.config, &sctx->b.debug,
TGSI_PROCESSOR_COMPUTE);

View File

@ -3885,12 +3885,6 @@ void si_shader_dump(struct si_screen *sscreen,
si_shader_dump_stats(sscreen, conf, binary->code_size, debug, processor);
}
void si_shader_binary_read(struct radeon_shader_binary *binary,
struct si_shader_config *conf)
{
si_shader_binary_read_config(binary, conf, 0);
}
int si_compile_llvm(struct si_screen *sscreen,
struct radeon_shader_binary *binary,
struct si_shader_config *conf,
@ -3917,7 +3911,7 @@ int si_compile_llvm(struct si_screen *sscreen,
return r;
}
si_shader_binary_read(binary, conf);
si_shader_binary_read_config(binary, conf, 0);
si_shader_dump(sscreen, binary, conf, debug, processor);
FREE(binary->config);

View File

@ -344,8 +344,6 @@ 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 radeon_shader_binary *binary,
struct si_shader_config *conf);
void si_shader_dump(struct si_screen *sscreen,
struct radeon_shader_binary *binary,
struct si_shader_config *conf,