Lines Matching refs:Ty
30 ABIArgInfo VEABIInfo::classifyReturnType(QualType Ty) const { in classifyReturnType()
31 if (Ty->isAnyComplexType()) in classifyReturnType()
33 uint64_t Size = getContext().getTypeSize(Ty); in classifyReturnType()
34 if (Size < 64 && Ty->isIntegerType()) in classifyReturnType()
35 return ABIArgInfo::getExtend(Ty); in classifyReturnType()
36 return DefaultABIInfo::classifyReturnType(Ty); in classifyReturnType()
39 ABIArgInfo VEABIInfo::classifyArgumentType(QualType Ty) const { in classifyArgumentType()
40 if (Ty->isAnyComplexType()) in classifyArgumentType()
42 uint64_t Size = getContext().getTypeSize(Ty); in classifyArgumentType()
43 if (Size < 64 && Ty->isIntegerType()) in classifyArgumentType()
44 return ABIArgInfo::getExtend(Ty); in classifyArgumentType()
45 return DefaultABIInfo::classifyArgumentType(Ty); in classifyArgumentType()