Lines Matching refs:RetTy
26 ABIArgInfo classifyReturnType(QualType RetTy) const;
27 ABIArgInfo classifyArgumentType(QualType RetTy) const;
86 ABIArgInfo PNaClABIInfo::classifyReturnType(QualType RetTy) const { in classifyReturnType()
87 if (RetTy->isVoidType()) in classifyReturnType()
91 if (isAggregateTypeForABI(RetTy)) in classifyReturnType()
92 return getNaturalAlignIndirect(RetTy); in classifyReturnType()
95 if (const auto *EIT = RetTy->getAs<BitIntType>()) { in classifyReturnType()
97 return getNaturalAlignIndirect(RetTy); in classifyReturnType()
102 if (const EnumType *EnumTy = RetTy->getAs<EnumType>()) in classifyReturnType()
103 RetTy = EnumTy->getDecl()->getIntegerType(); in classifyReturnType()
105 return (isPromotableIntegerTypeForABI(RetTy) ? ABIArgInfo::getExtend(RetTy) in classifyReturnType()