Lines Matching refs:HighPart
3700 llvm::Type *HighPart = nullptr; in classifyReturnType() local
3713 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3715 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3718 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3720 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3741 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3743 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3751 if (HighPart) in classifyReturnType()
3752 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyReturnType()
3834 llvm::Type *HighPart = nullptr; in classifyArgumentType() local
3849 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
3852 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
3859 HighPart = GetSSETypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
3862 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
3879 if (HighPart) in classifyArgumentType()
3880 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyArgumentType()