Lines Matching refs:HighPart
3616 llvm::Type *HighPart = nullptr; in classifyReturnType() local
3629 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3631 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3634 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3636 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3657 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3659 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3667 if (HighPart) in classifyReturnType()
3668 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyReturnType()
3751 llvm::Type *HighPart = nullptr; in classifyArgumentType() local
3766 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
3769 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
3776 HighPart = GetSSETypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
3779 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
3796 if (HighPart) in classifyArgumentType()
3797 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyArgumentType()