Lines Matching refs:HighPart
2489 llvm::Type *HighPart = nullptr; in classifyReturnType() local
2502 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
2504 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
2507 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
2509 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
2530 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
2532 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
2540 if (HighPart) in classifyReturnType()
2541 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyReturnType()
2624 llvm::Type *HighPart = nullptr; in classifyArgumentType() local
2639 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
2642 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
2649 HighPart = GetSSETypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
2652 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
2669 if (HighPart) in classifyArgumentType()
2670 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyArgumentType()