Lines Matching defs:DestAlloca
723 if (auto *DestAlloca = dyn_cast<AllocaInst>(SI->getPointerOperand())) {
725 if (performStackMoveOptzn(LI, SI, DestAlloca, SrcAlloca,
1485 AllocaInst *DestAlloca,
1492 if (SrcAlloca->getAddressSpace() != DestAlloca->getAddressSpace()) {
1498 const DataLayout &DL = DestAlloca->getDataLayout();
1504 std::optional<TypeSize> DestSize = DestAlloca->getAllocationSize(DL);
1510 if (!SrcAlloca->isStaticAlloca() || !DestAlloca->isStaticAlloca())
1589 MemoryLocation DestLoc(DestAlloca, LocationSize::precise(Size));
1626 if (!CaptureTrackingWithModRef(DestAlloca, DestModRefCallback))
1662 std::max(SrcAlloca->getAlign(), DestAlloca->getAlign()));
1665 DestAlloca->replaceAllUsesWith(SrcAlloca);
1666 eraseInstruction(DestAlloca);
1817 auto *DestAlloca = dyn_cast<AllocaInst>(M->getDest());
1818 if (!DestAlloca)
1826 if (performStackMoveOptzn(M, M, DestAlloca, SrcAlloca,