diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-08 00:27:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-08 00:27:14 +0000 |
commit | ff1e98c72ae5f2aa805112925fd5c06049aa8e79 (patch) | |
tree | f74c066ec959fcf1e4c030bcab84a60ab8b2ae09 /lib/Transforms | |
parent | b9a4ddbbcd668a94fe945f0648010c281e272889 (diff) | |
download | external_llvm-ff1e98c72ae5f2aa805112925fd5c06049aa8e79.zip external_llvm-ff1e98c72ae5f2aa805112925fd5c06049aa8e79.tar.gz external_llvm-ff1e98c72ae5f2aa805112925fd5c06049aa8e79.tar.bz2 |
Fix PR4882, by making MemCpyOpt not dereference removed stores to get the
context for the newly created operations.
Patch by Jakub Staszak!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81175 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/MemCpyOptimizer.cpp | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/lib/Transforms/Scalar/MemCpyOptimizer.cpp b/lib/Transforms/Scalar/MemCpyOptimizer.cpp index d6b1585..389b3b7 100644 --- a/lib/Transforms/Scalar/MemCpyOptimizer.cpp +++ b/lib/Transforms/Scalar/MemCpyOptimizer.cpp @@ -340,13 +340,15 @@ static RegisterPass<MemCpyOpt> X("memcpyopt", bool MemCpyOpt::processStore(StoreInst *SI, BasicBlock::iterator &BBI) { if (SI->isVolatile()) return false; + LLVMContext &Context = SI->getContext(); + // There are two cases that are interesting for this code to handle: memcpy // and memset. Right now we only handle memset. // Ensure that the value being stored is something that can be memset'able a // byte at a time like "0" or "-1" or any width, as well as things like // 0xA0A0A0A0 and 0.0. - Value *ByteVal = isBytewiseValue(SI->getOperand(0), SI->getContext()); + Value *ByteVal = isBytewiseValue(SI->getOperand(0), Context); if (!ByteVal) return false; @@ -387,8 +389,7 @@ bool MemCpyOpt::processStore(StoreInst *SI, BasicBlock::iterator &BBI) { if (NextStore->isVolatile()) break; // Check to see if this stored value is of the same byte-splattable value. - if (ByteVal != isBytewiseValue(NextStore->getOperand(0), - NextStore->getContext())) + if (ByteVal != isBytewiseValue(NextStore->getOperand(0), Context)) break; // Check to see if this store is to a constant offset from the start ptr. @@ -408,7 +409,6 @@ bool MemCpyOpt::processStore(StoreInst *SI, BasicBlock::iterator &BBI) { // store as well. We try to avoid this unless there is at least something // interesting as a small compile-time optimization. Ranges.addStore(0, SI); - Function *MemSetF = 0; @@ -432,16 +432,15 @@ bool MemCpyOpt::processStore(StoreInst *SI, BasicBlock::iterator &BBI) { BasicBlock::iterator InsertPt = BI; if (MemSetF == 0) { - const Type *Ty = Type::getInt64Ty(SI->getContext()); + const Type *Ty = Type::getInt64Ty(Context); MemSetF = Intrinsic::getDeclaration(M, Intrinsic::memset, &Ty, 1); - } + } // Get the starting pointer of the block. StartPtr = Range.StartPtr; // Cast the start ptr to be i8* as memset requires. - const Type *i8Ptr = - PointerType::getUnqual(Type::getInt8Ty(SI->getContext())); + const Type *i8Ptr = PointerType::getUnqual(Type::getInt8Ty(Context)); if (StartPtr->getType() != i8Ptr) StartPtr = new BitCastInst(StartPtr, i8Ptr, StartPtr->getName(), InsertPt); @@ -449,10 +448,9 @@ bool MemCpyOpt::processStore(StoreInst *SI, BasicBlock::iterator &BBI) { Value *Ops[] = { StartPtr, ByteVal, // Start, value // size - ConstantInt::get(Type::getInt64Ty(SI->getContext()), - Range.End-Range.Start), + ConstantInt::get(Type::getInt64Ty(Context), Range.End-Range.Start), // align - ConstantInt::get(Type::getInt32Ty(SI->getContext()), Range.Alignment) + ConstantInt::get(Type::getInt32Ty(Context), Range.Alignment) }; Value *C = CallInst::Create(MemSetF, Ops, Ops+4, "", InsertPt); DEBUG(errs() << "Replace stores:\n"; @@ -464,7 +462,8 @@ bool MemCpyOpt::processStore(StoreInst *SI, BasicBlock::iterator &BBI) { BBI = BI; // Zap all the stores. - for (SmallVector<StoreInst*, 16>::const_iterator SI = Range.TheStores.begin(), + for (SmallVector<StoreInst*, 16>::const_iterator + SI = Range.TheStores.begin(), SE = Range.TheStores.end(); SI != SE; ++SI) (*SI)->eraseFromParent(); ++NumMemSetInfer; |