From: Nicolai Hähnle Date: Fri, 28 Oct 2016 12:42:46 +0000 (+0200) Subject: radeonsi: add always-inline pass to si_llvm_finalize_module X-Git-Tag: upstream/17.1.0~5029 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23dfb688ba3b7be0feb2a178e65e419fe2678379;p=platform%2Fupstream%2Fmesa.git radeonsi: add always-inline pass to si_llvm_finalize_module Change the pass manager as well, since this is a module-level pass. No noticeable run-time difference on shader-db. Reviewed-by: Marek Olšák --- diff --git a/src/gallium/drivers/radeonsi/si_shader_tgsi_setup.c b/src/gallium/drivers/radeonsi/si_shader_tgsi_setup.c index c7a08cc..2d82574 100644 --- a/src/gallium/drivers/radeonsi/si_shader_tgsi_setup.c +++ b/src/gallium/drivers/radeonsi/si_shader_tgsi_setup.c @@ -38,6 +38,7 @@ #include "util/u_debug.h" #include +#include #include /* Data for if/else/endif and bgnloop/endloop control flow structures. @@ -1333,8 +1334,7 @@ void si_llvm_finalize_module(struct si_shader_context *ctx, LLVMTargetLibraryInfoRef target_library_info; /* Create the pass manager */ - gallivm->passmgr = LLVMCreateFunctionPassManagerForModule( - gallivm->module); + gallivm->passmgr = LLVMCreatePassManager(); target_library_info = gallivm_create_target_library_info(triple); LLVMAddTargetLibraryInfo(target_library_info, gallivm->passmgr); @@ -1342,6 +1342,8 @@ void si_llvm_finalize_module(struct si_shader_context *ctx, if (run_verifier) LLVMAddVerifierPass(gallivm->passmgr); + LLVMAddAlwaysInlinerPass(gallivm->passmgr); + /* This pass should eliminate all the load and store instructions */ LLVMAddPromoteMemoryToRegisterPass(gallivm->passmgr); @@ -1353,9 +1355,7 @@ void si_llvm_finalize_module(struct si_shader_context *ctx, LLVMAddInstructionCombiningPass(gallivm->passmgr); /* Run the pass */ - LLVMInitializeFunctionPassManager(gallivm->passmgr); - LLVMRunFunctionPassManager(gallivm->passmgr, ctx->main_fn); - LLVMFinalizeFunctionPassManager(gallivm->passmgr); + LLVMRunPassManager(gallivm->passmgr, ctx->gallivm.module); LLVMDisposeBuilder(gallivm->builder); LLVMDisposePassManager(gallivm->passmgr);