Lines Matching refs:HighPart
3323 llvm::Type *HighPart = nullptr; in classifyReturnType() local
3336 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3338 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3341 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3343 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3364 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8); in classifyReturnType()
3366 return ABIArgInfo::getDirect(HighPart, 8); in classifyReturnType()
3374 if (HighPart) in classifyReturnType()
3375 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyReturnType()
3458 llvm::Type *HighPart = nullptr; in classifyArgumentType() local
3473 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
3476 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
3483 HighPart = GetSSETypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8); in classifyArgumentType()
3486 return ABIArgInfo::getDirect(HighPart, 8); in classifyArgumentType()
3503 if (HighPart) in classifyArgumentType()
3504 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyArgumentType()