Lines Matching refs:HighPart
2650 llvm::Type *HighPart = nullptr; in classifyReturnType() local
2663 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
2665 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
2668 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
2670 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
2691 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
2693 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
2701 if (HighPart) in classifyReturnType()
2702 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyReturnType()
2784 llvm::Type *HighPart = nullptr; in classifyArgumentType() local
2799 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
2802 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
2810 HighPart = GetSSETypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
2813 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
2828 if (HighPart) in classifyArgumentType()
2829 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyArgumentType()