Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:DestPtr

82   /// then loads the result into DestPtr.
85 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
94 void EmitStdInitializerList(llvm::Value *DestPtr, InitListExpr *InitList);
95 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
241 /// then loads the result into DestPtr.
272 /// \brief Perform the final move to DestPtr if for some reason
297 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
305 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
371 void AggExprEmitter::EmitStdInitializerList(llvm::Value *destPtr,
402 LValue DestLV = CGF.MakeNaturalAlignAddrLValue(destPtr, initList->getType());
430 void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
437 // DestPtr is an array*. Construct an elementType* by drilling
442 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
1408 /// type. The result is computed into DestPtr. Note that if DestPtr is null,
1410 /// true, DestPtr cannot be 0.
1433 void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
1492 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1495 DestPtr = Builder.CreateBitCast(DestPtr, DBP);
1511 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1523 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1535 Builder.CreateMemCpy(DestPtr, SrcPtr,