Constify arguments to methods in LICM. NFC

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237227 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Pete Cooper
2015-05-13 01:12:18 +00:00
parent 19a19a9ad1
commit 6acfb5a28b

View File

@@ -72,21 +72,25 @@ DisablePromotion("disable-licm-promotion", cl::Hidden,
cl::desc("Disable memory promotion in LICM pass")); cl::desc("Disable memory promotion in LICM pass"));
static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI); static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI);
static bool isNotUsedInLoop(Instruction &I, Loop *CurLoop); static bool isNotUsedInLoop(const Instruction &I, const Loop *CurLoop);
static bool hoist(Instruction &I, BasicBlock *Preheader); static bool hoist(Instruction &I, BasicBlock *Preheader);
static bool sink(Instruction &I, LoopInfo *LI, DominatorTree *DT, static bool sink(Instruction &I, const LoopInfo *LI, const DominatorTree *DT,
Loop *CurLoop, AliasSetTracker *CurAST ); const Loop *CurLoop, AliasSetTracker *CurAST );
static bool isGuaranteedToExecute(Instruction &Inst, DominatorTree *DT, static bool isGuaranteedToExecute(const Instruction &Inst,
Loop *CurLoop, LICMSafetyInfo *SafetyInfo); const DominatorTree *DT,
static bool isSafeToExecuteUnconditionally(Instruction &Inst, DominatorTree *DT, const Loop *CurLoop,
Loop *CurLoop, const LICMSafetyInfo *SafetyInfo);
LICMSafetyInfo *SafetyInfo); static bool isSafeToExecuteUnconditionally(const Instruction &Inst,
const DominatorTree *DT,
const Loop *CurLoop,
const LICMSafetyInfo *SafetyInfo);
static bool pointerInvalidatedByLoop(Value *V, uint64_t Size, static bool pointerInvalidatedByLoop(Value *V, uint64_t Size,
const AAMDNodes &AAInfo, const AAMDNodes &AAInfo,
AliasSetTracker *CurAST); AliasSetTracker *CurAST);
static Instruction *CloneInstructionInExitBlock(Instruction &I, static Instruction *CloneInstructionInExitBlock(const Instruction &I,
BasicBlock &ExitBlock, BasicBlock &ExitBlock,
PHINode &PN, LoopInfo *LI); PHINode &PN,
const LoopInfo *LI);
static bool canSinkOrHoistInst(Instruction &I, AliasAnalysis *AA, static bool canSinkOrHoistInst(Instruction &I, AliasAnalysis *AA,
DominatorTree *DT, Loop *CurLoop, DominatorTree *DT, Loop *CurLoop,
AliasSetTracker *CurAST, AliasSetTracker *CurAST,
@@ -502,10 +506,10 @@ static bool isTriviallyReplacablePHI(const PHINode &PN, const Instruction &I) {
/// the loop. If this is true, we can sink the instruction to the exit /// the loop. If this is true, we can sink the instruction to the exit
/// blocks of the loop. /// blocks of the loop.
/// ///
static bool isNotUsedInLoop(Instruction &I, Loop *CurLoop) { static bool isNotUsedInLoop(const Instruction &I, const Loop *CurLoop) {
for (User *U : I.users()) { for (const User *U : I.users()) {
Instruction *UI = cast<Instruction>(U); const Instruction *UI = cast<Instruction>(U);
if (PHINode *PN = dyn_cast<PHINode>(UI)) { if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
// A PHI node where all of the incoming values are this instruction are // A PHI node where all of the incoming values are this instruction are
// special -- they can just be RAUW'ed with the instruction and thus // special -- they can just be RAUW'ed with the instruction and thus
// don't require a use in the predecessor. This is a particular important // don't require a use in the predecessor. This is a particular important
@@ -533,9 +537,10 @@ static bool isNotUsedInLoop(Instruction &I, Loop *CurLoop) {
return true; return true;
} }
static Instruction *CloneInstructionInExitBlock(Instruction &I, static Instruction *CloneInstructionInExitBlock(const Instruction &I,
BasicBlock &ExitBlock, BasicBlock &ExitBlock,
PHINode &PN, LoopInfo *LI) { PHINode &PN,
const LoopInfo *LI) {
Instruction *New = I.clone(); Instruction *New = I.clone();
ExitBlock.getInstList().insert(ExitBlock.getFirstInsertionPt(), New); ExitBlock.getInstList().insert(ExitBlock.getFirstInsertionPt(), New);
if (!I.getName().empty()) New->setName(I.getName() + ".le"); if (!I.getName().empty()) New->setName(I.getName() + ".le");
@@ -567,8 +572,8 @@ static Instruction *CloneInstructionInExitBlock(Instruction &I,
/// This method is guaranteed to remove the original instruction from its /// This method is guaranteed to remove the original instruction from its
/// position, and may either delete it or move it to outside of the loop. /// position, and may either delete it or move it to outside of the loop.
/// ///
static bool sink(Instruction &I, LoopInfo *LI, DominatorTree *DT, static bool sink(Instruction &I, const LoopInfo *LI, const DominatorTree *DT,
Loop *CurLoop, AliasSetTracker *CurAST ) { const Loop *CurLoop, AliasSetTracker *CurAST ) {
DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n"); DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
bool Changed = false; bool Changed = false;
if (isa<LoadInst>(I)) ++NumMovedLoads; if (isa<LoadInst>(I)) ++NumMovedLoads;
@@ -637,9 +642,10 @@ static bool hoist(Instruction &I, BasicBlock *Preheader) {
/// Only sink or hoist an instruction if it is not a trapping instruction /// Only sink or hoist an instruction if it is not a trapping instruction
/// or if it is a trapping instruction and is guaranteed to execute. /// or if it is a trapping instruction and is guaranteed to execute.
/// ///
static bool isSafeToExecuteUnconditionally(Instruction &Inst, DominatorTree *DT, static bool isSafeToExecuteUnconditionally(const Instruction &Inst,
Loop *CurLoop, const DominatorTree *DT,
LICMSafetyInfo *SafetyInfo) { const Loop *CurLoop,
const LICMSafetyInfo *SafetyInfo) {
// If it is not a trapping instruction, it is always safe to hoist. // If it is not a trapping instruction, it is always safe to hoist.
if (isSafeToSpeculativelyExecute(&Inst)) if (isSafeToSpeculativelyExecute(&Inst))
return true; return true;
@@ -647,8 +653,10 @@ static bool isSafeToExecuteUnconditionally(Instruction &Inst, DominatorTree *DT,
return isGuaranteedToExecute(Inst, DT, CurLoop, SafetyInfo); return isGuaranteedToExecute(Inst, DT, CurLoop, SafetyInfo);
} }
static bool isGuaranteedToExecute(Instruction &Inst, DominatorTree *DT, static bool isGuaranteedToExecute(const Instruction &Inst,
Loop *CurLoop, LICMSafetyInfo * SafetyInfo) { const DominatorTree *DT,
const Loop *CurLoop,
const LICMSafetyInfo * SafetyInfo) {
// We have to check to make sure that the instruction dominates all // We have to check to make sure that the instruction dominates all
// of the exit blocks. If it doesn't, then there is a path out of the loop // of the exit blocks. If it doesn't, then there is a path out of the loop
@@ -840,11 +848,11 @@ bool llvm::promoteLoopAccessesToScalars(AliasSet &AS,
// If there is an non-load/store instruction in the loop, we can't promote // If there is an non-load/store instruction in the loop, we can't promote
// it. // it.
if (LoadInst *load = dyn_cast<LoadInst>(UI)) { if (const LoadInst *load = dyn_cast<LoadInst>(UI)) {
assert(!load->isVolatile() && "AST broken"); assert(!load->isVolatile() && "AST broken");
if (!load->isSimple()) if (!load->isSimple())
return Changed; return Changed;
} else if (StoreInst *store = dyn_cast<StoreInst>(UI)) { } else if (const StoreInst *store = dyn_cast<StoreInst>(UI)) {
// Stores *of* the pointer are not interesting, only stores *to* the // Stores *of* the pointer are not interesting, only stores *to* the
// pointer. // pointer.
if (UI->getOperand(1) != ASIV) if (UI->getOperand(1) != ASIV)