Lines Matching refs:destField

2144   void emitCopy(CodeGenFunction &CGF, Address destField,  in emitCopy()  argument
2146 destField = destField.withElementType(CGF.Int8Ty); in emitCopy()
2156 llvm::Value *args[] = {destField.emitRawPointer(CGF), srcValue, flagsVal}; in emitCopy()
2177 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
2179 CGF.EmitARCMoveWeak(destField, srcField); in emitCopy()
2198 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
2209 CGF.Builder.CreateStore(null, destField); in emitCopy()
2210 CGF.EmitARCStoreStrongCall(destField, value, /*ignored*/ true); in emitCopy()
2214 CGF.Builder.CreateStore(value, destField); in emitCopy()
2235 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
2242 CGF.Builder.CreateStore(copy, destField); in emitCopy()
2267 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
2270 CGF.EmitSynthesizedCXXCopyCtor(destField, srcField, CopyExpr); in emitCopy()
2293 void emitCopy(CodeGenFunction &CGF, Address destField, in emitCopy() argument
2295 CGF.callCStructMoveConstructor(CGF.MakeAddrLValue(destField, VarType), in emitCopy()
2352 Address destField = CGF.GetAddrOfLocalVar(&Dst); in generateByrefCopyHelper() local
2353 destField = Address(CGF.Builder.CreateLoad(destField), byrefInfo.Type, in generateByrefCopyHelper()
2355 destField = in generateByrefCopyHelper()
2356 CGF.emitBlockByrefAddress(destField, byrefInfo, false, "dest-object"); in generateByrefCopyHelper()
2365 generator.emitCopy(CGF, destField, srcField); in generateByrefCopyHelper()