diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-26 05:15:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-26 05:15:37 +0000 |
commit | 04de1cfb2b58cd3fff06d0328a733082ce775ab6 (patch) | |
tree | bd2763f5291fcb9bc70b5541a7ef57200b3dd0b1 | |
parent | d44b0ff0385d31c789ebdc3b09978ce1e41cae20 (diff) | |
download | external_llvm-04de1cfb2b58cd3fff06d0328a733082ce775ab6.zip external_llvm-04de1cfb2b58cd3fff06d0328a733082ce775ab6.tar.gz external_llvm-04de1cfb2b58cd3fff06d0328a733082ce775ab6.tar.bz2 |
Add support for getelementptr, load, and correctly reject volatile stores.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23441 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/IPO/GlobalOpt.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/Transforms/IPO/GlobalOpt.cpp b/lib/Transforms/IPO/GlobalOpt.cpp index abef0db..4f0661c 100644 --- a/lib/Transforms/IPO/GlobalOpt.cpp +++ b/lib/Transforms/IPO/GlobalOpt.cpp @@ -1263,6 +1263,23 @@ static void CommitValueTo(Constant *Val, Constant *Addr) { GV->setInitializer(Val); } +static Constant *ComputeLoadResult(Constant *P, + const std::map<Constant*, Constant*> &Memory) { + // If this memory location has been recently stored, use the stored value: it + // is the most up-to-date. + std::map<Constant*, Constant*>::const_iterator I = Memory.find(P); + if (I != Memory.end()) return I->second; + + // Access it. + if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) { + if (GV->hasInitializer()) + return GV->getInitializer(); + return 0; + } else { + return 0; // don't know how to evaluate. + } +} + /// EvaluateStaticConstructor - Evaluate static constructors in the function, if /// we can. Return true if we can, false otherwise. static bool EvaluateStaticConstructor(Function *F) { @@ -1288,6 +1305,7 @@ static bool EvaluateStaticConstructor(Function *F) { Constant *InstResult = 0; if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) { + if (SI->isVolatile()) return false; // no volatile accesses. Constant *Ptr = getVal(Values, SI->getOperand(1)); if (!isSimpleEnoughPointerToCommit(Ptr)) // If this is too complex for us to commit, reject it. @@ -1309,6 +1327,17 @@ static bool EvaluateStaticConstructor(Function *F) { InstResult = ConstantExpr::getSelect(getVal(Values, SI->getOperand(0)), getVal(Values, SI->getOperand(1)), getVal(Values, SI->getOperand(2))); + } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) { + Constant *P = getVal(Values, GEP->getOperand(0)); + std::vector<Constant*> GEPOps; + for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i) + GEPOps.push_back(getVal(Values, GEP->getOperand(i))); + InstResult = ConstantExpr::getGetElementPtr(P, GEPOps); + } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) { + if (LI->isVolatile()) return false; // no volatile accesses. + InstResult = ComputeLoadResult(getVal(Values, LI->getOperand(0)), + MutatedMemory); + if (InstResult == 0) return false; // Could not evaluate load. } else if (TerminatorInst *TI = dyn_cast<TerminatorInst>(CurInst)) { BasicBlock *NewBB = 0; if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) { |