Lines Matching refs:destField
1637 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
1639 destField = CGF.Builder.CreateBitCast(destField, CGF.VoidPtrTy); in emitCopy()
1649 llvm::Value *args[] = { destField.getPointer(), srcValue, flagsVal }; in emitCopy()
1670 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
1672 CGF.EmitARCMoveWeak(destField, srcField); in emitCopy()
1691 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
1702 CGF.Builder.CreateStore(null, destField); in emitCopy()
1703 CGF.EmitARCStoreStrongCall(destField, value, /*ignored*/ true); in emitCopy()
1707 CGF.Builder.CreateStore(value, destField); in emitCopy()
1728 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
1735 CGF.Builder.CreateStore(copy, destField); in emitCopy()
1760 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
1763 CGF.EmitSynthesizedCXXCopyCtor(destField, srcField, CopyExpr); in emitCopy()
1823 Address destField = CGF.GetAddrOfLocalVar(&dst); in generateByrefCopyHelper() local
1824 destField = Address(CGF.Builder.CreateLoad(destField), in generateByrefCopyHelper()
1826 destField = CGF.Builder.CreateBitCast(destField, byrefPtrType); in generateByrefCopyHelper()
1827 destField = CGF.emitBlockByrefAddress(destField, byrefInfo, false, in generateByrefCopyHelper()
1838 generator.emitCopy(CGF, destField, srcField); in generateByrefCopyHelper()