mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
[lib/LTO] Rename few instances of Lto to LTO.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287840 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
56037652a8
commit
6c4098223f
@ -168,7 +168,7 @@ static void runNewPMCustomPasses(Module &Mod, TargetMachine *TM,
|
||||
}
|
||||
|
||||
static void runOldPMPasses(Config &Conf, Module &Mod, TargetMachine *TM,
|
||||
bool IsThinLto) {
|
||||
bool IsThinLTO) {
|
||||
legacy::PassManager passes;
|
||||
passes.add(createTargetTransformInfoWrapperPass(TM->getTargetIRAnalysis()));
|
||||
|
||||
@ -182,7 +182,7 @@ static void runOldPMPasses(Config &Conf, Module &Mod, TargetMachine *TM,
|
||||
PMB.LoopVectorize = true;
|
||||
PMB.SLPVectorize = true;
|
||||
PMB.OptLevel = Conf.OptLevel;
|
||||
if (IsThinLto)
|
||||
if (IsThinLTO)
|
||||
PMB.populateThinLTOPassManager(passes);
|
||||
else
|
||||
PMB.populateLTOPassManager(passes);
|
||||
@ -190,10 +190,10 @@ static void runOldPMPasses(Config &Conf, Module &Mod, TargetMachine *TM,
|
||||
}
|
||||
|
||||
bool opt(Config &Conf, TargetMachine *TM, unsigned Task, Module &Mod,
|
||||
bool IsThinLto) {
|
||||
bool IsThinLTO) {
|
||||
Mod.setDataLayout(TM->createDataLayout());
|
||||
if (Conf.OptPipeline.empty())
|
||||
runOldPMPasses(Conf, Mod, TM, IsThinLto);
|
||||
runOldPMPasses(Conf, Mod, TM, IsThinLTO);
|
||||
else
|
||||
runNewPMCustomPasses(Mod, TM, Conf.OptPipeline, Conf.AAPipeline,
|
||||
Conf.DisableVerify);
|
||||
@ -302,7 +302,7 @@ Error lto::backend(Config &C, AddStreamFn AddStream,
|
||||
handleAsmUndefinedRefs(*Mod, *TM);
|
||||
|
||||
if (!C.CodeGenOnly)
|
||||
if (!opt(C, TM.get(), 0, *Mod, /*IsThinLto=*/false))
|
||||
if (!opt(C, TM.get(), 0, *Mod, /*IsThinLTO=*/false))
|
||||
return Error::success();
|
||||
|
||||
if (ParallelCodeGenParallelismLevel == 1) {
|
||||
@ -364,7 +364,7 @@ Error lto::thinBackend(Config &Conf, unsigned Task, AddStreamFn AddStream,
|
||||
if (Conf.PostImportModuleHook && !Conf.PostImportModuleHook(Task, Mod))
|
||||
return Error::success();
|
||||
|
||||
if (!opt(Conf, TM.get(), Task, Mod, /*IsThinLto=*/true))
|
||||
if (!opt(Conf, TM.get(), Task, Mod, /*IsThinLTO=*/true))
|
||||
return Error::success();
|
||||
|
||||
codegen(Conf, TM.get(), AddStream, Task, Mod);
|
||||
|
Loading…
Reference in New Issue
Block a user