Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:destPtr

74   /// then loads the result into DestPtr.
77 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
86 void EmitStdInitializerList(llvm::Value *DestPtr, InitListExpr *InitList);
87 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
201 /// then loads the result into DestPtr.
224 /// \brief Perform the final move to DestPtr if for some reason
249 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
257 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
323 void AggExprEmitter::EmitStdInitializerList(llvm::Value *destPtr,
354 LValue DestLV = CGF.MakeNaturalAlignAddrLValue(destPtr, initList->getType());
382 void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
389 // DestPtr is an array*. Construct an elementType* by drilling
394 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
1249 /// type. The result is computed into DestPtr. Note that if DestPtr is null,
1251 /// true, DestPtr cannot be 0.
1274 void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
1328 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1331 DestPtr = Builder.CreateBitCast(DestPtr, DBP);
1347 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1359 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1366 Builder.CreateMemCpy(DestPtr, SrcPtr,