Lines Matching refs:RetTy
26 ABIArgInfo classifyReturnType(QualType RetTy) const;
27 ABIArgInfo classifyArgumentType(QualType RetTy) const;
83 ABIArgInfo PNaClABIInfo::classifyReturnType(QualType RetTy) const { in classifyReturnType()
84 if (RetTy->isVoidType()) in classifyReturnType()
88 if (isAggregateTypeForABI(RetTy)) in classifyReturnType()
89 return getNaturalAlignIndirect(RetTy); in classifyReturnType()
92 if (const auto *EIT = RetTy->getAs<BitIntType>()) { in classifyReturnType()
94 return getNaturalAlignIndirect(RetTy); in classifyReturnType()
99 if (const EnumType *EnumTy = RetTy->getAs<EnumType>()) in classifyReturnType()
100 RetTy = EnumTy->getDecl()->getIntegerType(); in classifyReturnType()
102 return (isPromotableIntegerTypeForABI(RetTy) ? ABIArgInfo::getExtend(RetTy) in classifyReturnType()