mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-19 22:11:08 +00:00
[LTO] Add configuartion option to use default optimization pipeline
This patch adds a configuration option to simply use the default pass pipeline in favor of the LTO-specific one. We observed some severe performance penalties when uding device-side LTO for OpenMP offloading applications caused by the LTO-pass pipeline. This is primarily because OpenMP uses an LLVM bitcode library to implement a GPU runtime library. In a standard compilation we link this bitcode library into each source file and optimize it with the default pipeline. When performing LTO we link it late with all the files, but the bitcode library never has the regular optimization pipeline applied to it so we miss a few optimizations just using the LTO pipeline to optimize it. I'm not committed to this solution, but it's the easiest method to solve this performance regression when using LTO without changing the optimizatin pipeline for other users. Reviewed By: tianshilei1992 Differential Revision: https://reviews.llvm.org/D122133
This commit is contained in:
parent
b68e78cea6
commit
5856f30b5a
@ -860,6 +860,7 @@ std::unique_ptr<lto::LTO> createLTO(
|
||||
// TODO: Handle index-only thin-LTO
|
||||
Backend = lto::createInProcessThinBackend(
|
||||
llvm::heavyweight_hardware_concurrency(1));
|
||||
Conf.UseDefaultPipeline = true;
|
||||
|
||||
Conf.CPU = Arch.str();
|
||||
Conf.Options = codegen::InitTargetOptionsFromCodeGenFlags(TheTriple);
|
||||
|
@ -60,6 +60,9 @@ struct Config {
|
||||
/// Use the new pass manager
|
||||
bool UseNewPM = LLVM_ENABLE_NEW_PASS_MANAGER;
|
||||
|
||||
/// Use the standard optimization pipeline.
|
||||
bool UseDefaultPipeline = false;
|
||||
|
||||
/// Flag to indicate that the optimizer should not assume builtins are present
|
||||
/// on the target.
|
||||
bool Freestanding = false;
|
||||
|
@ -298,6 +298,8 @@ static void runNewPMPasses(const Config &Conf, Module &Mod, TargetMachine *TM,
|
||||
report_fatal_error(Twine("unable to parse pass pipeline description '") +
|
||||
Conf.OptPipeline + "': " + toString(std::move(Err)));
|
||||
}
|
||||
} else if (Conf.UseDefaultPipeline) {
|
||||
MPM.addPass(PB.buildPerModuleDefaultPipeline(OL));
|
||||
} else if (IsThinLTO) {
|
||||
MPM.addPass(PB.buildThinLTODefaultPipeline(OL, ImportSummary));
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user