| Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1 | //===--- ParseObjC.cpp - Objective C Parsing ------------------------------===// |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 2 | // |
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file implements the Objective-C portions of the Parser interface. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| John McCall | 8b0666c | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 13 | #include "clang/Parse/Parser.h" |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 14 | #include "clang/AST/ASTContext.h" |
| Jordan Rose | 1e879d8 | 2018-03-23 00:07:18 +0000 | [diff] [blame] | 15 | #include "clang/AST/PrettyDeclStackTrace.h" |
| Jordan Rose | a7d0384 | 2013-02-08 22:30:41 +0000 | [diff] [blame] | 16 | #include "clang/Basic/CharInfo.h" |
| Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 17 | #include "clang/Parse/ParseDiagnostic.h" |
| Vassil Vassilev | 11ad339 | 2017-03-23 15:11:07 +0000 | [diff] [blame] | 18 | #include "clang/Parse/RAIIObjectsForParser.h" |
| John McCall | 8b0666c | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 19 | #include "clang/Sema/DeclSpec.h" |
| 20 | #include "clang/Sema/Scope.h" |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallVector.h" |
| Fariborz Jahanian | f4ffdf3 | 2012-09-17 19:15:26 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/StringExtras.h" |
| Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 23 | |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 24 | using namespace clang; |
| 25 | |
| Nico Weber | 04e213b | 2013-04-03 17:36:11 +0000 | [diff] [blame] | 26 | /// Skips attributes after an Objective-C @ directive. Emits a diagnostic. |
| Nico Weber | 69a7914 | 2013-04-04 00:15:10 +0000 | [diff] [blame] | 27 | void Parser::MaybeSkipAttributes(tok::ObjCKeywordKind Kind) { |
| Nico Weber | 04e213b | 2013-04-03 17:36:11 +0000 | [diff] [blame] | 28 | ParsedAttributes attrs(AttrFactory); |
| 29 | if (Tok.is(tok::kw___attribute)) { |
| Nico Weber | 69a7914 | 2013-04-04 00:15:10 +0000 | [diff] [blame] | 30 | if (Kind == tok::objc_interface || Kind == tok::objc_protocol) |
| 31 | Diag(Tok, diag::err_objc_postfix_attribute_hint) |
| 32 | << (Kind == tok::objc_protocol); |
| 33 | else |
| 34 | Diag(Tok, diag::err_objc_postfix_attribute); |
| Nico Weber | 04e213b | 2013-04-03 17:36:11 +0000 | [diff] [blame] | 35 | ParseGNUAttributes(attrs); |
| 36 | } |
| 37 | } |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 38 | |
| Chris Lattner | 3a90716 | 2008-12-08 21:53:24 +0000 | [diff] [blame] | 39 | /// ParseObjCAtDirectives - Handle parts of the external-declaration production: |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 40 | /// external-declaration: [C99 6.9] |
| 41 | /// [OBJC] objc-class-definition |
| Steve Naroff | e093339 | 2007-10-29 21:39:29 +0000 | [diff] [blame] | 42 | /// [OBJC] objc-class-declaration |
| 43 | /// [OBJC] objc-alias-declaration |
| 44 | /// [OBJC] objc-protocol-definition |
| 45 | /// [OBJC] objc-method-definition |
| 46 | /// [OBJC] '@' 'end' |
| Aaron Ballman | 1c606c2 | 2018-02-12 13:38:25 +0000 | [diff] [blame] | 47 | Parser::DeclGroupPtrTy |
| 48 | Parser::ParseObjCAtDirectives(ParsedAttributesWithRange &Attrs) { |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 49 | SourceLocation AtLoc = ConsumeToken(); // the "@" |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 50 | |
| Douglas Gregor | f48706c | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 51 | if (Tok.is(tok::code_completion)) { |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 52 | Actions.CodeCompleteObjCAtDirective(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 53 | cutOffParsing(); |
| David Blaikie | 0403cb1 | 2016-01-15 23:43:25 +0000 | [diff] [blame] | 54 | return nullptr; |
| Douglas Gregor | f48706c | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 55 | } |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 56 | |
| 57 | Decl *SingleDecl = nullptr; |
| Steve Naroff | 7c34817 | 2007-08-23 18:16:40 +0000 | [diff] [blame] | 58 | switch (Tok.getObjCKeywordID()) { |
| Chris Lattner | ce90ef5 | 2008-08-23 02:02:23 +0000 | [diff] [blame] | 59 | case tok::objc_class: |
| 60 | return ParseObjCAtClassDeclaration(AtLoc); |
| Aaron Ballman | 1c606c2 | 2018-02-12 13:38:25 +0000 | [diff] [blame] | 61 | case tok::objc_interface: |
| 62 | SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, Attrs); |
| Fariborz Jahanian | 3a039e3 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 63 | break; |
| Aaron Ballman | 1c606c2 | 2018-02-12 13:38:25 +0000 | [diff] [blame] | 64 | case tok::objc_protocol: |
| 65 | return ParseObjCAtProtocolDeclaration(AtLoc, Attrs); |
| Chris Lattner | ce90ef5 | 2008-08-23 02:02:23 +0000 | [diff] [blame] | 66 | case tok::objc_implementation: |
| Erik Pilkington | c5a0583 | 2019-04-11 17:55:30 +0000 | [diff] [blame] | 67 | return ParseObjCAtImplementationDeclaration(AtLoc, Attrs); |
| Chris Lattner | ce90ef5 | 2008-08-23 02:02:23 +0000 | [diff] [blame] | 68 | case tok::objc_end: |
| Fariborz Jahanian | bd0642f | 2011-08-31 17:37:55 +0000 | [diff] [blame] | 69 | return ParseObjCAtEndDeclaration(AtLoc); |
| Chris Lattner | ce90ef5 | 2008-08-23 02:02:23 +0000 | [diff] [blame] | 70 | case tok::objc_compatibility_alias: |
| Fariborz Jahanian | 3a039e3 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 71 | SingleDecl = ParseObjCAtAliasDeclaration(AtLoc); |
| 72 | break; |
| Chris Lattner | ce90ef5 | 2008-08-23 02:02:23 +0000 | [diff] [blame] | 73 | case tok::objc_synthesize: |
| Fariborz Jahanian | 3a039e3 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 74 | SingleDecl = ParseObjCPropertySynthesize(AtLoc); |
| 75 | break; |
| Chris Lattner | ce90ef5 | 2008-08-23 02:02:23 +0000 | [diff] [blame] | 76 | case tok::objc_dynamic: |
| Fariborz Jahanian | 3a039e3 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 77 | SingleDecl = ParseObjCPropertyDynamic(AtLoc); |
| 78 | break; |
| Douglas Gregor | c50d492 | 2012-12-11 22:11:52 +0000 | [diff] [blame] | 79 | case tok::objc_import: |
| Hamza Sood | 81fe14e | 2017-11-21 09:42:42 +0000 | [diff] [blame] | 80 | if (getLangOpts().Modules || getLangOpts().DebuggerSupport) { |
| 81 | SingleDecl = ParseModuleImport(AtLoc); |
| 82 | break; |
| 83 | } |
| Manman Ren | dfcf1cb | 2017-01-20 20:03:00 +0000 | [diff] [blame] | 84 | Diag(AtLoc, diag::err_atimport); |
| Fariborz Jahanian | a773d08 | 2014-03-26 22:02:43 +0000 | [diff] [blame] | 85 | SkipUntil(tok::semi); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 86 | return Actions.ConvertDeclToDeclGroup(nullptr); |
| Chris Lattner | ce90ef5 | 2008-08-23 02:02:23 +0000 | [diff] [blame] | 87 | default: |
| 88 | Diag(AtLoc, diag::err_unexpected_at); |
| 89 | SkipUntil(tok::semi); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 90 | SingleDecl = nullptr; |
| Fariborz Jahanian | 3a039e3 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 91 | break; |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 92 | } |
| Fariborz Jahanian | 3a039e3 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 93 | return Actions.ConvertDeclToDeclGroup(SingleDecl); |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 94 | } |
| 95 | |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 96 | /// Class to handle popping type parameters when leaving the scope. |
| 97 | class Parser::ObjCTypeParamListScope { |
| 98 | Sema &Actions; |
| 99 | Scope *S; |
| 100 | ObjCTypeParamList *Params; |
| Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 101 | |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 102 | public: |
| 103 | ObjCTypeParamListScope(Sema &Actions, Scope *S) |
| 104 | : Actions(Actions), S(S), Params(nullptr) {} |
| Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 105 | |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 106 | ~ObjCTypeParamListScope() { |
| 107 | leave(); |
| 108 | } |
| Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 109 | |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 110 | void enter(ObjCTypeParamList *P) { |
| 111 | assert(!Params); |
| 112 | Params = P; |
| 113 | } |
| Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 114 | |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 115 | void leave() { |
| 116 | if (Params) |
| 117 | Actions.popObjCTypeParamList(S, Params); |
| 118 | Params = nullptr; |
| 119 | } |
| 120 | }; |
| 121 | |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 122 | /// |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 123 | /// objc-class-declaration: |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 124 | /// '@' 'class' objc-class-forward-decl (',' objc-class-forward-decl)* ';' |
| 125 | /// |
| 126 | /// objc-class-forward-decl: |
| 127 | /// identifier objc-type-parameter-list[opt] |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 128 | /// |
| Fariborz Jahanian | 3a039e3 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 129 | Parser::DeclGroupPtrTy |
| 130 | Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) { |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 131 | ConsumeToken(); // the identifier "class" |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 132 | SmallVector<IdentifierInfo *, 8> ClassNames; |
| 133 | SmallVector<SourceLocation, 8> ClassLocs; |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 134 | SmallVector<ObjCTypeParamList *, 8> ClassTypeParams; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 135 | |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 136 | while (1) { |
| Nico Weber | 69a7914 | 2013-04-04 00:15:10 +0000 | [diff] [blame] | 137 | MaybeSkipAttributes(tok::objc_class); |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 138 | if (expectIdentifier()) { |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 139 | SkipUntil(tok::semi); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 140 | return Actions.ConvertDeclToDeclGroup(nullptr); |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 141 | } |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 142 | ClassNames.push_back(Tok.getIdentifierInfo()); |
| Ted Kremenek | a26da85 | 2009-11-17 23:12:20 +0000 | [diff] [blame] | 143 | ClassLocs.push_back(Tok.getLocation()); |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 144 | ConsumeToken(); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 145 | |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 146 | // Parse the optional objc-type-parameter-list. |
| 147 | ObjCTypeParamList *TypeParams = nullptr; |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 148 | if (Tok.is(tok::less)) |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 149 | TypeParams = parseObjCTypeParamList(); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 150 | ClassTypeParams.push_back(TypeParams); |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 151 | if (!TryConsumeToken(tok::comma)) |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 152 | break; |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 153 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 154 | |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 155 | // Consume the ';'. |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 156 | if (ExpectAndConsume(tok::semi, diag::err_expected_after, "@class")) |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 157 | return Actions.ConvertDeclToDeclGroup(nullptr); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 158 | |
| Ted Kremenek | a26da85 | 2009-11-17 23:12:20 +0000 | [diff] [blame] | 159 | return Actions.ActOnForwardClassDeclaration(atLoc, ClassNames.data(), |
| 160 | ClassLocs.data(), |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 161 | ClassTypeParams, |
| Ted Kremenek | a26da85 | 2009-11-17 23:12:20 +0000 | [diff] [blame] | 162 | ClassNames.size()); |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 165 | void Parser::CheckNestedObjCContexts(SourceLocation AtLoc) |
| 166 | { |
| 167 | Sema::ObjCContainerKind ock = Actions.getObjCContainerKind(); |
| 168 | if (ock == Sema::OCK_None) |
| 169 | return; |
| 170 | |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 171 | Decl *Decl = Actions.getObjCDeclContext(); |
| 172 | if (CurParsedObjCImpl) { |
| 173 | CurParsedObjCImpl->finish(AtLoc); |
| 174 | } else { |
| 175 | Actions.ActOnAtEnd(getCurScope(), AtLoc); |
| 176 | } |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 177 | Diag(AtLoc, diag::err_objc_missing_end) |
| 178 | << FixItHint::CreateInsertion(AtLoc, "@end\n"); |
| 179 | if (Decl) |
| Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 180 | Diag(Decl->getBeginLoc(), diag::note_objc_container_start) << (int)ock; |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 181 | } |
| 182 | |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 183 | /// |
| 184 | /// objc-interface: |
| 185 | /// objc-class-interface-attributes[opt] objc-class-interface |
| 186 | /// objc-category-interface |
| 187 | /// |
| 188 | /// objc-class-interface: |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 189 | /// '@' 'interface' identifier objc-type-parameter-list[opt] |
| 190 | /// objc-superclass[opt] objc-protocol-refs[opt] |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 191 | /// objc-class-instance-variables[opt] |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 192 | /// objc-interface-decl-list |
| 193 | /// @end |
| 194 | /// |
| 195 | /// objc-category-interface: |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 196 | /// '@' 'interface' identifier objc-type-parameter-list[opt] |
| 197 | /// '(' identifier[opt] ')' objc-protocol-refs[opt] |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 198 | /// objc-interface-decl-list |
| 199 | /// @end |
| 200 | /// |
| 201 | /// objc-superclass: |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 202 | /// ':' identifier objc-type-arguments[opt] |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 203 | /// |
| 204 | /// objc-class-interface-attributes: |
| 205 | /// __attribute__((visibility("default"))) |
| 206 | /// __attribute__((visibility("hidden"))) |
| 207 | /// __attribute__((deprecated)) |
| 208 | /// __attribute__((unavailable)) |
| 209 | /// __attribute__((objc_exception)) - used by NSException on 64-bit |
| Patrick Beard | acfbe9e | 2012-04-06 18:12:22 +0000 | [diff] [blame] | 210 | /// __attribute__((objc_root_class)) |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 211 | /// |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 212 | Decl *Parser::ParseObjCAtInterfaceDeclaration(SourceLocation AtLoc, |
| John McCall | 53fa714 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 213 | ParsedAttributes &attrs) { |
| Steve Naroff | 7c34817 | 2007-08-23 18:16:40 +0000 | [diff] [blame] | 214 | assert(Tok.isObjCAtKeyword(tok::objc_interface) && |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 215 | "ParseObjCAtInterfaceDeclaration(): Expected @interface"); |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 216 | CheckNestedObjCContexts(AtLoc); |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 217 | ConsumeToken(); // the "interface" identifier |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 218 | |
| Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 219 | // Code completion after '@interface'. |
| 220 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 221 | Actions.CodeCompleteObjCInterfaceDecl(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 222 | cutOffParsing(); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 223 | return nullptr; |
| Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 224 | } |
| 225 | |
| Nico Weber | 69a7914 | 2013-04-04 00:15:10 +0000 | [diff] [blame] | 226 | MaybeSkipAttributes(tok::objc_interface); |
| Nico Weber | 04e213b | 2013-04-03 17:36:11 +0000 | [diff] [blame] | 227 | |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 228 | if (expectIdentifier()) |
| 229 | return nullptr; // missing class or category name. |
| Fariborz Jahanian | 9290ede | 2009-11-16 18:57:01 +0000 | [diff] [blame] | 230 | |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 231 | // We have a class or category name - consume it. |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 232 | IdentifierInfo *nameId = Tok.getIdentifierInfo(); |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 233 | SourceLocation nameLoc = ConsumeToken(); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 234 | |
| 235 | // Parse the objc-type-parameter-list or objc-protocol-refs. For the latter |
| 236 | // case, LAngleLoc will be valid and ProtocolIdents will capture the |
| 237 | // protocol references (that have not yet been resolved). |
| 238 | SourceLocation LAngleLoc, EndProtoLoc; |
| 239 | SmallVector<IdentifierLocPair, 8> ProtocolIdents; |
| 240 | ObjCTypeParamList *typeParameterList = nullptr; |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 241 | ObjCTypeParamListScope typeParamScope(Actions, getCurScope()); |
| 242 | if (Tok.is(tok::less)) |
| 243 | typeParameterList = parseObjCTypeParamListOrProtocolRefs( |
| 244 | typeParamScope, LAngleLoc, ProtocolIdents, EndProtoLoc); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 245 | |
| 246 | if (Tok.is(tok::l_paren) && |
| Fariborz Jahanian | 65654df | 2010-04-26 21:18:08 +0000 | [diff] [blame] | 247 | !isKnownToBeTypeSpecifier(GetLookAheadToken(1))) { // we have a category. |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 248 | |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 249 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 250 | T.consumeOpen(); |
| 251 | |
| 252 | SourceLocation categoryLoc; |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 253 | IdentifierInfo *categoryId = nullptr; |
| Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 254 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 255 | Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 256 | cutOffParsing(); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 257 | return nullptr; |
| Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 258 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 259 | |
| Steve Naroff | 4e1f80d | 2007-08-23 19:56:30 +0000 | [diff] [blame] | 260 | // For ObjC2, the category name is optional (not an error). |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 261 | if (Tok.is(tok::identifier)) { |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 262 | categoryId = Tok.getIdentifierInfo(); |
| 263 | categoryLoc = ConsumeToken(); |
| Fariborz Jahanian | d077f71 | 2010-04-02 23:15:40 +0000 | [diff] [blame] | 264 | } |
| Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 265 | else if (!getLangOpts().ObjC) { |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 266 | Diag(Tok, diag::err_expected) |
| 267 | << tok::identifier; // missing category name. |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 268 | return nullptr; |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 269 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 270 | |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 271 | T.consumeClose(); |
| 272 | if (T.getCloseLocation().isInvalid()) |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 273 | return nullptr; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 274 | |
| Fariborz Jahanian | 65654df | 2010-04-26 21:18:08 +0000 | [diff] [blame] | 275 | // Next, we need to check for any protocol references. |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 276 | assert(LAngleLoc.isInvalid() && "Cannot have already parsed protocols"); |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 277 | SmallVector<Decl *, 8> ProtocolRefs; |
| 278 | SmallVector<SourceLocation, 8> ProtocolLocs; |
| Fariborz Jahanian | 65654df | 2010-04-26 21:18:08 +0000 | [diff] [blame] | 279 | if (Tok.is(tok::less) && |
| Argyrios Kyrtzidis | 4ecdd2c | 2015-04-19 20:15:55 +0000 | [diff] [blame] | 280 | ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, true, true, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 281 | LAngleLoc, EndProtoLoc, |
| 282 | /*consumeLastToken=*/true)) |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 283 | return nullptr; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 284 | |
| Alex Lorenz | f937139 | 2017-03-23 11:44:25 +0000 | [diff] [blame] | 285 | Decl *CategoryType = Actions.ActOnStartCategoryInterface( |
| 286 | AtLoc, nameId, nameLoc, typeParameterList, categoryId, categoryLoc, |
| 287 | ProtocolRefs.data(), ProtocolRefs.size(), ProtocolLocs.data(), |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 288 | EndProtoLoc, attrs); |
| Alex Lorenz | f937139 | 2017-03-23 11:44:25 +0000 | [diff] [blame] | 289 | |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 290 | if (Tok.is(tok::l_brace)) |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 291 | ParseObjCClassInstanceVariables(CategoryType, tok::objc_private, AtLoc); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 292 | |
| Fariborz Jahanian | b66de9f | 2011-08-22 21:44:58 +0000 | [diff] [blame] | 293 | ParseObjCInterfaceDeclList(tok::objc_not_keyword, CategoryType); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 294 | |
| Fariborz Jahanian | 65654df | 2010-04-26 21:18:08 +0000 | [diff] [blame] | 295 | return CategoryType; |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 296 | } |
| 297 | // Parse a class interface. |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 298 | IdentifierInfo *superClassId = nullptr; |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 299 | SourceLocation superClassLoc; |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 300 | SourceLocation typeArgsLAngleLoc; |
| 301 | SmallVector<ParsedType, 4> typeArgs; |
| 302 | SourceLocation typeArgsRAngleLoc; |
| 303 | SmallVector<Decl *, 4> protocols; |
| 304 | SmallVector<SourceLocation, 4> protocolLocs; |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 305 | if (Tok.is(tok::colon)) { // a super class is specified. |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 306 | ConsumeToken(); |
| Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 307 | |
| 308 | // Code completion of superclass names. |
| 309 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 310 | Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 311 | cutOffParsing(); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 312 | return nullptr; |
| Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 313 | } |
| 314 | |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 315 | if (expectIdentifier()) |
| 316 | return nullptr; // missing super class name. |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 317 | superClassId = Tok.getIdentifierInfo(); |
| 318 | superClassLoc = ConsumeToken(); |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 319 | |
| 320 | // Type arguments for the superclass or protocol conformances. |
| 321 | if (Tok.is(tok::less)) { |
| David Blaikie | efdccaa | 2016-01-15 23:43:34 +0000 | [diff] [blame] | 322 | parseObjCTypeArgsOrProtocolQualifiers( |
| 323 | nullptr, typeArgsLAngleLoc, typeArgs, typeArgsRAngleLoc, LAngleLoc, |
| 324 | protocols, protocolLocs, EndProtoLoc, |
| 325 | /*consumeLastToken=*/true, |
| 326 | /*warnOnIncompleteProtocols=*/true); |
| Bruno Cardoso Lopes | 218c874 | 2016-09-13 20:04:35 +0000 | [diff] [blame] | 327 | if (Tok.is(tok::eof)) |
| 328 | return nullptr; |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 329 | } |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 330 | } |
| Bruno Cardoso Lopes | 218c874 | 2016-09-13 20:04:35 +0000 | [diff] [blame] | 331 | |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 332 | // Next, we need to check for any protocol references. |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 333 | if (LAngleLoc.isValid()) { |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 334 | if (!ProtocolIdents.empty()) { |
| 335 | // We already parsed the protocols named when we thought we had a |
| 336 | // type parameter list. Translate them into actual protocol references. |
| 337 | for (const auto &pair : ProtocolIdents) { |
| 338 | protocolLocs.push_back(pair.second); |
| 339 | } |
| 340 | Actions.FindProtocolDeclaration(/*WarnOnDeclarations=*/true, |
| 341 | /*ForObjCContainer=*/true, |
| Craig Topper | a9247eb | 2015-10-22 04:59:56 +0000 | [diff] [blame] | 342 | ProtocolIdents, protocols); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 343 | } |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 344 | } else if (protocols.empty() && Tok.is(tok::less) && |
| 345 | ParseObjCProtocolReferences(protocols, protocolLocs, true, true, |
| 346 | LAngleLoc, EndProtoLoc, |
| 347 | /*consumeLastToken=*/true)) { |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 348 | return nullptr; |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 349 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 350 | |
| Fariborz Jahanian | b7c5f74 | 2013-09-25 19:36:32 +0000 | [diff] [blame] | 351 | if (Tok.isNot(tok::less)) |
| Argyrios Kyrtzidis | f95a000 | 2016-11-09 02:47:07 +0000 | [diff] [blame] | 352 | Actions.ActOnTypedefedProtocols(protocols, protocolLocs, |
| 353 | superClassId, superClassLoc); |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 354 | |
| 355 | Decl *ClsType = Actions.ActOnStartClassInterface( |
| 356 | getCurScope(), AtLoc, nameId, nameLoc, typeParameterList, superClassId, |
| 357 | superClassLoc, typeArgs, |
| 358 | SourceRange(typeArgsLAngleLoc, typeArgsRAngleLoc), protocols.data(), |
| 359 | protocols.size(), protocolLocs.data(), EndProtoLoc, attrs); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 360 | |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 361 | if (Tok.is(tok::l_brace)) |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 362 | ParseObjCClassInstanceVariables(ClsType, tok::objc_protected, AtLoc); |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 363 | |
| Fariborz Jahanian | b66de9f | 2011-08-22 21:44:58 +0000 | [diff] [blame] | 364 | ParseObjCInterfaceDeclList(tok::objc_interface, ClsType); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 365 | |
| Fariborz Jahanian | 65654df | 2010-04-26 21:18:08 +0000 | [diff] [blame] | 366 | return ClsType; |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 367 | } |
| 368 | |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 369 | /// Add an attribute for a context-sensitive type nullability to the given |
| 370 | /// declarator. |
| 371 | static void addContextSensitiveTypeNullability(Parser &P, |
| 372 | Declarator &D, |
| 373 | NullabilityKind nullability, |
| 374 | SourceLocation nullabilityLoc, |
| 375 | bool &addedToDeclSpec) { |
| 376 | // Create the attribute. |
| Erich Keane | e891aa9 | 2018-07-13 15:07:47 +0000 | [diff] [blame] | 377 | auto getNullabilityAttr = [&](AttributePool &Pool) -> ParsedAttr * { |
| Erich Keane | 0aab723 | 2018-07-03 20:30:34 +0000 | [diff] [blame] | 378 | return Pool.create(P.getNullabilityKeyword(nullability), |
| 379 | SourceRange(nullabilityLoc), nullptr, SourceLocation(), |
| Erich Keane | e891aa9 | 2018-07-13 15:07:47 +0000 | [diff] [blame] | 380 | nullptr, 0, ParsedAttr::AS_ContextSensitiveKeyword); |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 381 | }; |
| 382 | |
| 383 | if (D.getNumTypeObjects() > 0) { |
| 384 | // Add the attribute to the declarator chunk nearest the declarator. |
| Michael Kruse | dc5ce72 | 2018-08-03 01:21:16 +0000 | [diff] [blame] | 385 | D.getTypeObject(0).getAttrs().addAtEnd( |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 386 | getNullabilityAttr(D.getAttributePool())); |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 387 | } else if (!addedToDeclSpec) { |
| 388 | // Otherwise, just put it on the declaration specifiers (if one |
| 389 | // isn't there already). |
| Michael Kruse | dc5ce72 | 2018-08-03 01:21:16 +0000 | [diff] [blame] | 390 | D.getMutableDeclSpec().getAttributes().addAtEnd( |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 391 | getNullabilityAttr(D.getMutableDeclSpec().getAttributes().getPool())); |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 392 | addedToDeclSpec = true; |
| 393 | } |
| 394 | } |
| 395 | |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 396 | /// Parse an Objective-C type parameter list, if present, or capture |
| 397 | /// the locations of the protocol identifiers for a list of protocol |
| 398 | /// references. |
| 399 | /// |
| 400 | /// objc-type-parameter-list: |
| 401 | /// '<' objc-type-parameter (',' objc-type-parameter)* '>' |
| 402 | /// |
| 403 | /// objc-type-parameter: |
| Douglas Gregor | 1ac1b63 | 2015-07-07 03:58:54 +0000 | [diff] [blame] | 404 | /// objc-type-parameter-variance? identifier objc-type-parameter-bound[opt] |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 405 | /// |
| 406 | /// objc-type-parameter-bound: |
| 407 | /// ':' type-name |
| 408 | /// |
| Douglas Gregor | 1ac1b63 | 2015-07-07 03:58:54 +0000 | [diff] [blame] | 409 | /// objc-type-parameter-variance: |
| 410 | /// '__covariant' |
| 411 | /// '__contravariant' |
| 412 | /// |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 413 | /// \param lAngleLoc The location of the starting '<'. |
| 414 | /// |
| 415 | /// \param protocolIdents Will capture the list of identifiers, if the |
| 416 | /// angle brackets contain a list of protocol references rather than a |
| 417 | /// type parameter list. |
| 418 | /// |
| 419 | /// \param rAngleLoc The location of the ending '>'. |
| 420 | ObjCTypeParamList *Parser::parseObjCTypeParamListOrProtocolRefs( |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 421 | ObjCTypeParamListScope &Scope, SourceLocation &lAngleLoc, |
| 422 | SmallVectorImpl<IdentifierLocPair> &protocolIdents, |
| 423 | SourceLocation &rAngleLoc, bool mayBeProtocolList) { |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 424 | assert(Tok.is(tok::less) && "Not at the beginning of a type parameter list"); |
| 425 | |
| 426 | // Within the type parameter list, don't treat '>' as an operator. |
| 427 | GreaterThanIsOperatorScope G(GreaterThanIsOperator, false); |
| 428 | |
| 429 | // Local function to "flush" the protocol identifiers, turning them into |
| 430 | // type parameters. |
| 431 | SmallVector<Decl *, 4> typeParams; |
| 432 | auto makeProtocolIdentsIntoTypeParameters = [&]() { |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 433 | unsigned index = 0; |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 434 | for (const auto &pair : protocolIdents) { |
| Douglas Gregor | 1ac1b63 | 2015-07-07 03:58:54 +0000 | [diff] [blame] | 435 | DeclResult typeParam = Actions.actOnObjCTypeParam( |
| David Blaikie | efdccaa | 2016-01-15 23:43:34 +0000 | [diff] [blame] | 436 | getCurScope(), ObjCTypeParamVariance::Invariant, SourceLocation(), |
| 437 | index++, pair.first, pair.second, SourceLocation(), nullptr); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 438 | if (typeParam.isUsable()) |
| 439 | typeParams.push_back(typeParam.get()); |
| 440 | } |
| 441 | |
| 442 | protocolIdents.clear(); |
| 443 | mayBeProtocolList = false; |
| 444 | }; |
| 445 | |
| 446 | bool invalid = false; |
| 447 | lAngleLoc = ConsumeToken(); |
| Douglas Gregor | 1ac1b63 | 2015-07-07 03:58:54 +0000 | [diff] [blame] | 448 | |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 449 | do { |
| Douglas Gregor | 1ac1b63 | 2015-07-07 03:58:54 +0000 | [diff] [blame] | 450 | // Parse the variance, if any. |
| 451 | SourceLocation varianceLoc; |
| 452 | ObjCTypeParamVariance variance = ObjCTypeParamVariance::Invariant; |
| 453 | if (Tok.is(tok::kw___covariant) || Tok.is(tok::kw___contravariant)) { |
| 454 | variance = Tok.is(tok::kw___covariant) |
| 455 | ? ObjCTypeParamVariance::Covariant |
| 456 | : ObjCTypeParamVariance::Contravariant; |
| 457 | varianceLoc = ConsumeToken(); |
| 458 | |
| 459 | // Once we've seen a variance specific , we know this is not a |
| 460 | // list of protocol references. |
| 461 | if (mayBeProtocolList) { |
| 462 | // Up until now, we have been queuing up parameters because they |
| 463 | // might be protocol references. Turn them into parameters now. |
| 464 | makeProtocolIdentsIntoTypeParameters(); |
| 465 | } |
| 466 | } |
| 467 | |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 468 | // Parse the identifier. |
| 469 | if (!Tok.is(tok::identifier)) { |
| 470 | // Code completion. |
| 471 | if (Tok.is(tok::code_completion)) { |
| 472 | // FIXME: If these aren't protocol references, we'll need different |
| 473 | // completions. |
| Craig Topper | 883dd33 | 2015-12-24 23:58:11 +0000 | [diff] [blame] | 474 | Actions.CodeCompleteObjCProtocolReferences(protocolIdents); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 475 | cutOffParsing(); |
| 476 | |
| 477 | // FIXME: Better recovery here?. |
| 478 | return nullptr; |
| 479 | } |
| 480 | |
| 481 | Diag(Tok, diag::err_objc_expected_type_parameter); |
| 482 | invalid = true; |
| 483 | break; |
| 484 | } |
| 485 | |
| 486 | IdentifierInfo *paramName = Tok.getIdentifierInfo(); |
| 487 | SourceLocation paramLoc = ConsumeToken(); |
| 488 | |
| 489 | // If there is a bound, parse it. |
| 490 | SourceLocation colonLoc; |
| 491 | TypeResult boundType; |
| 492 | if (TryConsumeToken(tok::colon, colonLoc)) { |
| 493 | // Once we've seen a bound, we know this is not a list of protocol |
| 494 | // references. |
| 495 | if (mayBeProtocolList) { |
| 496 | // Up until now, we have been queuing up parameters because they |
| 497 | // might be protocol references. Turn them into parameters now. |
| 498 | makeProtocolIdentsIntoTypeParameters(); |
| 499 | } |
| 500 | |
| 501 | // type-name |
| 502 | boundType = ParseTypeName(); |
| 503 | if (boundType.isInvalid()) |
| 504 | invalid = true; |
| 505 | } else if (mayBeProtocolList) { |
| 506 | // If this could still be a protocol list, just capture the identifier. |
| 507 | // We don't want to turn it into a parameter. |
| 508 | protocolIdents.push_back(std::make_pair(paramName, paramLoc)); |
| 509 | continue; |
| 510 | } |
| 511 | |
| 512 | // Create the type parameter. |
| David Blaikie | efdccaa | 2016-01-15 23:43:34 +0000 | [diff] [blame] | 513 | DeclResult typeParam = Actions.actOnObjCTypeParam( |
| 514 | getCurScope(), variance, varianceLoc, typeParams.size(), paramName, |
| 515 | paramLoc, colonLoc, boundType.isUsable() ? boundType.get() : nullptr); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 516 | if (typeParam.isUsable()) |
| 517 | typeParams.push_back(typeParam.get()); |
| 518 | } while (TryConsumeToken(tok::comma)); |
| 519 | |
| 520 | // Parse the '>'. |
| 521 | if (invalid) { |
| 522 | SkipUntil(tok::greater, tok::at, StopBeforeMatch); |
| 523 | if (Tok.is(tok::greater)) |
| 524 | ConsumeToken(); |
| 525 | } else if (ParseGreaterThanInTemplateList(rAngleLoc, |
| 526 | /*ConsumeLastToken=*/true, |
| 527 | /*ObjCGenericList=*/true)) { |
| 528 | Diag(lAngleLoc, diag::note_matching) << "'<'"; |
| 529 | SkipUntil({tok::greater, tok::greaterequal, tok::at, tok::minus, |
| 530 | tok::minus, tok::plus, tok::colon, tok::l_paren, tok::l_brace, |
| 531 | tok::comma, tok::semi }, |
| 532 | StopBeforeMatch); |
| 533 | if (Tok.is(tok::greater)) |
| 534 | ConsumeToken(); |
| 535 | } |
| 536 | |
| 537 | if (mayBeProtocolList) { |
| 538 | // A type parameter list must be followed by either a ':' (indicating the |
| 539 | // presence of a superclass) or a '(' (indicating that this is a category |
| 540 | // or extension). This disambiguates between an objc-type-parameter-list |
| 541 | // and a objc-protocol-refs. |
| 542 | if (Tok.isNot(tok::colon) && Tok.isNot(tok::l_paren)) { |
| 543 | // Returning null indicates that we don't have a type parameter list. |
| 544 | // The results the caller needs to handle the protocol references are |
| 545 | // captured in the reference parameters already. |
| 546 | return nullptr; |
| 547 | } |
| 548 | |
| 549 | // We have a type parameter list that looks like a list of protocol |
| 550 | // references. Turn that parameter list into type parameters. |
| 551 | makeProtocolIdentsIntoTypeParameters(); |
| 552 | } |
| 553 | |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 554 | // Form the type parameter list and enter its scope. |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 555 | ObjCTypeParamList *list = Actions.actOnObjCTypeParamList( |
| 556 | getCurScope(), |
| 557 | lAngleLoc, |
| 558 | typeParams, |
| 559 | rAngleLoc); |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 560 | Scope.enter(list); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 561 | |
| 562 | // Clear out the angle locations; they're used by the caller to indicate |
| 563 | // whether there are any protocol references. |
| 564 | lAngleLoc = SourceLocation(); |
| 565 | rAngleLoc = SourceLocation(); |
| Akira Hatanaka | 8ebd580 | 2015-12-16 06:25:38 +0000 | [diff] [blame] | 566 | return invalid ? nullptr : list; |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | /// Parse an objc-type-parameter-list. |
| 570 | ObjCTypeParamList *Parser::parseObjCTypeParamList() { |
| 571 | SourceLocation lAngleLoc; |
| 572 | SmallVector<IdentifierLocPair, 1> protocolIdents; |
| 573 | SourceLocation rAngleLoc; |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 574 | |
| 575 | ObjCTypeParamListScope Scope(Actions, getCurScope()); |
| 576 | return parseObjCTypeParamListOrProtocolRefs(Scope, lAngleLoc, protocolIdents, |
| 577 | rAngleLoc, |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 578 | /*mayBeProtocolList=*/false); |
| 579 | } |
| 580 | |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 581 | /// objc-interface-decl-list: |
| 582 | /// empty |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 583 | /// objc-interface-decl-list objc-property-decl [OBJC2] |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 584 | /// objc-interface-decl-list objc-method-requirement [OBJC2] |
| Steve Naroff | 09bf815 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 585 | /// objc-interface-decl-list objc-method-proto ';' |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 586 | /// objc-interface-decl-list declaration |
| 587 | /// objc-interface-decl-list ';' |
| 588 | /// |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 589 | /// objc-method-requirement: [OBJC2] |
| 590 | /// @required |
| 591 | /// @optional |
| 592 | /// |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 593 | void Parser::ParseObjCInterfaceDeclList(tok::ObjCKeywordKind contextKey, |
| Fariborz Jahanian | b66de9f | 2011-08-22 21:44:58 +0000 | [diff] [blame] | 594 | Decl *CDecl) { |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 595 | SmallVector<Decl *, 32> allMethods; |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 596 | SmallVector<DeclGroupPtrTy, 8> allTUVariables; |
| Fariborz Jahanian | 0c74e9d | 2007-09-18 00:25:23 +0000 | [diff] [blame] | 597 | tok::ObjCKeywordKind MethodImplKind = tok::objc_not_keyword; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 598 | |
| Ted Kremenek | c7c6431 | 2010-01-07 01:20:12 +0000 | [diff] [blame] | 599 | SourceRange AtEnd; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 600 | |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 601 | while (1) { |
| Chris Lattner | 038a3e3 | 2008-10-20 05:46:22 +0000 | [diff] [blame] | 602 | // If this is a method prototype, parse it. |
| Daniel Marjamaki | e59f8d7 | 2015-06-18 10:59:26 +0000 | [diff] [blame] | 603 | if (Tok.isOneOf(tok::minus, tok::plus)) { |
| Fariborz Jahanian | a5fc75f | 2012-07-26 17:32:28 +0000 | [diff] [blame] | 604 | if (Decl *methodPrototype = |
| 605 | ParseObjCMethodPrototype(MethodImplKind, false)) |
| 606 | allMethods.push_back(methodPrototype); |
| Steve Naroff | 09bf815 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 607 | // Consume the ';' here, since ParseObjCMethodPrototype() is re-used for |
| 608 | // method definitions. |
| Argyrios Kyrtzidis | e1ee623 | 2011-12-17 04:13:22 +0000 | [diff] [blame] | 609 | if (ExpectAndConsumeSemi(diag::err_expected_semi_after_method_proto)) { |
| 610 | // We didn't find a semi and we error'ed out. Skip until a ';' or '@'. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 611 | SkipUntil(tok::at, StopAtSemi | StopBeforeMatch); |
| Argyrios Kyrtzidis | e1ee623 | 2011-12-17 04:13:22 +0000 | [diff] [blame] | 612 | if (Tok.is(tok::semi)) |
| 613 | ConsumeToken(); |
| 614 | } |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 615 | continue; |
| 616 | } |
| Fariborz Jahanian | d077f71 | 2010-04-02 23:15:40 +0000 | [diff] [blame] | 617 | if (Tok.is(tok::l_paren)) { |
| 618 | Diag(Tok, diag::err_expected_minus_or_plus); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 619 | ParseObjCMethodDecl(Tok.getLocation(), |
| 620 | tok::minus, |
| Fariborz Jahanian | c677f69 | 2011-03-12 18:54:30 +0000 | [diff] [blame] | 621 | MethodImplKind, false); |
| Fariborz Jahanian | d077f71 | 2010-04-02 23:15:40 +0000 | [diff] [blame] | 622 | continue; |
| 623 | } |
| Chris Lattner | 038a3e3 | 2008-10-20 05:46:22 +0000 | [diff] [blame] | 624 | // Ignore excess semicolons. |
| 625 | if (Tok.is(tok::semi)) { |
| Nico Weber | 98dd085 | 2019-03-14 14:18:56 +0000 | [diff] [blame] | 626 | // FIXME: This should use ConsumeExtraSemi() for extraneous semicolons, |
| 627 | // to make -Wextra-semi diagnose them. |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 628 | ConsumeToken(); |
| Chris Lattner | 038a3e3 | 2008-10-20 05:46:22 +0000 | [diff] [blame] | 629 | continue; |
| 630 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 631 | |
| Chris Lattner | da9fb15 | 2008-10-20 06:10:06 +0000 | [diff] [blame] | 632 | // If we got to the end of the file, exit the loop. |
| Richard Smith | 34f3051 | 2013-11-23 04:06:09 +0000 | [diff] [blame] | 633 | if (isEofOrEom()) |
| Fariborz Jahanian | 33d0374 | 2007-09-10 20:33:04 +0000 | [diff] [blame] | 634 | break; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 635 | |
| Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 636 | // Code completion within an Objective-C interface. |
| 637 | if (Tok.is(tok::code_completion)) { |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 638 | Actions.CodeCompleteOrdinaryName(getCurScope(), |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 639 | CurParsedObjCImpl? Sema::PCC_ObjCImplementation |
| John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 640 | : Sema::PCC_ObjCInterface); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 641 | return cutOffParsing(); |
| Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 642 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 643 | |
| Chris Lattner | 038a3e3 | 2008-10-20 05:46:22 +0000 | [diff] [blame] | 644 | // If we don't have an @ directive, parse it as a function definition. |
| 645 | if (Tok.isNot(tok::at)) { |
| Chris Lattner | c7c9ab7 | 2009-01-09 04:34:13 +0000 | [diff] [blame] | 646 | // The code below does not consume '}'s because it is afraid of eating the |
| 647 | // end of a namespace. Because of the way this code is structured, an |
| 648 | // erroneous r_brace would cause an infinite loop if not handled here. |
| 649 | if (Tok.is(tok::r_brace)) |
| 650 | break; |
| Nico Weber | 98dd085 | 2019-03-14 14:18:56 +0000 | [diff] [blame] | 651 | |
| Alexis Hunt | 6aa9bee | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 652 | ParsedAttributesWithRange attrs(AttrFactory); |
| Nico Weber | 98dd085 | 2019-03-14 14:18:56 +0000 | [diff] [blame] | 653 | |
| 654 | // Since we call ParseDeclarationOrFunctionDefinition() instead of |
| 655 | // ParseExternalDeclaration() below (so that this doesn't parse nested |
| 656 | // @interfaces), this needs to duplicate some code from the latter. |
| 657 | if (Tok.isOneOf(tok::kw_static_assert, tok::kw__Static_assert)) { |
| 658 | SourceLocation DeclEnd; |
| 659 | allTUVariables.push_back( |
| 660 | ParseDeclaration(DeclaratorContext::FileContext, DeclEnd, attrs)); |
| 661 | continue; |
| 662 | } |
| 663 | |
| John McCall | 53fa714 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 664 | allTUVariables.push_back(ParseDeclarationOrFunctionDefinition(attrs)); |
| Chris Lattner | 038a3e3 | 2008-10-20 05:46:22 +0000 | [diff] [blame] | 665 | continue; |
| 666 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 667 | |
| Chris Lattner | 038a3e3 | 2008-10-20 05:46:22 +0000 | [diff] [blame] | 668 | // Otherwise, we have an @ directive, eat the @. |
| 669 | SourceLocation AtLoc = ConsumeToken(); // the "@" |
| Douglas Gregor | f48706c | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 670 | if (Tok.is(tok::code_completion)) { |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 671 | Actions.CodeCompleteObjCAtDirective(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 672 | return cutOffParsing(); |
| Douglas Gregor | f48706c | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 673 | } |
| 674 | |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 675 | tok::ObjCKeywordKind DirectiveKind = Tok.getObjCKeywordID(); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 676 | |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 677 | if (DirectiveKind == tok::objc_end) { // @end -> terminate list |
| Ted Kremenek | c7c6431 | 2010-01-07 01:20:12 +0000 | [diff] [blame] | 678 | AtEnd.setBegin(AtLoc); |
| 679 | AtEnd.setEnd(Tok.getLocation()); |
| Chris Lattner | 038a3e3 | 2008-10-20 05:46:22 +0000 | [diff] [blame] | 680 | break; |
| Douglas Gregor | 00a0cf7 | 2010-03-16 06:04:47 +0000 | [diff] [blame] | 681 | } else if (DirectiveKind == tok::objc_not_keyword) { |
| 682 | Diag(Tok, diag::err_objc_unknown_at); |
| 683 | SkipUntil(tok::semi); |
| 684 | continue; |
| Chris Lattner | da9fb15 | 2008-10-20 06:10:06 +0000 | [diff] [blame] | 685 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 686 | |
| Chris Lattner | da9fb15 | 2008-10-20 06:10:06 +0000 | [diff] [blame] | 687 | // Eat the identifier. |
| 688 | ConsumeToken(); |
| 689 | |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 690 | switch (DirectiveKind) { |
| 691 | default: |
| Chris Lattner | da9fb15 | 2008-10-20 06:10:06 +0000 | [diff] [blame] | 692 | // FIXME: If someone forgets an @end on a protocol, this loop will |
| 693 | // continue to eat up tons of stuff and spew lots of nonsense errors. It |
| 694 | // would probably be better to bail out if we saw an @class or @interface |
| 695 | // or something like that. |
| Chris Lattner | 7661923 | 2008-10-20 07:22:18 +0000 | [diff] [blame] | 696 | Diag(AtLoc, diag::err_objc_illegal_interface_qual); |
| Chris Lattner | da9fb15 | 2008-10-20 06:10:06 +0000 | [diff] [blame] | 697 | // Skip until we see an '@' or '}' or ';'. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 698 | SkipUntil(tok::r_brace, tok::at, StopAtSemi); |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 699 | break; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 700 | |
| Fariborz Jahanian | d4c5348 | 2010-11-02 00:44:43 +0000 | [diff] [blame] | 701 | case tok::objc_implementation: |
| Fariborz Jahanian | dbee986 | 2010-11-09 20:38:00 +0000 | [diff] [blame] | 702 | case tok::objc_interface: |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 703 | Diag(AtLoc, diag::err_objc_missing_end) |
| 704 | << FixItHint::CreateInsertion(AtLoc, "@end\n"); |
| Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 705 | Diag(CDecl->getBeginLoc(), diag::note_objc_container_start) |
| 706 | << (int)Actions.getObjCContainerKind(); |
| Fariborz Jahanian | d4c5348 | 2010-11-02 00:44:43 +0000 | [diff] [blame] | 707 | ConsumeToken(); |
| 708 | break; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 709 | |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 710 | case tok::objc_required: |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 711 | case tok::objc_optional: |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 712 | // This is only valid on protocols. |
| Chris Lattner | da9fb15 | 2008-10-20 06:10:06 +0000 | [diff] [blame] | 713 | // FIXME: Should this check for ObjC2 being enabled? |
| Chris Lattner | 038a3e3 | 2008-10-20 05:46:22 +0000 | [diff] [blame] | 714 | if (contextKey != tok::objc_protocol) |
| Chris Lattner | da9fb15 | 2008-10-20 06:10:06 +0000 | [diff] [blame] | 715 | Diag(AtLoc, diag::err_objc_directive_only_in_protocol); |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 716 | else |
| Chris Lattner | da9fb15 | 2008-10-20 06:10:06 +0000 | [diff] [blame] | 717 | MethodImplKind = DirectiveKind; |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 718 | break; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 719 | |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 720 | case tok::objc_property: |
| Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 721 | if (!getLangOpts().ObjC) |
| Chris Lattner | 4da4e25 | 2010-12-17 05:40:22 +0000 | [diff] [blame] | 722 | Diag(AtLoc, diag::err_objc_properties_require_objc2); |
| Chris Lattner | 7661923 | 2008-10-20 07:22:18 +0000 | [diff] [blame] | 723 | |
| Chris Lattner | 038a3e3 | 2008-10-20 05:46:22 +0000 | [diff] [blame] | 724 | ObjCDeclSpec OCDS; |
| Fariborz Jahanian | 86c2f5c | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 725 | SourceLocation LParenLoc; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 726 | // Parse property attribute list, if any. |
| Fariborz Jahanian | 86c2f5c | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 727 | if (Tok.is(tok::l_paren)) { |
| 728 | LParenLoc = Tok.getLocation(); |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 729 | ParseObjCPropertyAttribute(OCDS); |
| Fariborz Jahanian | 86c2f5c | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 730 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 731 | |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 732 | bool addedToDeclSpec = false; |
| Benjamin Kramer | a39beb9 | 2014-09-03 11:06:10 +0000 | [diff] [blame] | 733 | auto ObjCPropertyCallback = [&](ParsingFieldDeclarator &FD) { |
| 734 | if (FD.D.getIdentifier() == nullptr) { |
| 735 | Diag(AtLoc, diag::err_objc_property_requires_field_name) |
| 736 | << FD.D.getSourceRange(); |
| 737 | return; |
| 738 | } |
| 739 | if (FD.BitfieldSize) { |
| 740 | Diag(AtLoc, diag::err_objc_property_bitfield) |
| 741 | << FD.D.getSourceRange(); |
| 742 | return; |
| 743 | } |
| 744 | |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 745 | // Map a nullability property attribute to a context-sensitive keyword |
| 746 | // attribute. |
| 747 | if (OCDS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nullability) |
| 748 | addContextSensitiveTypeNullability(*this, FD.D, OCDS.getNullability(), |
| 749 | OCDS.getNullabilityLoc(), |
| 750 | addedToDeclSpec); |
| 751 | |
| Benjamin Kramer | a39beb9 | 2014-09-03 11:06:10 +0000 | [diff] [blame] | 752 | // Install the property declarator into interfaceDecl. |
| 753 | IdentifierInfo *SelName = |
| 754 | OCDS.getGetterName() ? OCDS.getGetterName() : FD.D.getIdentifier(); |
| 755 | |
| 756 | Selector GetterSel = PP.getSelectorTable().getNullarySelector(SelName); |
| 757 | IdentifierInfo *SetterName = OCDS.getSetterName(); |
| 758 | Selector SetterSel; |
| 759 | if (SetterName) |
| 760 | SetterSel = PP.getSelectorTable().getSelector(1, &SetterName); |
| 761 | else |
| 762 | SetterSel = SelectorTable::constructSetterSelector( |
| 763 | PP.getIdentifierTable(), PP.getSelectorTable(), |
| 764 | FD.D.getIdentifier()); |
| Benjamin Kramer | a39beb9 | 2014-09-03 11:06:10 +0000 | [diff] [blame] | 765 | Decl *Property = Actions.ActOnProperty( |
| 766 | getCurScope(), AtLoc, LParenLoc, FD, OCDS, GetterSel, SetterSel, |
| Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 767 | MethodImplKind); |
| Benjamin Kramer | a39beb9 | 2014-09-03 11:06:10 +0000 | [diff] [blame] | 768 | |
| 769 | FD.complete(Property); |
| 770 | }; |
| John McCall | cfefb6d | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 771 | |
| Chris Lattner | 038a3e3 | 2008-10-20 05:46:22 +0000 | [diff] [blame] | 772 | // Parse all the comma separated declarators. |
| Eli Friedman | 89b1f2c | 2012-08-08 23:04:35 +0000 | [diff] [blame] | 773 | ParsingDeclSpec DS(*this); |
| Benjamin Kramer | a39beb9 | 2014-09-03 11:06:10 +0000 | [diff] [blame] | 774 | ParseStructDeclaration(DS, ObjCPropertyCallback); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 775 | |
| John McCall | 405988b | 2011-03-26 01:53:26 +0000 | [diff] [blame] | 776 | ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list); |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 777 | break; |
| Steve Naroff | ca85d1d | 2007-09-05 23:30:30 +0000 | [diff] [blame] | 778 | } |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 779 | } |
| Chris Lattner | da9fb15 | 2008-10-20 06:10:06 +0000 | [diff] [blame] | 780 | |
| 781 | // We break out of the big loop in two cases: when we see @end or when we see |
| 782 | // EOF. In the former case, eat the @end. In the later case, emit an error. |
| Douglas Gregor | f48706c | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 783 | if (Tok.is(tok::code_completion)) { |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 784 | Actions.CodeCompleteObjCAtDirective(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 785 | return cutOffParsing(); |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 786 | } else if (Tok.isObjCAtKeyword(tok::objc_end)) { |
| Chris Lattner | da9fb15 | 2008-10-20 06:10:06 +0000 | [diff] [blame] | 787 | ConsumeToken(); // the "end" identifier |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 788 | } else { |
| 789 | Diag(Tok, diag::err_objc_missing_end) |
| 790 | << FixItHint::CreateInsertion(Tok.getLocation(), "\n@end\n"); |
| Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 791 | Diag(CDecl->getBeginLoc(), diag::note_objc_container_start) |
| 792 | << (int)Actions.getObjCContainerKind(); |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 793 | AtEnd.setBegin(Tok.getLocation()); |
| 794 | AtEnd.setEnd(Tok.getLocation()); |
| 795 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 796 | |
| Chris Lattner | bb8cc18 | 2008-10-20 05:57:40 +0000 | [diff] [blame] | 797 | // Insert collected methods declarations into the @interface object. |
| Chris Lattner | da9fb15 | 2008-10-20 06:10:06 +0000 | [diff] [blame] | 798 | // This passes in an invalid SourceLocation for AtEndLoc when EOF is hit. |
| Fariborz Jahanian | 0080fb5 | 2013-07-16 15:33:19 +0000 | [diff] [blame] | 799 | Actions.ActOnAtEnd(getCurScope(), AtEnd, allMethods, allTUVariables); |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 800 | } |
| 801 | |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 802 | /// Diagnose redundant or conflicting nullability information. |
| 803 | static void diagnoseRedundantPropertyNullability(Parser &P, |
| 804 | ObjCDeclSpec &DS, |
| 805 | NullabilityKind nullability, |
| 806 | SourceLocation nullabilityLoc){ |
| 807 | if (DS.getNullability() == nullability) { |
| 808 | P.Diag(nullabilityLoc, diag::warn_nullability_duplicate) |
| Douglas Gregor | aea7afd | 2015-06-24 22:02:08 +0000 | [diff] [blame] | 809 | << DiagNullabilityKind(nullability, true) |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 810 | << SourceRange(DS.getNullabilityLoc()); |
| 811 | return; |
| 812 | } |
| 813 | |
| 814 | P.Diag(nullabilityLoc, diag::err_nullability_conflicting) |
| Douglas Gregor | aea7afd | 2015-06-24 22:02:08 +0000 | [diff] [blame] | 815 | << DiagNullabilityKind(nullability, true) |
| 816 | << DiagNullabilityKind(DS.getNullability(), true) |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 817 | << SourceRange(DS.getNullabilityLoc()); |
| 818 | } |
| 819 | |
| Fariborz Jahanian | 9fca6df | 2007-08-31 16:11:31 +0000 | [diff] [blame] | 820 | /// Parse property attribute declarations. |
| 821 | /// |
| 822 | /// property-attr-decl: '(' property-attrlist ')' |
| 823 | /// property-attrlist: |
| 824 | /// property-attribute |
| 825 | /// property-attrlist ',' property-attribute |
| 826 | /// property-attribute: |
| 827 | /// getter '=' identifier |
| 828 | /// setter '=' identifier ':' |
| 829 | /// readonly |
| 830 | /// readwrite |
| 831 | /// assign |
| 832 | /// retain |
| 833 | /// copy |
| 834 | /// nonatomic |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 835 | /// atomic |
| 836 | /// strong |
| 837 | /// weak |
| 838 | /// unsafe_unretained |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 839 | /// nonnull |
| 840 | /// nullable |
| 841 | /// null_unspecified |
| Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 842 | /// null_resettable |
| Manman Ren | 387ff7f | 2016-01-26 18:52:43 +0000 | [diff] [blame] | 843 | /// class |
| Fariborz Jahanian | 9fca6df | 2007-08-31 16:11:31 +0000 | [diff] [blame] | 844 | /// |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 845 | void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) { |
| Chris Lattner | beca770 | 2008-10-20 07:24:39 +0000 | [diff] [blame] | 846 | assert(Tok.getKind() == tok::l_paren); |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 847 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 848 | T.consumeOpen(); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 849 | |
| Chris Lattner | 64b1f2f | 2008-10-20 07:15:22 +0000 | [diff] [blame] | 850 | while (1) { |
| Steve Naroff | 936354c | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 851 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 852 | Actions.CodeCompleteObjCPropertyFlags(getCurScope(), DS); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 853 | return cutOffParsing(); |
| Steve Naroff | 936354c | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 854 | } |
| Fariborz Jahanian | 9fca6df | 2007-08-31 16:11:31 +0000 | [diff] [blame] | 855 | const IdentifierInfo *II = Tok.getIdentifierInfo(); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 856 | |
| Chris Lattner | 7661923 | 2008-10-20 07:22:18 +0000 | [diff] [blame] | 857 | // If this is not an identifier at all, bail out early. |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 858 | if (!II) { |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 859 | T.consumeClose(); |
| Chris Lattner | 7661923 | 2008-10-20 07:22:18 +0000 | [diff] [blame] | 860 | return; |
| 861 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 862 | |
| Chris Lattner | 1db3354 | 2008-10-20 07:37:22 +0000 | [diff] [blame] | 863 | SourceLocation AttrName = ConsumeToken(); // consume last attribute name |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 864 | |
| Chris Lattner | 68e4868 | 2008-11-20 04:42:34 +0000 | [diff] [blame] | 865 | if (II->isStr("readonly")) |
| Chris Lattner | 825bca1 | 2008-10-20 07:39:53 +0000 | [diff] [blame] | 866 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readonly); |
| Chris Lattner | 68e4868 | 2008-11-20 04:42:34 +0000 | [diff] [blame] | 867 | else if (II->isStr("assign")) |
| Chris Lattner | 825bca1 | 2008-10-20 07:39:53 +0000 | [diff] [blame] | 868 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_assign); |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 869 | else if (II->isStr("unsafe_unretained")) |
| 870 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_unsafe_unretained); |
| Chris Lattner | 68e4868 | 2008-11-20 04:42:34 +0000 | [diff] [blame] | 871 | else if (II->isStr("readwrite")) |
| Chris Lattner | 825bca1 | 2008-10-20 07:39:53 +0000 | [diff] [blame] | 872 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readwrite); |
| Chris Lattner | 68e4868 | 2008-11-20 04:42:34 +0000 | [diff] [blame] | 873 | else if (II->isStr("retain")) |
| Chris Lattner | 825bca1 | 2008-10-20 07:39:53 +0000 | [diff] [blame] | 874 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_retain); |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 875 | else if (II->isStr("strong")) |
| 876 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_strong); |
| Chris Lattner | 68e4868 | 2008-11-20 04:42:34 +0000 | [diff] [blame] | 877 | else if (II->isStr("copy")) |
| Chris Lattner | 825bca1 | 2008-10-20 07:39:53 +0000 | [diff] [blame] | 878 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_copy); |
| Chris Lattner | 68e4868 | 2008-11-20 04:42:34 +0000 | [diff] [blame] | 879 | else if (II->isStr("nonatomic")) |
| Chris Lattner | 825bca1 | 2008-10-20 07:39:53 +0000 | [diff] [blame] | 880 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_nonatomic); |
| Fariborz Jahanian | c3bcde0 | 2011-06-11 00:45:12 +0000 | [diff] [blame] | 881 | else if (II->isStr("atomic")) |
| 882 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_atomic); |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 883 | else if (II->isStr("weak")) |
| 884 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_weak); |
| Chris Lattner | 68e4868 | 2008-11-20 04:42:34 +0000 | [diff] [blame] | 885 | else if (II->isStr("getter") || II->isStr("setter")) { |
| Anders Carlsson | fe15a78 | 2010-10-02 17:45:21 +0000 | [diff] [blame] | 886 | bool IsSetter = II->getNameStart()[0] == 's'; |
| 887 | |
| Chris Lattner | 825bca1 | 2008-10-20 07:39:53 +0000 | [diff] [blame] | 888 | // getter/setter require extra treatment. |
| Anders Carlsson | fe15a78 | 2010-10-02 17:45:21 +0000 | [diff] [blame] | 889 | unsigned DiagID = IsSetter ? diag::err_objc_expected_equal_for_setter : |
| Craig Topper | 3110a5c | 2015-11-14 18:16:02 +0000 | [diff] [blame] | 890 | diag::err_objc_expected_equal_for_getter; |
| Anders Carlsson | fe15a78 | 2010-10-02 17:45:21 +0000 | [diff] [blame] | 891 | |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 892 | if (ExpectAndConsume(tok::equal, DiagID)) { |
| 893 | SkipUntil(tok::r_paren, StopAtSemi); |
| Chris Lattner | 43c76c3 | 2008-10-20 07:00:43 +0000 | [diff] [blame] | 894 | return; |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 895 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 896 | |
| Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 897 | if (Tok.is(tok::code_completion)) { |
| Anders Carlsson | fe15a78 | 2010-10-02 17:45:21 +0000 | [diff] [blame] | 898 | if (IsSetter) |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 899 | Actions.CodeCompleteObjCPropertySetter(getCurScope()); |
| Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 900 | else |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 901 | Actions.CodeCompleteObjCPropertyGetter(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 902 | return cutOffParsing(); |
| Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 903 | } |
| 904 | |
| Anders Carlsson | fe15a78 | 2010-10-02 17:45:21 +0000 | [diff] [blame] | 905 | SourceLocation SelLoc; |
| 906 | IdentifierInfo *SelIdent = ParseObjCSelectorPiece(SelLoc); |
| 907 | |
| 908 | if (!SelIdent) { |
| 909 | Diag(Tok, diag::err_objc_expected_selector_for_getter_setter) |
| 910 | << IsSetter; |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 911 | SkipUntil(tok::r_paren, StopAtSemi); |
| Chris Lattner | beca770 | 2008-10-20 07:24:39 +0000 | [diff] [blame] | 912 | return; |
| 913 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 914 | |
| Anders Carlsson | fe15a78 | 2010-10-02 17:45:21 +0000 | [diff] [blame] | 915 | if (IsSetter) { |
| Chris Lattner | beca770 | 2008-10-20 07:24:39 +0000 | [diff] [blame] | 916 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_setter); |
| Argyrios Kyrtzidis | 194b28e | 2017-03-16 18:25:40 +0000 | [diff] [blame] | 917 | DS.setSetterName(SelIdent, SelLoc); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 918 | |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 919 | if (ExpectAndConsume(tok::colon, |
| 920 | diag::err_expected_colon_after_setter_name)) { |
| 921 | SkipUntil(tok::r_paren, StopAtSemi); |
| Chris Lattner | beca770 | 2008-10-20 07:24:39 +0000 | [diff] [blame] | 922 | return; |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 923 | } |
| Chris Lattner | beca770 | 2008-10-20 07:24:39 +0000 | [diff] [blame] | 924 | } else { |
| 925 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_getter); |
| Argyrios Kyrtzidis | 194b28e | 2017-03-16 18:25:40 +0000 | [diff] [blame] | 926 | DS.setGetterName(SelIdent, SelLoc); |
| Chris Lattner | beca770 | 2008-10-20 07:24:39 +0000 | [diff] [blame] | 927 | } |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 928 | } else if (II->isStr("nonnull")) { |
| 929 | if (DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nullability) |
| 930 | diagnoseRedundantPropertyNullability(*this, DS, |
| 931 | NullabilityKind::NonNull, |
| 932 | Tok.getLocation()); |
| 933 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_nullability); |
| 934 | DS.setNullability(Tok.getLocation(), NullabilityKind::NonNull); |
| 935 | } else if (II->isStr("nullable")) { |
| 936 | if (DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nullability) |
| 937 | diagnoseRedundantPropertyNullability(*this, DS, |
| 938 | NullabilityKind::Nullable, |
| 939 | Tok.getLocation()); |
| 940 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_nullability); |
| 941 | DS.setNullability(Tok.getLocation(), NullabilityKind::Nullable); |
| 942 | } else if (II->isStr("null_unspecified")) { |
| 943 | if (DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nullability) |
| 944 | diagnoseRedundantPropertyNullability(*this, DS, |
| 945 | NullabilityKind::Unspecified, |
| 946 | Tok.getLocation()); |
| 947 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_nullability); |
| 948 | DS.setNullability(Tok.getLocation(), NullabilityKind::Unspecified); |
| Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 949 | } else if (II->isStr("null_resettable")) { |
| 950 | if (DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nullability) |
| 951 | diagnoseRedundantPropertyNullability(*this, DS, |
| 952 | NullabilityKind::Unspecified, |
| 953 | Tok.getLocation()); |
| 954 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_nullability); |
| 955 | DS.setNullability(Tok.getLocation(), NullabilityKind::Unspecified); |
| 956 | |
| 957 | // Also set the null_resettable bit. |
| 958 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_null_resettable); |
| Manman Ren | 387ff7f | 2016-01-26 18:52:43 +0000 | [diff] [blame] | 959 | } else if (II->isStr("class")) { |
| 960 | DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_class); |
| Chris Lattner | 825bca1 | 2008-10-20 07:39:53 +0000 | [diff] [blame] | 961 | } else { |
| Chris Lattner | 406c096 | 2008-11-19 07:49:38 +0000 | [diff] [blame] | 962 | Diag(AttrName, diag::err_objc_expected_property_attr) << II; |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 963 | SkipUntil(tok::r_paren, StopAtSemi); |
| Chris Lattner | 64b1f2f | 2008-10-20 07:15:22 +0000 | [diff] [blame] | 964 | return; |
| Chris Lattner | 64b1f2f | 2008-10-20 07:15:22 +0000 | [diff] [blame] | 965 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 966 | |
| Chris Lattner | 1db3354 | 2008-10-20 07:37:22 +0000 | [diff] [blame] | 967 | if (Tok.isNot(tok::comma)) |
| 968 | break; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 969 | |
| Chris Lattner | 1db3354 | 2008-10-20 07:37:22 +0000 | [diff] [blame] | 970 | ConsumeToken(); |
| Fariborz Jahanian | 9fca6df | 2007-08-31 16:11:31 +0000 | [diff] [blame] | 971 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 972 | |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 973 | T.consumeClose(); |
| Fariborz Jahanian | 9fca6df | 2007-08-31 16:11:31 +0000 | [diff] [blame] | 974 | } |
| 975 | |
| Steve Naroff | 09bf815 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 976 | /// objc-method-proto: |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 977 | /// objc-instance-method objc-method-decl objc-method-attributes[opt] |
| Steve Naroff | 09bf815 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 978 | /// objc-class-method objc-method-decl objc-method-attributes[opt] |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 979 | /// |
| 980 | /// objc-instance-method: '-' |
| 981 | /// objc-class-method: '+' |
| 982 | /// |
| Steve Naroff | f1bc45b | 2007-08-22 18:35:33 +0000 | [diff] [blame] | 983 | /// objc-method-attributes: [OBJC2] |
| 984 | /// __attribute__((deprecated)) |
| 985 | /// |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 986 | Decl *Parser::ParseObjCMethodPrototype(tok::ObjCKeywordKind MethodImplKind, |
| Fariborz Jahanian | c677f69 | 2011-03-12 18:54:30 +0000 | [diff] [blame] | 987 | bool MethodDefinition) { |
| Daniel Marjamaki | e59f8d7 | 2015-06-18 10:59:26 +0000 | [diff] [blame] | 988 | assert(Tok.isOneOf(tok::minus, tok::plus) && "expected +/-"); |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 989 | |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 990 | tok::TokenKind methodType = Tok.getKind(); |
| Steve Naroff | 161a92b | 2007-10-26 20:53:56 +0000 | [diff] [blame] | 991 | SourceLocation mLoc = ConsumeToken(); |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 992 | Decl *MDecl = ParseObjCMethodDecl(mLoc, methodType, MethodImplKind, |
| Fariborz Jahanian | c677f69 | 2011-03-12 18:54:30 +0000 | [diff] [blame] | 993 | MethodDefinition); |
| Steve Naroff | 09bf815 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 994 | // Since this rule is used for both method declarations and definitions, |
| Steve Naroff | acb1e74 | 2007-09-10 20:51:04 +0000 | [diff] [blame] | 995 | // the caller is (optionally) responsible for consuming the ';'. |
| Steve Naroff | ca85d1d | 2007-09-05 23:30:30 +0000 | [diff] [blame] | 996 | return MDecl; |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 997 | } |
| 998 | |
| 999 | /// objc-selector: |
| 1000 | /// identifier |
| 1001 | /// one of |
| 1002 | /// enum struct union if else while do for switch case default |
| 1003 | /// break continue return goto asm sizeof typeof __alignof |
| 1004 | /// unsigned long const short volatile signed restrict _Complex |
| 1005 | /// in out inout bycopy byref oneway int char float double void _Bool |
| 1006 | /// |
| Chris Lattner | 4f472a3 | 2009-04-11 18:13:45 +0000 | [diff] [blame] | 1007 | IdentifierInfo *Parser::ParseObjCSelectorPiece(SourceLocation &SelectorLoc) { |
| Fariborz Jahanian | 0389df4a | 2010-09-03 01:26:16 +0000 | [diff] [blame] | 1008 | |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1009 | switch (Tok.getKind()) { |
| 1010 | default: |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1011 | return nullptr; |
| Alex Lorenz | 9b9188d | 2017-07-13 10:50:21 +0000 | [diff] [blame] | 1012 | case tok::colon: |
| 1013 | // Empty selector piece uses the location of the ':'. |
| 1014 | SelectorLoc = Tok.getLocation(); |
| 1015 | return nullptr; |
| Fariborz Jahanian | 9e42a95 | 2010-09-03 17:33:04 +0000 | [diff] [blame] | 1016 | case tok::ampamp: |
| 1017 | case tok::ampequal: |
| 1018 | case tok::amp: |
| 1019 | case tok::pipe: |
| 1020 | case tok::tilde: |
| 1021 | case tok::exclaim: |
| 1022 | case tok::exclaimequal: |
| 1023 | case tok::pipepipe: |
| 1024 | case tok::pipeequal: |
| 1025 | case tok::caret: |
| 1026 | case tok::caretequal: { |
| Fariborz Jahanian | dadfc1c | 2010-09-03 18:01:09 +0000 | [diff] [blame] | 1027 | std::string ThisTok(PP.getSpelling(Tok)); |
| Jordan Rose | a7d0384 | 2013-02-08 22:30:41 +0000 | [diff] [blame] | 1028 | if (isLetter(ThisTok[0])) { |
| Malcolm Parsons | 731ca0e | 2016-11-03 12:25:51 +0000 | [diff] [blame] | 1029 | IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok); |
| Fariborz Jahanian | 9e42a95 | 2010-09-03 17:33:04 +0000 | [diff] [blame] | 1030 | Tok.setKind(tok::identifier); |
| 1031 | SelectorLoc = ConsumeToken(); |
| 1032 | return II; |
| 1033 | } |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1034 | return nullptr; |
| Fariborz Jahanian | 9e42a95 | 2010-09-03 17:33:04 +0000 | [diff] [blame] | 1035 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1036 | |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1037 | case tok::identifier: |
| Anders Carlsson | f93f56a | 2008-08-23 21:00:01 +0000 | [diff] [blame] | 1038 | case tok::kw_asm: |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1039 | case tok::kw_auto: |
| Chris Lattner | bb31a42 | 2007-11-15 05:25:19 +0000 | [diff] [blame] | 1040 | case tok::kw_bool: |
| Anders Carlsson | f93f56a | 2008-08-23 21:00:01 +0000 | [diff] [blame] | 1041 | case tok::kw_break: |
| 1042 | case tok::kw_case: |
| 1043 | case tok::kw_catch: |
| 1044 | case tok::kw_char: |
| 1045 | case tok::kw_class: |
| 1046 | case tok::kw_const: |
| 1047 | case tok::kw_const_cast: |
| 1048 | case tok::kw_continue: |
| 1049 | case tok::kw_default: |
| 1050 | case tok::kw_delete: |
| 1051 | case tok::kw_do: |
| 1052 | case tok::kw_double: |
| 1053 | case tok::kw_dynamic_cast: |
| 1054 | case tok::kw_else: |
| 1055 | case tok::kw_enum: |
| 1056 | case tok::kw_explicit: |
| 1057 | case tok::kw_export: |
| 1058 | case tok::kw_extern: |
| 1059 | case tok::kw_false: |
| 1060 | case tok::kw_float: |
| 1061 | case tok::kw_for: |
| 1062 | case tok::kw_friend: |
| 1063 | case tok::kw_goto: |
| 1064 | case tok::kw_if: |
| 1065 | case tok::kw_inline: |
| 1066 | case tok::kw_int: |
| 1067 | case tok::kw_long: |
| 1068 | case tok::kw_mutable: |
| 1069 | case tok::kw_namespace: |
| 1070 | case tok::kw_new: |
| 1071 | case tok::kw_operator: |
| 1072 | case tok::kw_private: |
| 1073 | case tok::kw_protected: |
| 1074 | case tok::kw_public: |
| 1075 | case tok::kw_register: |
| 1076 | case tok::kw_reinterpret_cast: |
| 1077 | case tok::kw_restrict: |
| 1078 | case tok::kw_return: |
| 1079 | case tok::kw_short: |
| 1080 | case tok::kw_signed: |
| 1081 | case tok::kw_sizeof: |
| 1082 | case tok::kw_static: |
| 1083 | case tok::kw_static_cast: |
| 1084 | case tok::kw_struct: |
| 1085 | case tok::kw_switch: |
| 1086 | case tok::kw_template: |
| 1087 | case tok::kw_this: |
| 1088 | case tok::kw_throw: |
| 1089 | case tok::kw_true: |
| 1090 | case tok::kw_try: |
| 1091 | case tok::kw_typedef: |
| 1092 | case tok::kw_typeid: |
| 1093 | case tok::kw_typename: |
| 1094 | case tok::kw_typeof: |
| 1095 | case tok::kw_union: |
| 1096 | case tok::kw_unsigned: |
| 1097 | case tok::kw_using: |
| 1098 | case tok::kw_virtual: |
| 1099 | case tok::kw_void: |
| 1100 | case tok::kw_volatile: |
| 1101 | case tok::kw_wchar_t: |
| 1102 | case tok::kw_while: |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1103 | case tok::kw__Bool: |
| 1104 | case tok::kw__Complex: |
| Anders Carlsson | f93f56a | 2008-08-23 21:00:01 +0000 | [diff] [blame] | 1105 | case tok::kw___alignof: |
| Richard Smith | e301ba2 | 2015-11-11 02:02:15 +0000 | [diff] [blame] | 1106 | case tok::kw___auto_type: |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1107 | IdentifierInfo *II = Tok.getIdentifierInfo(); |
| Fariborz Jahanian | 70e8f10 | 2007-10-11 00:55:41 +0000 | [diff] [blame] | 1108 | SelectorLoc = ConsumeToken(); |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1109 | return II; |
| Fariborz Jahanian | fa80e80 | 2007-09-27 19:52:15 +0000 | [diff] [blame] | 1110 | } |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 1111 | } |
| 1112 | |
| Fariborz Jahanian | 8361552 | 2008-01-02 22:54:34 +0000 | [diff] [blame] | 1113 | /// objc-for-collection-in: 'in' |
| 1114 | /// |
| Fariborz Jahanian | 3622e59 | 2008-01-04 23:04:08 +0000 | [diff] [blame] | 1115 | bool Parser::isTokIdentifier_in() const { |
| Fariborz Jahanian | 732b8c2 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 1116 | // FIXME: May have to do additional look-ahead to only allow for |
| 1117 | // valid tokens following an 'in'; such as an identifier, unary operators, |
| 1118 | // '[' etc. |
| Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1119 | return (getLangOpts().ObjC && Tok.is(tok::identifier) && |
| Chris Lattner | ce90ef5 | 2008-08-23 02:02:23 +0000 | [diff] [blame] | 1120 | Tok.getIdentifierInfo() == ObjCTypeQuals[objc_in]); |
| Fariborz Jahanian | 8361552 | 2008-01-02 22:54:34 +0000 | [diff] [blame] | 1121 | } |
| 1122 | |
| Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1123 | /// ParseObjCTypeQualifierList - This routine parses the objective-c's type |
| Chris Lattner | 61511e1 | 2007-12-12 06:56:32 +0000 | [diff] [blame] | 1124 | /// qualifier list and builds their bitmask representation in the input |
| 1125 | /// argument. |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 1126 | /// |
| 1127 | /// objc-type-qualifiers: |
| 1128 | /// objc-type-qualifier |
| 1129 | /// objc-type-qualifiers objc-type-qualifier |
| 1130 | /// |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 1131 | /// objc-type-qualifier: |
| 1132 | /// 'in' |
| 1133 | /// 'out' |
| 1134 | /// 'inout' |
| 1135 | /// 'oneway' |
| 1136 | /// 'bycopy' |
| 1137 | /// 'byref' |
| 1138 | /// 'nonnull' |
| 1139 | /// 'nullable' |
| 1140 | /// 'null_unspecified' |
| 1141 | /// |
| Douglas Gregor | 95d3e37 | 2011-03-08 19:17:54 +0000 | [diff] [blame] | 1142 | void Parser::ParseObjCTypeQualifierList(ObjCDeclSpec &DS, |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1143 | DeclaratorContext Context) { |
| 1144 | assert(Context == DeclaratorContext::ObjCParameterContext || |
| 1145 | Context == DeclaratorContext::ObjCResultContext); |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1146 | |
| Chris Lattner | 61511e1 | 2007-12-12 06:56:32 +0000 | [diff] [blame] | 1147 | while (1) { |
| Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 1148 | if (Tok.is(tok::code_completion)) { |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1149 | Actions.CodeCompleteObjCPassingType(getCurScope(), DS, |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1150 | Context == DeclaratorContext::ObjCParameterContext); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1151 | return cutOffParsing(); |
| Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 1152 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1153 | |
| Chris Lattner | 5e530bc | 2007-12-27 19:57:00 +0000 | [diff] [blame] | 1154 | if (Tok.isNot(tok::identifier)) |
| Chris Lattner | 61511e1 | 2007-12-12 06:56:32 +0000 | [diff] [blame] | 1155 | return; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1156 | |
| Chris Lattner | 61511e1 | 2007-12-12 06:56:32 +0000 | [diff] [blame] | 1157 | const IdentifierInfo *II = Tok.getIdentifierInfo(); |
| 1158 | for (unsigned i = 0; i != objc_NumQuals; ++i) { |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 1159 | if (II != ObjCTypeQuals[i] || |
| 1160 | NextToken().is(tok::less) || |
| 1161 | NextToken().is(tok::coloncolon)) |
| Chris Lattner | 61511e1 | 2007-12-12 06:56:32 +0000 | [diff] [blame] | 1162 | continue; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1163 | |
| Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1164 | ObjCDeclSpec::ObjCDeclQualifier Qual; |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 1165 | NullabilityKind Nullability; |
| Chris Lattner | 61511e1 | 2007-12-12 06:56:32 +0000 | [diff] [blame] | 1166 | switch (i) { |
| David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1167 | default: llvm_unreachable("Unknown decl qualifier"); |
| Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1168 | case objc_in: Qual = ObjCDeclSpec::DQ_In; break; |
| 1169 | case objc_out: Qual = ObjCDeclSpec::DQ_Out; break; |
| 1170 | case objc_inout: Qual = ObjCDeclSpec::DQ_Inout; break; |
| 1171 | case objc_oneway: Qual = ObjCDeclSpec::DQ_Oneway; break; |
| 1172 | case objc_bycopy: Qual = ObjCDeclSpec::DQ_Bycopy; break; |
| 1173 | case objc_byref: Qual = ObjCDeclSpec::DQ_Byref; break; |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 1174 | |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1175 | case objc_nonnull: |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 1176 | Qual = ObjCDeclSpec::DQ_CSNullability; |
| 1177 | Nullability = NullabilityKind::NonNull; |
| 1178 | break; |
| 1179 | |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1180 | case objc_nullable: |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 1181 | Qual = ObjCDeclSpec::DQ_CSNullability; |
| 1182 | Nullability = NullabilityKind::Nullable; |
| 1183 | break; |
| 1184 | |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1185 | case objc_null_unspecified: |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 1186 | Qual = ObjCDeclSpec::DQ_CSNullability; |
| 1187 | Nullability = NullabilityKind::Unspecified; |
| 1188 | break; |
| Chris Lattner | 61511e1 | 2007-12-12 06:56:32 +0000 | [diff] [blame] | 1189 | } |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 1190 | |
| 1191 | // FIXME: Diagnose redundant specifiers. |
| Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1192 | DS.setObjCDeclQualifier(Qual); |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 1193 | if (Qual == ObjCDeclSpec::DQ_CSNullability) |
| 1194 | DS.setNullability(Tok.getLocation(), Nullability); |
| 1195 | |
| Chris Lattner | 61511e1 | 2007-12-12 06:56:32 +0000 | [diff] [blame] | 1196 | ConsumeToken(); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1197 | II = nullptr; |
| Chris Lattner | 61511e1 | 2007-12-12 06:56:32 +0000 | [diff] [blame] | 1198 | break; |
| 1199 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1200 | |
| Chris Lattner | 61511e1 | 2007-12-12 06:56:32 +0000 | [diff] [blame] | 1201 | // If this wasn't a recognized qualifier, bail out. |
| 1202 | if (II) return; |
| 1203 | } |
| 1204 | } |
| 1205 | |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1206 | /// Take all the decl attributes out of the given list and add |
| 1207 | /// them to the given attribute set. |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 1208 | static void takeDeclAttributes(ParsedAttributesView &attrs, |
| 1209 | ParsedAttributesView &from) { |
| 1210 | for (auto &AL : llvm::reverse(from)) { |
| 1211 | if (!AL.isUsedAsTypeAttr()) { |
| 1212 | from.remove(&AL); |
| Michael Kruse | dc5ce72 | 2018-08-03 01:21:16 +0000 | [diff] [blame] | 1213 | attrs.addAtEnd(&AL); |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1214 | } |
| 1215 | } |
| 1216 | } |
| 1217 | |
| 1218 | /// takeDeclAttributes - Take all the decl attributes from the given |
| 1219 | /// declarator and add them to the given list. |
| 1220 | static void takeDeclAttributes(ParsedAttributes &attrs, |
| 1221 | Declarator &D) { |
| 1222 | // First, take ownership of all attributes. |
| 1223 | attrs.getPool().takeAllFrom(D.getAttributePool()); |
| 1224 | attrs.getPool().takeAllFrom(D.getDeclSpec().getAttributePool()); |
| 1225 | |
| 1226 | // Now actually move the attributes over. |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 1227 | takeDeclAttributes(attrs, D.getMutableDeclSpec().getAttributes()); |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1228 | takeDeclAttributes(attrs, D.getAttributes()); |
| 1229 | for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 1230 | takeDeclAttributes(attrs, D.getTypeObject(i).getAttrs()); |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1231 | } |
| 1232 | |
| Chris Lattner | 61511e1 | 2007-12-12 06:56:32 +0000 | [diff] [blame] | 1233 | /// objc-type-name: |
| 1234 | /// '(' objc-type-qualifiers[opt] type-name ')' |
| 1235 | /// '(' objc-type-qualifiers[opt] ')' |
| 1236 | /// |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1237 | ParsedType Parser::ParseObjCTypeName(ObjCDeclSpec &DS, |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1238 | DeclaratorContext context, |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1239 | ParsedAttributes *paramAttrs) { |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1240 | assert(context == DeclaratorContext::ObjCParameterContext || |
| 1241 | context == DeclaratorContext::ObjCResultContext); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1242 | assert((paramAttrs != nullptr) == |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1243 | (context == DeclaratorContext::ObjCParameterContext)); |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1244 | |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 1245 | assert(Tok.is(tok::l_paren) && "expected ("); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1246 | |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1247 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 1248 | T.consumeOpen(); |
| 1249 | |
| Fariborz Jahanian | 4bf8262 | 2011-08-22 17:59:19 +0000 | [diff] [blame] | 1250 | ObjCDeclContextSwitch ObjCDC(*this); |
| 1251 | |
| Fariborz Jahanian | d822d68 | 2007-10-31 21:59:43 +0000 | [diff] [blame] | 1252 | // Parse type qualifiers, in, inout, etc. |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1253 | ParseObjCTypeQualifierList(DS, context); |
| Erik Pilkington | d7999cb | 2019-06-26 23:39:23 +0000 | [diff] [blame] | 1254 | SourceLocation TypeStartLoc = Tok.getLocation(); |
| Steve Naroff | 7e901fd | 2007-08-22 23:18:22 +0000 | [diff] [blame] | 1255 | |
| John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1256 | ParsedType Ty; |
| Douglas Gregor | 5c0870a | 2015-06-19 23:18:00 +0000 | [diff] [blame] | 1257 | if (isTypeSpecifierQualifier() || isObjCInstancetype()) { |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1258 | // Parse an abstract declarator. |
| 1259 | DeclSpec declSpec(AttrFactory); |
| 1260 | declSpec.setObjCQualifiers(&DS); |
| Faisal Vali | 7db85c5 | 2017-12-31 00:06:40 +0000 | [diff] [blame] | 1261 | DeclSpecContext dsContext = DeclSpecContext::DSC_normal; |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1262 | if (context == DeclaratorContext::ObjCResultContext) |
| Faisal Vali | 7db85c5 | 2017-12-31 00:06:40 +0000 | [diff] [blame] | 1263 | dsContext = DeclSpecContext::DSC_objc_method_result; |
| Douglas Gregor | 5c0870a | 2015-06-19 23:18:00 +0000 | [diff] [blame] | 1264 | ParseSpecifierQualifierList(declSpec, AS_none, dsContext); |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1265 | Declarator declarator(declSpec, context); |
| 1266 | ParseDeclarator(declarator); |
| 1267 | |
| 1268 | // If that's not invalid, extract a type. |
| 1269 | if (!declarator.isInvalidType()) { |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 1270 | // Map a nullability specifier to a context-sensitive keyword attribute. |
| 1271 | bool addedToDeclSpec = false; |
| 1272 | if (DS.getObjCDeclQualifier() & ObjCDeclSpec::DQ_CSNullability) |
| 1273 | addContextSensitiveTypeNullability(*this, declarator, |
| 1274 | DS.getNullability(), |
| 1275 | DS.getNullabilityLoc(), |
| 1276 | addedToDeclSpec); |
| 1277 | |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1278 | TypeResult type = Actions.ActOnTypeName(getCurScope(), declarator); |
| 1279 | if (!type.isInvalid()) |
| 1280 | Ty = type.get(); |
| 1281 | |
| 1282 | // If we're parsing a parameter, steal all the decl attributes |
| 1283 | // and add them to the decl spec. |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1284 | if (context == DeclaratorContext::ObjCParameterContext) |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1285 | takeDeclAttributes(*paramAttrs, declarator); |
| 1286 | } |
| Douglas Gregor | 220cac5 | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 1287 | } |
| Douglas Gregor | bab8a96 | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 1288 | |
| Steve Naroff | 90255b4 | 2008-10-21 14:15:04 +0000 | [diff] [blame] | 1289 | if (Tok.is(tok::r_paren)) |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1290 | T.consumeClose(); |
| Chris Lattner | b795443 | 2008-10-22 03:52:06 +0000 | [diff] [blame] | 1291 | else if (Tok.getLocation() == TypeStartLoc) { |
| 1292 | // If we didn't eat any tokens, then this isn't a type. |
| Chris Lattner | 6d29c10 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1293 | Diag(Tok, diag::err_expected_type); |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 1294 | SkipUntil(tok::r_paren, StopAtSemi); |
| Chris Lattner | b795443 | 2008-10-22 03:52:06 +0000 | [diff] [blame] | 1295 | } else { |
| 1296 | // Otherwise, we found *something*, but didn't get a ')' in the right |
| 1297 | // place. Emit an error then return what we have as the type. |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1298 | T.consumeClose(); |
| Chris Lattner | b795443 | 2008-10-22 03:52:06 +0000 | [diff] [blame] | 1299 | } |
| Steve Naroff | ca85d1d | 2007-09-05 23:30:30 +0000 | [diff] [blame] | 1300 | return Ty; |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 1301 | } |
| 1302 | |
| 1303 | /// objc-method-decl: |
| 1304 | /// objc-selector |
| Steve Naroff | f1bc45b | 2007-08-22 18:35:33 +0000 | [diff] [blame] | 1305 | /// objc-keyword-selector objc-parmlist[opt] |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 1306 | /// objc-type-name objc-selector |
| Steve Naroff | f1bc45b | 2007-08-22 18:35:33 +0000 | [diff] [blame] | 1307 | /// objc-type-name objc-keyword-selector objc-parmlist[opt] |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 1308 | /// |
| 1309 | /// objc-keyword-selector: |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1310 | /// objc-keyword-decl |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 1311 | /// objc-keyword-selector objc-keyword-decl |
| 1312 | /// |
| 1313 | /// objc-keyword-decl: |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 1314 | /// objc-selector ':' objc-type-name objc-keyword-attributes[opt] identifier |
| 1315 | /// objc-selector ':' objc-keyword-attributes[opt] identifier |
| 1316 | /// ':' objc-type-name objc-keyword-attributes[opt] identifier |
| 1317 | /// ':' objc-keyword-attributes[opt] identifier |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 1318 | /// |
| Steve Naroff | f1bc45b | 2007-08-22 18:35:33 +0000 | [diff] [blame] | 1319 | /// objc-parmlist: |
| 1320 | /// objc-parms objc-ellipsis[opt] |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 1321 | /// |
| Steve Naroff | f1bc45b | 2007-08-22 18:35:33 +0000 | [diff] [blame] | 1322 | /// objc-parms: |
| 1323 | /// objc-parms , parameter-declaration |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 1324 | /// |
| Steve Naroff | f1bc45b | 2007-08-22 18:35:33 +0000 | [diff] [blame] | 1325 | /// objc-ellipsis: |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 1326 | /// , ... |
| 1327 | /// |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 1328 | /// objc-keyword-attributes: [OBJC2] |
| 1329 | /// __attribute__((unused)) |
| 1330 | /// |
| John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1331 | Decl *Parser::ParseObjCMethodDecl(SourceLocation mLoc, |
| Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 1332 | tok::TokenKind mType, |
| Fariborz Jahanian | c677f69 | 2011-03-12 18:54:30 +0000 | [diff] [blame] | 1333 | tok::ObjCKeywordKind MethodImplKind, |
| 1334 | bool MethodDefinition) { |
| John McCall | 2ec8537 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 1335 | ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent); |
| John McCall | 28a6aea | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1336 | |
| Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 1337 | if (Tok.is(tok::code_completion)) { |
| David Blaikie | efdccaa | 2016-01-15 23:43:34 +0000 | [diff] [blame] | 1338 | Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus, |
| 1339 | /*ReturnType=*/nullptr); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1340 | cutOffParsing(); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1341 | return nullptr; |
| Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 1342 | } |
| 1343 | |
| Chris Lattner | 2ebb178 | 2008-08-23 01:48:03 +0000 | [diff] [blame] | 1344 | // Parse the return type if present. |
| John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1345 | ParsedType ReturnType; |
| Ted Kremenek | 1b0ea82 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1346 | ObjCDeclSpec DSRet; |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 1347 | if (Tok.is(tok::l_paren)) |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1348 | ReturnType = ParseObjCTypeName(DSRet, DeclaratorContext::ObjCResultContext, |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1349 | nullptr); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1350 | |
| Ted Kremenek | 66f2d6b | 2010-02-18 23:05:16 +0000 | [diff] [blame] | 1351 | // If attributes exist before the method, parse them. |
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1352 | ParsedAttributes methodAttrs(AttrFactory); |
| Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1353 | if (getLangOpts().ObjC) |
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1354 | MaybeParseGNUAttributes(methodAttrs); |
| Aaron Ballman | 1c606c2 | 2018-02-12 13:38:25 +0000 | [diff] [blame] | 1355 | MaybeParseCXX11Attributes(methodAttrs); |
| Ted Kremenek | 66f2d6b | 2010-02-18 23:05:16 +0000 | [diff] [blame] | 1356 | |
| Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 1357 | if (Tok.is(tok::code_completion)) { |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1358 | Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus, |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 1359 | ReturnType); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1360 | cutOffParsing(); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1361 | return nullptr; |
| Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 1362 | } |
| 1363 | |
| Ted Kremenek | 66f2d6b | 2010-02-18 23:05:16 +0000 | [diff] [blame] | 1364 | // Now parse the selector. |
| Steve Naroff | 161a92b | 2007-10-26 20:53:56 +0000 | [diff] [blame] | 1365 | SourceLocation selLoc; |
| Chris Lattner | 4f472a3 | 2009-04-11 18:13:45 +0000 | [diff] [blame] | 1366 | IdentifierInfo *SelIdent = ParseObjCSelectorPiece(selLoc); |
| Chris Lattner | 2ebb178 | 2008-08-23 01:48:03 +0000 | [diff] [blame] | 1367 | |
| Steve Naroff | 7a54c0d | 2009-02-11 20:43:13 +0000 | [diff] [blame] | 1368 | // An unnamed colon is valid. |
| 1369 | if (!SelIdent && Tok.isNot(tok::colon)) { // missing selector name. |
| Chris Lattner | 6d29c10 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1370 | Diag(Tok, diag::err_expected_selector_for_method) |
| 1371 | << SourceRange(mLoc, Tok.getLocation()); |
| Fariborz Jahanian | a5fc75f | 2012-07-26 17:32:28 +0000 | [diff] [blame] | 1372 | // Skip until we get a ; or @. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 1373 | SkipUntil(tok::at, StopAtSemi | StopBeforeMatch); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1374 | return nullptr; |
| Chris Lattner | 2ebb178 | 2008-08-23 01:48:03 +0000 | [diff] [blame] | 1375 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1376 | |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1377 | SmallVector<DeclaratorChunk::ParamInfo, 8> CParamInfo; |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 1378 | if (Tok.isNot(tok::colon)) { |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1379 | // If attributes exist after the method, parse them. |
| Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1380 | if (getLangOpts().ObjC) |
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1381 | MaybeParseGNUAttributes(methodAttrs); |
| Aaron Ballman | 1c606c2 | 2018-02-12 13:38:25 +0000 | [diff] [blame] | 1382 | MaybeParseCXX11Attributes(methodAttrs); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1383 | |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1384 | Selector Sel = PP.getSelectorTable().getNullarySelector(SelIdent); |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 1385 | Decl *Result = Actions.ActOnMethodDeclaration( |
| 1386 | getCurScope(), mLoc, Tok.getLocation(), mType, DSRet, ReturnType, |
| 1387 | selLoc, Sel, nullptr, CParamInfo.data(), CParamInfo.size(), methodAttrs, |
| 1388 | MethodImplKind, false, MethodDefinition); |
| John McCall | 28a6aea | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1389 | PD.complete(Result); |
| 1390 | return Result; |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1391 | } |
| Steve Naroff | ca85d1d | 2007-09-05 23:30:30 +0000 | [diff] [blame] | 1392 | |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1393 | SmallVector<IdentifierInfo *, 12> KeyIdents; |
| Argyrios Kyrtzidis | dfd6570 | 2011-10-03 06:36:36 +0000 | [diff] [blame] | 1394 | SmallVector<SourceLocation, 12> KeyLocs; |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1395 | SmallVector<Sema::ObjCArgInfo, 12> ArgInfos; |
| Richard Smith | e233fbf | 2013-01-28 22:42:45 +0000 | [diff] [blame] | 1396 | ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope | |
| 1397 | Scope::FunctionDeclarationScope | Scope::DeclScope); |
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1398 | |
| 1399 | AttributePool allParamAttrs(AttrFactory); |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1400 | while (1) { |
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1401 | ParsedAttributes paramAttrs(AttrFactory); |
| John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1402 | Sema::ObjCArgInfo ArgInfo; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1403 | |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1404 | // Each iteration parses a single keyword argument. |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 1405 | if (ExpectAndConsume(tok::colon)) |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1406 | break; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1407 | |
| David Blaikie | efdccaa | 2016-01-15 23:43:34 +0000 | [diff] [blame] | 1408 | ArgInfo.Type = nullptr; |
| Chris Lattner | d8626fd | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 1409 | if (Tok.is(tok::l_paren)) // Parse the argument type if present. |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1410 | ArgInfo.Type = ParseObjCTypeName(ArgInfo.DeclSpec, |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1411 | DeclaratorContext::ObjCParameterContext, |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1412 | ¶mAttrs); |
| Chris Lattner | d8626fd | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 1413 | |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1414 | // If attributes exist before the argument name, parse them. |
| John McCall | a55902b | 2011-10-01 09:56:14 +0000 | [diff] [blame] | 1415 | // Regardless, collect all the attributes we've parsed so far. |
| Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1416 | if (getLangOpts().ObjC) |
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1417 | MaybeParseGNUAttributes(paramAttrs); |
| Aaron Ballman | 1c606c2 | 2018-02-12 13:38:25 +0000 | [diff] [blame] | 1418 | MaybeParseCXX11Attributes(paramAttrs); |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 1419 | ArgInfo.ArgAttrs = paramAttrs; |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 1420 | |
| Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 1421 | // Code completion for the next piece of the selector. |
| 1422 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 1423 | KeyIdents.push_back(SelIdent); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1424 | Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(), |
| Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 1425 | mType == tok::minus, |
| 1426 | /*AtParameterName=*/true, |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 1427 | ReturnType, KeyIdents); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1428 | cutOffParsing(); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1429 | return nullptr; |
| Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 1430 | } |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 1431 | |
| 1432 | if (expectIdentifier()) |
| 1433 | break; // missing argument name. |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1434 | |
| Chris Lattner | d8626fd | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 1435 | ArgInfo.Name = Tok.getIdentifierInfo(); |
| 1436 | ArgInfo.NameLoc = Tok.getLocation(); |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1437 | ConsumeToken(); // Eat the identifier. |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1438 | |
| Chris Lattner | d8626fd | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 1439 | ArgInfos.push_back(ArgInfo); |
| 1440 | KeyIdents.push_back(SelIdent); |
| Argyrios Kyrtzidis | dfd6570 | 2011-10-03 06:36:36 +0000 | [diff] [blame] | 1441 | KeyLocs.push_back(selLoc); |
| Chris Lattner | d8626fd | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 1442 | |
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1443 | // Make sure the attributes persist. |
| 1444 | allParamAttrs.takeAllFrom(paramAttrs.getPool()); |
| 1445 | |
| Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 1446 | // Code completion for the next piece of the selector. |
| 1447 | if (Tok.is(tok::code_completion)) { |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1448 | Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(), |
| Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 1449 | mType == tok::minus, |
| Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 1450 | /*AtParameterName=*/false, |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 1451 | ReturnType, KeyIdents); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1452 | cutOffParsing(); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1453 | return nullptr; |
| Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 1454 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1455 | |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1456 | // Check for another keyword selector. |
| Argyrios Kyrtzidis | dfd6570 | 2011-10-03 06:36:36 +0000 | [diff] [blame] | 1457 | SelIdent = ParseObjCSelectorPiece(selLoc); |
| Ted Kremenek | 191ffd3 | 2012-09-12 16:50:35 +0000 | [diff] [blame] | 1458 | if (!SelIdent && Tok.isNot(tok::colon)) |
| 1459 | break; |
| Fariborz Jahanian | 84f4984 | 2012-09-17 23:09:59 +0000 | [diff] [blame] | 1460 | if (!SelIdent) { |
| Fariborz Jahanian | f4ffdf3 | 2012-09-17 19:15:26 +0000 | [diff] [blame] | 1461 | SourceLocation ColonLoc = Tok.getLocation(); |
| 1462 | if (PP.getLocForEndOfToken(ArgInfo.NameLoc) == ColonLoc) { |
| Fariborz Jahanian | 84f4984 | 2012-09-17 23:09:59 +0000 | [diff] [blame] | 1463 | Diag(ArgInfo.NameLoc, diag::warn_missing_selector_name) << ArgInfo.Name; |
| 1464 | Diag(ArgInfo.NameLoc, diag::note_missing_selector_name) << ArgInfo.Name; |
| 1465 | Diag(ColonLoc, diag::note_force_empty_selector_name) << ArgInfo.Name; |
| Fariborz Jahanian | f4ffdf3 | 2012-09-17 19:15:26 +0000 | [diff] [blame] | 1466 | } |
| 1467 | } |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1468 | // We have a selector or a colon, continue parsing. |
| Steve Naroff | f1bc45b | 2007-08-22 18:35:33 +0000 | [diff] [blame] | 1469 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1470 | |
| Steve Naroff | d8ea1ac | 2007-11-15 12:35:21 +0000 | [diff] [blame] | 1471 | bool isVariadic = false; |
| Fariborz Jahanian | 45337f5 | 2012-06-21 18:43:08 +0000 | [diff] [blame] | 1472 | bool cStyleParamWarned = false; |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1473 | // Parse the (optional) parameter list. |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 1474 | while (Tok.is(tok::comma)) { |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1475 | ConsumeToken(); |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 1476 | if (Tok.is(tok::ellipsis)) { |
| Steve Naroff | d8ea1ac | 2007-11-15 12:35:21 +0000 | [diff] [blame] | 1477 | isVariadic = true; |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1478 | ConsumeToken(); |
| 1479 | break; |
| 1480 | } |
| Fariborz Jahanian | 45337f5 | 2012-06-21 18:43:08 +0000 | [diff] [blame] | 1481 | if (!cStyleParamWarned) { |
| 1482 | Diag(Tok, diag::warn_cstyle_param); |
| 1483 | cStyleParamWarned = true; |
| 1484 | } |
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1485 | DeclSpec DS(AttrFactory); |
| Faisal Vali | a534f07 | 2018-04-26 00:42:40 +0000 | [diff] [blame] | 1486 | ParseDeclarationSpecifiers(DS); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1487 | // Parse the declarator. |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1488 | Declarator ParmDecl(DS, DeclaratorContext::PrototypeContext); |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1489 | ParseDeclarator(ParmDecl); |
| Fariborz Jahanian | 6046209 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 1490 | IdentifierInfo *ParmII = ParmDecl.getIdentifier(); |
| John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1491 | Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl); |
| Fariborz Jahanian | 6046209 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 1492 | CParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII, |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1493 | ParmDecl.getIdentifierLoc(), |
| Fariborz Jahanian | 6046209 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 1494 | Param, |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1495 | nullptr)); |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1496 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1497 | |
| Cameron Esfahani | f6c73c4 | 2010-10-12 00:21:25 +0000 | [diff] [blame] | 1498 | // FIXME: Add support for optional parameter list... |
| Fariborz Jahanian | 33d0374 | 2007-09-10 20:33:04 +0000 | [diff] [blame] | 1499 | // If attributes exist after the method, parse them. |
| Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1500 | if (getLangOpts().ObjC) |
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1501 | MaybeParseGNUAttributes(methodAttrs); |
| Aaron Ballman | 1c606c2 | 2018-02-12 13:38:25 +0000 | [diff] [blame] | 1502 | MaybeParseCXX11Attributes(methodAttrs); |
| 1503 | |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 1504 | if (KeyIdents.size() == 0) |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 1505 | return nullptr; |
| 1506 | |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 1507 | Selector Sel = PP.getSelectorTable().getSelector(KeyIdents.size(), |
| 1508 | &KeyIdents[0]); |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 1509 | Decl *Result = Actions.ActOnMethodDeclaration( |
| 1510 | getCurScope(), mLoc, Tok.getLocation(), mType, DSRet, ReturnType, KeyLocs, |
| 1511 | Sel, &ArgInfos[0], CParamInfo.data(), CParamInfo.size(), methodAttrs, |
| 1512 | MethodImplKind, isVariadic, MethodDefinition); |
| 1513 | |
| John McCall | 28a6aea | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1514 | PD.complete(Result); |
| 1515 | return Result; |
| Steve Naroff | 99264b4 | 2007-08-22 16:35:03 +0000 | [diff] [blame] | 1516 | } |
| 1517 | |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 1518 | /// objc-protocol-refs: |
| 1519 | /// '<' identifier-list '>' |
| 1520 | /// |
| Chris Lattner | d7352d6 | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 1521 | bool Parser:: |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1522 | ParseObjCProtocolReferences(SmallVectorImpl<Decl *> &Protocols, |
| 1523 | SmallVectorImpl<SourceLocation> &ProtocolLocs, |
| Argyrios Kyrtzidis | 4ecdd2c | 2015-04-19 20:15:55 +0000 | [diff] [blame] | 1524 | bool WarnOnDeclarations, bool ForObjCContainer, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1525 | SourceLocation &LAngleLoc, SourceLocation &EndLoc, |
| 1526 | bool consumeLastToken) { |
| Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 1527 | assert(Tok.is(tok::less) && "expected <"); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1528 | |
| Argyrios Kyrtzidis | fc1f9e4 | 2009-09-29 19:41:44 +0000 | [diff] [blame] | 1529 | LAngleLoc = ConsumeToken(); // the "<" |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1530 | |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1531 | SmallVector<IdentifierLocPair, 8> ProtocolIdents; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1532 | |
| Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 1533 | while (1) { |
| Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 1534 | if (Tok.is(tok::code_completion)) { |
| Craig Topper | 883dd33 | 2015-12-24 23:58:11 +0000 | [diff] [blame] | 1535 | Actions.CodeCompleteObjCProtocolReferences(ProtocolIdents); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1536 | cutOffParsing(); |
| 1537 | return true; |
| Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 1538 | } |
| 1539 | |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 1540 | if (expectIdentifier()) { |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 1541 | SkipUntil(tok::greater, StopAtSemi); |
| Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 1542 | return true; |
| 1543 | } |
| 1544 | ProtocolIdents.push_back(std::make_pair(Tok.getIdentifierInfo(), |
| 1545 | Tok.getLocation())); |
| Argyrios Kyrtzidis | fc1f9e4 | 2009-09-29 19:41:44 +0000 | [diff] [blame] | 1546 | ProtocolLocs.push_back(Tok.getLocation()); |
| Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 1547 | ConsumeToken(); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1548 | |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 1549 | if (!TryConsumeToken(tok::comma)) |
| Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 1550 | break; |
| Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 1551 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1552 | |
| Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 1553 | // Consume the '>'. |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1554 | if (ParseGreaterThanInTemplateList(EndLoc, consumeLastToken, |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1555 | /*ObjCGenericList=*/false)) |
| Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 1556 | return true; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1557 | |
| Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 1558 | // Convert the list of protocols identifiers into a list of protocol decls. |
| Argyrios Kyrtzidis | 4ecdd2c | 2015-04-19 20:15:55 +0000 | [diff] [blame] | 1559 | Actions.FindProtocolDeclaration(WarnOnDeclarations, ForObjCContainer, |
| Craig Topper | a9247eb | 2015-10-22 04:59:56 +0000 | [diff] [blame] | 1560 | ProtocolIdents, Protocols); |
| Chris Lattner | 3bbae00 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 1561 | return false; |
| 1562 | } |
| 1563 | |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1564 | TypeResult Parser::parseObjCProtocolQualifierType(SourceLocation &rAngleLoc) { |
| Douglas Gregor | 06e41ae | 2010-10-21 23:17:00 +0000 | [diff] [blame] | 1565 | assert(Tok.is(tok::less) && "Protocol qualifiers start with '<'"); |
| Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1566 | assert(getLangOpts().ObjC && "Protocol qualifiers only exist in Objective-C"); |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1567 | |
| 1568 | SourceLocation lAngleLoc; |
| 1569 | SmallVector<Decl *, 8> protocols; |
| 1570 | SmallVector<SourceLocation, 8> protocolLocs; |
| 1571 | (void)ParseObjCProtocolReferences(protocols, protocolLocs, false, false, |
| 1572 | lAngleLoc, rAngleLoc, |
| 1573 | /*consumeLastToken=*/true); |
| 1574 | TypeResult result = Actions.actOnObjCProtocolQualifierType(lAngleLoc, |
| 1575 | protocols, |
| 1576 | protocolLocs, |
| 1577 | rAngleLoc); |
| 1578 | if (result.isUsable()) { |
| 1579 | Diag(lAngleLoc, diag::warn_objc_protocol_qualifier_missing_id) |
| 1580 | << FixItHint::CreateInsertion(lAngleLoc, "id") |
| 1581 | << SourceRange(lAngleLoc, rAngleLoc); |
| 1582 | } |
| 1583 | |
| 1584 | return result; |
| Douglas Gregor | 06e41ae | 2010-10-21 23:17:00 +0000 | [diff] [blame] | 1585 | } |
| 1586 | |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1587 | /// Parse Objective-C type arguments or protocol qualifiers. |
| 1588 | /// |
| 1589 | /// objc-type-arguments: |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1590 | /// '<' type-name '...'[opt] (',' type-name '...'[opt])* '>' |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1591 | /// |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1592 | void Parser::parseObjCTypeArgsOrProtocolQualifiers( |
| Douglas Gregor | 10dc9d8 | 2015-07-07 03:58:28 +0000 | [diff] [blame] | 1593 | ParsedType baseType, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1594 | SourceLocation &typeArgsLAngleLoc, |
| 1595 | SmallVectorImpl<ParsedType> &typeArgs, |
| 1596 | SourceLocation &typeArgsRAngleLoc, |
| 1597 | SourceLocation &protocolLAngleLoc, |
| 1598 | SmallVectorImpl<Decl *> &protocols, |
| 1599 | SmallVectorImpl<SourceLocation> &protocolLocs, |
| 1600 | SourceLocation &protocolRAngleLoc, |
| 1601 | bool consumeLastToken, |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1602 | bool warnOnIncompleteProtocols) { |
| 1603 | assert(Tok.is(tok::less) && "Not at the start of type args or protocols"); |
| 1604 | SourceLocation lAngleLoc = ConsumeToken(); |
| 1605 | |
| 1606 | // Whether all of the elements we've parsed thus far are single |
| 1607 | // identifiers, which might be types or might be protocols. |
| 1608 | bool allSingleIdentifiers = true; |
| 1609 | SmallVector<IdentifierInfo *, 4> identifiers; |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1610 | SmallVectorImpl<SourceLocation> &identifierLocs = protocolLocs; |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1611 | |
| 1612 | // Parse a list of comma-separated identifiers, bailing out if we |
| 1613 | // see something different. |
| 1614 | do { |
| 1615 | // Parse a single identifier. |
| 1616 | if (Tok.is(tok::identifier) && |
| 1617 | (NextToken().is(tok::comma) || |
| 1618 | NextToken().is(tok::greater) || |
| 1619 | NextToken().is(tok::greatergreater))) { |
| 1620 | identifiers.push_back(Tok.getIdentifierInfo()); |
| 1621 | identifierLocs.push_back(ConsumeToken()); |
| 1622 | continue; |
| 1623 | } |
| 1624 | |
| 1625 | if (Tok.is(tok::code_completion)) { |
| 1626 | // FIXME: Also include types here. |
| 1627 | SmallVector<IdentifierLocPair, 4> identifierLocPairs; |
| 1628 | for (unsigned i = 0, n = identifiers.size(); i != n; ++i) { |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1629 | identifierLocPairs.push_back(IdentifierLocPair(identifiers[i], |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1630 | identifierLocs[i])); |
| 1631 | } |
| 1632 | |
| Douglas Gregor | cedcd9f | 2015-07-07 06:20:36 +0000 | [diff] [blame] | 1633 | QualType BaseT = Actions.GetTypeFromParser(baseType); |
| 1634 | if (!BaseT.isNull() && BaseT->acceptsObjCTypeParams()) { |
| 1635 | Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Type); |
| 1636 | } else { |
| Craig Topper | 883dd33 | 2015-12-24 23:58:11 +0000 | [diff] [blame] | 1637 | Actions.CodeCompleteObjCProtocolReferences(identifierLocPairs); |
| Douglas Gregor | cedcd9f | 2015-07-07 06:20:36 +0000 | [diff] [blame] | 1638 | } |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1639 | cutOffParsing(); |
| 1640 | return; |
| 1641 | } |
| 1642 | |
| 1643 | allSingleIdentifiers = false; |
| 1644 | break; |
| 1645 | } while (TryConsumeToken(tok::comma)); |
| 1646 | |
| 1647 | // If we parsed an identifier list, semantic analysis sorts out |
| 1648 | // whether it refers to protocols or to type arguments. |
| 1649 | if (allSingleIdentifiers) { |
| 1650 | // Parse the closing '>'. |
| 1651 | SourceLocation rAngleLoc; |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1652 | (void)ParseGreaterThanInTemplateList(rAngleLoc, consumeLastToken, |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1653 | /*ObjCGenericList=*/true); |
| 1654 | |
| 1655 | // Let Sema figure out what we parsed. |
| 1656 | Actions.actOnObjCTypeArgsOrProtocolQualifiers(getCurScope(), |
| Douglas Gregor | 10dc9d8 | 2015-07-07 03:58:28 +0000 | [diff] [blame] | 1657 | baseType, |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1658 | lAngleLoc, |
| 1659 | identifiers, |
| 1660 | identifierLocs, |
| 1661 | rAngleLoc, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1662 | typeArgsLAngleLoc, |
| 1663 | typeArgs, |
| 1664 | typeArgsRAngleLoc, |
| 1665 | protocolLAngleLoc, |
| 1666 | protocols, |
| 1667 | protocolRAngleLoc, |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1668 | warnOnIncompleteProtocols); |
| 1669 | return; |
| 1670 | } |
| 1671 | |
| Bruno Cardoso Lopes | c54768f | 2016-04-13 20:59:07 +0000 | [diff] [blame] | 1672 | // We parsed an identifier list but stumbled into non single identifiers, this |
| 1673 | // means we might (a) check that what we already parsed is a legitimate type |
| 1674 | // (not a protocol or unknown type) and (b) parse the remaining ones, which |
| 1675 | // must all be type args. |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1676 | |
| 1677 | // Convert the identifiers into type arguments. |
| 1678 | bool invalid = false; |
| Bruno Cardoso Lopes | c54768f | 2016-04-13 20:59:07 +0000 | [diff] [blame] | 1679 | IdentifierInfo *foundProtocolId = nullptr, *foundValidTypeId = nullptr; |
| 1680 | SourceLocation foundProtocolSrcLoc, foundValidTypeSrcLoc; |
| 1681 | SmallVector<IdentifierInfo *, 2> unknownTypeArgs; |
| 1682 | SmallVector<SourceLocation, 2> unknownTypeArgsLoc; |
| 1683 | |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1684 | for (unsigned i = 0, n = identifiers.size(); i != n; ++i) { |
| 1685 | ParsedType typeArg |
| 1686 | = Actions.getTypeName(*identifiers[i], identifierLocs[i], getCurScope()); |
| 1687 | if (typeArg) { |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1688 | DeclSpec DS(AttrFactory); |
| 1689 | const char *prevSpec = nullptr; |
| 1690 | unsigned diagID; |
| Faisal Vali | 090da2d | 2018-01-01 18:23:28 +0000 | [diff] [blame] | 1691 | DS.SetTypeSpecType(TST_typename, identifierLocs[i], prevSpec, diagID, |
| 1692 | typeArg, Actions.getASTContext().getPrintingPolicy()); |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1693 | |
| 1694 | // Form a declarator to turn this into a type. |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 1695 | Declarator D(DS, DeclaratorContext::TypeNameContext); |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1696 | TypeResult fullTypeArg = Actions.ActOnTypeName(getCurScope(), D); |
| Bruno Cardoso Lopes | c54768f | 2016-04-13 20:59:07 +0000 | [diff] [blame] | 1697 | if (fullTypeArg.isUsable()) { |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1698 | typeArgs.push_back(fullTypeArg.get()); |
| Bruno Cardoso Lopes | c54768f | 2016-04-13 20:59:07 +0000 | [diff] [blame] | 1699 | if (!foundValidTypeId) { |
| 1700 | foundValidTypeId = identifiers[i]; |
| 1701 | foundValidTypeSrcLoc = identifierLocs[i]; |
| 1702 | } |
| 1703 | } else { |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1704 | invalid = true; |
| Bruno Cardoso Lopes | c54768f | 2016-04-13 20:59:07 +0000 | [diff] [blame] | 1705 | unknownTypeArgs.push_back(identifiers[i]); |
| 1706 | unknownTypeArgsLoc.push_back(identifierLocs[i]); |
| 1707 | } |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1708 | } else { |
| 1709 | invalid = true; |
| Bruno Cardoso Lopes | c54768f | 2016-04-13 20:59:07 +0000 | [diff] [blame] | 1710 | if (!Actions.LookupProtocol(identifiers[i], identifierLocs[i])) { |
| 1711 | unknownTypeArgs.push_back(identifiers[i]); |
| 1712 | unknownTypeArgsLoc.push_back(identifierLocs[i]); |
| 1713 | } else if (!foundProtocolId) { |
| 1714 | foundProtocolId = identifiers[i]; |
| 1715 | foundProtocolSrcLoc = identifierLocs[i]; |
| 1716 | } |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1717 | } |
| 1718 | } |
| 1719 | |
| 1720 | // Continue parsing type-names. |
| 1721 | do { |
| Bruno Cardoso Lopes | c54768f | 2016-04-13 20:59:07 +0000 | [diff] [blame] | 1722 | Token CurTypeTok = Tok; |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1723 | TypeResult typeArg = ParseTypeName(); |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1724 | |
| 1725 | // Consume the '...' for a pack expansion. |
| 1726 | SourceLocation ellipsisLoc; |
| 1727 | TryConsumeToken(tok::ellipsis, ellipsisLoc); |
| 1728 | if (typeArg.isUsable() && ellipsisLoc.isValid()) { |
| 1729 | typeArg = Actions.ActOnPackExpansion(typeArg.get(), ellipsisLoc); |
| 1730 | } |
| 1731 | |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1732 | if (typeArg.isUsable()) { |
| 1733 | typeArgs.push_back(typeArg.get()); |
| Bruno Cardoso Lopes | c54768f | 2016-04-13 20:59:07 +0000 | [diff] [blame] | 1734 | if (!foundValidTypeId) { |
| 1735 | foundValidTypeId = CurTypeTok.getIdentifierInfo(); |
| 1736 | foundValidTypeSrcLoc = CurTypeTok.getLocation(); |
| 1737 | } |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1738 | } else { |
| 1739 | invalid = true; |
| 1740 | } |
| 1741 | } while (TryConsumeToken(tok::comma)); |
| 1742 | |
| Bruno Cardoso Lopes | c54768f | 2016-04-13 20:59:07 +0000 | [diff] [blame] | 1743 | // Diagnose the mix between type args and protocols. |
| 1744 | if (foundProtocolId && foundValidTypeId) |
| 1745 | Actions.DiagnoseTypeArgsAndProtocols(foundProtocolId, foundProtocolSrcLoc, |
| 1746 | foundValidTypeId, |
| 1747 | foundValidTypeSrcLoc); |
| 1748 | |
| 1749 | // Diagnose unknown arg types. |
| 1750 | ParsedType T; |
| 1751 | if (unknownTypeArgs.size()) |
| 1752 | for (unsigned i = 0, e = unknownTypeArgsLoc.size(); i < e; ++i) |
| 1753 | Actions.DiagnoseUnknownTypeName(unknownTypeArgs[i], unknownTypeArgsLoc[i], |
| 1754 | getCurScope(), nullptr, T); |
| 1755 | |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1756 | // Parse the closing '>'. |
| 1757 | SourceLocation rAngleLoc; |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1758 | (void)ParseGreaterThanInTemplateList(rAngleLoc, consumeLastToken, |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1759 | /*ObjCGenericList=*/true); |
| 1760 | |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1761 | if (invalid) { |
| 1762 | typeArgs.clear(); |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1763 | return; |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1764 | } |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1765 | |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1766 | // Record left/right angle locations. |
| 1767 | typeArgsLAngleLoc = lAngleLoc; |
| 1768 | typeArgsRAngleLoc = rAngleLoc; |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 1769 | } |
| 1770 | |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1771 | void Parser::parseObjCTypeArgsAndProtocolQualifiers( |
| Douglas Gregor | 10dc9d8 | 2015-07-07 03:58:28 +0000 | [diff] [blame] | 1772 | ParsedType baseType, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1773 | SourceLocation &typeArgsLAngleLoc, |
| 1774 | SmallVectorImpl<ParsedType> &typeArgs, |
| 1775 | SourceLocation &typeArgsRAngleLoc, |
| 1776 | SourceLocation &protocolLAngleLoc, |
| 1777 | SmallVectorImpl<Decl *> &protocols, |
| 1778 | SmallVectorImpl<SourceLocation> &protocolLocs, |
| 1779 | SourceLocation &protocolRAngleLoc, |
| 1780 | bool consumeLastToken) { |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1781 | assert(Tok.is(tok::less)); |
| 1782 | |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1783 | // Parse the first angle-bracket-delimited clause. |
| Douglas Gregor | 10dc9d8 | 2015-07-07 03:58:28 +0000 | [diff] [blame] | 1784 | parseObjCTypeArgsOrProtocolQualifiers(baseType, |
| 1785 | typeArgsLAngleLoc, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1786 | typeArgs, |
| 1787 | typeArgsRAngleLoc, |
| 1788 | protocolLAngleLoc, |
| 1789 | protocols, |
| 1790 | protocolLocs, |
| 1791 | protocolRAngleLoc, |
| 1792 | consumeLastToken, |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1793 | /*warnOnIncompleteProtocols=*/false); |
| Bruno Cardoso Lopes | 218c874 | 2016-09-13 20:04:35 +0000 | [diff] [blame] | 1794 | if (Tok.is(tok::eof)) // Nothing else to do here... |
| 1795 | return; |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1796 | |
| 1797 | // An Objective-C object pointer followed by type arguments |
| 1798 | // can then be followed again by a set of protocol references, e.g., |
| 1799 | // \c NSArray<NSView><NSTextDelegate> |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1800 | if ((consumeLastToken && Tok.is(tok::less)) || |
| 1801 | (!consumeLastToken && NextToken().is(tok::less))) { |
| 1802 | // If we aren't consuming the last token, the prior '>' is still hanging |
| 1803 | // there. Consume it before we parse the protocol qualifiers. |
| 1804 | if (!consumeLastToken) |
| 1805 | ConsumeToken(); |
| 1806 | |
| 1807 | if (!protocols.empty()) { |
| 1808 | SkipUntilFlags skipFlags = SkipUntilFlags(); |
| 1809 | if (!consumeLastToken) |
| 1810 | skipFlags = skipFlags | StopBeforeMatch; |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1811 | Diag(Tok, diag::err_objc_type_args_after_protocols) |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1812 | << SourceRange(protocolLAngleLoc, protocolRAngleLoc); |
| 1813 | SkipUntil(tok::greater, tok::greatergreater, skipFlags); |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1814 | } else { |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1815 | ParseObjCProtocolReferences(protocols, protocolLocs, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1816 | /*WarnOnDeclarations=*/false, |
| 1817 | /*ForObjCContainer=*/false, |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1818 | protocolLAngleLoc, protocolRAngleLoc, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1819 | consumeLastToken); |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1820 | } |
| 1821 | } |
| 1822 | } |
| 1823 | |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1824 | TypeResult Parser::parseObjCTypeArgsAndProtocolQualifiers( |
| 1825 | SourceLocation loc, |
| 1826 | ParsedType type, |
| 1827 | bool consumeLastToken, |
| 1828 | SourceLocation &endLoc) { |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1829 | assert(Tok.is(tok::less)); |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1830 | SourceLocation typeArgsLAngleLoc; |
| 1831 | SmallVector<ParsedType, 4> typeArgs; |
| 1832 | SourceLocation typeArgsRAngleLoc; |
| 1833 | SourceLocation protocolLAngleLoc; |
| 1834 | SmallVector<Decl *, 4> protocols; |
| 1835 | SmallVector<SourceLocation, 4> protocolLocs; |
| 1836 | SourceLocation protocolRAngleLoc; |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1837 | |
| 1838 | // Parse type arguments and protocol qualifiers. |
| Douglas Gregor | 10dc9d8 | 2015-07-07 03:58:28 +0000 | [diff] [blame] | 1839 | parseObjCTypeArgsAndProtocolQualifiers(type, typeArgsLAngleLoc, typeArgs, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1840 | typeArgsRAngleLoc, protocolLAngleLoc, |
| 1841 | protocols, protocolLocs, |
| 1842 | protocolRAngleLoc, consumeLastToken); |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1843 | |
| Bruno Cardoso Lopes | 218c874 | 2016-09-13 20:04:35 +0000 | [diff] [blame] | 1844 | if (Tok.is(tok::eof)) |
| 1845 | return true; // Invalid type result. |
| 1846 | |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 1847 | // Compute the location of the last token. |
| 1848 | if (consumeLastToken) |
| 1849 | endLoc = PrevTokLocation; |
| 1850 | else |
| 1851 | endLoc = Tok.getLocation(); |
| 1852 | |
| 1853 | return Actions.actOnObjCTypeArgsAndProtocolQualifiers( |
| 1854 | getCurScope(), |
| 1855 | loc, |
| 1856 | type, |
| 1857 | typeArgsLAngleLoc, |
| 1858 | typeArgs, |
| 1859 | typeArgsRAngleLoc, |
| 1860 | protocolLAngleLoc, |
| 1861 | protocols, |
| 1862 | protocolLocs, |
| 1863 | protocolRAngleLoc); |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1864 | } |
| 1865 | |
| Fariborz Jahanian | 089f39e | 2013-03-20 18:09:33 +0000 | [diff] [blame] | 1866 | void Parser::HelperActionsForIvarDeclarations(Decl *interfaceDecl, SourceLocation atLoc, |
| 1867 | BalancedDelimiterTracker &T, |
| 1868 | SmallVectorImpl<Decl *> &AllIvarDecls, |
| 1869 | bool RBraceMissing) { |
| 1870 | if (!RBraceMissing) |
| 1871 | T.consumeClose(); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1872 | |
| Fariborz Jahanian | 089f39e | 2013-03-20 18:09:33 +0000 | [diff] [blame] | 1873 | Actions.ActOnObjCContainerStartDefinition(interfaceDecl); |
| 1874 | Actions.ActOnLastBitfield(T.getCloseLocation(), AllIvarDecls); |
| 1875 | Actions.ActOnObjCContainerFinishDefinition(); |
| 1876 | // Call ActOnFields() even if we don't have any decls. This is useful |
| 1877 | // for code rewriting tools that need to be aware of the empty list. |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 1878 | Actions.ActOnFields(getCurScope(), atLoc, interfaceDecl, AllIvarDecls, |
| 1879 | T.getOpenLocation(), T.getCloseLocation(), |
| 1880 | ParsedAttributesView()); |
| Fariborz Jahanian | 089f39e | 2013-03-20 18:09:33 +0000 | [diff] [blame] | 1881 | } |
| Douglas Gregor | 06e41ae | 2010-10-21 23:17:00 +0000 | [diff] [blame] | 1882 | |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 1883 | /// objc-class-instance-variables: |
| 1884 | /// '{' objc-instance-variable-decl-list[opt] '}' |
| 1885 | /// |
| 1886 | /// objc-instance-variable-decl-list: |
| 1887 | /// objc-visibility-spec |
| 1888 | /// objc-instance-variable-decl ';' |
| 1889 | /// ';' |
| 1890 | /// objc-instance-variable-decl-list objc-visibility-spec |
| 1891 | /// objc-instance-variable-decl-list objc-instance-variable-decl ';' |
| Nico Weber | 98dd085 | 2019-03-14 14:18:56 +0000 | [diff] [blame] | 1892 | /// objc-instance-variable-decl-list static_assert-declaration |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 1893 | /// objc-instance-variable-decl-list ';' |
| 1894 | /// |
| 1895 | /// objc-visibility-spec: |
| 1896 | /// @private |
| 1897 | /// @protected |
| 1898 | /// @public |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1899 | /// @package [OBJC2] |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 1900 | /// |
| 1901 | /// objc-instance-variable-decl: |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1902 | /// struct-declaration |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 1903 | /// |
| John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1904 | void Parser::ParseObjCClassInstanceVariables(Decl *interfaceDecl, |
| Fariborz Jahanian | 4c172c6 | 2010-02-22 23:04:20 +0000 | [diff] [blame] | 1905 | tok::ObjCKeywordKind visibility, |
| Steve Naroff | 33a1e80 | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 1906 | SourceLocation atLoc) { |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 1907 | assert(Tok.is(tok::l_brace) && "expected {"); |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1908 | SmallVector<Decl *, 32> AllIvarDecls; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1909 | |
| Douglas Gregor | 45a33ec | 2009-01-12 18:45:55 +0000 | [diff] [blame] | 1910 | ParseScope ClassScope(this, Scope::DeclScope|Scope::ClassScope); |
| Argyrios Kyrtzidis | 9321ad3 | 2011-10-06 23:23:20 +0000 | [diff] [blame] | 1911 | ObjCDeclContextSwitch ObjCDC(*this); |
| Douglas Gregor | 82ac25e | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 1912 | |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1913 | BalancedDelimiterTracker T(*this, tok::l_brace); |
| 1914 | T.consumeOpen(); |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1915 | // While we still have something to read, read the instance variables. |
| Richard Smith | 34f3051 | 2013-11-23 04:06:09 +0000 | [diff] [blame] | 1916 | while (Tok.isNot(tok::r_brace) && !isEofOrEom()) { |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1917 | // Each iteration of this loop reads one objc-instance-variable-decl. |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1918 | |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1919 | // Check for extraneous top-level semicolon. |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 1920 | if (Tok.is(tok::semi)) { |
| Richard Trieu | 2f7dc46 | 2012-05-16 19:04:59 +0000 | [diff] [blame] | 1921 | ConsumeExtraSemi(InstanceVariableList); |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1922 | continue; |
| 1923 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1924 | |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1925 | // Set the default visibility to private. |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 1926 | if (TryConsumeToken(tok::at)) { // parse objc-visibility-spec |
| Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 1927 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1928 | Actions.CodeCompleteObjCAtVisibility(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1929 | return cutOffParsing(); |
| Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 1930 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1931 | |
| Steve Naroff | 7c34817 | 2007-08-23 18:16:40 +0000 | [diff] [blame] | 1932 | switch (Tok.getObjCKeywordID()) { |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1933 | case tok::objc_private: |
| 1934 | case tok::objc_public: |
| 1935 | case tok::objc_protected: |
| 1936 | case tok::objc_package: |
| Steve Naroff | 7c34817 | 2007-08-23 18:16:40 +0000 | [diff] [blame] | 1937 | visibility = Tok.getObjCKeywordID(); |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1938 | ConsumeToken(); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1939 | continue; |
| Fariborz Jahanian | 0b17193 | 2013-03-20 18:45:49 +0000 | [diff] [blame] | 1940 | |
| 1941 | case tok::objc_end: |
| 1942 | Diag(Tok, diag::err_objc_unexpected_atend); |
| Fariborz Jahanian | 089f39e | 2013-03-20 18:09:33 +0000 | [diff] [blame] | 1943 | Tok.setLocation(Tok.getLocation().getLocWithOffset(-1)); |
| 1944 | Tok.setKind(tok::at); |
| 1945 | Tok.setLength(1); |
| Ilya Biryukov | 929af67 | 2019-05-17 09:32:05 +0000 | [diff] [blame] | 1946 | PP.EnterToken(Tok, /*IsReinject*/true); |
| Fariborz Jahanian | 089f39e | 2013-03-20 18:09:33 +0000 | [diff] [blame] | 1947 | HelperActionsForIvarDeclarations(interfaceDecl, atLoc, |
| 1948 | T, AllIvarDecls, true); |
| 1949 | return; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1950 | |
| Fariborz Jahanian | 0b17193 | 2013-03-20 18:45:49 +0000 | [diff] [blame] | 1951 | default: |
| 1952 | Diag(Tok, diag::err_objc_illegal_visibility_spec); |
| 1953 | continue; |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1954 | } |
| 1955 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1956 | |
| Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 1957 | if (Tok.is(tok::code_completion)) { |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1958 | Actions.CodeCompleteOrdinaryName(getCurScope(), |
| John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1959 | Sema::PCC_ObjCInstanceVariableList); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1960 | return cutOffParsing(); |
| Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 1961 | } |
| John McCall | cfefb6d | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 1962 | |
| Nico Weber | 98dd085 | 2019-03-14 14:18:56 +0000 | [diff] [blame] | 1963 | // This needs to duplicate a small amount of code from |
| 1964 | // ParseStructUnionBody() for things that should work in both |
| 1965 | // C struct and in Objective-C class instance variables. |
| 1966 | if (Tok.isOneOf(tok::kw_static_assert, tok::kw__Static_assert)) { |
| 1967 | SourceLocation DeclEnd; |
| 1968 | ParseStaticAssertDeclaration(DeclEnd); |
| 1969 | continue; |
| 1970 | } |
| 1971 | |
| Benjamin Kramer | a39beb9 | 2014-09-03 11:06:10 +0000 | [diff] [blame] | 1972 | auto ObjCIvarCallback = [&](ParsingFieldDeclarator &FD) { |
| 1973 | Actions.ActOnObjCContainerStartDefinition(interfaceDecl); |
| 1974 | // Install the declarator into the interface decl. |
| Douglas Gregor | 2a20bd1 | 2015-06-19 18:25:57 +0000 | [diff] [blame] | 1975 | FD.D.setObjCIvar(true); |
| Benjamin Kramer | a39beb9 | 2014-09-03 11:06:10 +0000 | [diff] [blame] | 1976 | Decl *Field = Actions.ActOnIvar( |
| 1977 | getCurScope(), FD.D.getDeclSpec().getSourceRange().getBegin(), FD.D, |
| 1978 | FD.BitfieldSize, visibility); |
| 1979 | Actions.ActOnObjCContainerFinishDefinition(); |
| 1980 | if (Field) |
| 1981 | AllIvarDecls.push_back(Field); |
| 1982 | FD.complete(Field); |
| 1983 | }; |
| John McCall | cfefb6d | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 1984 | |
| Chris Lattner | a12405b | 2008-04-10 06:46:29 +0000 | [diff] [blame] | 1985 | // Parse all the comma separated declarators. |
| Eli Friedman | 89b1f2c | 2012-08-08 23:04:35 +0000 | [diff] [blame] | 1986 | ParsingDeclSpec DS(*this); |
| Benjamin Kramer | a39beb9 | 2014-09-03 11:06:10 +0000 | [diff] [blame] | 1987 | ParseStructDeclaration(DS, ObjCIvarCallback); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1988 | |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 1989 | if (Tok.is(tok::semi)) { |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1990 | ConsumeToken(); |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1991 | } else { |
| 1992 | Diag(Tok, diag::err_expected_semi_decl_list); |
| 1993 | // Skip to end of block or statement |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 1994 | SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch); |
| Steve Naroff | 00433d3 | 2007-08-21 21:17:12 +0000 | [diff] [blame] | 1995 | } |
| 1996 | } |
| Fariborz Jahanian | 089f39e | 2013-03-20 18:09:33 +0000 | [diff] [blame] | 1997 | HelperActionsForIvarDeclarations(interfaceDecl, atLoc, |
| 1998 | T, AllIvarDecls, false); |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 1999 | } |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 2000 | |
| 2001 | /// objc-protocol-declaration: |
| 2002 | /// objc-protocol-definition |
| 2003 | /// objc-protocol-forward-reference |
| 2004 | /// |
| 2005 | /// objc-protocol-definition: |
| James Dennett | 1355bd1 | 2012-06-11 06:19:40 +0000 | [diff] [blame] | 2006 | /// \@protocol identifier |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2007 | /// objc-protocol-refs[opt] |
| 2008 | /// objc-interface-decl-list |
| James Dennett | 1355bd1 | 2012-06-11 06:19:40 +0000 | [diff] [blame] | 2009 | /// \@end |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 2010 | /// |
| 2011 | /// objc-protocol-forward-reference: |
| James Dennett | 1355bd1 | 2012-06-11 06:19:40 +0000 | [diff] [blame] | 2012 | /// \@protocol identifier-list ';' |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 2013 | /// |
| James Dennett | 1355bd1 | 2012-06-11 06:19:40 +0000 | [diff] [blame] | 2014 | /// "\@protocol identifier ;" should be resolved as "\@protocol |
| Steve Naroff | 09bf815 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 2015 | /// identifier-list ;": objc-interface-decl-list may not start with a |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 2016 | /// semicolon in the first alternative if objc-protocol-refs are omitted. |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2017 | Parser::DeclGroupPtrTy |
| Douglas Gregor | f610267 | 2012-01-01 21:23:57 +0000 | [diff] [blame] | 2018 | Parser::ParseObjCAtProtocolDeclaration(SourceLocation AtLoc, |
| 2019 | ParsedAttributes &attrs) { |
| Steve Naroff | 7c34817 | 2007-08-23 18:16:40 +0000 | [diff] [blame] | 2020 | assert(Tok.isObjCAtKeyword(tok::objc_protocol) && |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 2021 | "ParseObjCAtProtocolDeclaration(): Expected @protocol"); |
| 2022 | ConsumeToken(); // the "protocol" identifier |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2023 | |
| Douglas Gregor | 5b4671c | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 2024 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2025 | Actions.CodeCompleteObjCProtocolDecl(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2026 | cutOffParsing(); |
| David Blaikie | 0403cb1 | 2016-01-15 23:43:25 +0000 | [diff] [blame] | 2027 | return nullptr; |
| Douglas Gregor | 5b4671c | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 2028 | } |
| 2029 | |
| Nico Weber | 69a7914 | 2013-04-04 00:15:10 +0000 | [diff] [blame] | 2030 | MaybeSkipAttributes(tok::objc_protocol); |
| Nico Weber | 04e213b | 2013-04-03 17:36:11 +0000 | [diff] [blame] | 2031 | |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 2032 | if (expectIdentifier()) |
| 2033 | return nullptr; // missing protocol name. |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 2034 | // Save the protocol name, then consume it. |
| 2035 | IdentifierInfo *protocolName = Tok.getIdentifierInfo(); |
| 2036 | SourceLocation nameLoc = ConsumeToken(); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2037 | |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 2038 | if (TryConsumeToken(tok::semi)) { // forward declaration of one protocol. |
| Chris Lattner | d7352d6 | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 2039 | IdentifierLocPair ProtoInfo(protocolName, nameLoc); |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 2040 | return Actions.ActOnForwardProtocolDeclaration(AtLoc, ProtoInfo, attrs); |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 2041 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2042 | |
| Erik Verbruggen | f988785 | 2011-12-08 09:58:43 +0000 | [diff] [blame] | 2043 | CheckNestedObjCContexts(AtLoc); |
| 2044 | |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2045 | if (Tok.is(tok::comma)) { // list of forward declarations. |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2046 | SmallVector<IdentifierLocPair, 8> ProtocolRefs; |
| Chris Lattner | d7352d6 | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 2047 | ProtocolRefs.push_back(std::make_pair(protocolName, nameLoc)); |
| 2048 | |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 2049 | // Parse the list of forward declarations. |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 2050 | while (1) { |
| 2051 | ConsumeToken(); // the ',' |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 2052 | if (expectIdentifier()) { |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 2053 | SkipUntil(tok::semi); |
| David Blaikie | 0403cb1 | 2016-01-15 23:43:25 +0000 | [diff] [blame] | 2054 | return nullptr; |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 2055 | } |
| Chris Lattner | d7352d6 | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 2056 | ProtocolRefs.push_back(IdentifierLocPair(Tok.getIdentifierInfo(), |
| 2057 | Tok.getLocation())); |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 2058 | ConsumeToken(); // the identifier |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2059 | |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2060 | if (Tok.isNot(tok::comma)) |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 2061 | break; |
| 2062 | } |
| 2063 | // Consume the ';'. |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 2064 | if (ExpectAndConsume(tok::semi, diag::err_expected_after, "@protocol")) |
| David Blaikie | 0403cb1 | 2016-01-15 23:43:25 +0000 | [diff] [blame] | 2065 | return nullptr; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2066 | |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 2067 | return Actions.ActOnForwardProtocolDeclaration(AtLoc, ProtocolRefs, attrs); |
| Chris Lattner | d7352d6 | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 2068 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2069 | |
| Steve Naroff | 0b6a01a | 2007-08-22 22:17:26 +0000 | [diff] [blame] | 2070 | // Last, and definitely not least, parse a protocol declaration. |
| Argyrios Kyrtzidis | fc1f9e4 | 2009-09-29 19:41:44 +0000 | [diff] [blame] | 2071 | SourceLocation LAngleLoc, EndProtoLoc; |
| Chris Lattner | d7352d6 | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 2072 | |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2073 | SmallVector<Decl *, 8> ProtocolRefs; |
| 2074 | SmallVector<SourceLocation, 8> ProtocolLocs; |
| Chris Lattner | d7352d6 | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 2075 | if (Tok.is(tok::less) && |
| Argyrios Kyrtzidis | 4ecdd2c | 2015-04-19 20:15:55 +0000 | [diff] [blame] | 2076 | ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, false, true, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 2077 | LAngleLoc, EndProtoLoc, |
| 2078 | /*consumeLastToken=*/true)) |
| David Blaikie | 0403cb1 | 2016-01-15 23:43:25 +0000 | [diff] [blame] | 2079 | return nullptr; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2080 | |
| Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 2081 | Decl *ProtoType = Actions.ActOnStartProtocolInterface( |
| 2082 | AtLoc, protocolName, nameLoc, ProtocolRefs.data(), ProtocolRefs.size(), |
| 2083 | ProtocolLocs.data(), EndProtoLoc, attrs); |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2084 | |
| Fariborz Jahanian | b66de9f | 2011-08-22 21:44:58 +0000 | [diff] [blame] | 2085 | ParseObjCInterfaceDeclList(tok::objc_protocol, ProtoType); |
| Douglas Gregor | f610267 | 2012-01-01 21:23:57 +0000 | [diff] [blame] | 2086 | return Actions.ConvertDeclToDeclGroup(ProtoType); |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 2087 | } |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 2088 | |
| 2089 | /// objc-implementation: |
| 2090 | /// objc-class-implementation-prologue |
| 2091 | /// objc-category-implementation-prologue |
| 2092 | /// |
| 2093 | /// objc-class-implementation-prologue: |
| 2094 | /// @implementation identifier objc-superclass[opt] |
| 2095 | /// objc-class-instance-variables[opt] |
| 2096 | /// |
| 2097 | /// objc-category-implementation-prologue: |
| 2098 | /// @implementation identifier ( identifier ) |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2099 | Parser::DeclGroupPtrTy |
| Erik Pilkington | c5a0583 | 2019-04-11 17:55:30 +0000 | [diff] [blame] | 2100 | Parser::ParseObjCAtImplementationDeclaration(SourceLocation AtLoc, |
| 2101 | ParsedAttributes &Attrs) { |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2102 | assert(Tok.isObjCAtKeyword(tok::objc_implementation) && |
| 2103 | "ParseObjCAtImplementationDeclaration(): Expected @implementation"); |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 2104 | CheckNestedObjCContexts(AtLoc); |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2105 | ConsumeToken(); // the "implementation" identifier |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2106 | |
| Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 2107 | // Code completion after '@implementation'. |
| 2108 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2109 | Actions.CodeCompleteObjCImplementationDecl(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2110 | cutOffParsing(); |
| David Blaikie | 0403cb1 | 2016-01-15 23:43:25 +0000 | [diff] [blame] | 2111 | return nullptr; |
| Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 2112 | } |
| 2113 | |
| Nico Weber | 69a7914 | 2013-04-04 00:15:10 +0000 | [diff] [blame] | 2114 | MaybeSkipAttributes(tok::objc_implementation); |
| Nico Weber | 04e213b | 2013-04-03 17:36:11 +0000 | [diff] [blame] | 2115 | |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 2116 | if (expectIdentifier()) |
| 2117 | return nullptr; // missing class or category name. |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2118 | // We have a class or category name - consume it. |
| Fariborz Jahanian | bfe13c5 | 2007-09-25 18:38:09 +0000 | [diff] [blame] | 2119 | IdentifierInfo *nameId = Tok.getIdentifierInfo(); |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2120 | SourceLocation nameLoc = ConsumeToken(); // consume class or category name |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2121 | Decl *ObjCImpDecl = nullptr; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2122 | |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 2123 | // Neither a type parameter list nor a list of protocol references is |
| 2124 | // permitted here. Parse and diagnose them. |
| 2125 | if (Tok.is(tok::less)) { |
| 2126 | SourceLocation lAngleLoc, rAngleLoc; |
| 2127 | SmallVector<IdentifierLocPair, 8> protocolIdents; |
| 2128 | SourceLocation diagLoc = Tok.getLocation(); |
| Richard Smith | 3df3f1d | 2015-11-03 01:19:56 +0000 | [diff] [blame] | 2129 | ObjCTypeParamListScope typeParamScope(Actions, getCurScope()); |
| 2130 | if (parseObjCTypeParamListOrProtocolRefs(typeParamScope, lAngleLoc, |
| 2131 | protocolIdents, rAngleLoc)) { |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 2132 | Diag(diagLoc, diag::err_objc_parameterized_implementation) |
| 2133 | << SourceRange(diagLoc, PrevTokLocation); |
| 2134 | } else if (lAngleLoc.isValid()) { |
| 2135 | Diag(lAngleLoc, diag::err_unexpected_protocol_qualifier) |
| 2136 | << FixItHint::CreateRemoval(SourceRange(lAngleLoc, rAngleLoc)); |
| 2137 | } |
| 2138 | } |
| 2139 | |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2140 | if (Tok.is(tok::l_paren)) { |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2141 | // we have a category implementation. |
| Jeffrey Yasskin | 8dfa5f1 | 2011-01-18 02:00:16 +0000 | [diff] [blame] | 2142 | ConsumeParen(); |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2143 | SourceLocation categoryLoc, rparenLoc; |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2144 | IdentifierInfo *categoryId = nullptr; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2145 | |
| Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 2146 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2147 | Actions.CodeCompleteObjCImplementationCategory(getCurScope(), nameId, nameLoc); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2148 | cutOffParsing(); |
| David Blaikie | 0403cb1 | 2016-01-15 23:43:25 +0000 | [diff] [blame] | 2149 | return nullptr; |
| Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 2150 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2151 | |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2152 | if (Tok.is(tok::identifier)) { |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2153 | categoryId = Tok.getIdentifierInfo(); |
| 2154 | categoryLoc = ConsumeToken(); |
| 2155 | } else { |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2156 | Diag(Tok, diag::err_expected) |
| 2157 | << tok::identifier; // missing category name. |
| David Blaikie | 0403cb1 | 2016-01-15 23:43:25 +0000 | [diff] [blame] | 2158 | return nullptr; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2159 | } |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2160 | if (Tok.isNot(tok::r_paren)) { |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2161 | Diag(Tok, diag::err_expected) << tok::r_paren; |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 2162 | SkipUntil(tok::r_paren); // don't stop at ';' |
| David Blaikie | 0403cb1 | 2016-01-15 23:43:25 +0000 | [diff] [blame] | 2163 | return nullptr; |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2164 | } |
| 2165 | rparenLoc = ConsumeParen(); |
| Fariborz Jahanian | 8588855 | 2013-05-17 17:58:11 +0000 | [diff] [blame] | 2166 | if (Tok.is(tok::less)) { // we have illegal '<' try to recover |
| 2167 | Diag(Tok, diag::err_unexpected_protocol_qualifier); |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 2168 | SourceLocation protocolLAngleLoc, protocolRAngleLoc; |
| 2169 | SmallVector<Decl *, 4> protocols; |
| 2170 | SmallVector<SourceLocation, 4> protocolLocs; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2171 | (void)ParseObjCProtocolReferences(protocols, protocolLocs, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 2172 | /*warnOnIncompleteProtocols=*/false, |
| 2173 | /*ForObjCContainer=*/false, |
| 2174 | protocolLAngleLoc, protocolRAngleLoc, |
| 2175 | /*consumeLastToken=*/true); |
| Fariborz Jahanian | 8588855 | 2013-05-17 17:58:11 +0000 | [diff] [blame] | 2176 | } |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2177 | ObjCImpDecl = Actions.ActOnStartCategoryImplementation( |
| Erik Pilkington | c5a0583 | 2019-04-11 17:55:30 +0000 | [diff] [blame] | 2178 | AtLoc, nameId, nameLoc, categoryId, categoryLoc, Attrs); |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2179 | |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2180 | } else { |
| 2181 | // We have a class implementation |
| 2182 | SourceLocation superClassLoc; |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2183 | IdentifierInfo *superClassId = nullptr; |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 2184 | if (TryConsumeToken(tok::colon)) { |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2185 | // We have a super class |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 2186 | if (expectIdentifier()) |
| 2187 | return nullptr; // missing super class name. |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2188 | superClassId = Tok.getIdentifierInfo(); |
| 2189 | superClassLoc = ConsumeToken(); // Consume super class name |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2190 | } |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2191 | ObjCImpDecl = Actions.ActOnStartClassImplementation( |
| Erik Pilkington | c5a0583 | 2019-04-11 17:55:30 +0000 | [diff] [blame] | 2192 | AtLoc, nameId, nameLoc, superClassId, superClassLoc, Attrs); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2193 | |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2194 | if (Tok.is(tok::l_brace)) // we have ivars |
| 2195 | ParseObjCClassInstanceVariables(ObjCImpDecl, tok::objc_private, AtLoc); |
| Fariborz Jahanian | 46ed4d9 | 2013-04-24 23:23:47 +0000 | [diff] [blame] | 2196 | else if (Tok.is(tok::less)) { // we have illegal '<' try to recover |
| 2197 | Diag(Tok, diag::err_unexpected_protocol_qualifier); |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 2198 | |
| 2199 | SourceLocation protocolLAngleLoc, protocolRAngleLoc; |
| 2200 | SmallVector<Decl *, 4> protocols; |
| 2201 | SmallVector<SourceLocation, 4> protocolLocs; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2202 | (void)ParseObjCProtocolReferences(protocols, protocolLocs, |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 2203 | /*warnOnIncompleteProtocols=*/false, |
| 2204 | /*ForObjCContainer=*/false, |
| 2205 | protocolLAngleLoc, protocolRAngleLoc, |
| 2206 | /*consumeLastToken=*/true); |
| Fariborz Jahanian | 46ed4d9 | 2013-04-24 23:23:47 +0000 | [diff] [blame] | 2207 | } |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2208 | } |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2209 | assert(ObjCImpDecl); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2210 | |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2211 | SmallVector<Decl *, 8> DeclsInGroup; |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2212 | |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2213 | { |
| 2214 | ObjCImplParsingDataRAII ObjCImplParsing(*this, ObjCImpDecl); |
| Richard Smith | 34f3051 | 2013-11-23 04:06:09 +0000 | [diff] [blame] | 2215 | while (!ObjCImplParsing.isFinished() && !isEofOrEom()) { |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2216 | ParsedAttributesWithRange attrs(AttrFactory); |
| Richard Smith | 89645bc | 2013-01-02 12:01:23 +0000 | [diff] [blame] | 2217 | MaybeParseCXX11Attributes(attrs); |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2218 | if (DeclGroupPtrTy DGP = ParseExternalDeclaration(attrs)) { |
| 2219 | DeclGroupRef DG = DGP.get(); |
| 2220 | DeclsInGroup.append(DG.begin(), DG.end()); |
| 2221 | } |
| 2222 | } |
| 2223 | } |
| 2224 | |
| Argyrios Kyrtzidis | 2e85c5f | 2012-02-23 21:11:20 +0000 | [diff] [blame] | 2225 | return Actions.ActOnFinishObjCImplementation(ObjCImpDecl, DeclsInGroup); |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 2226 | } |
| Steve Naroff | 33a1e80 | 2007-10-29 21:38:07 +0000 | [diff] [blame] | 2227 | |
| Fariborz Jahanian | bd0642f | 2011-08-31 17:37:55 +0000 | [diff] [blame] | 2228 | Parser::DeclGroupPtrTy |
| 2229 | Parser::ParseObjCAtEndDeclaration(SourceRange atEnd) { |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2230 | assert(Tok.isObjCAtKeyword(tok::objc_end) && |
| 2231 | "ParseObjCAtEndDeclaration(): Expected @end"); |
| 2232 | ConsumeToken(); // the "end" identifier |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2233 | if (CurParsedObjCImpl) |
| 2234 | CurParsedObjCImpl->finish(atEnd); |
| Fariborz Jahanian | 97d744b | 2011-08-31 22:24:06 +0000 | [diff] [blame] | 2235 | else |
| Ted Kremenek | c7c6431 | 2010-01-07 01:20:12 +0000 | [diff] [blame] | 2236 | // missing @implementation |
| Erik Verbruggen | c6c8d93 | 2011-12-06 09:25:23 +0000 | [diff] [blame] | 2237 | Diag(atEnd.getBegin(), diag::err_expected_objc_container); |
| David Blaikie | 0403cb1 | 2016-01-15 23:43:25 +0000 | [diff] [blame] | 2238 | return nullptr; |
| Steve Naroff | 1eb1ad6 | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 2239 | } |
| Fariborz Jahanian | d8e12d3 | 2007-09-04 19:26:51 +0000 | [diff] [blame] | 2240 | |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2241 | Parser::ObjCImplParsingDataRAII::~ObjCImplParsingDataRAII() { |
| 2242 | if (!Finished) { |
| 2243 | finish(P.Tok.getLocation()); |
| Richard Smith | 34f3051 | 2013-11-23 04:06:09 +0000 | [diff] [blame] | 2244 | if (P.isEofOrEom()) { |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2245 | P.Diag(P.Tok, diag::err_objc_missing_end) |
| 2246 | << FixItHint::CreateInsertion(P.Tok.getLocation(), "\n@end\n"); |
| Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 2247 | P.Diag(Dcl->getBeginLoc(), diag::note_objc_container_start) |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2248 | << Sema::OCK_Implementation; |
| 2249 | } |
| 2250 | } |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2251 | P.CurParsedObjCImpl = nullptr; |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2252 | assert(LateParsedObjCMethods.empty()); |
| Fariborz Jahanian | 9290ede | 2009-11-16 18:57:01 +0000 | [diff] [blame] | 2253 | } |
| 2254 | |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2255 | void Parser::ObjCImplParsingDataRAII::finish(SourceRange AtEnd) { |
| 2256 | assert(!Finished); |
| Alex Lorenz | 6c9af50 | 2017-07-03 10:12:24 +0000 | [diff] [blame] | 2257 | P.Actions.DefaultSynthesizeProperties(P.getCurScope(), Dcl, AtEnd.getBegin()); |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2258 | for (size_t i = 0; i < LateParsedObjCMethods.size(); ++i) |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2259 | P.ParseLexedObjCMethodDefs(*LateParsedObjCMethods[i], |
| Fariborz Jahanian | 577574a | 2012-07-02 23:37:09 +0000 | [diff] [blame] | 2260 | true/*Methods*/); |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2261 | |
| 2262 | P.Actions.ActOnAtEnd(P.getCurScope(), AtEnd); |
| 2263 | |
| Fariborz Jahanian | 577574a | 2012-07-02 23:37:09 +0000 | [diff] [blame] | 2264 | if (HasCFunction) |
| 2265 | for (size_t i = 0; i < LateParsedObjCMethods.size(); ++i) |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2266 | P.ParseLexedObjCMethodDefs(*LateParsedObjCMethods[i], |
| Fariborz Jahanian | 577574a | 2012-07-02 23:37:09 +0000 | [diff] [blame] | 2267 | false/*c-functions*/); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2268 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2269 | /// Clear and free the cached objc methods. |
| Argyrios Kyrtzidis | 004685b | 2011-11-29 08:14:54 +0000 | [diff] [blame] | 2270 | for (LateParsedObjCMethodContainer::iterator |
| 2271 | I = LateParsedObjCMethods.begin(), |
| 2272 | E = LateParsedObjCMethods.end(); I != E; ++I) |
| 2273 | delete *I; |
| 2274 | LateParsedObjCMethods.clear(); |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2275 | |
| 2276 | Finished = true; |
| Argyrios Kyrtzidis | 004685b | 2011-11-29 08:14:54 +0000 | [diff] [blame] | 2277 | } |
| 2278 | |
| Fariborz Jahanian | d8e12d3 | 2007-09-04 19:26:51 +0000 | [diff] [blame] | 2279 | /// compatibility-alias-decl: |
| 2280 | /// @compatibility_alias alias-name class-name ';' |
| 2281 | /// |
| John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2282 | Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) { |
| Fariborz Jahanian | d8e12d3 | 2007-09-04 19:26:51 +0000 | [diff] [blame] | 2283 | assert(Tok.isObjCAtKeyword(tok::objc_compatibility_alias) && |
| 2284 | "ParseObjCAtAliasDeclaration(): Expected @compatibility_alias"); |
| 2285 | ConsumeToken(); // consume compatibility_alias |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 2286 | if (expectIdentifier()) |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2287 | return nullptr; |
| Fariborz Jahanian | 49c6425 | 2007-10-11 23:42:27 +0000 | [diff] [blame] | 2288 | IdentifierInfo *aliasId = Tok.getIdentifierInfo(); |
| 2289 | SourceLocation aliasLoc = ConsumeToken(); // consume alias-name |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 2290 | if (expectIdentifier()) |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2291 | return nullptr; |
| Fariborz Jahanian | 49c6425 | 2007-10-11 23:42:27 +0000 | [diff] [blame] | 2292 | IdentifierInfo *classId = Tok.getIdentifierInfo(); |
| 2293 | SourceLocation classLoc = ConsumeToken(); // consume class-name; |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 2294 | ExpectAndConsume(tok::semi, diag::err_expected_after, "@compatibility_alias"); |
| Richard Smith | ac4e36d | 2012-08-08 23:32:13 +0000 | [diff] [blame] | 2295 | return Actions.ActOnCompatibilityAlias(atLoc, aliasId, aliasLoc, |
| 2296 | classId, classLoc); |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 2297 | } |
| 2298 | |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2299 | /// property-synthesis: |
| 2300 | /// @synthesize property-ivar-list ';' |
| 2301 | /// |
| 2302 | /// property-ivar-list: |
| 2303 | /// property-ivar |
| 2304 | /// property-ivar-list ',' property-ivar |
| 2305 | /// |
| 2306 | /// property-ivar: |
| 2307 | /// identifier |
| 2308 | /// identifier '=' identifier |
| 2309 | /// |
| John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2310 | Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) { |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2311 | assert(Tok.isObjCAtKeyword(tok::objc_synthesize) && |
| Fariborz Jahanian | d56a262 | 2013-04-29 15:35:35 +0000 | [diff] [blame] | 2312 | "ParseObjCPropertySynthesize(): Expected '@synthesize'"); |
| Jeffrey Yasskin | 8dfa5f1 | 2011-01-18 02:00:16 +0000 | [diff] [blame] | 2313 | ConsumeToken(); // consume synthesize |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2314 | |
| Douglas Gregor | 88e72a0 | 2009-11-18 19:45:45 +0000 | [diff] [blame] | 2315 | while (true) { |
| Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 2316 | if (Tok.is(tok::code_completion)) { |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2317 | Actions.CodeCompleteObjCPropertyDefinition(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2318 | cutOffParsing(); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2319 | return nullptr; |
| Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 2320 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2321 | |
| Douglas Gregor | 88e72a0 | 2009-11-18 19:45:45 +0000 | [diff] [blame] | 2322 | if (Tok.isNot(tok::identifier)) { |
| 2323 | Diag(Tok, diag::err_synthesized_property_name); |
| 2324 | SkipUntil(tok::semi); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2325 | return nullptr; |
| Douglas Gregor | 88e72a0 | 2009-11-18 19:45:45 +0000 | [diff] [blame] | 2326 | } |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2327 | |
| 2328 | IdentifierInfo *propertyIvar = nullptr; |
| Fariborz Jahanian | ffe97a3 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 2329 | IdentifierInfo *propertyId = Tok.getIdentifierInfo(); |
| 2330 | SourceLocation propertyLoc = ConsumeToken(); // consume property name |
| Douglas Gregor | b1b71e5 | 2010-11-17 01:03:52 +0000 | [diff] [blame] | 2331 | SourceLocation propertyIvarLoc; |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 2332 | if (TryConsumeToken(tok::equal)) { |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2333 | // property '=' ivar-name |
| Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 2334 | if (Tok.is(tok::code_completion)) { |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2335 | Actions.CodeCompleteObjCPropertySynthesizeIvar(getCurScope(), propertyId); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2336 | cutOffParsing(); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2337 | return nullptr; |
| Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 2338 | } |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 2339 | |
| 2340 | if (expectIdentifier()) |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2341 | break; |
| Fariborz Jahanian | ffe97a3 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 2342 | propertyIvar = Tok.getIdentifierInfo(); |
| Douglas Gregor | b1b71e5 | 2010-11-17 01:03:52 +0000 | [diff] [blame] | 2343 | propertyIvarLoc = ConsumeToken(); // consume ivar-name |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2344 | } |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 2345 | Actions.ActOnPropertyImplDecl( |
| 2346 | getCurScope(), atLoc, propertyLoc, true, |
| 2347 | propertyId, propertyIvar, propertyIvarLoc, |
| 2348 | ObjCPropertyQueryKind::OBJC_PR_query_unknown); |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2349 | if (Tok.isNot(tok::comma)) |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2350 | break; |
| 2351 | ConsumeToken(); // consume ',' |
| 2352 | } |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 2353 | ExpectAndConsume(tok::semi, diag::err_expected_after, "@synthesize"); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2354 | return nullptr; |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 2355 | } |
| 2356 | |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2357 | /// property-dynamic: |
| 2358 | /// @dynamic property-list |
| 2359 | /// |
| 2360 | /// property-list: |
| 2361 | /// identifier |
| 2362 | /// property-list ',' identifier |
| 2363 | /// |
| John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2364 | Decl *Parser::ParseObjCPropertyDynamic(SourceLocation atLoc) { |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2365 | assert(Tok.isObjCAtKeyword(tok::objc_dynamic) && |
| 2366 | "ParseObjCPropertyDynamic(): Expected '@dynamic'"); |
| Jeffrey Yasskin | 8dfa5f1 | 2011-01-18 02:00:16 +0000 | [diff] [blame] | 2367 | ConsumeToken(); // consume dynamic |
| Manman Ren | 0fe61f8 | 2016-01-29 19:05:57 +0000 | [diff] [blame] | 2368 | |
| 2369 | bool isClassProperty = false; |
| 2370 | if (Tok.is(tok::l_paren)) { |
| 2371 | ConsumeParen(); |
| 2372 | const IdentifierInfo *II = Tok.getIdentifierInfo(); |
| 2373 | |
| 2374 | if (!II) { |
| 2375 | Diag(Tok, diag::err_objc_expected_property_attr) << II; |
| 2376 | SkipUntil(tok::r_paren, StopAtSemi); |
| 2377 | } else { |
| 2378 | SourceLocation AttrName = ConsumeToken(); // consume attribute name |
| 2379 | if (II->isStr("class")) { |
| 2380 | isClassProperty = true; |
| 2381 | if (Tok.isNot(tok::r_paren)) { |
| 2382 | Diag(Tok, diag::err_expected) << tok::r_paren; |
| 2383 | SkipUntil(tok::r_paren, StopAtSemi); |
| 2384 | } else |
| 2385 | ConsumeParen(); |
| 2386 | } else { |
| 2387 | Diag(AttrName, diag::err_objc_expected_property_attr) << II; |
| 2388 | SkipUntil(tok::r_paren, StopAtSemi); |
| 2389 | } |
| 2390 | } |
| 2391 | } |
| 2392 | |
| Douglas Gregor | 52e78bd | 2009-11-18 22:56:13 +0000 | [diff] [blame] | 2393 | while (true) { |
| 2394 | if (Tok.is(tok::code_completion)) { |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2395 | Actions.CodeCompleteObjCPropertyDefinition(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2396 | cutOffParsing(); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2397 | return nullptr; |
| Douglas Gregor | 52e78bd | 2009-11-18 22:56:13 +0000 | [diff] [blame] | 2398 | } |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 2399 | |
| 2400 | if (expectIdentifier()) { |
| Douglas Gregor | 52e78bd | 2009-11-18 22:56:13 +0000 | [diff] [blame] | 2401 | SkipUntil(tok::semi); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2402 | return nullptr; |
| Douglas Gregor | 52e78bd | 2009-11-18 22:56:13 +0000 | [diff] [blame] | 2403 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2404 | |
| Fariborz Jahanian | f2a7d7c | 2008-04-21 21:05:54 +0000 | [diff] [blame] | 2405 | IdentifierInfo *propertyId = Tok.getIdentifierInfo(); |
| 2406 | SourceLocation propertyLoc = ConsumeToken(); // consume property name |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 2407 | Actions.ActOnPropertyImplDecl( |
| 2408 | getCurScope(), atLoc, propertyLoc, false, |
| 2409 | propertyId, nullptr, SourceLocation(), |
| Manman Ren | 0fe61f8 | 2016-01-29 19:05:57 +0000 | [diff] [blame] | 2410 | isClassProperty ? ObjCPropertyQueryKind::OBJC_PR_query_class : |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 2411 | ObjCPropertyQueryKind::OBJC_PR_query_unknown); |
| Fariborz Jahanian | f2a7d7c | 2008-04-21 21:05:54 +0000 | [diff] [blame] | 2412 | |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2413 | if (Tok.isNot(tok::comma)) |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2414 | break; |
| 2415 | ConsumeToken(); // consume ',' |
| 2416 | } |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 2417 | ExpectAndConsume(tok::semi, diag::err_expected_after, "@dynamic"); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2418 | return nullptr; |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2419 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2420 | |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2421 | /// objc-throw-statement: |
| 2422 | /// throw expression[opt]; |
| 2423 | /// |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2424 | StmtResult Parser::ParseObjCThrowStmt(SourceLocation atLoc) { |
| 2425 | ExprResult Res; |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2426 | ConsumeToken(); // consume throw |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2427 | if (Tok.isNot(tok::semi)) { |
| Fariborz Jahanian | adfbbc3 | 2007-11-07 02:00:49 +0000 | [diff] [blame] | 2428 | Res = ParseExpression(); |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2429 | if (Res.isInvalid()) { |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2430 | SkipUntil(tok::semi); |
| Sebastian Redl | bab9a4b | 2008-12-11 20:12:42 +0000 | [diff] [blame] | 2431 | return StmtError(); |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2432 | } |
| 2433 | } |
| Ted Kremenek | 15a81e5 | 2010-04-20 21:21:51 +0000 | [diff] [blame] | 2434 | // consume ';' |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 2435 | ExpectAndConsume(tok::semi, diag::err_expected_after, "@throw"); |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2436 | return Actions.ActOnObjCAtThrowStmt(atLoc, Res.get(), getCurScope()); |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2437 | } |
| 2438 | |
| Fariborz Jahanian | f89ca38 | 2008-01-29 18:21:32 +0000 | [diff] [blame] | 2439 | /// objc-synchronized-statement: |
| Fariborz Jahanian | 049fa58 | 2008-01-30 17:38:29 +0000 | [diff] [blame] | 2440 | /// @synchronized '(' expression ')' compound-statement |
| Fariborz Jahanian | f89ca38 | 2008-01-29 18:21:32 +0000 | [diff] [blame] | 2441 | /// |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2442 | StmtResult |
| Sebastian Redl | bab9a4b | 2008-12-11 20:12:42 +0000 | [diff] [blame] | 2443 | Parser::ParseObjCSynchronizedStmt(SourceLocation atLoc) { |
| Fariborz Jahanian | 48085b8 | 2008-01-29 19:14:59 +0000 | [diff] [blame] | 2444 | ConsumeToken(); // consume synchronized |
| 2445 | if (Tok.isNot(tok::l_paren)) { |
| Chris Lattner | 6d29c10 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 2446 | Diag(Tok, diag::err_expected_lparen_after) << "@synchronized"; |
| Sebastian Redl | bab9a4b | 2008-12-11 20:12:42 +0000 | [diff] [blame] | 2447 | return StmtError(); |
| Fariborz Jahanian | 48085b8 | 2008-01-29 19:14:59 +0000 | [diff] [blame] | 2448 | } |
| John McCall | d9bb743 | 2011-07-27 21:50:02 +0000 | [diff] [blame] | 2449 | |
| 2450 | // The operand is surrounded with parentheses. |
| Fariborz Jahanian | 48085b8 | 2008-01-29 19:14:59 +0000 | [diff] [blame] | 2451 | ConsumeParen(); // '(' |
| John McCall | d9bb743 | 2011-07-27 21:50:02 +0000 | [diff] [blame] | 2452 | ExprResult operand(ParseExpression()); |
| 2453 | |
| 2454 | if (Tok.is(tok::r_paren)) { |
| 2455 | ConsumeParen(); // ')' |
| 2456 | } else { |
| 2457 | if (!operand.isInvalid()) |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2458 | Diag(Tok, diag::err_expected) << tok::r_paren; |
| John McCall | d9bb743 | 2011-07-27 21:50:02 +0000 | [diff] [blame] | 2459 | |
| 2460 | // Skip forward until we see a left brace, but don't consume it. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 2461 | SkipUntil(tok::l_brace, StopAtSemi | StopBeforeMatch); |
| Fariborz Jahanian | 48085b8 | 2008-01-29 19:14:59 +0000 | [diff] [blame] | 2462 | } |
| John McCall | d9bb743 | 2011-07-27 21:50:02 +0000 | [diff] [blame] | 2463 | |
| 2464 | // Require a compound statement. |
| Fariborz Jahanian | 049fa58 | 2008-01-30 17:38:29 +0000 | [diff] [blame] | 2465 | if (Tok.isNot(tok::l_brace)) { |
| John McCall | d9bb743 | 2011-07-27 21:50:02 +0000 | [diff] [blame] | 2466 | if (!operand.isInvalid()) |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2467 | Diag(Tok, diag::err_expected) << tok::l_brace; |
| Sebastian Redl | bab9a4b | 2008-12-11 20:12:42 +0000 | [diff] [blame] | 2468 | return StmtError(); |
| Fariborz Jahanian | 049fa58 | 2008-01-30 17:38:29 +0000 | [diff] [blame] | 2469 | } |
| Steve Naroff | d9c2607 | 2008-06-04 20:36:13 +0000 | [diff] [blame] | 2470 | |
| John McCall | d9bb743 | 2011-07-27 21:50:02 +0000 | [diff] [blame] | 2471 | // Check the @synchronized operand now. |
| 2472 | if (!operand.isInvalid()) |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2473 | operand = Actions.ActOnObjCAtSynchronizedOperand(atLoc, operand.get()); |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2474 | |
| John McCall | d9bb743 | 2011-07-27 21:50:02 +0000 | [diff] [blame] | 2475 | // Parse the compound statement within a new scope. |
| Momchil Velikov | 57c681f | 2017-08-10 15:43:06 +0000 | [diff] [blame] | 2476 | ParseScope bodyScope(this, Scope::DeclScope | Scope::CompoundStmtScope); |
| John McCall | d9bb743 | 2011-07-27 21:50:02 +0000 | [diff] [blame] | 2477 | StmtResult body(ParseCompoundStatementBody()); |
| 2478 | bodyScope.Exit(); |
| 2479 | |
| 2480 | // If there was a semantic or parse error earlier with the |
| 2481 | // operand, fail now. |
| 2482 | if (operand.isInvalid()) |
| 2483 | return StmtError(); |
| 2484 | |
| 2485 | if (body.isInvalid()) |
| 2486 | body = Actions.ActOnNullStmt(Tok.getLocation()); |
| 2487 | |
| 2488 | return Actions.ActOnObjCAtSynchronizedStmt(atLoc, operand.get(), body.get()); |
| Fariborz Jahanian | f89ca38 | 2008-01-29 18:21:32 +0000 | [diff] [blame] | 2489 | } |
| 2490 | |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2491 | /// objc-try-catch-statement: |
| 2492 | /// @try compound-statement objc-catch-list[opt] |
| 2493 | /// @try compound-statement objc-catch-list[opt] @finally compound-statement |
| 2494 | /// |
| 2495 | /// objc-catch-list: |
| 2496 | /// @catch ( parameter-declaration ) compound-statement |
| 2497 | /// objc-catch-list @catch ( catch-parameter-declaration ) compound-statement |
| 2498 | /// catch-parameter-declaration: |
| 2499 | /// parameter-declaration |
| 2500 | /// '...' [OBJC2] |
| 2501 | /// |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2502 | StmtResult Parser::ParseObjCTryStmt(SourceLocation atLoc) { |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2503 | bool catch_or_finally_seen = false; |
| Sebastian Redl | bab9a4b | 2008-12-11 20:12:42 +0000 | [diff] [blame] | 2504 | |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2505 | ConsumeToken(); // consume try |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2506 | if (Tok.isNot(tok::l_brace)) { |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2507 | Diag(Tok, diag::err_expected) << tok::l_brace; |
| Sebastian Redl | bab9a4b | 2008-12-11 20:12:42 +0000 | [diff] [blame] | 2508 | return StmtError(); |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2509 | } |
| Benjamin Kramer | f062343 | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 2510 | StmtVector CatchStmts; |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2511 | StmtResult FinallyStmt; |
| Momchil Velikov | 57c681f | 2017-08-10 15:43:06 +0000 | [diff] [blame] | 2512 | ParseScope TryScope(this, Scope::DeclScope | Scope::CompoundStmtScope); |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2513 | StmtResult TryBody(ParseCompoundStatementBody()); |
| Douglas Gregor | 7307d6c | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 2514 | TryScope.Exit(); |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2515 | if (TryBody.isInvalid()) |
| Fariborz Jahanian | f859ef2 | 2007-11-02 15:39:31 +0000 | [diff] [blame] | 2516 | TryBody = Actions.ActOnNullStmt(Tok.getLocation()); |
| Sebastian Redl | 511ed55 | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 2517 | |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2518 | while (Tok.is(tok::at)) { |
| Chris Lattner | 3e46832 | 2008-03-10 06:06:04 +0000 | [diff] [blame] | 2519 | // At this point, we need to lookahead to determine if this @ is the start |
| 2520 | // of an @catch or @finally. We don't want to consume the @ token if this |
| 2521 | // is an @try or @encode or something else. |
| 2522 | Token AfterAt = GetLookAheadToken(1); |
| 2523 | if (!AfterAt.isObjCAtKeyword(tok::objc_catch) && |
| 2524 | !AfterAt.isObjCAtKeyword(tok::objc_finally)) |
| 2525 | break; |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2526 | |
| Fariborz Jahanian | 71234d8 | 2007-11-02 00:18:53 +0000 | [diff] [blame] | 2527 | SourceLocation AtCatchFinallyLoc = ConsumeToken(); |
| Chris Lattner | 5e530bc | 2007-12-27 19:57:00 +0000 | [diff] [blame] | 2528 | if (Tok.isObjCAtKeyword(tok::objc_catch)) { |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2529 | Decl *FirstPart = nullptr; |
| Fariborz Jahanian | 9e63b98 | 2007-11-01 23:59:59 +0000 | [diff] [blame] | 2530 | ConsumeToken(); // consume catch |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2531 | if (Tok.is(tok::l_paren)) { |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2532 | ConsumeParen(); |
| Momchil Velikov | 57c681f | 2017-08-10 15:43:06 +0000 | [diff] [blame] | 2533 | ParseScope CatchScope(this, Scope::DeclScope | |
| 2534 | Scope::CompoundStmtScope | |
| 2535 | Scope::AtCatchScope); |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2536 | if (Tok.isNot(tok::ellipsis)) { |
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 2537 | DeclSpec DS(AttrFactory); |
| Faisal Vali | a534f07 | 2018-04-26 00:42:40 +0000 | [diff] [blame] | 2538 | ParseDeclarationSpecifiers(DS); |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 2539 | Declarator ParmDecl(DS, DeclaratorContext::ObjCCatchContext); |
| Steve Naroff | 371b8fb | 2009-03-03 19:52:17 +0000 | [diff] [blame] | 2540 | ParseDeclarator(ParmDecl); |
| 2541 | |
| Douglas Gregor | e11ee11 | 2010-04-23 23:01:43 +0000 | [diff] [blame] | 2542 | // Inform the actions module about the declarator, so it |
| Steve Naroff | 371b8fb | 2009-03-03 19:52:17 +0000 | [diff] [blame] | 2543 | // gets added to the current scope. |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2544 | FirstPart = Actions.ActOnObjCExceptionDecl(getCurScope(), ParmDecl); |
| Steve Naroff | e601679 | 2008-02-05 21:27:35 +0000 | [diff] [blame] | 2545 | } else |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2546 | ConsumeToken(); // consume '...' |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2547 | |
| Steve Naroff | 65a0089 | 2009-04-07 22:56:58 +0000 | [diff] [blame] | 2548 | SourceLocation RParenLoc; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2549 | |
| Steve Naroff | 65a0089 | 2009-04-07 22:56:58 +0000 | [diff] [blame] | 2550 | if (Tok.is(tok::r_paren)) |
| 2551 | RParenLoc = ConsumeParen(); |
| 2552 | else // Skip over garbage, until we get to ')'. Eat the ')'. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 2553 | SkipUntil(tok::r_paren, StopAtSemi); |
| Steve Naroff | 65a0089 | 2009-04-07 22:56:58 +0000 | [diff] [blame] | 2554 | |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2555 | StmtResult CatchBody(true); |
| Chris Lattner | 99a59b6 | 2008-02-14 19:27:54 +0000 | [diff] [blame] | 2556 | if (Tok.is(tok::l_brace)) |
| 2557 | CatchBody = ParseCompoundStatementBody(); |
| 2558 | else |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2559 | Diag(Tok, diag::err_expected) << tok::l_brace; |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2560 | if (CatchBody.isInvalid()) |
| Fariborz Jahanian | 9e63b98 | 2007-11-01 23:59:59 +0000 | [diff] [blame] | 2561 | CatchBody = Actions.ActOnNullStmt(Tok.getLocation()); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2562 | |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2563 | StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc, |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2564 | RParenLoc, |
| 2565 | FirstPart, |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2566 | CatchBody.get()); |
| Douglas Gregor | 96c7949 | 2010-04-23 22:50:49 +0000 | [diff] [blame] | 2567 | if (!Catch.isInvalid()) |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2568 | CatchStmts.push_back(Catch.get()); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2569 | |
| Steve Naroff | e601679 | 2008-02-05 21:27:35 +0000 | [diff] [blame] | 2570 | } else { |
| Chris Lattner | 6d29c10 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 2571 | Diag(AtCatchFinallyLoc, diag::err_expected_lparen_after) |
| 2572 | << "@catch clause"; |
| Sebastian Redl | bab9a4b | 2008-12-11 20:12:42 +0000 | [diff] [blame] | 2573 | return StmtError(); |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2574 | } |
| 2575 | catch_or_finally_seen = true; |
| Chris Lattner | 3e46832 | 2008-03-10 06:06:04 +0000 | [diff] [blame] | 2576 | } else { |
| 2577 | assert(Tok.isObjCAtKeyword(tok::objc_finally) && "Lookahead confused?"); |
| Steve Naroff | e601679 | 2008-02-05 21:27:35 +0000 | [diff] [blame] | 2578 | ConsumeToken(); // consume finally |
| Momchil Velikov | 57c681f | 2017-08-10 15:43:06 +0000 | [diff] [blame] | 2579 | ParseScope FinallyScope(this, |
| 2580 | Scope::DeclScope | Scope::CompoundStmtScope); |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2581 | |
| Shoaib Meenai | 5faf6d8 | 2018-06-08 00:30:00 +0000 | [diff] [blame] | 2582 | bool ShouldCapture = |
| 2583 | getTargetInfo().getTriple().isWindowsMSVCEnvironment(); |
| 2584 | if (ShouldCapture) |
| 2585 | Actions.ActOnCapturedRegionStart(Tok.getLocation(), getCurScope(), |
| 2586 | CR_ObjCAtFinally, 1); |
| 2587 | |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2588 | StmtResult FinallyBody(true); |
| Chris Lattner | 99a59b6 | 2008-02-14 19:27:54 +0000 | [diff] [blame] | 2589 | if (Tok.is(tok::l_brace)) |
| 2590 | FinallyBody = ParseCompoundStatementBody(); |
| 2591 | else |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2592 | Diag(Tok, diag::err_expected) << tok::l_brace; |
| Shoaib Meenai | 5faf6d8 | 2018-06-08 00:30:00 +0000 | [diff] [blame] | 2593 | |
| 2594 | if (FinallyBody.isInvalid()) { |
| Fariborz Jahanian | 71234d8 | 2007-11-02 00:18:53 +0000 | [diff] [blame] | 2595 | FinallyBody = Actions.ActOnNullStmt(Tok.getLocation()); |
| Shoaib Meenai | 5faf6d8 | 2018-06-08 00:30:00 +0000 | [diff] [blame] | 2596 | if (ShouldCapture) |
| 2597 | Actions.ActOnCapturedRegionError(); |
| 2598 | } else if (ShouldCapture) { |
| 2599 | FinallyBody = Actions.ActOnCapturedRegionEnd(FinallyBody.get()); |
| 2600 | } |
| 2601 | |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2602 | FinallyStmt = Actions.ActOnObjCAtFinallyStmt(AtCatchFinallyLoc, |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2603 | FinallyBody.get()); |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2604 | catch_or_finally_seen = true; |
| 2605 | break; |
| 2606 | } |
| 2607 | } |
| Fariborz Jahanian | f859ef2 | 2007-11-02 15:39:31 +0000 | [diff] [blame] | 2608 | if (!catch_or_finally_seen) { |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2609 | Diag(atLoc, diag::err_missing_catch_finally); |
| Sebastian Redl | bab9a4b | 2008-12-11 20:12:42 +0000 | [diff] [blame] | 2610 | return StmtError(); |
| Fariborz Jahanian | f859ef2 | 2007-11-02 15:39:31 +0000 | [diff] [blame] | 2611 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2612 | |
| 2613 | return Actions.ActOnObjCAtTryStmt(atLoc, TryBody.get(), |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2614 | CatchStmts, |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2615 | FinallyStmt.get()); |
| Fariborz Jahanian | 62fd2b4 | 2007-09-19 19:14:32 +0000 | [diff] [blame] | 2616 | } |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2617 | |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2618 | /// objc-autoreleasepool-statement: |
| 2619 | /// @autoreleasepool compound-statement |
| 2620 | /// |
| 2621 | StmtResult |
| 2622 | Parser::ParseObjCAutoreleasePoolStmt(SourceLocation atLoc) { |
| 2623 | ConsumeToken(); // consume autoreleasepool |
| 2624 | if (Tok.isNot(tok::l_brace)) { |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 2625 | Diag(Tok, diag::err_expected) << tok::l_brace; |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2626 | return StmtError(); |
| 2627 | } |
| 2628 | // Enter a scope to hold everything within the compound stmt. Compound |
| 2629 | // statements can always hold declarations. |
| Momchil Velikov | 57c681f | 2017-08-10 15:43:06 +0000 | [diff] [blame] | 2630 | ParseScope BodyScope(this, Scope::DeclScope | Scope::CompoundStmtScope); |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2631 | |
| 2632 | StmtResult AutoreleasePoolBody(ParseCompoundStatementBody()); |
| 2633 | |
| 2634 | BodyScope.Exit(); |
| 2635 | if (AutoreleasePoolBody.isInvalid()) |
| 2636 | AutoreleasePoolBody = Actions.ActOnNullStmt(Tok.getLocation()); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2637 | return Actions.ActOnObjCAutoreleasePoolStmt(atLoc, |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2638 | AutoreleasePoolBody.get()); |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2639 | } |
| 2640 | |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2641 | /// StashAwayMethodOrFunctionBodyTokens - Consume the tokens and store them |
| Fariborz Jahanian | 577574a | 2012-07-02 23:37:09 +0000 | [diff] [blame] | 2642 | /// for later parsing. |
| 2643 | void Parser::StashAwayMethodOrFunctionBodyTokens(Decl *MDecl) { |
| Olivier Goffart | f9e890c | 2016-06-16 21:40:06 +0000 | [diff] [blame] | 2644 | if (SkipFunctionBodies && (!MDecl || Actions.canSkipFunctionBody(MDecl)) && |
| 2645 | trySkippingFunctionBody()) { |
| 2646 | Actions.ActOnSkippedFunctionBody(MDecl); |
| 2647 | return; |
| 2648 | } |
| 2649 | |
| Fariborz Jahanian | 577574a | 2012-07-02 23:37:09 +0000 | [diff] [blame] | 2650 | LexedMethod* LM = new LexedMethod(this, MDecl); |
| 2651 | CurParsedObjCImpl->LateParsedObjCMethods.push_back(LM); |
| 2652 | CachedTokens &Toks = LM->Toks; |
| Fariborz Jahanian | f64b472 | 2012-08-10 21:15:06 +0000 | [diff] [blame] | 2653 | // Begin by storing the '{' or 'try' or ':' token. |
| Fariborz Jahanian | 577574a | 2012-07-02 23:37:09 +0000 | [diff] [blame] | 2654 | Toks.push_back(Tok); |
| Fariborz Jahanian | 8cecfe9 | 2012-08-10 18:10:56 +0000 | [diff] [blame] | 2655 | if (Tok.is(tok::kw_try)) { |
| 2656 | ConsumeToken(); |
| Fariborz Jahanian | 053227f | 2012-08-10 20:34:17 +0000 | [diff] [blame] | 2657 | if (Tok.is(tok::colon)) { |
| 2658 | Toks.push_back(Tok); |
| 2659 | ConsumeToken(); |
| 2660 | while (Tok.isNot(tok::l_brace)) { |
| 2661 | ConsumeAndStoreUntil(tok::l_paren, Toks, /*StopAtSemi=*/false); |
| 2662 | ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false); |
| 2663 | } |
| 2664 | } |
| Fariborz Jahanian | f64b472 | 2012-08-10 21:15:06 +0000 | [diff] [blame] | 2665 | Toks.push_back(Tok); // also store '{' |
| 2666 | } |
| 2667 | else if (Tok.is(tok::colon)) { |
| 2668 | ConsumeToken(); |
| Richard Smith | b9fa996 | 2015-08-21 03:04:33 +0000 | [diff] [blame] | 2669 | // FIXME: This is wrong, due to C++11 braced initialization. |
| Fariborz Jahanian | f64b472 | 2012-08-10 21:15:06 +0000 | [diff] [blame] | 2670 | while (Tok.isNot(tok::l_brace)) { |
| 2671 | ConsumeAndStoreUntil(tok::l_paren, Toks, /*StopAtSemi=*/false); |
| 2672 | ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false); |
| 2673 | } |
| Fariborz Jahanian | 8cecfe9 | 2012-08-10 18:10:56 +0000 | [diff] [blame] | 2674 | Toks.push_back(Tok); // also store '{' |
| 2675 | } |
| Fariborz Jahanian | 577574a | 2012-07-02 23:37:09 +0000 | [diff] [blame] | 2676 | ConsumeBrace(); |
| 2677 | // Consume everything up to (and including) the matching right brace. |
| 2678 | ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false); |
| Fariborz Jahanian | 8cecfe9 | 2012-08-10 18:10:56 +0000 | [diff] [blame] | 2679 | while (Tok.is(tok::kw_catch)) { |
| 2680 | ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false); |
| 2681 | ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false); |
| 2682 | } |
| Fariborz Jahanian | 577574a | 2012-07-02 23:37:09 +0000 | [diff] [blame] | 2683 | } |
| 2684 | |
| Steve Naroff | 09bf815 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 2685 | /// objc-method-def: objc-method-proto ';'[opt] '{' body '}' |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2686 | /// |
| John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2687 | Decl *Parser::ParseObjCMethodDefinition() { |
| Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2688 | Decl *MDecl = ParseObjCMethodPrototype(); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2689 | |
| Jordan Rose | 1e879d8 | 2018-03-23 00:07:18 +0000 | [diff] [blame] | 2690 | PrettyDeclStackTraceEntry CrashInfo(Actions.Context, MDecl, Tok.getLocation(), |
| John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2691 | "parsing Objective-C method"); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2692 | |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2693 | // parse optional ';' |
| Fariborz Jahanian | 040d75d | 2009-10-20 16:39:13 +0000 | [diff] [blame] | 2694 | if (Tok.is(tok::semi)) { |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2695 | if (CurParsedObjCImpl) { |
| Ted Kremenek | 0b61a80 | 2009-11-10 22:55:49 +0000 | [diff] [blame] | 2696 | Diag(Tok, diag::warn_semicolon_before_method_body) |
| Douglas Gregor | a771f46 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 2697 | << FixItHint::CreateRemoval(Tok.getLocation()); |
| Ted Kremenek | 0b61a80 | 2009-11-10 22:55:49 +0000 | [diff] [blame] | 2698 | } |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2699 | ConsumeToken(); |
| Fariborz Jahanian | 040d75d | 2009-10-20 16:39:13 +0000 | [diff] [blame] | 2700 | } |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2701 | |
| Steve Naroff | bb87572 | 2007-11-11 19:54:21 +0000 | [diff] [blame] | 2702 | // We should have an opening brace now. |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 2703 | if (Tok.isNot(tok::l_brace)) { |
| Steve Naroff | 83777fe | 2008-02-29 21:48:07 +0000 | [diff] [blame] | 2704 | Diag(Tok, diag::err_expected_method_body); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2705 | |
| Steve Naroff | bb87572 | 2007-11-11 19:54:21 +0000 | [diff] [blame] | 2706 | // Skip over garbage, until we get to '{'. Don't eat the '{'. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 2707 | SkipUntil(tok::l_brace, StopAtSemi | StopBeforeMatch); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2708 | |
| Steve Naroff | bb87572 | 2007-11-11 19:54:21 +0000 | [diff] [blame] | 2709 | // If we didn't find the '{', bail out. |
| 2710 | if (Tok.isNot(tok::l_brace)) |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2711 | return nullptr; |
| Fariborz Jahanian | 53cacae | 2007-09-01 00:26:16 +0000 | [diff] [blame] | 2712 | } |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2713 | |
| 2714 | if (!MDecl) { |
| 2715 | ConsumeBrace(); |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 2716 | SkipUntil(tok::r_brace); |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2717 | return nullptr; |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2718 | } |
| 2719 | |
| Fariborz Jahanian | bd0642f | 2011-08-31 17:37:55 +0000 | [diff] [blame] | 2720 | // Allow the rest of sema to find private method decl implementations. |
| Argyrios Kyrtzidis | b6c6a58 | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2721 | Actions.AddAnyMethodToGlobalPool(MDecl); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2722 | assert (CurParsedObjCImpl |
| Fariborz Jahanian | db5743d | 2012-08-09 17:15:00 +0000 | [diff] [blame] | 2723 | && "ParseObjCMethodDefinition - Method out of @implementation"); |
| 2724 | // Consume the tokens and store them for later parsing. |
| 2725 | StashAwayMethodOrFunctionBodyTokens(MDecl); |
| Steve Naroff | 7b8fa47 | 2007-11-13 23:01:27 +0000 | [diff] [blame] | 2726 | return MDecl; |
| Chris Lattner | da59c2f | 2006-11-05 02:08:13 +0000 | [diff] [blame] | 2727 | } |
| Anders Carlsson | 76f4a90 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 2728 | |
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 2729 | StmtResult Parser::ParseObjCAtStatement(SourceLocation AtLoc, |
| 2730 | ParsedStmtContext StmtCtx) { |
| Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 2731 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2732 | Actions.CodeCompleteObjCAtStatement(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2733 | cutOffParsing(); |
| Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 2734 | return StmtError(); |
| Chris Lattner | 3ababf5 | 2009-12-07 16:33:19 +0000 | [diff] [blame] | 2735 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2736 | |
| Chris Lattner | 3ababf5 | 2009-12-07 16:33:19 +0000 | [diff] [blame] | 2737 | if (Tok.isObjCAtKeyword(tok::objc_try)) |
| Chris Lattner | 3e46832 | 2008-03-10 06:06:04 +0000 | [diff] [blame] | 2738 | return ParseObjCTryStmt(AtLoc); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2739 | |
| Chris Lattner | 3ababf5 | 2009-12-07 16:33:19 +0000 | [diff] [blame] | 2740 | if (Tok.isObjCAtKeyword(tok::objc_throw)) |
| Steve Naroff | e601679 | 2008-02-05 21:27:35 +0000 | [diff] [blame] | 2741 | return ParseObjCThrowStmt(AtLoc); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2742 | |
| Chris Lattner | 3ababf5 | 2009-12-07 16:33:19 +0000 | [diff] [blame] | 2743 | if (Tok.isObjCAtKeyword(tok::objc_synchronized)) |
| Steve Naroff | e601679 | 2008-02-05 21:27:35 +0000 | [diff] [blame] | 2744 | return ParseObjCSynchronizedStmt(AtLoc); |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2745 | |
| 2746 | if (Tok.isObjCAtKeyword(tok::objc_autoreleasepool)) |
| 2747 | return ParseObjCAutoreleasePoolStmt(AtLoc); |
| Sean Callanan | 8759649 | 2014-12-09 23:47:56 +0000 | [diff] [blame] | 2748 | |
| 2749 | if (Tok.isObjCAtKeyword(tok::objc_import) && |
| 2750 | getLangOpts().DebuggerSupport) { |
| 2751 | SkipUntil(tok::semi); |
| 2752 | return Actions.ActOnNullStmt(Tok.getLocation()); |
| 2753 | } |
| 2754 | |
| Alex Lorenz | a589abc | 2016-12-01 12:14:38 +0000 | [diff] [blame] | 2755 | ExprStatementTokLoc = AtLoc; |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2756 | ExprResult Res(ParseExpressionWithLeadingAt(AtLoc)); |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2757 | if (Res.isInvalid()) { |
| Steve Naroff | e601679 | 2008-02-05 21:27:35 +0000 | [diff] [blame] | 2758 | // If the expression is invalid, skip ahead to the next semicolon. Not |
| 2759 | // doing this opens us up to the possibility of infinite loops if |
| 2760 | // ParseExpression does not consume any tokens. |
| 2761 | SkipUntil(tok::semi); |
| Sebastian Redl | bab9a4b | 2008-12-11 20:12:42 +0000 | [diff] [blame] | 2762 | return StmtError(); |
| Steve Naroff | e601679 | 2008-02-05 21:27:35 +0000 | [diff] [blame] | 2763 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2764 | |
| Steve Naroff | e601679 | 2008-02-05 21:27:35 +0000 | [diff] [blame] | 2765 | // Otherwise, eat the semicolon. |
| Douglas Gregor | 45d6bdf | 2010-09-07 15:23:11 +0000 | [diff] [blame] | 2766 | ExpectAndConsumeSemi(diag::err_expected_semi_after_expr); |
| Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 2767 | return handleExprStmt(Res, StmtCtx); |
| Steve Naroff | e601679 | 2008-02-05 21:27:35 +0000 | [diff] [blame] | 2768 | } |
| 2769 | |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2770 | ExprResult Parser::ParseObjCAtExpression(SourceLocation AtLoc) { |
| Anders Carlsson | 76f4a90 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 2771 | switch (Tok.getKind()) { |
| Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 2772 | case tok::code_completion: |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2773 | Actions.CodeCompleteObjCAtExpression(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2774 | cutOffParsing(); |
| Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 2775 | return ExprError(); |
| 2776 | |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2777 | case tok::minus: |
| 2778 | case tok::plus: { |
| 2779 | tok::TokenKind Kind = Tok.getKind(); |
| 2780 | SourceLocation OpLoc = ConsumeToken(); |
| 2781 | |
| 2782 | if (!Tok.is(tok::numeric_constant)) { |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2783 | const char *Symbol = nullptr; |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2784 | switch (Kind) { |
| 2785 | case tok::minus: Symbol = "-"; break; |
| 2786 | case tok::plus: Symbol = "+"; break; |
| 2787 | default: llvm_unreachable("missing unary operator case"); |
| 2788 | } |
| 2789 | Diag(Tok, diag::err_nsnumber_nonliteral_unary) |
| 2790 | << Symbol; |
| 2791 | return ExprError(); |
| 2792 | } |
| 2793 | |
| 2794 | ExprResult Lit(Actions.ActOnNumericConstant(Tok)); |
| 2795 | if (Lit.isInvalid()) { |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2796 | return Lit; |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2797 | } |
| Benjamin Kramer | e6a4aff | 2012-03-07 00:14:40 +0000 | [diff] [blame] | 2798 | ConsumeToken(); // Consume the literal token. |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2799 | |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2800 | Lit = Actions.ActOnUnaryOp(getCurScope(), OpLoc, Kind, Lit.get()); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2801 | if (Lit.isInvalid()) |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2802 | return Lit; |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2803 | |
| 2804 | return ParsePostfixExpressionSuffix( |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2805 | Actions.BuildObjCNumericLiteral(AtLoc, Lit.get())); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2806 | } |
| 2807 | |
| Chris Lattner | e002fbe | 2007-12-12 01:04:12 +0000 | [diff] [blame] | 2808 | case tok::string_literal: // primary-expression: string-literal |
| 2809 | case tok::wide_string_literal: |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 2810 | return ParsePostfixExpressionSuffix(ParseObjCStringLiteral(AtLoc)); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2811 | |
| 2812 | case tok::char_constant: |
| 2813 | return ParsePostfixExpressionSuffix(ParseObjCCharacterLiteral(AtLoc)); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2814 | |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2815 | case tok::numeric_constant: |
| 2816 | return ParsePostfixExpressionSuffix(ParseObjCNumericLiteral(AtLoc)); |
| 2817 | |
| 2818 | case tok::kw_true: // Objective-C++, etc. |
| 2819 | case tok::kw___objc_yes: // c/c++/objc/objc++ __objc_yes |
| 2820 | return ParsePostfixExpressionSuffix(ParseObjCBooleanLiteral(AtLoc, true)); |
| 2821 | case tok::kw_false: // Objective-C++, etc. |
| 2822 | case tok::kw___objc_no: // c/c++/objc/objc++ __objc_no |
| 2823 | return ParsePostfixExpressionSuffix(ParseObjCBooleanLiteral(AtLoc, false)); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2824 | |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2825 | case tok::l_square: |
| 2826 | // Objective-C array literal |
| 2827 | return ParsePostfixExpressionSuffix(ParseObjCArrayLiteral(AtLoc)); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2828 | |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2829 | case tok::l_brace: |
| 2830 | // Objective-C dictionary literal |
| 2831 | return ParsePostfixExpressionSuffix(ParseObjCDictionaryLiteral(AtLoc)); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2832 | |
| Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 2833 | case tok::l_paren: |
| 2834 | // Objective-C boxed expression |
| 2835 | return ParsePostfixExpressionSuffix(ParseObjCBoxedExpr(AtLoc)); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2836 | |
| Chris Lattner | e002fbe | 2007-12-12 01:04:12 +0000 | [diff] [blame] | 2837 | default: |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2838 | if (Tok.getIdentifierInfo() == nullptr) |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 2839 | return ExprError(Diag(AtLoc, diag::err_unexpected_at)); |
| Sebastian Redl | 59b5e51 | 2008-12-11 21:36:32 +0000 | [diff] [blame] | 2840 | |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 2841 | switch (Tok.getIdentifierInfo()->getObjCKeywordID()) { |
| 2842 | case tok::objc_encode: |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 2843 | return ParsePostfixExpressionSuffix(ParseObjCEncodeExpression(AtLoc)); |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 2844 | case tok::objc_protocol: |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 2845 | return ParsePostfixExpressionSuffix(ParseObjCProtocolExpression(AtLoc)); |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 2846 | case tok::objc_selector: |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 2847 | return ParsePostfixExpressionSuffix(ParseObjCSelectorExpression(AtLoc)); |
| Erik Pilkington | 29099de | 2016-07-16 00:35:23 +0000 | [diff] [blame] | 2848 | case tok::objc_available: |
| 2849 | return ParseAvailabilityCheckExpr(AtLoc); |
| Fariborz Jahanian | 05d0d44 | 2012-07-09 20:00:35 +0000 | [diff] [blame] | 2850 | default: { |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2851 | const char *str = nullptr; |
| Alex Lorenz | a589abc | 2016-12-01 12:14:38 +0000 | [diff] [blame] | 2852 | // Only provide the @try/@finally/@autoreleasepool fixit when we're sure |
| 2853 | // that this is a proper statement where such directives could actually |
| 2854 | // occur. |
| 2855 | if (GetLookAheadToken(1).is(tok::l_brace) && |
| 2856 | ExprStatementTokLoc == AtLoc) { |
| Fariborz Jahanian | 05d0d44 | 2012-07-09 20:00:35 +0000 | [diff] [blame] | 2857 | char ch = Tok.getIdentifierInfo()->getNameStart()[0]; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2858 | str = |
| 2859 | ch == 't' ? "try" |
| 2860 | : (ch == 'f' ? "finally" |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 2861 | : (ch == 'a' ? "autoreleasepool" : nullptr)); |
| Fariborz Jahanian | 05d0d44 | 2012-07-09 20:00:35 +0000 | [diff] [blame] | 2862 | } |
| 2863 | if (str) { |
| 2864 | SourceLocation kwLoc = Tok.getLocation(); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2865 | return ExprError(Diag(AtLoc, diag::err_unexpected_at) << |
| Fariborz Jahanian | 05d0d44 | 2012-07-09 20:00:35 +0000 | [diff] [blame] | 2866 | FixItHint::CreateReplacement(kwLoc, str)); |
| 2867 | } |
| 2868 | else |
| 2869 | return ExprError(Diag(AtLoc, diag::err_unexpected_at)); |
| 2870 | } |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 2871 | } |
| Anders Carlsson | 76f4a90 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 2872 | } |
| Anders Carlsson | 76f4a90 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 2873 | } |
| 2874 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2875 | /// Parse the receiver of an Objective-C++ message send. |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2876 | /// |
| 2877 | /// This routine parses the receiver of a message send in |
| 2878 | /// Objective-C++ either as a type or as an expression. Note that this |
| 2879 | /// routine must not be called to parse a send to 'super', since it |
| 2880 | /// has no way to return such a result. |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2881 | /// |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2882 | /// \param IsExpr Whether the receiver was parsed as an expression. |
| 2883 | /// |
| 2884 | /// \param TypeOrExpr If the receiver was parsed as an expression (\c |
| 2885 | /// IsExpr is true), the parsed expression. If the receiver was parsed |
| 2886 | /// as a type (\c IsExpr is false), the parsed type. |
| 2887 | /// |
| 2888 | /// \returns True if an error occurred during parsing or semantic |
| 2889 | /// analysis, in which case the arguments do not have valid |
| 2890 | /// values. Otherwise, returns false for a successful parse. |
| 2891 | /// |
| 2892 | /// objc-receiver: [C++] |
| 2893 | /// 'super' [not parsed here] |
| 2894 | /// expression |
| 2895 | /// simple-type-specifier |
| 2896 | /// typename-specifier |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2897 | bool Parser::ParseObjCXXMessageReceiver(bool &IsExpr, void *&TypeOrExpr) { |
| Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 2898 | InMessageExpressionRAIIObject InMessage(*this, true); |
| 2899 | |
| Daniel Marjamaki | e59f8d7 | 2015-06-18 10:59:26 +0000 | [diff] [blame] | 2900 | if (Tok.isOneOf(tok::identifier, tok::coloncolon, tok::kw_typename, |
| 2901 | tok::annot_cxxscope)) |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2902 | TryAnnotateTypeOrScopeToken(); |
| 2903 | |
| Kaelyn Uhrain | 237c7d3 | 2012-06-15 23:45:51 +0000 | [diff] [blame] | 2904 | if (!Actions.isSimpleTypeSpecifier(Tok.getKind())) { |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2905 | // objc-receiver: |
| 2906 | // expression |
| Kaelyn Takata | b16e632 | 2014-11-20 22:06:40 +0000 | [diff] [blame] | 2907 | // Make sure any typos in the receiver are corrected or diagnosed, so that |
| 2908 | // proper recovery can happen. FIXME: Perhaps filter the corrected expr to |
| 2909 | // only the things that are valid ObjC receivers? |
| 2910 | ExprResult Receiver = Actions.CorrectDelayedTyposInExpr(ParseExpression()); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2911 | if (Receiver.isInvalid()) |
| 2912 | return true; |
| 2913 | |
| 2914 | IsExpr = true; |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2915 | TypeOrExpr = Receiver.get(); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2916 | return false; |
| 2917 | } |
| 2918 | |
| 2919 | // objc-receiver: |
| 2920 | // typename-specifier |
| 2921 | // simple-type-specifier |
| 2922 | // expression (that starts with one of the above) |
| John McCall | 084e83d | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 2923 | DeclSpec DS(AttrFactory); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2924 | ParseCXXSimpleTypeSpecifier(DS); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2925 | |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2926 | if (Tok.is(tok::l_paren)) { |
| 2927 | // If we see an opening parentheses at this point, we are |
| 2928 | // actually parsing an expression that starts with a |
| 2929 | // function-style cast, e.g., |
| 2930 | // |
| 2931 | // postfix-expression: |
| 2932 | // simple-type-specifier ( expression-list [opt] ) |
| 2933 | // typename-specifier ( expression-list [opt] ) |
| 2934 | // |
| 2935 | // Parse the remainder of this case, then the (optional) |
| 2936 | // postfix-expression suffix, followed by the (optional) |
| 2937 | // right-hand side of the binary expression. We have an |
| 2938 | // instance method. |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2939 | ExprResult Receiver = ParseCXXTypeConstructExpression(DS); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2940 | if (!Receiver.isInvalid()) |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2941 | Receiver = ParsePostfixExpressionSuffix(Receiver.get()); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2942 | if (!Receiver.isInvalid()) |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2943 | Receiver = ParseRHSOfBinaryExpression(Receiver.get(), prec::Comma); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2944 | if (Receiver.isInvalid()) |
| 2945 | return true; |
| 2946 | |
| 2947 | IsExpr = true; |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2948 | TypeOrExpr = Receiver.get(); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2949 | return false; |
| 2950 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2951 | |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2952 | // We have a class message. Turn the simple-type-specifier or |
| 2953 | // typename-specifier we parsed into a type and parse the |
| 2954 | // remainder of the class message. |
| Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 2955 | Declarator DeclaratorInfo(DS, DeclaratorContext::TypeNameContext); |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2956 | TypeResult Type = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2957 | if (Type.isInvalid()) |
| 2958 | return true; |
| 2959 | |
| 2960 | IsExpr = false; |
| John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2961 | TypeOrExpr = Type.get().getAsOpaquePtr(); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 2962 | return false; |
| 2963 | } |
| 2964 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2965 | /// Determine whether the parser is currently referring to a an |
| Douglas Gregor | 990ccac | 2010-05-31 14:40:22 +0000 | [diff] [blame] | 2966 | /// Objective-C message send, using a simplified heuristic to avoid overhead. |
| 2967 | /// |
| 2968 | /// This routine will only return true for a subset of valid message-send |
| 2969 | /// expressions. |
| 2970 | bool Parser::isSimpleObjCMessageExpression() { |
| Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 2971 | assert(Tok.is(tok::l_square) && getLangOpts().ObjC && |
| Douglas Gregor | 990ccac | 2010-05-31 14:40:22 +0000 | [diff] [blame] | 2972 | "Incorrect start for isSimpleObjCMessageExpression"); |
| Douglas Gregor | 990ccac | 2010-05-31 14:40:22 +0000 | [diff] [blame] | 2973 | return GetLookAheadToken(1).is(tok::identifier) && |
| 2974 | GetLookAheadToken(2).is(tok::identifier); |
| 2975 | } |
| 2976 | |
| Douglas Gregor | abf4a3e | 2010-09-16 01:51:54 +0000 | [diff] [blame] | 2977 | bool Parser::isStartOfObjCClassMessageMissingOpenBracket() { |
| Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 2978 | if (!getLangOpts().ObjC || !NextToken().is(tok::identifier) || |
| Douglas Gregor | abf4a3e | 2010-09-16 01:51:54 +0000 | [diff] [blame] | 2979 | InMessageExpression) |
| 2980 | return false; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2981 | |
| Douglas Gregor | abf4a3e | 2010-09-16 01:51:54 +0000 | [diff] [blame] | 2982 | ParsedType Type; |
| 2983 | |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2984 | if (Tok.is(tok::annot_typename)) |
| Douglas Gregor | abf4a3e | 2010-09-16 01:51:54 +0000 | [diff] [blame] | 2985 | Type = getTypeAnnotation(Tok); |
| 2986 | else if (Tok.is(tok::identifier)) |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2987 | Type = Actions.getTypeName(*Tok.getIdentifierInfo(), Tok.getLocation(), |
| Douglas Gregor | abf4a3e | 2010-09-16 01:51:54 +0000 | [diff] [blame] | 2988 | getCurScope()); |
| 2989 | else |
| 2990 | return false; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2991 | |
| Douglas Gregor | abf4a3e | 2010-09-16 01:51:54 +0000 | [diff] [blame] | 2992 | if (!Type.get().isNull() && Type.get()->isObjCObjectOrInterfaceType()) { |
| 2993 | const Token &AfterNext = GetLookAheadToken(2); |
| Daniel Marjamaki | e59f8d7 | 2015-06-18 10:59:26 +0000 | [diff] [blame] | 2994 | if (AfterNext.isOneOf(tok::colon, tok::r_square)) { |
| Douglas Gregor | abf4a3e | 2010-09-16 01:51:54 +0000 | [diff] [blame] | 2995 | if (Tok.is(tok::identifier)) |
| 2996 | TryAnnotateTypeOrScopeToken(); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2997 | |
| Douglas Gregor | abf4a3e | 2010-09-16 01:51:54 +0000 | [diff] [blame] | 2998 | return Tok.is(tok::annot_typename); |
| 2999 | } |
| 3000 | } |
| 3001 | |
| 3002 | return false; |
| 3003 | } |
| 3004 | |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3005 | /// objc-message-expr: |
| Fariborz Jahanian | 7db004d | 2007-09-05 19:52:07 +0000 | [diff] [blame] | 3006 | /// '[' objc-receiver objc-message-args ']' |
| 3007 | /// |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3008 | /// objc-receiver: [C] |
| Chris Lattner | a36ec42 | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 3009 | /// 'super' |
| Fariborz Jahanian | 7db004d | 2007-09-05 19:52:07 +0000 | [diff] [blame] | 3010 | /// expression |
| 3011 | /// class-name |
| 3012 | /// type-name |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 3013 | /// |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3014 | ExprResult Parser::ParseObjCMessageExpression() { |
| Chris Lattner | 8f69706 | 2008-01-25 18:59:06 +0000 | [diff] [blame] | 3015 | assert(Tok.is(tok::l_square) && "'[' expected"); |
| 3016 | SourceLocation LBracLoc = ConsumeBracket(); // consume '[' |
| 3017 | |
| Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 3018 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 3019 | Actions.CodeCompleteObjCMessageReceiver(getCurScope()); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 3020 | cutOffParsing(); |
| Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 3021 | return ExprError(); |
| 3022 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3023 | |
| Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 3024 | InMessageExpressionRAIIObject InMessage(*this, true); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3025 | |
| David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3026 | if (getLangOpts().CPlusPlus) { |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 3027 | // We completely separate the C and C++ cases because C++ requires |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3028 | // more complicated (read: slower) parsing. |
| 3029 | |
| 3030 | // Handle send to super. |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 3031 | // FIXME: This doesn't benefit from the same typo-correction we |
| 3032 | // get in Objective-C. |
| 3033 | if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super && |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 3034 | NextToken().isNot(tok::period) && getCurScope()->isInObjcMethodScope()) |
| David Blaikie | efdccaa | 2016-01-15 23:43:34 +0000 | [diff] [blame] | 3035 | return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(), nullptr, |
| 3036 | nullptr); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 3037 | |
| 3038 | // Parse the receiver, which is either a type or an expression. |
| 3039 | bool IsExpr; |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 3040 | void *TypeOrExpr = nullptr; |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 3041 | if (ParseObjCXXMessageReceiver(IsExpr, TypeOrExpr)) { |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3042 | SkipUntil(tok::r_square, StopAtSemi); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 3043 | return ExprError(); |
| 3044 | } |
| 3045 | |
| 3046 | if (IsExpr) |
| David Blaikie | efdccaa | 2016-01-15 23:43:34 +0000 | [diff] [blame] | 3047 | return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(), nullptr, |
| 3048 | static_cast<Expr *>(TypeOrExpr)); |
| Douglas Gregor | 8d4de67 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 3049 | |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3050 | return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(), |
| John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 3051 | ParsedType::getFromOpaquePtr(TypeOrExpr), |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 3052 | nullptr); |
| Chris Lattner | 47054fb | 2010-05-31 18:18:22 +0000 | [diff] [blame] | 3053 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3054 | |
| Chris Lattner | 47054fb | 2010-05-31 18:18:22 +0000 | [diff] [blame] | 3055 | if (Tok.is(tok::identifier)) { |
| Douglas Gregor | a148a1d | 2010-04-14 02:22:16 +0000 | [diff] [blame] | 3056 | IdentifierInfo *Name = Tok.getIdentifierInfo(); |
| 3057 | SourceLocation NameLoc = Tok.getLocation(); |
| John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 3058 | ParsedType ReceiverType; |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 3059 | switch (Actions.getObjCMessageKind(getCurScope(), Name, NameLoc, |
| Douglas Gregor | a148a1d | 2010-04-14 02:22:16 +0000 | [diff] [blame] | 3060 | Name == Ident_super, |
| Douglas Gregor | e5798dc | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 3061 | NextToken().is(tok::period), |
| 3062 | ReceiverType)) { |
| John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3063 | case Sema::ObjCSuperMessage: |
| David Blaikie | efdccaa | 2016-01-15 23:43:34 +0000 | [diff] [blame] | 3064 | return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(), nullptr, |
| 3065 | nullptr); |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3066 | |
| John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3067 | case Sema::ObjCClassMessage: |
| Douglas Gregor | e5798dc | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 3068 | if (!ReceiverType) { |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3069 | SkipUntil(tok::r_square, StopAtSemi); |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3070 | return ExprError(); |
| 3071 | } |
| 3072 | |
| Douglas Gregor | e5798dc | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 3073 | ConsumeToken(); // the type name |
| 3074 | |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 3075 | // Parse type arguments and protocol qualifiers. |
| 3076 | if (Tok.is(tok::less)) { |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 3077 | SourceLocation NewEndLoc; |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 3078 | TypeResult NewReceiverType |
| Douglas Gregor | 9bda6cf | 2015-07-07 03:58:14 +0000 | [diff] [blame] | 3079 | = parseObjCTypeArgsAndProtocolQualifiers(NameLoc, ReceiverType, |
| 3080 | /*consumeLastToken=*/true, |
| 3081 | NewEndLoc); |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 3082 | if (!NewReceiverType.isUsable()) { |
| 3083 | SkipUntil(tok::r_square, StopAtSemi); |
| 3084 | return ExprError(); |
| 3085 | } |
| 3086 | |
| 3087 | ReceiverType = NewReceiverType.get(); |
| 3088 | } |
| 3089 | |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3090 | return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(), |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 3091 | ReceiverType, nullptr); |
| 3092 | |
| John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3093 | case Sema::ObjCInstanceMessage: |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3094 | // Fall through to parse an expression. |
| Douglas Gregor | a148a1d | 2010-04-14 02:22:16 +0000 | [diff] [blame] | 3095 | break; |
| Fariborz Jahanian | fc58ca4 | 2009-04-08 19:50:10 +0000 | [diff] [blame] | 3096 | } |
| Chris Lattner | 8f69706 | 2008-01-25 18:59:06 +0000 | [diff] [blame] | 3097 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3098 | |
| Chris Lattner | a36ec42 | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 3099 | // Otherwise, an arbitrary expression can be the receiver of a send. |
| Kaelyn Takata | 1586782 | 2014-11-21 18:48:04 +0000 | [diff] [blame] | 3100 | ExprResult Res = Actions.CorrectDelayedTyposInExpr(ParseExpression()); |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 3101 | if (Res.isInvalid()) { |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3102 | SkipUntil(tok::r_square, StopAtSemi); |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3103 | return Res; |
| Chris Lattner | 8f69706 | 2008-01-25 18:59:06 +0000 | [diff] [blame] | 3104 | } |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3105 | |
| David Blaikie | efdccaa | 2016-01-15 23:43:34 +0000 | [diff] [blame] | 3106 | return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(), nullptr, |
| 3107 | Res.get()); |
| Chris Lattner | 8f69706 | 2008-01-25 18:59:06 +0000 | [diff] [blame] | 3108 | } |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3109 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 3110 | /// Parse the remainder of an Objective-C message following the |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3111 | /// '[' objc-receiver. |
| 3112 | /// |
| 3113 | /// This routine handles sends to super, class messages (sent to a |
| 3114 | /// class name), and instance messages (sent to an object), and the |
| 3115 | /// target is represented by \p SuperLoc, \p ReceiverType, or \p |
| 3116 | /// ReceiverExpr, respectively. Only one of these parameters may have |
| 3117 | /// a valid value. |
| 3118 | /// |
| 3119 | /// \param LBracLoc The location of the opening '['. |
| 3120 | /// |
| 3121 | /// \param SuperLoc If this is a send to 'super', the location of the |
| 3122 | /// 'super' keyword that indicates a send to the superclass. |
| 3123 | /// |
| 3124 | /// \param ReceiverType If this is a class message, the type of the |
| 3125 | /// class we are sending a message to. |
| 3126 | /// |
| 3127 | /// \param ReceiverExpr If this is an instance message, the expression |
| 3128 | /// used to compute the receiver object. |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3129 | /// |
| Fariborz Jahanian | 7db004d | 2007-09-05 19:52:07 +0000 | [diff] [blame] | 3130 | /// objc-message-args: |
| 3131 | /// objc-selector |
| 3132 | /// objc-keywordarg-list |
| 3133 | /// |
| 3134 | /// objc-keywordarg-list: |
| 3135 | /// objc-keywordarg |
| 3136 | /// objc-keywordarg-list objc-keywordarg |
| 3137 | /// |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3138 | /// objc-keywordarg: |
| Fariborz Jahanian | 7db004d | 2007-09-05 19:52:07 +0000 | [diff] [blame] | 3139 | /// selector-name[opt] ':' objc-keywordexpr |
| 3140 | /// |
| 3141 | /// objc-keywordexpr: |
| 3142 | /// nonempty-expr-list |
| 3143 | /// |
| 3144 | /// nonempty-expr-list: |
| 3145 | /// assignment-expression |
| 3146 | /// nonempty-expr-list , assignment-expression |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3147 | /// |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3148 | ExprResult |
| Chris Lattner | 8f69706 | 2008-01-25 18:59:06 +0000 | [diff] [blame] | 3149 | Parser::ParseObjCMessageExpressionBody(SourceLocation LBracLoc, |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3150 | SourceLocation SuperLoc, |
| John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 3151 | ParsedType ReceiverType, |
| Craig Topper | a2c5153 | 2014-10-30 05:30:05 +0000 | [diff] [blame] | 3152 | Expr *ReceiverExpr) { |
| Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 3153 | InMessageExpressionRAIIObject InMessage(*this, true); |
| 3154 | |
| Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 3155 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3156 | if (SuperLoc.isValid()) |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 3157 | Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, None, |
| Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 3158 | false); |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3159 | else if (ReceiverType) |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 3160 | Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, None, |
| Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 3161 | false); |
| Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 3162 | else |
| John McCall | b268a28 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3163 | Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr, |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 3164 | None, false); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 3165 | cutOffParsing(); |
| 3166 | return ExprError(); |
| Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 3167 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3168 | |
| Fariborz Jahanian | bd25f7d | 2007-09-05 23:08:20 +0000 | [diff] [blame] | 3169 | // Parse objc-selector |
| Fariborz Jahanian | 70e8f10 | 2007-10-11 00:55:41 +0000 | [diff] [blame] | 3170 | SourceLocation Loc; |
| Chris Lattner | 4f472a3 | 2009-04-11 18:13:45 +0000 | [diff] [blame] | 3171 | IdentifierInfo *selIdent = ParseObjCSelectorPiece(Loc); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3172 | |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3173 | SmallVector<IdentifierInfo *, 12> KeyIdents; |
| Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 3174 | SmallVector<SourceLocation, 12> KeyLocs; |
| Benjamin Kramer | f062343 | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 3175 | ExprVector KeyExprs; |
| Steve Naroff | f73590d | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 3176 | |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 3177 | if (Tok.is(tok::colon)) { |
| Fariborz Jahanian | bd25f7d | 2007-09-05 23:08:20 +0000 | [diff] [blame] | 3178 | while (1) { |
| 3179 | // Each iteration parses a single keyword argument. |
| Steve Naroff | f73590d | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 3180 | KeyIdents.push_back(selIdent); |
| Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 3181 | KeyLocs.push_back(Loc); |
| Steve Naroff | 486760a | 2007-09-17 20:25:27 +0000 | [diff] [blame] | 3182 | |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 3183 | if (ExpectAndConsume(tok::colon)) { |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 3184 | // We must manually skip to a ']', otherwise the expression skipper will |
| 3185 | // stop at the ']' when it skips to the ';'. We want it to skip beyond |
| 3186 | // the enclosing expression. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3187 | SkipUntil(tok::r_square, StopAtSemi); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3188 | return ExprError(); |
| Fariborz Jahanian | bd25f7d | 2007-09-05 23:08:20 +0000 | [diff] [blame] | 3189 | } |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3190 | |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3191 | /// Parse the expression after ':' |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3192 | |
| Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 3193 | if (Tok.is(tok::code_completion)) { |
| 3194 | if (SuperLoc.isValid()) |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3195 | Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 3196 | KeyIdents, |
| Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame^] | 3197 | /*AtArgumentExpression=*/true); |
| Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 3198 | else if (ReceiverType) |
| 3199 | Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 3200 | KeyIdents, |
| Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame^] | 3201 | /*AtArgumentExpression=*/true); |
| Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 3202 | else |
| 3203 | Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr, |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 3204 | KeyIdents, |
| Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame^] | 3205 | /*AtArgumentExpression=*/true); |
| Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 3206 | |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 3207 | cutOffParsing(); |
| Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 3208 | return ExprError(); |
| 3209 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3210 | |
| Fariborz Jahanian | d5d6f3d | 2013-04-18 23:43:21 +0000 | [diff] [blame] | 3211 | ExprResult Expr; |
| 3212 | if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) { |
| 3213 | Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists); |
| 3214 | Expr = ParseBraceInitializer(); |
| 3215 | } else |
| 3216 | Expr = ParseAssignmentExpression(); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3217 | |
| Fariborz Jahanian | d5d6f3d | 2013-04-18 23:43:21 +0000 | [diff] [blame] | 3218 | ExprResult Res(Expr); |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 3219 | if (Res.isInvalid()) { |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 3220 | // We must manually skip to a ']', otherwise the expression skipper will |
| 3221 | // stop at the ']' when it skips to the ';'. We want it to skip beyond |
| 3222 | // the enclosing expression. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3223 | SkipUntil(tok::r_square, StopAtSemi); |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3224 | return Res; |
| Steve Naroff | 486760a | 2007-09-17 20:25:27 +0000 | [diff] [blame] | 3225 | } |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3226 | |
| Steve Naroff | 486760a | 2007-09-17 20:25:27 +0000 | [diff] [blame] | 3227 | // We have a valid expression. |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3228 | KeyExprs.push_back(Res.get()); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3229 | |
| Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3230 | // Code completion after each argument. |
| 3231 | if (Tok.is(tok::code_completion)) { |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3232 | if (SuperLoc.isValid()) |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3233 | Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 3234 | KeyIdents, |
| Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame^] | 3235 | /*AtArgumentExpression=*/false); |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3236 | else if (ReceiverType) |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 3237 | Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 3238 | KeyIdents, |
| Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame^] | 3239 | /*AtArgumentExpression=*/false); |
| Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3240 | else |
| John McCall | b268a28 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3241 | Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr, |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 3242 | KeyIdents, |
| Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame^] | 3243 | /*AtArgumentExpression=*/false); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 3244 | cutOffParsing(); |
| Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 3245 | return ExprError(); |
| Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3246 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3247 | |
| Steve Naroff | 486760a | 2007-09-17 20:25:27 +0000 | [diff] [blame] | 3248 | // Check for another keyword selector. |
| Chris Lattner | 4f472a3 | 2009-04-11 18:13:45 +0000 | [diff] [blame] | 3249 | selIdent = ParseObjCSelectorPiece(Loc); |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 3250 | if (!selIdent && Tok.isNot(tok::colon)) |
| Fariborz Jahanian | bd25f7d | 2007-09-05 23:08:20 +0000 | [diff] [blame] | 3251 | break; |
| 3252 | // We have a selector or a colon, continue parsing. |
| 3253 | } |
| 3254 | // Parse the, optional, argument list, comma separated. |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 3255 | while (Tok.is(tok::comma)) { |
| Fariborz Jahanian | 945b2f4 | 2012-05-21 22:43:44 +0000 | [diff] [blame] | 3256 | SourceLocation commaLoc = ConsumeToken(); // Eat the ','. |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3257 | /// Parse the expression after ',' |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3258 | ExprResult Res(ParseAssignmentExpression()); |
| Kaelyn Takata | 1586782 | 2014-11-21 18:48:04 +0000 | [diff] [blame] | 3259 | if (Tok.is(tok::colon)) |
| 3260 | Res = Actions.CorrectDelayedTyposInExpr(Res); |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 3261 | if (Res.isInvalid()) { |
| Fariborz Jahanian | 945b2f4 | 2012-05-21 22:43:44 +0000 | [diff] [blame] | 3262 | if (Tok.is(tok::colon)) { |
| 3263 | Diag(commaLoc, diag::note_extra_comma_message_arg) << |
| 3264 | FixItHint::CreateRemoval(commaLoc); |
| 3265 | } |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 3266 | // We must manually skip to a ']', otherwise the expression skipper will |
| 3267 | // stop at the ']' when it skips to the ';'. We want it to skip beyond |
| 3268 | // the enclosing expression. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3269 | SkipUntil(tok::r_square, StopAtSemi); |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3270 | return Res; |
| Steve Naroff | e3ffc2f | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 3271 | } |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 3272 | |
| Steve Naroff | e3ffc2f | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 3273 | // We have a valid expression. |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3274 | KeyExprs.push_back(Res.get()); |
| Fariborz Jahanian | bd25f7d | 2007-09-05 23:08:20 +0000 | [diff] [blame] | 3275 | } |
| 3276 | } else if (!selIdent) { |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 3277 | Diag(Tok, diag::err_expected) << tok::identifier; // missing selector name. |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3278 | |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 3279 | // We must manually skip to a ']', otherwise the expression skipper will |
| 3280 | // stop at the ']' when it skips to the ';'. We want it to skip beyond |
| 3281 | // the enclosing expression. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3282 | SkipUntil(tok::r_square, StopAtSemi); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3283 | return ExprError(); |
| Fariborz Jahanian | bd25f7d | 2007-09-05 23:08:20 +0000 | [diff] [blame] | 3284 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3285 | |
| Chris Lattner | 0ef1352 | 2007-10-09 17:51:17 +0000 | [diff] [blame] | 3286 | if (Tok.isNot(tok::r_square)) { |
| Alp Toker | 35d8703 | 2013-12-30 23:29:50 +0000 | [diff] [blame] | 3287 | Diag(Tok, diag::err_expected) |
| 3288 | << (Tok.is(tok::identifier) ? tok::colon : tok::r_square); |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 3289 | // We must manually skip to a ']', otherwise the expression skipper will |
| 3290 | // stop at the ']' when it skips to the ';'. We want it to skip beyond |
| 3291 | // the enclosing expression. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3292 | SkipUntil(tok::r_square, StopAtSemi); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3293 | return ExprError(); |
| Fariborz Jahanian | bd25f7d | 2007-09-05 23:08:20 +0000 | [diff] [blame] | 3294 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3295 | |
| Chris Lattner | 8f69706 | 2008-01-25 18:59:06 +0000 | [diff] [blame] | 3296 | SourceLocation RBracLoc = ConsumeBracket(); // consume ']' |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3297 | |
| Steve Naroff | e61bfa8 | 2007-10-05 18:42:47 +0000 | [diff] [blame] | 3298 | unsigned nKeys = KeyIdents.size(); |
| Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 3299 | if (nKeys == 0) { |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 3300 | KeyIdents.push_back(selIdent); |
| Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 3301 | KeyLocs.push_back(Loc); |
| 3302 | } |
| Chris Lattner | 5700fab | 2007-10-07 02:00:24 +0000 | [diff] [blame] | 3303 | Selector Sel = PP.getSelectorTable().getSelector(nKeys, &KeyIdents[0]); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3304 | |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3305 | if (SuperLoc.isValid()) |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 3306 | return Actions.ActOnSuperMessage(getCurScope(), SuperLoc, Sel, |
| Benjamin Kramer | f062343 | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 3307 | LBracLoc, KeyLocs, RBracLoc, KeyExprs); |
| Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 3308 | else if (ReceiverType) |
| Douglas Gregor | 0be31a2 | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 3309 | return Actions.ActOnClassMessage(getCurScope(), ReceiverType, Sel, |
| Benjamin Kramer | f062343 | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 3310 | LBracLoc, KeyLocs, RBracLoc, KeyExprs); |
| John McCall | b268a28 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3311 | return Actions.ActOnInstanceMessage(getCurScope(), ReceiverExpr, Sel, |
| Benjamin Kramer | f062343 | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 3312 | LBracLoc, KeyLocs, RBracLoc, KeyExprs); |
| Fariborz Jahanian | 7db004d | 2007-09-05 19:52:07 +0000 | [diff] [blame] | 3313 | } |
| 3314 | |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3315 | ExprResult Parser::ParseObjCStringLiteral(SourceLocation AtLoc) { |
| 3316 | ExprResult Res(ParseStringLiteralExpression()); |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3317 | if (Res.isInvalid()) return Res; |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3318 | |
| Chris Lattner | e002fbe | 2007-12-12 01:04:12 +0000 | [diff] [blame] | 3319 | // @"foo" @"bar" is a valid concatenated string. Eat any subsequent string |
| 3320 | // expressions. At this point, we know that the only valid thing that starts |
| 3321 | // with '@' is an @"". |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3322 | SmallVector<SourceLocation, 4> AtLocs; |
| Benjamin Kramer | f062343 | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 3323 | ExprVector AtStrings; |
| Chris Lattner | e002fbe | 2007-12-12 01:04:12 +0000 | [diff] [blame] | 3324 | AtLocs.push_back(AtLoc); |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3325 | AtStrings.push_back(Res.get()); |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 3326 | |
| Chris Lattner | e002fbe | 2007-12-12 01:04:12 +0000 | [diff] [blame] | 3327 | while (Tok.is(tok::at)) { |
| 3328 | AtLocs.push_back(ConsumeToken()); // eat the @. |
| Anders Carlsson | 76f4a90 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 3329 | |
| Sebastian Redl | c13f268 | 2008-12-09 20:22:58 +0000 | [diff] [blame] | 3330 | // Invalid unless there is a string literal. |
| Chris Lattner | d3b5d5d | 2009-02-18 05:56:09 +0000 | [diff] [blame] | 3331 | if (!isTokenStringLiteral()) |
| 3332 | return ExprError(Diag(Tok, diag::err_objc_concat_string)); |
| Chris Lattner | e002fbe | 2007-12-12 01:04:12 +0000 | [diff] [blame] | 3333 | |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3334 | ExprResult Lit(ParseStringLiteralExpression()); |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 3335 | if (Lit.isInvalid()) |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3336 | return Lit; |
| Sebastian Redl | 17f2c7d | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 3337 | |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3338 | AtStrings.push_back(Lit.get()); |
| Chris Lattner | e002fbe | 2007-12-12 01:04:12 +0000 | [diff] [blame] | 3339 | } |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3340 | |
| Craig Topper | 883dd33 | 2015-12-24 23:58:11 +0000 | [diff] [blame] | 3341 | return Actions.ParseObjCStringLiteral(AtLocs.data(), AtStrings); |
| Anders Carlsson | 76f4a90 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 3342 | } |
| Anders Carlsson | c5a81eb | 2007-08-22 15:14:15 +0000 | [diff] [blame] | 3343 | |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3344 | /// ParseObjCBooleanLiteral - |
| 3345 | /// objc-scalar-literal : '@' boolean-keyword |
| 3346 | /// ; |
| 3347 | /// boolean-keyword: 'true' | 'false' | '__objc_yes' | '__objc_no' |
| 3348 | /// ; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3349 | ExprResult Parser::ParseObjCBooleanLiteral(SourceLocation AtLoc, |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3350 | bool ArgValue) { |
| 3351 | SourceLocation EndLoc = ConsumeToken(); // consume the keyword. |
| 3352 | return Actions.ActOnObjCBoolLiteral(AtLoc, EndLoc, ArgValue); |
| 3353 | } |
| 3354 | |
| 3355 | /// ParseObjCCharacterLiteral - |
| 3356 | /// objc-scalar-literal : '@' character-literal |
| 3357 | /// ; |
| 3358 | ExprResult Parser::ParseObjCCharacterLiteral(SourceLocation AtLoc) { |
| 3359 | ExprResult Lit(Actions.ActOnCharacterConstant(Tok)); |
| 3360 | if (Lit.isInvalid()) { |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3361 | return Lit; |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3362 | } |
| Benjamin Kramer | e6a4aff | 2012-03-07 00:14:40 +0000 | [diff] [blame] | 3363 | ConsumeToken(); // Consume the literal token. |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3364 | return Actions.BuildObjCNumericLiteral(AtLoc, Lit.get()); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3365 | } |
| 3366 | |
| 3367 | /// ParseObjCNumericLiteral - |
| 3368 | /// objc-scalar-literal : '@' scalar-literal |
| 3369 | /// ; |
| 3370 | /// scalar-literal : | numeric-constant /* any numeric constant. */ |
| 3371 | /// ; |
| 3372 | ExprResult Parser::ParseObjCNumericLiteral(SourceLocation AtLoc) { |
| 3373 | ExprResult Lit(Actions.ActOnNumericConstant(Tok)); |
| 3374 | if (Lit.isInvalid()) { |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3375 | return Lit; |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3376 | } |
| Benjamin Kramer | e6a4aff | 2012-03-07 00:14:40 +0000 | [diff] [blame] | 3377 | ConsumeToken(); // Consume the literal token. |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3378 | return Actions.BuildObjCNumericLiteral(AtLoc, Lit.get()); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3379 | } |
| 3380 | |
| Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 3381 | /// ParseObjCBoxedExpr - |
| 3382 | /// objc-box-expression: |
| 3383 | /// @( assignment-expression ) |
| 3384 | ExprResult |
| 3385 | Parser::ParseObjCBoxedExpr(SourceLocation AtLoc) { |
| 3386 | if (Tok.isNot(tok::l_paren)) |
| 3387 | return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@"); |
| 3388 | |
| 3389 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 3390 | T.consumeOpen(); |
| 3391 | ExprResult ValueExpr(ParseAssignmentExpression()); |
| 3392 | if (T.consumeClose()) |
| 3393 | return ExprError(); |
| Argyrios Kyrtzidis | 9b4fe35 | 2012-05-10 20:02:36 +0000 | [diff] [blame] | 3394 | |
| 3395 | if (ValueExpr.isInvalid()) |
| 3396 | return ExprError(); |
| 3397 | |
| Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 3398 | // Wrap the sub-expression in a parenthesized expression, to distinguish |
| 3399 | // a boxed expression from a literal. |
| 3400 | SourceLocation LPLoc = T.getOpenLocation(), RPLoc = T.getCloseLocation(); |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3401 | ValueExpr = Actions.ActOnParenExpr(LPLoc, RPLoc, ValueExpr.get()); |
| Nico Weber | a7c7e60 | 2012-12-31 00:28:03 +0000 | [diff] [blame] | 3402 | return Actions.BuildObjCBoxedExpr(SourceRange(AtLoc, RPLoc), |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3403 | ValueExpr.get()); |
| Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 3404 | } |
| 3405 | |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3406 | ExprResult Parser::ParseObjCArrayLiteral(SourceLocation AtLoc) { |
| Benjamin Kramer | f062343 | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 3407 | ExprVector ElementExprs; // array elements. |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3408 | ConsumeBracket(); // consume the l_square. |
| 3409 | |
| Bruno Cardoso Lopes | 1383ddc | 2016-07-19 20:21:18 +0000 | [diff] [blame] | 3410 | bool HasInvalidEltExpr = false; |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3411 | while (Tok.isNot(tok::r_square)) { |
| 3412 | // Parse list of array element expressions (all must be id types). |
| 3413 | ExprResult Res(ParseAssignmentExpression()); |
| 3414 | if (Res.isInvalid()) { |
| 3415 | // We must manually skip to a ']', otherwise the expression skipper will |
| 3416 | // stop at the ']' when it skips to the ';'. We want it to skip beyond |
| 3417 | // the enclosing expression. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3418 | SkipUntil(tok::r_square, StopAtSemi); |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3419 | return Res; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3420 | } |
| 3421 | |
| Bruno Cardoso Lopes | 1383ddc | 2016-07-19 20:21:18 +0000 | [diff] [blame] | 3422 | Res = Actions.CorrectDelayedTyposInExpr(Res.get()); |
| 3423 | if (Res.isInvalid()) |
| 3424 | HasInvalidEltExpr = true; |
| 3425 | |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3426 | // Parse the ellipsis that indicates a pack expansion. |
| 3427 | if (Tok.is(tok::ellipsis)) |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3428 | Res = Actions.ActOnPackExpansion(Res.get(), ConsumeToken()); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3429 | if (Res.isInvalid()) |
| Bruno Cardoso Lopes | 1383ddc | 2016-07-19 20:21:18 +0000 | [diff] [blame] | 3430 | HasInvalidEltExpr = true; |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3431 | |
| Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3432 | ElementExprs.push_back(Res.get()); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3433 | |
| 3434 | if (Tok.is(tok::comma)) |
| 3435 | ConsumeToken(); // Eat the ','. |
| 3436 | else if (Tok.isNot(tok::r_square)) |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 3437 | return ExprError(Diag(Tok, diag::err_expected_either) << tok::r_square |
| 3438 | << tok::comma); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3439 | } |
| 3440 | SourceLocation EndLoc = ConsumeBracket(); // location of ']' |
| Bruno Cardoso Lopes | 1383ddc | 2016-07-19 20:21:18 +0000 | [diff] [blame] | 3441 | |
| 3442 | if (HasInvalidEltExpr) |
| 3443 | return ExprError(); |
| 3444 | |
| Benjamin Kramer | f062343 | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 3445 | MultiExprArg Args(ElementExprs); |
| Nico Weber | a7c7e60 | 2012-12-31 00:28:03 +0000 | [diff] [blame] | 3446 | return Actions.BuildObjCArrayLiteral(SourceRange(AtLoc, EndLoc), Args); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3447 | } |
| 3448 | |
| 3449 | ExprResult Parser::ParseObjCDictionaryLiteral(SourceLocation AtLoc) { |
| 3450 | SmallVector<ObjCDictionaryElement, 4> Elements; // dictionary elements. |
| 3451 | ConsumeBrace(); // consume the l_square. |
| Bruno Cardoso Lopes | 1383ddc | 2016-07-19 20:21:18 +0000 | [diff] [blame] | 3452 | bool HasInvalidEltExpr = false; |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3453 | while (Tok.isNot(tok::r_brace)) { |
| 3454 | // Parse the comma separated key : value expressions. |
| 3455 | ExprResult KeyExpr; |
| 3456 | { |
| 3457 | ColonProtectionRAIIObject X(*this); |
| 3458 | KeyExpr = ParseAssignmentExpression(); |
| 3459 | if (KeyExpr.isInvalid()) { |
| 3460 | // We must manually skip to a '}', otherwise the expression skipper will |
| 3461 | // stop at the '}' when it skips to the ';'. We want it to skip beyond |
| 3462 | // the enclosing expression. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3463 | SkipUntil(tok::r_brace, StopAtSemi); |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3464 | return KeyExpr; |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3465 | } |
| 3466 | } |
| 3467 | |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 3468 | if (ExpectAndConsume(tok::colon)) { |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3469 | SkipUntil(tok::r_brace, StopAtSemi); |
| Fariborz Jahanian | 507a5f8 | 2013-04-18 19:37:43 +0000 | [diff] [blame] | 3470 | return ExprError(); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3471 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3472 | |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3473 | ExprResult ValueExpr(ParseAssignmentExpression()); |
| 3474 | if (ValueExpr.isInvalid()) { |
| 3475 | // We must manually skip to a '}', otherwise the expression skipper will |
| 3476 | // stop at the '}' when it skips to the ';'. We want it to skip beyond |
| 3477 | // the enclosing expression. |
| Alexey Bataev | ee6507d | 2013-11-18 08:17:37 +0000 | [diff] [blame] | 3478 | SkipUntil(tok::r_brace, StopAtSemi); |
| Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3479 | return ValueExpr; |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3480 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3481 | |
| Bruno Cardoso Lopes | 1383ddc | 2016-07-19 20:21:18 +0000 | [diff] [blame] | 3482 | // Check the key and value for possible typos |
| 3483 | KeyExpr = Actions.CorrectDelayedTyposInExpr(KeyExpr.get()); |
| 3484 | ValueExpr = Actions.CorrectDelayedTyposInExpr(ValueExpr.get()); |
| 3485 | if (KeyExpr.isInvalid() || ValueExpr.isInvalid()) |
| 3486 | HasInvalidEltExpr = true; |
| 3487 | |
| 3488 | // Parse the ellipsis that designates this as a pack expansion. Do not |
| 3489 | // ActOnPackExpansion here, leave it to template instantiation time where |
| 3490 | // we can get better diagnostics. |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3491 | SourceLocation EllipsisLoc; |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 3492 | if (getLangOpts().CPlusPlus) |
| 3493 | TryConsumeToken(tok::ellipsis, EllipsisLoc); |
| 3494 | |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3495 | // We have a valid expression. Collect it in a vector so we can |
| 3496 | // build the argument list. |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3497 | ObjCDictionaryElement Element = { |
| 3498 | KeyExpr.get(), ValueExpr.get(), EllipsisLoc, None |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3499 | }; |
| 3500 | Elements.push_back(Element); |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 3501 | |
| 3502 | if (!TryConsumeToken(tok::comma) && Tok.isNot(tok::r_brace)) |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 3503 | return ExprError(Diag(Tok, diag::err_expected_either) << tok::r_brace |
| 3504 | << tok::comma); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3505 | } |
| 3506 | SourceLocation EndLoc = ConsumeBrace(); |
| Bruno Cardoso Lopes | 1383ddc | 2016-07-19 20:21:18 +0000 | [diff] [blame] | 3507 | |
| 3508 | if (HasInvalidEltExpr) |
| 3509 | return ExprError(); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3510 | |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3511 | // Create the ObjCDictionaryLiteral. |
| Nico Weber | a7c7e60 | 2012-12-31 00:28:03 +0000 | [diff] [blame] | 3512 | return Actions.BuildObjCDictionaryLiteral(SourceRange(AtLoc, EndLoc), |
| Craig Topper | d4336e0 | 2015-12-24 23:58:15 +0000 | [diff] [blame] | 3513 | Elements); |
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3514 | } |
| 3515 | |
| Anders Carlsson | c5a81eb | 2007-08-22 15:14:15 +0000 | [diff] [blame] | 3516 | /// objc-encode-expression: |
| Dmitri Gribenko | 00bcdd3 | 2012-09-12 17:01:48 +0000 | [diff] [blame] | 3517 | /// \@encode ( type-name ) |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3518 | ExprResult |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3519 | Parser::ParseObjCEncodeExpression(SourceLocation AtLoc) { |
| Steve Naroff | 7c34817 | 2007-08-23 18:16:40 +0000 | [diff] [blame] | 3520 | assert(Tok.isObjCAtKeyword(tok::objc_encode) && "Not an @encode expression!"); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3521 | |
| Anders Carlsson | c5a81eb | 2007-08-22 15:14:15 +0000 | [diff] [blame] | 3522 | SourceLocation EncLoc = ConsumeToken(); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3523 | |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 3524 | if (Tok.isNot(tok::l_paren)) |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3525 | return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@encode"); |
| 3526 | |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 3527 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 3528 | T.consumeOpen(); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3529 | |
| Douglas Gregor | 220cac5 | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 3530 | TypeResult Ty = ParseTypeName(); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3531 | |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 3532 | T.consumeClose(); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3533 | |
| Douglas Gregor | 220cac5 | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 3534 | if (Ty.isInvalid()) |
| 3535 | return ExprError(); |
| 3536 | |
| Nico Weber | a7c7e60 | 2012-12-31 00:28:03 +0000 | [diff] [blame] | 3537 | return Actions.ParseObjCEncodeExpression(AtLoc, EncLoc, T.getOpenLocation(), |
| 3538 | Ty.get(), T.getCloseLocation()); |
| Anders Carlsson | c5a81eb | 2007-08-22 15:14:15 +0000 | [diff] [blame] | 3539 | } |
| Anders Carlsson | e01493d | 2007-08-23 15:25:28 +0000 | [diff] [blame] | 3540 | |
| 3541 | /// objc-protocol-expression |
| James Dennett | 1355bd1 | 2012-06-11 06:19:40 +0000 | [diff] [blame] | 3542 | /// \@protocol ( protocol-name ) |
| John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3543 | ExprResult |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3544 | Parser::ParseObjCProtocolExpression(SourceLocation AtLoc) { |
| Anders Carlsson | e01493d | 2007-08-23 15:25:28 +0000 | [diff] [blame] | 3545 | SourceLocation ProtoLoc = ConsumeToken(); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3546 | |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 3547 | if (Tok.isNot(tok::l_paren)) |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3548 | return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@protocol"); |
| 3549 | |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 3550 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 3551 | T.consumeOpen(); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3552 | |
| Alex Lorenz | f127821 | 2017-04-11 15:01:53 +0000 | [diff] [blame] | 3553 | if (expectIdentifier()) |
| 3554 | return ExprError(); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3555 | |
| Fariborz Jahanian | a32aaef | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 3556 | IdentifierInfo *protocolId = Tok.getIdentifierInfo(); |
| Argyrios Kyrtzidis | b7e4367 | 2012-05-16 00:50:02 +0000 | [diff] [blame] | 3557 | SourceLocation ProtoIdLoc = ConsumeToken(); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3558 | |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 3559 | T.consumeClose(); |
| Anders Carlsson | e01493d | 2007-08-23 15:25:28 +0000 | [diff] [blame] | 3560 | |
| Nico Weber | a7c7e60 | 2012-12-31 00:28:03 +0000 | [diff] [blame] | 3561 | return Actions.ParseObjCProtocolExpression(protocolId, AtLoc, ProtoLoc, |
| 3562 | T.getOpenLocation(), ProtoIdLoc, |
| 3563 | T.getCloseLocation()); |
| Anders Carlsson | e01493d | 2007-08-23 15:25:28 +0000 | [diff] [blame] | 3564 | } |
| Fariborz Jahanian | 76a9427 | 2007-10-15 23:39:13 +0000 | [diff] [blame] | 3565 | |
| 3566 | /// objc-selector-expression |
| Fariborz Jahanian | dacffc0 | 2014-06-24 17:02:19 +0000 | [diff] [blame] | 3567 | /// @selector '(' '('[opt] objc-keyword-selector ')'[opt] ')' |
| Fariborz Jahanian | 02447d8 | 2013-01-22 18:35:43 +0000 | [diff] [blame] | 3568 | ExprResult Parser::ParseObjCSelectorExpression(SourceLocation AtLoc) { |
| Fariborz Jahanian | 76a9427 | 2007-10-15 23:39:13 +0000 | [diff] [blame] | 3569 | SourceLocation SelectorLoc = ConsumeToken(); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3570 | |
| Chris Lattner | 197a301 | 2008-08-05 06:19:09 +0000 | [diff] [blame] | 3571 | if (Tok.isNot(tok::l_paren)) |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3572 | return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@selector"); |
| 3573 | |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3574 | SmallVector<IdentifierInfo *, 12> KeyIdents; |
| Fariborz Jahanian | 76a9427 | 2007-10-15 23:39:13 +0000 | [diff] [blame] | 3575 | SourceLocation sLoc; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3576 | |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 3577 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 3578 | T.consumeOpen(); |
| Fariborz Jahanian | dacffc0 | 2014-06-24 17:02:19 +0000 | [diff] [blame] | 3579 | bool HasOptionalParen = Tok.is(tok::l_paren); |
| 3580 | if (HasOptionalParen) |
| 3581 | ConsumeParen(); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3582 | |
| Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 3583 | if (Tok.is(tok::code_completion)) { |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 3584 | Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 3585 | cutOffParsing(); |
| Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 3586 | return ExprError(); |
| 3587 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3588 | |
| Chris Lattner | 4f472a3 | 2009-04-11 18:13:45 +0000 | [diff] [blame] | 3589 | IdentifierInfo *SelIdent = ParseObjCSelectorPiece(sLoc); |
| Chris Lattner | 1ba6445 | 2010-08-27 22:32:41 +0000 | [diff] [blame] | 3590 | if (!SelIdent && // missing selector name. |
| 3591 | Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon)) |
| Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 3592 | return ExprError(Diag(Tok, diag::err_expected) << tok::identifier); |
| Sebastian Redl | cb6e2c6 | 2008-12-13 15:32:12 +0000 | [diff] [blame] | 3593 | |
| Fariborz Jahanian | 4bef462 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 3594 | KeyIdents.push_back(SelIdent); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3595 | |
| Steve Naroff | 152dd81 | 2007-12-05 22:21:29 +0000 | [diff] [blame] | 3596 | unsigned nColons = 0; |
| 3597 | if (Tok.isNot(tok::r_paren)) { |
| Fariborz Jahanian | 76a9427 | 2007-10-15 23:39:13 +0000 | [diff] [blame] | 3598 | while (1) { |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 3599 | if (TryConsumeToken(tok::coloncolon)) { // Handle :: in C++. |
| Chris Lattner | 1ba6445 | 2010-08-27 22:32:41 +0000 | [diff] [blame] | 3600 | ++nColons; |
| Craig Topper | 161e4db | 2014-05-21 06:02:52 +0000 | [diff] [blame] | 3601 | KeyIdents.push_back(nullptr); |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 3602 | } else if (ExpectAndConsume(tok::colon)) // Otherwise expect ':'. |
| 3603 | return ExprError(); |
| Chris Lattner | 1ba6445 | 2010-08-27 22:32:41 +0000 | [diff] [blame] | 3604 | ++nColons; |
| Alp Toker | 383d2c4 | 2014-01-01 03:08:43 +0000 | [diff] [blame] | 3605 | |
| Fariborz Jahanian | 76a9427 | 2007-10-15 23:39:13 +0000 | [diff] [blame] | 3606 | if (Tok.is(tok::r_paren)) |
| 3607 | break; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3608 | |
| Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 3609 | if (Tok.is(tok::code_completion)) { |
| Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 3610 | Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents); |
| Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 3611 | cutOffParsing(); |
| Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 3612 | return ExprError(); |
| 3613 | } |
| 3614 | |
| Fariborz Jahanian | 76a9427 | 2007-10-15 23:39:13 +0000 | [diff] [blame] | 3615 | // Check for another keyword selector. |
| 3616 | SourceLocation Loc; |
| Chris Lattner | 4f472a3 | 2009-04-11 18:13:45 +0000 | [diff] [blame] | 3617 | SelIdent = ParseObjCSelectorPiece(Loc); |
| Fariborz Jahanian | 4bef462 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 3618 | KeyIdents.push_back(SelIdent); |
| Chris Lattner | 85222c6 | 2011-03-26 18:11:38 +0000 | [diff] [blame] | 3619 | if (!SelIdent && Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon)) |
| Fariborz Jahanian | 76a9427 | 2007-10-15 23:39:13 +0000 | [diff] [blame] | 3620 | break; |
| 3621 | } |
| Steve Naroff | 152dd81 | 2007-12-05 22:21:29 +0000 | [diff] [blame] | 3622 | } |
| Fariborz Jahanian | dacffc0 | 2014-06-24 17:02:19 +0000 | [diff] [blame] | 3623 | if (HasOptionalParen && Tok.is(tok::r_paren)) |
| 3624 | ConsumeParen(); // ')' |
| Douglas Gregor | e7a8e3b | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 3625 | T.consumeClose(); |
| Steve Naroff | 152dd81 | 2007-12-05 22:21:29 +0000 | [diff] [blame] | 3626 | Selector Sel = PP.getSelectorTable().getSelector(nColons, &KeyIdents[0]); |
| Nico Weber | a7c7e60 | 2012-12-31 00:28:03 +0000 | [diff] [blame] | 3627 | return Actions.ParseObjCSelectorExpression(Sel, AtLoc, SelectorLoc, |
| 3628 | T.getOpenLocation(), |
| Fariborz Jahanian | dacffc0 | 2014-06-24 17:02:19 +0000 | [diff] [blame] | 3629 | T.getCloseLocation(), |
| 3630 | !HasOptionalParen); |
| Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 3631 | } |
| Fariborz Jahanian | bd0642f | 2011-08-31 17:37:55 +0000 | [diff] [blame] | 3632 | |
| Fariborz Jahanian | 577574a | 2012-07-02 23:37:09 +0000 | [diff] [blame] | 3633 | void Parser::ParseLexedObjCMethodDefs(LexedMethod &LM, bool parseMethod) { |
| 3634 | // MCDecl might be null due to error in method or c-function prototype, etc. |
| 3635 | Decl *MCDecl = LM.D; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3636 | bool skip = MCDecl && |
| Fariborz Jahanian | 577574a | 2012-07-02 23:37:09 +0000 | [diff] [blame] | 3637 | ((parseMethod && !Actions.isObjCMethodDecl(MCDecl)) || |
| 3638 | (!parseMethod && Actions.isObjCMethodDecl(MCDecl))); |
| 3639 | if (skip) |
| 3640 | return; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3641 | |
| Argyrios Kyrtzidis | 9a174fb | 2011-12-17 04:13:18 +0000 | [diff] [blame] | 3642 | // Save the current token position. |
| 3643 | SourceLocation OrigLoc = Tok.getLocation(); |
| 3644 | |
| Fariborz Jahanian | bd0642f | 2011-08-31 17:37:55 +0000 | [diff] [blame] | 3645 | assert(!LM.Toks.empty() && "ParseLexedObjCMethodDef - Empty body!"); |
| Alex Lorenz | 812012f | 2017-06-19 17:53:21 +0000 | [diff] [blame] | 3646 | // Store an artificial EOF token to ensure that we don't run off the end of |
| 3647 | // the method's body when we come to parse it. |
| 3648 | Token Eof; |
| 3649 | Eof.startToken(); |
| 3650 | Eof.setKind(tok::eof); |
| 3651 | Eof.setEofData(MCDecl); |
| 3652 | Eof.setLocation(OrigLoc); |
| 3653 | LM.Toks.push_back(Eof); |
| Fariborz Jahanian | bd0642f | 2011-08-31 17:37:55 +0000 | [diff] [blame] | 3654 | // Append the current token at the end of the new token stream so that it |
| 3655 | // doesn't get lost. |
| 3656 | LM.Toks.push_back(Tok); |
| Ilya Biryukov | 929af67 | 2019-05-17 09:32:05 +0000 | [diff] [blame] | 3657 | PP.EnterTokenStream(LM.Toks, true, /*IsReinject*/true); |
| David Blaikie | 2eabcc9 | 2016-02-09 18:52:09 +0000 | [diff] [blame] | 3658 | |
| Fariborz Jahanian | bd0642f | 2011-08-31 17:37:55 +0000 | [diff] [blame] | 3659 | // Consume the previously pushed token. |
| Argyrios Kyrtzidis | c36633c | 2013-03-27 23:58:17 +0000 | [diff] [blame] | 3660 | ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3661 | |
| 3662 | assert(Tok.isOneOf(tok::l_brace, tok::kw_try, tok::colon) && |
| Daniel Marjamaki | e59f8d7 | 2015-06-18 10:59:26 +0000 | [diff] [blame] | 3663 | "Inline objective-c method not starting with '{' or 'try' or ':'"); |
| Alp Toker | f6a24ce | 2013-12-05 16:25:25 +0000 | [diff] [blame] | 3664 | // Enter a scope for the method or c-function body. |
| Momchil Velikov | 57c681f | 2017-08-10 15:43:06 +0000 | [diff] [blame] | 3665 | ParseScope BodyScope(this, (parseMethod ? Scope::ObjCMethodScope : 0) | |
| 3666 | Scope::FnScope | Scope::DeclScope | |
| 3667 | Scope::CompoundStmtScope); |
| 3668 | |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3669 | // Tell the actions module that we have entered a method or c-function definition |
| Fariborz Jahanian | 577574a | 2012-07-02 23:37:09 +0000 | [diff] [blame] | 3670 | // with the specified Declarator for the method/function. |
| Fariborz Jahanian | 18d0a5d | 2012-08-08 23:41:08 +0000 | [diff] [blame] | 3671 | if (parseMethod) |
| 3672 | Actions.ActOnStartOfObjCMethodDef(getCurScope(), MCDecl); |
| 3673 | else |
| 3674 | Actions.ActOnStartOfFunctionDef(getCurScope(), MCDecl); |
| Fariborz Jahanian | 8cecfe9 | 2012-08-10 18:10:56 +0000 | [diff] [blame] | 3675 | if (Tok.is(tok::kw_try)) |
| Arnaud A. de Grandmaison | 6756a49 | 2014-03-23 20:28:07 +0000 | [diff] [blame] | 3676 | ParseFunctionTryBlock(MCDecl, BodyScope); |
| Fariborz Jahanian | f64b472 | 2012-08-10 21:15:06 +0000 | [diff] [blame] | 3677 | else { |
| 3678 | if (Tok.is(tok::colon)) |
| 3679 | ParseConstructorInitializer(MCDecl); |
| Akira Hatanaka | bd59b489 | 2016-04-18 18:19:45 +0000 | [diff] [blame] | 3680 | else |
| 3681 | Actions.ActOnDefaultCtorInitializers(MCDecl); |
| Arnaud A. de Grandmaison | 6756a49 | 2014-03-23 20:28:07 +0000 | [diff] [blame] | 3682 | ParseFunctionStatementBody(MCDecl, BodyScope); |
| Fariborz Jahanian | f64b472 | 2012-08-10 21:15:06 +0000 | [diff] [blame] | 3683 | } |
| Alex Lorenz | 812012f | 2017-06-19 17:53:21 +0000 | [diff] [blame] | 3684 | |
| Argyrios Kyrtzidis | 9a174fb | 2011-12-17 04:13:18 +0000 | [diff] [blame] | 3685 | if (Tok.getLocation() != OrigLoc) { |
| 3686 | // Due to parsing error, we either went over the cached tokens or |
| 3687 | // there are still cached tokens left. If it's the latter case skip the |
| 3688 | // leftover tokens. |
| 3689 | // Since this is an uncommon situation that should be avoided, use the |
| 3690 | // expensive isBeforeInTranslationUnit call. |
| 3691 | if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(), |
| 3692 | OrigLoc)) |
| 3693 | while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof)) |
| 3694 | ConsumeAnyToken(); |
| 3695 | } |
| Alex Lorenz | 812012f | 2017-06-19 17:53:21 +0000 | [diff] [blame] | 3696 | // Clean up the remaining EOF token. |
| 3697 | ConsumeAnyToken(); |
| Fariborz Jahanian | bd0642f | 2011-08-31 17:37:55 +0000 | [diff] [blame] | 3698 | } |