diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-10 06:46:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-10 06:46:29 +0000 |
commit | e13594279a952537ac903325efff57e3edca79d9 (patch) | |
tree | c21fd323f3ac30e82c4e08889cb2ee4ef251e978 /lib/Parse/ParseObjc.cpp | |
parent | 60b1e3ebe4ced60f7d65027c610fb3cda0a3cf70 (diff) |
refactor Parser::ParseStructDeclaration to return a vector of uninterpreted
declarators. This allows the clients (C structs, objc classes, objc
properties, [future] C++ classes) etc, to do custom processing before invoking
an action.
This has two benefits in the short term:
1) objc ivar processing should be split out of ActOnField into its own ActOn method.
2) the new objc ivar action can take visibility info directly, eliminating
AllVisibilities in ParseObjCClassInstanceVariables.
3) objc properties can pass their own special sauce down to sema as well.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49468 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseObjc.cpp')
-rw-r--r-- | lib/Parse/ParseObjc.cpp | 47 |
1 files changed, 36 insertions, 11 deletions
diff --git a/lib/Parse/ParseObjc.cpp b/lib/Parse/ParseObjc.cpp index 2aee03ae95..5a9b980b6d 100644 --- a/lib/Parse/ParseObjc.cpp +++ b/lib/Parse/ParseObjc.cpp @@ -378,16 +378,31 @@ Parser::DeclTy *Parser::ParseObjCPropertyDecl(DeclTy *interfaceDecl, SourceLocation AtLoc) { assert(Tok.isObjCAtKeyword(tok::objc_property) && "ParseObjCPropertyDecl(): Expected @property"); - ObjCDeclSpec DS; + ObjCDeclSpec OCDS; ConsumeToken(); // the "property" identifier // Parse property attribute list, if any. if (Tok.is(tok::l_paren)) { // property has attribute list. - ParseObjCPropertyAttribute(DS); + ParseObjCPropertyAttribute(OCDS); } // Parse declaration portion of @property. llvm::SmallVector<DeclTy*, 8> PropertyDecls; - ParseStructDeclaration(interfaceDecl, PropertyDecls); + + // Parse all the comma separated declarators. + DeclSpec DS; + llvm::SmallVector<FieldDeclarator, 8> FieldDeclarators; + ParseStructDeclaration(DS, FieldDeclarators); + + // Convert them all to fields. + for (unsigned i = 0, e = FieldDeclarators.size(); i != e; ++i) { + FieldDeclarator &FD = FieldDeclarators[i]; + // Install the declarator into interfaceDecl. + DeclTy *Field = Actions.ActOnField(CurScope, interfaceDecl, + DS.getSourceRange().getBegin(), + FD.D, FD.BitfieldSize); + PropertyDecls.push_back(Field); + } + if (Tok.is(tok::semi)) ConsumeToken(); else { @@ -395,7 +410,7 @@ Parser::DeclTy *Parser::ParseObjCPropertyDecl(DeclTy *interfaceDecl, SkipUntil(tok::r_brace, true, true); } return Actions.ActOnAddObjCProperties(AtLoc, &PropertyDecls[0], - PropertyDecls.size(), DS); + PropertyDecls.size(), OCDS); } /// objc-method-proto: @@ -756,10 +771,10 @@ bool Parser::ParseObjCProtocolReferences( void Parser::ParseObjCClassInstanceVariables(DeclTy *interfaceDecl, SourceLocation atLoc) { assert(Tok.is(tok::l_brace) && "expected {"); - llvm::SmallVector<DeclTy*, 16> IvarDecls; llvm::SmallVector<DeclTy*, 32> AllIvarDecls; llvm::SmallVector<tok::ObjCKeywordKind, 32> AllVisibilities; - + llvm::SmallVector<FieldDeclarator, 8> FieldDeclarators; + SourceLocation LBraceLoc = ConsumeBrace(); // the "{" tok::ObjCKeywordKind visibility = tok::objc_private; @@ -773,6 +788,7 @@ void Parser::ParseObjCClassInstanceVariables(DeclTy *interfaceDecl, ConsumeToken(); continue; } + // Set the default visibility to private. if (Tok.is(tok::at)) { // parse objc-visibility-spec ConsumeToken(); // eat the @ sign @@ -786,16 +802,25 @@ void Parser::ParseObjCClassInstanceVariables(DeclTy *interfaceDecl, continue; default: Diag(Tok, diag::err_objc_illegal_visibility_spec); - ConsumeToken(); continue; } } - ParseStructDeclaration(interfaceDecl, IvarDecls); - for (unsigned i = 0; i < IvarDecls.size(); i++) { - AllIvarDecls.push_back(IvarDecls[i]); + + // Parse all the comma separated declarators. + DeclSpec DS; + FieldDeclarators.clear(); + ParseStructDeclaration(DS, FieldDeclarators); + + // Convert them all to fields. + for (unsigned i = 0, e = FieldDeclarators.size(); i != e; ++i) { + FieldDeclarator &FD = FieldDeclarators[i]; + // Install the declarator into interfaceDecl. + DeclTy *Field = Actions.ActOnField(CurScope, interfaceDecl, + DS.getSourceRange().getBegin(), + FD.D, FD.BitfieldSize); + AllIvarDecls.push_back(Field); AllVisibilities.push_back(visibility); } - IvarDecls.clear(); if (Tok.is(tok::semi)) { ConsumeToken(); |