Lines Matching refs:destField
1639 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
1641 destField = CGF.Builder.CreateBitCast(destField, CGF.VoidPtrTy); in emitCopy()
1651 llvm::Value *args[] = { destField.getPointer(), srcValue, flagsVal }; in emitCopy()
1672 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
1674 CGF.EmitARCMoveWeak(destField, srcField); in emitCopy()
1693 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
1704 CGF.Builder.CreateStore(null, destField); in emitCopy()
1705 CGF.EmitARCStoreStrongCall(destField, value, /*ignored*/ true); in emitCopy()
1709 CGF.Builder.CreateStore(value, destField); in emitCopy()
1730 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
1737 CGF.Builder.CreateStore(copy, destField); in emitCopy()
1762 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
1765 CGF.EmitSynthesizedCXXCopyCtor(destField, srcField, CopyExpr); in emitCopy()
1825 Address destField = CGF.GetAddrOfLocalVar(&dst); in generateByrefCopyHelper() local
1826 destField = Address(CGF.Builder.CreateLoad(destField), in generateByrefCopyHelper()
1828 destField = CGF.Builder.CreateBitCast(destField, byrefPtrType); in generateByrefCopyHelper()
1829 destField = CGF.emitBlockByrefAddress(destField, byrefInfo, false, in generateByrefCopyHelper()
1840 generator.emitCopy(CGF, destField, srcField); in generateByrefCopyHelper()