Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp943 if (mayBeVisibleThroughUnwinding(cpyDest, C, cpyStore)) { in performCallSlotOptzn()
953 if (!isDestSufficientlyAligned && !isa<AllocaInst>(cpyDest)) in performCallSlotOptzn()
998 Value *DestObj = getUnderlyingObject(cpyDest); in performCallSlotOptzn()
1036 if (!DT->dominates(cpyDest, C)) { in performCallSlotOptzn()
1038 auto *GEP = dyn_cast<GetElementPtrInst>(cpyDest); in performCallSlotOptzn()
1060 cpyDest->getType()->getPointerAddressSpace()) in performCallSlotOptzn()
1072 Value *Dest = cpySrc->getType() == cpyDest->getType() ? cpyDest in performCallSlotOptzn()
1073 : CastInst::CreatePointerCast(cpyDest, cpySrc->getType(), in performCallSlotOptzn()
1074 cpyDest->getName(), C); in performCallSlotOptzn()
1089 assert(isa<AllocaInst>(cpyDest) && "Can only increase alloca alignment!"); in performCallSlotOptzn()
[all …]