Home
last modified time | relevance | path

Searched refs:DestAlloca (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp743 if (auto *DestAlloca = dyn_cast<AllocaInst>(SI->getPointerOperand())) { in processStoreOfLoad() local
745 if (performStackMoveOptzn(LI, SI, DestAlloca, SrcAlloca, in processStoreOfLoad()
1504 AllocaInst *DestAlloca, in performStackMoveOptzn() argument
1511 if (SrcAlloca->getAddressSpace() != DestAlloca->getAddressSpace()) { in performStackMoveOptzn()
1517 const DataLayout &DL = DestAlloca->getDataLayout(); in performStackMoveOptzn()
1523 std::optional<TypeSize> DestSize = DestAlloca->getAllocationSize(DL); in performStackMoveOptzn()
1529 if (!SrcAlloca->isStaticAlloca() || !DestAlloca->isStaticAlloca()) in performStackMoveOptzn()
1608 MemoryLocation DestLoc(DestAlloca, LocationSize::precise(Size)); in performStackMoveOptzn()
1645 if (!CaptureTrackingWithModRef(DestAlloca, DestModRefCallback)) in performStackMoveOptzn()
1681 std::max(SrcAlloca->getAlign(), DestAlloca->getAlign())); in performStackMoveOptzn()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h86 AllocaInst *DestAlloca, AllocaInst *SrcAlloca,
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp2406 AllocaInst *DestAlloca = Builder.CreateAlloca(RI.ElementType, nullptr, in emitReductionListCopy() local
2408 DestAlloca->setAlignment( in emitReductionListCopy()
2410 DestElementAddr = DestAlloca; in emitReductionListCopy()