Lines Matching refs:DstAddr
61 Value *DstAddr, Value *CopyLen, bool SrcIsVolatile, in convertMemCpyToLoop() argument
77 unsigned DstAS = cast<PointerType>(DstAddr->getType())->getAddressSpace(); in convertMemCpyToLoop()
81 DstAddr = Builder.CreateBitCast(DstAddr, Builder.getInt8PtrTy(DstAS)); in convertMemCpyToLoop()
97 DstAddr, LoopIndex), in convertMemCpyToLoop()
132 Value *DstAddr, Value *CopyLen, bool SrcIsVolatile, in convertMemMoveToLoop() argument
145 SrcAddr, DstAddr, "compare_src_dst"); in convertMemMoveToLoop()
178 LoopBuilder.CreateInBoundsGEP(DstAddr, IndexPtr)); in convertMemMoveToLoop()
195 FwdElement, FwdLoopBuilder.CreateInBoundsGEP(DstAddr, FwdCopyPhi)); in convertMemMoveToLoop()
208 void convertMemSetToLoop(Instruction *ConvertedInst, Value *DstAddr, in convertMemSetToLoop() argument
220 unsigned dstAS = cast<PointerType>(DstAddr->getType())->getAddressSpace(); in convertMemSetToLoop()
221 DstAddr = Builder.CreateBitCast(DstAddr, in convertMemSetToLoop()
230 LoopBuilder.CreateInBoundsGEP(SetValue->getType(), DstAddr, LoopIndex), in convertMemSetToLoop()
288 Value *DstAddr = SI->getOperand(1); in runOnFunction() local
293 /* SrcAddr */ SrcAddr, /* DstAddr */ DstAddr, in runOnFunction()