mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 13:50:11 +00:00
[NFC] Undo some erroneous renamings
Some vars renamed by mistake during auto-replacements. Undoing them.
This commit is contained in:
parent
630818a850
commit
a1d83776bf
@ -670,10 +670,10 @@ PreservedAnalyses GVN::run(Function &F, FunctionAnalysisManager &AM) {
|
||||
auto &AA = AM.getResult<AAManager>(F);
|
||||
auto *MemDep =
|
||||
isMemDepEnabled() ? &AM.getResult<MemoryDependenceAnalysis>(F) : nullptr;
|
||||
auto *Load = AM.getCachedResult<LoopAnalysis>(F);
|
||||
auto *LI = AM.getCachedResult<LoopAnalysis>(F);
|
||||
auto *MSSA = AM.getCachedResult<MemorySSAAnalysis>(F);
|
||||
auto &ORE = AM.getResult<OptimizationRemarkEmitterAnalysis>(F);
|
||||
bool Changed = runImpl(F, AC, DT, TLI, AA, MemDep, Load, &ORE,
|
||||
bool Changed = runImpl(F, AC, DT, TLI, AA, MemDep, LI, &ORE,
|
||||
MSSA ? &MSSA->getMSSA() : nullptr);
|
||||
if (!Changed)
|
||||
return PreservedAnalyses::all();
|
||||
@ -683,7 +683,7 @@ PreservedAnalyses GVN::run(Function &F, FunctionAnalysisManager &AM) {
|
||||
PA.preserve<TargetLibraryAnalysis>();
|
||||
if (MSSA)
|
||||
PA.preserve<MemorySSAAnalysis>();
|
||||
if (Load)
|
||||
if (LI)
|
||||
PA.preserve<LoopAnalysis>();
|
||||
return PA;
|
||||
}
|
||||
@ -2301,7 +2301,7 @@ bool GVN::processInstruction(Instruction *I) {
|
||||
/// runOnFunction - This is the main transformation entry point for a function.
|
||||
bool GVN::runImpl(Function &F, AssumptionCache &RunAC, DominatorTree &RunDT,
|
||||
const TargetLibraryInfo &RunTLI, AAResults &RunAA,
|
||||
MemoryDependenceResults *RunMD, LoopInfo *Load,
|
||||
MemoryDependenceResults *RunMD, LoopInfo *LI,
|
||||
OptimizationRemarkEmitter *RunORE, MemorySSA *MSSA) {
|
||||
AC = &RunAC;
|
||||
DT = &RunDT;
|
||||
@ -2311,7 +2311,7 @@ bool GVN::runImpl(Function &F, AssumptionCache &RunAC, DominatorTree &RunDT,
|
||||
MD = RunMD;
|
||||
ImplicitControlFlowTracking ImplicitCFT;
|
||||
ICF = &ImplicitCFT;
|
||||
this->LI = Load;
|
||||
this->LI = LI;
|
||||
VN.setMemDep(MD);
|
||||
ORE = RunORE;
|
||||
InvalidBlockRPONumbers = true;
|
||||
@ -2327,7 +2327,7 @@ bool GVN::runImpl(Function &F, AssumptionCache &RunAC, DominatorTree &RunDT,
|
||||
for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ) {
|
||||
BasicBlock *BB = &*FI++;
|
||||
|
||||
bool removedBlock = MergeBlockIntoPredecessor(BB, &DTU, Load, MSSAU, MD);
|
||||
bool removedBlock = MergeBlockIntoPredecessor(BB, &DTU, LI, MSSAU, MD);
|
||||
if (removedBlock)
|
||||
++NumGVNBlocks;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user