void ASTContext::getObjcEncodingForMethodDecl(ObjcMethodDecl *Decl,
std::string& S)
{
- // TODO: First encode type qualifer, 'in', 'inout', etc. for the return type.
+ // Encode type qualifer, 'in', 'inout', etc. for the return type.
+ getObjcEncodingForTypeQualifier(Decl->getObjcDeclQualifier(), S);
// Encode result type.
getObjcEncodingForType(Decl->getResultType(), S);
// Compute size of all parameters.
ParmOffset = 2 * PtrSize;
for (int i = 0; i < NumOfParams; i++) {
QualType PType = Decl->getParamDecl(i)->getType();
- // TODO: Process argument qualifiers for user supplied arguments; such as,
+ // Process argument qualifiers for user supplied arguments; such as,
// 'in', 'inout', etc.
+ getObjcEncodingForTypeQualifier(
+ Decl->getParamDecl(i)->getObjcDeclQualifier(), S);
getObjcEncodingForType(PType, S);
S += llvm::utostr(ParmOffset);
ParmOffset += getObjcEncodingTypeSize(PType);
assert(0 && "@encode for type not implemented!");
}
+void ASTContext::getObjcEncodingForTypeQualifier(Decl::ObjcDeclQualifier QT,
+ std::string& S) const {
+ if (QT & Decl::OBJC_TQ_In)
+ S += 'n';
+ if (QT & Decl::OBJC_TQ_Inout)
+ S += 'N';
+ if (QT & Decl::OBJC_TQ_Out)
+ S += 'o';
+ if (QT & Decl::OBJC_TQ_Bycopy)
+ S += 'O';
+ if (QT & Decl::OBJC_TQ_Byref)
+ S += 'R';
+ if (QT & Decl::OBJC_TQ_Oneway)
+ S += 'V';
+}
+
void ASTContext::setBuiltinVaListType(QualType T)
{
assert(BuiltinVaListType.isNull() && "__builtin_va_list type already set!");
}
}
+/// CvtQTToAstBitMask - utility routine to produce an AST bitmask for
+/// objective-c's type qualifier from the parser version of the same info.
+static Decl::ObjcDeclQualifier
+CvtQTToAstBitMask(ObjcDeclSpec::ObjcDeclQualifier PQTVal) {
+ Decl::ObjcDeclQualifier ret = Decl::OBJC_TQ_None;
+ if (PQTVal & ObjcDeclSpec::DQ_In)
+ ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_In);
+ if (PQTVal & ObjcDeclSpec::DQ_Inout)
+ ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_Inout);
+ if (PQTVal & ObjcDeclSpec::DQ_Out)
+ ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_Out);
+ if (PQTVal & ObjcDeclSpec::DQ_Bycopy)
+ ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_Bycopy);
+ if (PQTVal & ObjcDeclSpec::DQ_Byref)
+ ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_Byref);
+ if (PQTVal & ObjcDeclSpec::DQ_Oneway)
+ ret = (Decl::ObjcDeclQualifier)(ret | Decl::OBJC_TQ_Oneway);
+
+ return ret;
+}
+
Sema::DeclTy *Sema::ActOnMethodDeclaration(
SourceLocation MethodLoc, SourceLocation EndLoc,
tok::TokenKind MethodType, ObjcDeclSpec &ReturnQT, TypeTy *ReturnType,
argType = Context.getObjcIdType();
ParmVarDecl* Param = new ParmVarDecl(SourceLocation(/*FIXME*/), ArgNames[i],
argType, VarDecl::None, 0);
+ Param->setObjcDeclQualifier(
+ CvtQTToAstBitMask(ArgQT[i].getObjcDeclQualifier()));
Params.push_back(Param);
}
QualType resultDeclType;
ObjcMethodDecl::Optional :
ObjcMethodDecl::Required);
ObjcMethod->setMethodParams(&Params[0], Sel.getNumArgs());
+ ObjcMethod->setObjcDeclQualifier(
+ CvtQTToAstBitMask(ReturnQT.getObjcDeclQualifier()));
return ObjcMethod;
}
// Return the ObjC type encoding for a given type.
void getObjcEncodingForType(QualType t, std::string &S) const;
+ // Put the string version of type qualifiers into S.
+ void getObjcEncodingForTypeQualifier(Decl::ObjcDeclQualifier QT,
+ std::string &S) const;
+
/// getObjcEncodingForMethodDecl - Return the encoded type for this method
/// declaration.
void getObjcEncodingForMethodDecl(ObjcMethodDecl *Decl, std::string &S);
bool hasGlobalStorage() const { return !hasAutoStorage(); }
ObjcDeclQualifier getObjcDeclQualifier() const { return objcDeclQualifier; }
+ void setObjcDeclQualifier(ObjcDeclQualifier QTVal)
+ { objcDeclQualifier = QTVal; }
// Implement isa/cast/dyncast/etc.
static bool classof(const Decl *D) {
virtual ~ObjcMethodDecl();
ObjcDeclQualifier getObjcDeclQualifier() const { return objcDeclQualifier; }
+ void setObjcDeclQualifier(ObjcDeclQualifier QV) { objcDeclQualifier = QV; }
// Location information, modeled after the Stmt API.
SourceLocation getLocStart() const { return getLocation(); }
--- /dev/null
+// RUN: clang -rewrite-test %s
+
+@interface Intf
+- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2;
+- (id) another:(void *)location with:(unsigned **)arg2;
+@end
+
+@implementation Intf
+- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2{}
+- (id) another:(void *)location with:(unsigned **)arg2 {}
+@end