Lines Matching refs:HighPart
3695 llvm::Type *HighPart = nullptr; in classifyReturnType() local
3708 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3710 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3713 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3715 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3736 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3738 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3746 if (HighPart) in classifyReturnType()
3747 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyReturnType()
3829 llvm::Type *HighPart = nullptr; in classifyArgumentType() local
3844 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
3847 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
3854 HighPart = GetSSETypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
3857 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
3874 if (HighPart) in classifyArgumentType()
3875 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyArgumentType()