reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/CodeGen/CGCall.cpp
 1297     CGF.Builder.CreateStore(Src, Dst, DstIsVolatile);
 1301   uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
 1304     Dst = EnterStructPointerForCoercedAccess(Dst, DstSTy, SrcSize, CGF);
 1312     Src = CoerceIntOrPtrToIntOrPtr(Src, DstTy, CGF);
 1313     CGF.Builder.CreateStore(Src, Dst, DstIsVolatile);
 1317   uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(DstTy);
 1321     Dst = CGF.Builder.CreateElementBitCast(Dst, SrcTy);
 1322     BuildAggStore(CGF, Src, Dst, DstIsVolatile);
 1333     Address Tmp = CreateTempAllocaForCoercion(CGF, SrcTy, Dst.getAlignment());
 1334     CGF.Builder.CreateStore(Src, Tmp);
 1335     Address Casted = CGF.Builder.CreateElementBitCast(Tmp,CGF.Int8Ty);
 1335     Address Casted = CGF.Builder.CreateElementBitCast(Tmp,CGF.Int8Ty);
 1336     Address DstCasted = CGF.Builder.CreateElementBitCast(Dst,CGF.Int8Ty);
 1336     Address DstCasted = CGF.Builder.CreateElementBitCast(Dst,CGF.Int8Ty);
 1337     CGF.Builder.CreateMemCpy(DstCasted, Casted,
 1338         llvm::ConstantInt::get(CGF.IntPtrTy, DstSize),