Lines Matching refs:HighPart
2632 llvm::Type *HighPart = nullptr; in classifyReturnType() local
2645 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
2647 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
2650 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
2652 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
2673 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
2675 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
2683 if (HighPart) in classifyReturnType()
2684 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyReturnType()
2766 llvm::Type *HighPart = nullptr; in classifyArgumentType() local
2781 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
2784 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
2791 HighPart = GetSSETypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
2794 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
2811 if (HighPart) in classifyArgumentType()
2812 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyArgumentType()