mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Now LICM is a LoopPass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35001 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a6199c87c2
commit
54959d6cf6
@ -112,7 +112,7 @@ FunctionPass *createInstructionCombiningPass();
|
|||||||
//
|
//
|
||||||
// LICM - This pass is a loop invariant code motion and memory promotion pass.
|
// LICM - This pass is a loop invariant code motion and memory promotion pass.
|
||||||
//
|
//
|
||||||
FunctionPass *createLICMPass();
|
LoopPass *createLICMPass();
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
|
@ -38,6 +38,7 @@
|
|||||||
#include "llvm/Instructions.h"
|
#include "llvm/Instructions.h"
|
||||||
#include "llvm/Target/TargetData.h"
|
#include "llvm/Target/TargetData.h"
|
||||||
#include "llvm/Analysis/LoopInfo.h"
|
#include "llvm/Analysis/LoopInfo.h"
|
||||||
|
#include "llvm/Analysis/LoopPass.h"
|
||||||
#include "llvm/Analysis/AliasAnalysis.h"
|
#include "llvm/Analysis/AliasAnalysis.h"
|
||||||
#include "llvm/Analysis/AliasSetTracker.h"
|
#include "llvm/Analysis/AliasSetTracker.h"
|
||||||
#include "llvm/Analysis/Dominators.h"
|
#include "llvm/Analysis/Dominators.h"
|
||||||
@ -61,8 +62,8 @@ namespace {
|
|||||||
DisablePromotion("disable-licm-promotion", cl::Hidden,
|
DisablePromotion("disable-licm-promotion", cl::Hidden,
|
||||||
cl::desc("Disable memory promotion in LICM pass"));
|
cl::desc("Disable memory promotion in LICM pass"));
|
||||||
|
|
||||||
struct VISIBILITY_HIDDEN LICM : public FunctionPass {
|
struct VISIBILITY_HIDDEN LICM : public LoopPass {
|
||||||
virtual bool runOnFunction(Function &F);
|
virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
|
||||||
|
|
||||||
/// This transformation requires natural loop information & requires that
|
/// This transformation requires natural loop information & requires that
|
||||||
/// loop preheaders be inserted into the CFG...
|
/// loop preheaders be inserted into the CFG...
|
||||||
@ -76,6 +77,11 @@ namespace {
|
|||||||
AU.addRequired<AliasAnalysis>();
|
AU.addRequired<AliasAnalysis>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool doFinalize() {
|
||||||
|
LoopToAliasMap.clear();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Various analyses that we use...
|
// Various analyses that we use...
|
||||||
AliasAnalysis *AA; // Current AliasAnalysis information
|
AliasAnalysis *AA; // Current AliasAnalysis information
|
||||||
@ -88,10 +94,7 @@ namespace {
|
|||||||
BasicBlock *Preheader; // The preheader block of the current loop...
|
BasicBlock *Preheader; // The preheader block of the current loop...
|
||||||
Loop *CurLoop; // The current loop we are working on...
|
Loop *CurLoop; // The current loop we are working on...
|
||||||
AliasSetTracker *CurAST; // AliasSet information for the current loop...
|
AliasSetTracker *CurAST; // AliasSet information for the current loop...
|
||||||
|
std::map<Loop *, AliasSetTracker *> LoopToAliasMap;
|
||||||
/// visitLoop - Hoist expressions out of the specified loop...
|
|
||||||
///
|
|
||||||
void visitLoop(Loop *L, AliasSetTracker &AST);
|
|
||||||
|
|
||||||
/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
|
/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
|
||||||
/// dominated by the specified block, and that are in the current loop) in
|
/// dominated by the specified block, and that are in the current loop) in
|
||||||
@ -199,12 +202,11 @@ namespace {
|
|||||||
RegisterPass<LICM> X("licm", "Loop Invariant Code Motion");
|
RegisterPass<LICM> X("licm", "Loop Invariant Code Motion");
|
||||||
}
|
}
|
||||||
|
|
||||||
FunctionPass *llvm::createLICMPass() { return new LICM(); }
|
LoopPass *llvm::createLICMPass() { return new LICM(); }
|
||||||
|
|
||||||
/// runOnFunction - For LICM, this simply traverses the loop structure of the
|
/// Hoist expressions out of the specified loop...
|
||||||
/// function, hoisting expressions out of loops if possible.
|
|
||||||
///
|
///
|
||||||
bool LICM::runOnFunction(Function &) {
|
bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
|
||||||
Changed = false;
|
Changed = false;
|
||||||
|
|
||||||
// Get our Loop and Alias Analysis information...
|
// Get our Loop and Alias Analysis information...
|
||||||
@ -213,28 +215,19 @@ bool LICM::runOnFunction(Function &) {
|
|||||||
DF = &getAnalysis<DominanceFrontier>();
|
DF = &getAnalysis<DominanceFrontier>();
|
||||||
DT = &getAnalysis<DominatorTree>();
|
DT = &getAnalysis<DominatorTree>();
|
||||||
|
|
||||||
// Hoist expressions out of all of the top-level loops.
|
CurAST = new AliasSetTracker(*AA);
|
||||||
for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) {
|
// Collect Alias info frmo subloops
|
||||||
AliasSetTracker AST(*AA);
|
for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
|
||||||
visitLoop(*I, AST);
|
LoopItr != LoopItrE; ++LoopItr) {
|
||||||
}
|
Loop *InnerL = *LoopItr;
|
||||||
return Changed;
|
AliasSetTracker *InnerAST = LoopToAliasMap[InnerL];
|
||||||
}
|
assert (InnerAST && "Where is my AST?");
|
||||||
|
|
||||||
|
// What if InnerLoop was modified by other passes ?
|
||||||
/// visitLoop - Hoist expressions out of the specified loop...
|
CurAST->add(*InnerAST);
|
||||||
///
|
|
||||||
void LICM::visitLoop(Loop *L, AliasSetTracker &AST) {
|
|
||||||
// Recurse through all subloops before we process this loop...
|
|
||||||
for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I) {
|
|
||||||
AliasSetTracker SubAST(*AA);
|
|
||||||
visitLoop(*I, SubAST);
|
|
||||||
|
|
||||||
// Incorporate information about the subloops into this loop...
|
|
||||||
AST.add(SubAST);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CurLoop = L;
|
CurLoop = L;
|
||||||
CurAST = &AST;
|
|
||||||
|
|
||||||
// Get the preheader block to move instructions into...
|
// Get the preheader block to move instructions into...
|
||||||
Preheader = L->getLoopPreheader();
|
Preheader = L->getLoopPreheader();
|
||||||
@ -247,7 +240,7 @@ void LICM::visitLoop(Loop *L, AliasSetTracker &AST) {
|
|||||||
for (std::vector<BasicBlock*>::const_iterator I = L->getBlocks().begin(),
|
for (std::vector<BasicBlock*>::const_iterator I = L->getBlocks().begin(),
|
||||||
E = L->getBlocks().end(); I != E; ++I)
|
E = L->getBlocks().end(); I != E; ++I)
|
||||||
if (LI->getLoopFor(*I) == L) // Ignore blocks in subloops...
|
if (LI->getLoopFor(*I) == L) // Ignore blocks in subloops...
|
||||||
AST.add(**I); // Incorporate the specified basic block
|
CurAST->add(**I); // Incorporate the specified basic block
|
||||||
|
|
||||||
// We want to visit all of the instructions in this loop... that are not parts
|
// We want to visit all of the instructions in this loop... that are not parts
|
||||||
// of our subloops (they have already had their invariants hoisted out of
|
// of our subloops (they have already had their invariants hoisted out of
|
||||||
@ -270,6 +263,9 @@ void LICM::visitLoop(Loop *L, AliasSetTracker &AST) {
|
|||||||
// Clear out loops state information for the next iteration
|
// Clear out loops state information for the next iteration
|
||||||
CurLoop = 0;
|
CurLoop = 0;
|
||||||
Preheader = 0;
|
Preheader = 0;
|
||||||
|
|
||||||
|
LoopToAliasMap[L] = CurAST;
|
||||||
|
return Changed;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
|
/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#include "llvm/PassManager.h"
|
#include "llvm/PassManager.h"
|
||||||
#include "llvm/Analysis/LoadValueNumbering.h"
|
#include "llvm/Analysis/LoadValueNumbering.h"
|
||||||
#include "llvm/Analysis/Passes.h"
|
#include "llvm/Analysis/Passes.h"
|
||||||
|
#include "llvm/Analysis/LoopPass.h"
|
||||||
#include "llvm/Analysis/Verifier.h"
|
#include "llvm/Analysis/Verifier.h"
|
||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/System/DynamicLibrary.h"
|
#include "llvm/System/DynamicLibrary.h"
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include "llvm/System/Program.h"
|
#include "llvm/System/Program.h"
|
||||||
#include "llvm/System/Signals.h"
|
#include "llvm/System/Signals.h"
|
||||||
#include "llvm/Analysis/Passes.h"
|
#include "llvm/Analysis/Passes.h"
|
||||||
|
#include "llvm/Analysis/LoopPass.h"
|
||||||
#include "llvm/Analysis/Verifier.h"
|
#include "llvm/Analysis/Verifier.h"
|
||||||
#include "llvm/CodeGen/FileWriters.h"
|
#include "llvm/CodeGen/FileWriters.h"
|
||||||
#include "llvm/Target/SubtargetFeature.h"
|
#include "llvm/Target/SubtargetFeature.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user