forked from OSchip/llvm-project
Fix MemCpyOptimizer return status
Differential Revision: https://reviews.llvm.org/D81229
This commit is contained in:
parent
ef1a7f2f01
commit
5b08bd0eb4
|
@ -58,7 +58,7 @@ private:
|
|||
// Helper functions
|
||||
bool processStore(StoreInst *SI, BasicBlock::iterator &BBI);
|
||||
bool processMemSet(MemSetInst *SI, BasicBlock::iterator &BBI);
|
||||
bool processMemCpy(MemCpyInst *M);
|
||||
bool processMemCpy(MemCpyInst *M, BasicBlock::iterator &BBI);
|
||||
bool processMemMove(MemMoveInst *M);
|
||||
bool performCallSlotOptzn(Instruction *cpy, Value *cpyDst, Value *cpySrc,
|
||||
uint64_t cpyLen, Align cpyAlign, CallInst *C);
|
||||
|
|
|
@ -1097,15 +1097,16 @@ bool MemCpyOptPass::performMemCpyToMemSetOptzn(MemCpyInst *MemCpy,
|
|||
/// B to be a memcpy from X to Z (or potentially a memmove, depending on
|
||||
/// circumstances). This allows later passes to remove the first memcpy
|
||||
/// altogether.
|
||||
bool MemCpyOptPass::processMemCpy(MemCpyInst *M) {
|
||||
bool MemCpyOptPass::processMemCpy(MemCpyInst *M, BasicBlock::iterator &BBI) {
|
||||
// We can only optimize non-volatile memcpy's.
|
||||
if (M->isVolatile()) return false;
|
||||
|
||||
// If the source and destination of the memcpy are the same, then zap it.
|
||||
if (M->getSource() == M->getDest()) {
|
||||
++BBI;
|
||||
MD->removeInstruction(M);
|
||||
M->eraseFromParent();
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
// If copying from a constant, try to turn the memcpy into a memset.
|
||||
|
@ -1322,7 +1323,7 @@ bool MemCpyOptPass::iterateOnFunction(Function &F) {
|
|||
else if (MemSetInst *M = dyn_cast<MemSetInst>(I))
|
||||
RepeatInstruction = processMemSet(M, BI);
|
||||
else if (MemCpyInst *M = dyn_cast<MemCpyInst>(I))
|
||||
RepeatInstruction = processMemCpy(M);
|
||||
RepeatInstruction = processMemCpy(M, BI);
|
||||
else if (MemMoveInst *M = dyn_cast<MemMoveInst>(I))
|
||||
RepeatInstruction = processMemMove(M);
|
||||
else if (auto *CB = dyn_cast<CallBase>(I)) {
|
||||
|
|
Loading…
Reference in New Issue