Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- ParseDecl.cpp - Declaration Parsing ------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Declaration portions of the Parser interfaces. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/Parse/Parser.h" |
Chris Lattner | 500d329 | 2009-01-29 05:15:15 +0000 | [diff] [blame] | 15 | #include "clang/Parse/ParseDiagnostic.h" |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 16 | #include "clang/Basic/OpenCL.h" |
Kaelyn Uhrain | aec2ac6 | 2012-04-26 23:36:17 +0000 | [diff] [blame] | 17 | #include "clang/Sema/Lookup.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 18 | #include "clang/Sema/Scope.h" |
| 19 | #include "clang/Sema/ParsedTemplate.h" |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 20 | #include "clang/Sema/PrettyDeclStackTrace.h" |
Chris Lattner | d167ca0 | 2009-12-10 00:21:05 +0000 | [diff] [blame] | 21 | #include "RAIIObjectsForParser.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/SmallSet.h" |
Benjamin Kramer | 8fe83e1 | 2012-02-04 13:45:25 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/SmallString.h" |
Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/StringSwitch.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 25 | using namespace clang; |
| 26 | |
| 27 | //===----------------------------------------------------------------------===// |
| 28 | // C99 6.7: Declarations. |
| 29 | //===----------------------------------------------------------------------===// |
| 30 | |
| 31 | /// ParseTypeName |
| 32 | /// type-name: [C99 6.7.6] |
| 33 | /// specifier-qualifier-list abstract-declarator[opt] |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 34 | /// |
| 35 | /// Called type-id in C++. |
Douglas Gregor | 683a81f | 2011-01-31 16:09:46 +0000 | [diff] [blame] | 36 | TypeResult Parser::ParseTypeName(SourceRange *Range, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 37 | Declarator::TheContext Context, |
Richard Smith | c89edf5 | 2011-07-01 19:46:12 +0000 | [diff] [blame] | 38 | AccessSpecifier AS, |
| 39 | Decl **OwnedType) { |
Richard Smith | 6d96d3a | 2012-03-15 01:02:11 +0000 | [diff] [blame] | 40 | DeclSpecContext DSC = getDeclSpecContextFromDeclaratorContext(Context); |
Richard Smith | a971d24 | 2012-05-09 20:55:26 +0000 | [diff] [blame] | 41 | if (DSC == DSC_normal) |
| 42 | DSC = DSC_type_specifier; |
Richard Smith | 7796eb5 | 2012-03-12 08:56:40 +0000 | [diff] [blame] | 43 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 44 | // Parse the common declaration-specifiers piece. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 45 | DeclSpec DS(AttrFactory); |
Richard Smith | 7796eb5 | 2012-03-12 08:56:40 +0000 | [diff] [blame] | 46 | ParseSpecifierQualifierList(DS, AS, DSC); |
Richard Smith | c89edf5 | 2011-07-01 19:46:12 +0000 | [diff] [blame] | 47 | if (OwnedType) |
| 48 | *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : 0; |
Sebastian Redl | ef65f06 | 2009-05-29 18:02:33 +0000 | [diff] [blame] | 49 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 50 | // Parse the abstract-declarator, if present. |
Douglas Gregor | 683a81f | 2011-01-31 16:09:46 +0000 | [diff] [blame] | 51 | Declarator DeclaratorInfo(DS, Context); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 52 | ParseDeclarator(DeclaratorInfo); |
Sebastian Redl | ef65f06 | 2009-05-29 18:02:33 +0000 | [diff] [blame] | 53 | if (Range) |
| 54 | *Range = DeclaratorInfo.getSourceRange(); |
| 55 | |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 56 | if (DeclaratorInfo.isInvalidType()) |
Douglas Gregor | 809070a | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 57 | return true; |
| 58 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 59 | return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 60 | } |
| 61 | |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 62 | |
| 63 | /// isAttributeLateParsed - Return true if the attribute has arguments that |
| 64 | /// require late parsing. |
| 65 | static bool isAttributeLateParsed(const IdentifierInfo &II) { |
| 66 | return llvm::StringSwitch<bool>(II.getName()) |
| 67 | #include "clang/Parse/AttrLateParsed.inc" |
| 68 | .Default(false); |
| 69 | } |
| 70 | |
| 71 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 72 | /// ParseGNUAttributes - Parse a non-empty attributes list. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 73 | /// |
| 74 | /// [GNU] attributes: |
| 75 | /// attribute |
| 76 | /// attributes attribute |
| 77 | /// |
| 78 | /// [GNU] attribute: |
| 79 | /// '__attribute__' '(' '(' attribute-list ')' ')' |
| 80 | /// |
| 81 | /// [GNU] attribute-list: |
| 82 | /// attrib |
| 83 | /// attribute_list ',' attrib |
| 84 | /// |
| 85 | /// [GNU] attrib: |
| 86 | /// empty |
| 87 | /// attrib-name |
| 88 | /// attrib-name '(' identifier ')' |
| 89 | /// attrib-name '(' identifier ',' nonempty-expr-list ')' |
| 90 | /// attrib-name '(' argument-expression-list [C99 6.5.2] ')' |
| 91 | /// |
| 92 | /// [GNU] attrib-name: |
| 93 | /// identifier |
| 94 | /// typespec |
| 95 | /// typequal |
| 96 | /// storageclass |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 97 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 98 | /// FIXME: The GCC grammar/code for this construct implies we need two |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 99 | /// token lookahead. Comment from gcc: "If they start with an identifier |
| 100 | /// which is followed by a comma or close parenthesis, then the arguments |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 101 | /// start with that identifier; otherwise they are an expression list." |
| 102 | /// |
Richard Smith | fe0a0fb | 2011-10-17 21:20:17 +0000 | [diff] [blame] | 103 | /// GCC does not require the ',' between attribs in an attribute-list. |
| 104 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 105 | /// At the moment, I am not doing 2 token lookahead. I am also unaware of |
| 106 | /// any attributes that don't work (based on my limited testing). Most |
| 107 | /// attributes are very simple in practice. Until we find a bug, I don't see |
| 108 | /// a pressing need to implement the 2 token lookahead. |
| 109 | |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 110 | void Parser::ParseGNUAttributes(ParsedAttributes &attrs, |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 111 | SourceLocation *endLoc, |
| 112 | LateParsedAttrList *LateAttrs) { |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 113 | assert(Tok.is(tok::kw___attribute) && "Not a GNU attribute list!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 114 | |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 115 | while (Tok.is(tok::kw___attribute)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 116 | ConsumeToken(); |
| 117 | if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, |
| 118 | "attribute")) { |
| 119 | SkipUntil(tok::r_paren, true); // skip until ) or ; |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 120 | return; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 121 | } |
| 122 | if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) { |
| 123 | SkipUntil(tok::r_paren, true); // skip until ) or ; |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 124 | return; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 125 | } |
| 126 | // Parse the attribute-list. e.g. __attribute__(( weak, alias("__f") )) |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 127 | while (Tok.is(tok::identifier) || isDeclarationSpecifier() || |
| 128 | Tok.is(tok::comma)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 129 | if (Tok.is(tok::comma)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 130 | // allows for empty/non-empty attributes. ((__vector_size__(16),,,,)) |
| 131 | ConsumeToken(); |
| 132 | continue; |
| 133 | } |
| 134 | // we have an identifier or declaration specifier (const, int, etc.) |
| 135 | IdentifierInfo *AttrName = Tok.getIdentifierInfo(); |
| 136 | SourceLocation AttrNameLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 137 | |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 138 | if (Tok.is(tok::l_paren)) { |
| 139 | // handle "parameterized" attributes |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 140 | if (LateAttrs && isAttributeLateParsed(*AttrName)) { |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 141 | LateParsedAttribute *LA = |
| 142 | new LateParsedAttribute(this, *AttrName, AttrNameLoc); |
| 143 | LateAttrs->push_back(LA); |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 144 | |
| 145 | // Attributes in a class are parsed at the end of the class, along |
| 146 | // with other late-parsed declarations. |
| 147 | if (!ClassStack.empty()) |
| 148 | getCurrentClass().LateParsedDeclarations.push_back(LA); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 149 | |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 150 | // consume everything up to and including the matching right parens |
| 151 | ConsumeAndStoreUntil(tok::r_paren, LA->Toks, true, false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 152 | |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 153 | Token Eof; |
| 154 | Eof.startToken(); |
| 155 | Eof.setLocation(Tok.getLocation()); |
| 156 | LA->Toks.push_back(Eof); |
| 157 | } else { |
| 158 | ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 159 | } |
| 160 | } else { |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 161 | attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, |
Sean Hunt | 93f95f2 | 2012-06-18 16:13:52 +0000 | [diff] [blame] | 162 | 0, SourceLocation(), 0, 0, AttributeList::AS_GNU); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 163 | } |
| 164 | } |
| 165 | if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 166 | SkipUntil(tok::r_paren, false); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 167 | SourceLocation Loc = Tok.getLocation(); |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 168 | if (ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) { |
| 169 | SkipUntil(tok::r_paren, false); |
| 170 | } |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 171 | if (endLoc) |
| 172 | *endLoc = Loc; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 173 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 176 | |
| 177 | /// Parse the arguments to a parameterized GNU attribute |
| 178 | void Parser::ParseGNUAttributeArgs(IdentifierInfo *AttrName, |
| 179 | SourceLocation AttrNameLoc, |
| 180 | ParsedAttributes &Attrs, |
| 181 | SourceLocation *EndLoc) { |
| 182 | |
| 183 | assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('"); |
| 184 | |
| 185 | // Availability attributes have their own grammar. |
| 186 | if (AttrName->isStr("availability")) { |
| 187 | ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc); |
| 188 | return; |
| 189 | } |
| 190 | // Thread safety attributes fit into the FIXME case above, so we |
| 191 | // just parse the arguments as a list of expressions |
| 192 | if (IsThreadSafetyAttribute(AttrName->getName())) { |
| 193 | ParseThreadSafetyAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc); |
| 194 | return; |
| 195 | } |
| 196 | |
| 197 | ConsumeParen(); // ignore the left paren loc for now |
| 198 | |
Richard Smith | fe0a0fb | 2011-10-17 21:20:17 +0000 | [diff] [blame] | 199 | IdentifierInfo *ParmName = 0; |
| 200 | SourceLocation ParmLoc; |
| 201 | bool BuiltinType = false; |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 202 | |
Richard Smith | fe0a0fb | 2011-10-17 21:20:17 +0000 | [diff] [blame] | 203 | switch (Tok.getKind()) { |
| 204 | case tok::kw_char: |
| 205 | case tok::kw_wchar_t: |
| 206 | case tok::kw_char16_t: |
| 207 | case tok::kw_char32_t: |
| 208 | case tok::kw_bool: |
| 209 | case tok::kw_short: |
| 210 | case tok::kw_int: |
| 211 | case tok::kw_long: |
| 212 | case tok::kw___int64: |
Richard Smith | 5a5a971 | 2012-04-04 06:24:32 +0000 | [diff] [blame] | 213 | case tok::kw___int128: |
Richard Smith | fe0a0fb | 2011-10-17 21:20:17 +0000 | [diff] [blame] | 214 | case tok::kw_signed: |
| 215 | case tok::kw_unsigned: |
| 216 | case tok::kw_float: |
| 217 | case tok::kw_double: |
| 218 | case tok::kw_void: |
| 219 | case tok::kw_typeof: |
| 220 | // __attribute__(( vec_type_hint(char) )) |
| 221 | // FIXME: Don't just discard the builtin type token. |
| 222 | ConsumeToken(); |
| 223 | BuiltinType = true; |
| 224 | break; |
| 225 | |
| 226 | case tok::identifier: |
| 227 | ParmName = Tok.getIdentifierInfo(); |
| 228 | ParmLoc = ConsumeToken(); |
| 229 | break; |
| 230 | |
| 231 | default: |
| 232 | break; |
| 233 | } |
| 234 | |
| 235 | ExprVector ArgExprs(Actions); |
| 236 | |
| 237 | if (!BuiltinType && |
| 238 | (ParmLoc.isValid() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren))) { |
| 239 | // Eat the comma. |
| 240 | if (ParmLoc.isValid()) |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 241 | ConsumeToken(); |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 242 | |
Richard Smith | fe0a0fb | 2011-10-17 21:20:17 +0000 | [diff] [blame] | 243 | // Parse the non-empty comma-separated list of expressions. |
| 244 | while (1) { |
| 245 | ExprResult ArgExpr(ParseAssignmentExpression()); |
| 246 | if (ArgExpr.isInvalid()) { |
| 247 | SkipUntil(tok::r_paren); |
| 248 | return; |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 249 | } |
Richard Smith | fe0a0fb | 2011-10-17 21:20:17 +0000 | [diff] [blame] | 250 | ArgExprs.push_back(ArgExpr.release()); |
| 251 | if (Tok.isNot(tok::comma)) |
| 252 | break; |
| 253 | ConsumeToken(); // Eat the comma, move to the next argument |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 254 | } |
Richard Smith | fe0a0fb | 2011-10-17 21:20:17 +0000 | [diff] [blame] | 255 | } |
Fariborz Jahanian | 7a81e41 | 2011-10-18 17:11:10 +0000 | [diff] [blame] | 256 | else if (Tok.is(tok::less) && AttrName->isStr("iboutletcollection")) { |
| 257 | if (!ExpectAndConsume(tok::less, diag::err_expected_less_after, "<", |
| 258 | tok::greater)) { |
Fariborz Jahanian | b224343 | 2011-10-18 23:13:50 +0000 | [diff] [blame] | 259 | while (Tok.is(tok::identifier)) { |
| 260 | ConsumeToken(); |
| 261 | if (Tok.is(tok::greater)) |
| 262 | break; |
| 263 | if (Tok.is(tok::comma)) { |
| 264 | ConsumeToken(); |
| 265 | continue; |
| 266 | } |
| 267 | } |
| 268 | if (Tok.isNot(tok::greater)) |
| 269 | Diag(Tok, diag::err_iboutletcollection_with_protocol); |
Fariborz Jahanian | 7a81e41 | 2011-10-18 17:11:10 +0000 | [diff] [blame] | 270 | SkipUntil(tok::r_paren, false, true); // skip until ')' |
| 271 | } |
| 272 | } |
Richard Smith | fe0a0fb | 2011-10-17 21:20:17 +0000 | [diff] [blame] | 273 | |
| 274 | SourceLocation RParen = Tok.getLocation(); |
| 275 | if (!ExpectAndConsume(tok::r_paren, diag::err_expected_rparen)) { |
| 276 | AttributeList *attr = |
Argyrios Kyrtzidis | ffcc310 | 2011-09-13 16:05:53 +0000 | [diff] [blame] | 277 | Attrs.addNew(AttrName, SourceRange(AttrNameLoc, RParen), 0, AttrNameLoc, |
Sean Hunt | 93f95f2 | 2012-06-18 16:13:52 +0000 | [diff] [blame] | 278 | ParmName, ParmLoc, ArgExprs.take(), ArgExprs.size(), |
| 279 | AttributeList::AS_GNU); |
Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 280 | if (BuiltinType && attr->getKind() == AttributeList::AT_IBOutletCollection) |
Richard Smith | fe0a0fb | 2011-10-17 21:20:17 +0000 | [diff] [blame] | 281 | Diag(Tok, diag::err_iboutletcollection_builtintype); |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 282 | } |
| 283 | } |
| 284 | |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 285 | /// \brief Parses a single argument for a declspec, including the |
| 286 | /// surrounding parens. |
| 287 | void Parser::ParseMicrosoftDeclSpecWithSingleArg(IdentifierInfo *AttrName, |
| 288 | SourceLocation AttrNameLoc, |
| 289 | ParsedAttributes &Attrs) |
| 290 | { |
| 291 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 292 | if (T.expectAndConsume(diag::err_expected_lparen_after, |
| 293 | AttrName->getNameStart(), tok::r_paren)) |
| 294 | return; |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 295 | |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 296 | ExprResult ArgExpr(ParseConstantExpression()); |
| 297 | if (ArgExpr.isInvalid()) { |
| 298 | T.skipToEnd(); |
| 299 | return; |
| 300 | } |
| 301 | Expr *ExprList = ArgExpr.take(); |
| 302 | Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation(), |
| 303 | &ExprList, 1, AttributeList::AS_Declspec); |
| 304 | |
| 305 | T.consumeClose(); |
| 306 | } |
| 307 | |
| 308 | /// \brief Determines whether a declspec is a "simple" one requiring no |
| 309 | /// arguments. |
| 310 | bool Parser::IsSimpleMicrosoftDeclSpec(IdentifierInfo *Ident) { |
| 311 | return llvm::StringSwitch<bool>(Ident->getName()) |
| 312 | .Case("dllimport", true) |
| 313 | .Case("dllexport", true) |
| 314 | .Case("noreturn", true) |
| 315 | .Case("nothrow", true) |
| 316 | .Case("noinline", true) |
| 317 | .Case("naked", true) |
| 318 | .Case("appdomain", true) |
| 319 | .Case("process", true) |
| 320 | .Case("jitintrinsic", true) |
| 321 | .Case("noalias", true) |
| 322 | .Case("restrict", true) |
| 323 | .Case("novtable", true) |
| 324 | .Case("selectany", true) |
| 325 | .Case("thread", true) |
| 326 | .Default(false); |
| 327 | } |
| 328 | |
| 329 | /// \brief Attempts to parse a declspec which is not simple (one that takes |
| 330 | /// parameters). Will return false if we properly handled the declspec, or |
| 331 | /// true if it is an unknown declspec. |
| 332 | void Parser::ParseComplexMicrosoftDeclSpec(IdentifierInfo *Ident, |
| 333 | SourceLocation Loc, |
| 334 | ParsedAttributes &Attrs) { |
| 335 | // Try to handle the easy case first -- these declspecs all take a single |
| 336 | // parameter as their argument. |
| 337 | if (llvm::StringSwitch<bool>(Ident->getName()) |
| 338 | .Case("uuid", true) |
| 339 | .Case("align", true) |
| 340 | .Case("allocate", true) |
| 341 | .Default(false)) { |
| 342 | ParseMicrosoftDeclSpecWithSingleArg(Ident, Loc, Attrs); |
| 343 | } else if (Ident->getName() == "deprecated") { |
| 344 | // The deprecated declspec has an optional single argument, so we will |
| 345 | // check for a l-paren to decide whether we should parse an argument or |
| 346 | // not. |
| 347 | if (Tok.getKind() == tok::l_paren) |
| 348 | ParseMicrosoftDeclSpecWithSingleArg(Ident, Loc, Attrs); |
| 349 | else |
| 350 | Attrs.addNew(Ident, Loc, 0, Loc, 0, SourceLocation(), 0, 0, |
| 351 | AttributeList::AS_Declspec); |
| 352 | } else if (Ident->getName() == "property") { |
| 353 | // The property declspec is more complex in that it can take one or two |
| 354 | // assignment expressions as a parameter, but the lhs of the assignment |
| 355 | // must be named get or put. |
| 356 | // |
| 357 | // For right now, we will just skip to the closing right paren of the |
| 358 | // property expression. |
| 359 | // |
| 360 | // FIXME: we should deal with __declspec(property) at some point because it |
| 361 | // is used in the platform SDK headers for the Parallel Patterns Library |
| 362 | // and ATL. |
| 363 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 364 | if (T.expectAndConsume(diag::err_expected_lparen_after, |
| 365 | Ident->getNameStart(), tok::r_paren)) |
| 366 | return; |
| 367 | T.skipToEnd(); |
| 368 | } else { |
| 369 | // We don't recognize this as a valid declspec, but instead of creating the |
| 370 | // attribute and allowing sema to warn about it, we will warn here instead. |
| 371 | // This is because some attributes have multiple spellings, but we need to |
| 372 | // disallow that for declspecs (such as align vs aligned). If we made the |
| 373 | // attribute, we'd have to split the valid declspec spelling logic into |
| 374 | // both locations. |
| 375 | Diag(Loc, diag::warn_ms_declspec_unknown) << Ident; |
| 376 | |
| 377 | // If there's an open paren, we should eat the open and close parens under |
| 378 | // the assumption that this unknown declspec has parameters. |
| 379 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 380 | if (!T.consumeOpen()) |
| 381 | T.skipToEnd(); |
| 382 | } |
| 383 | } |
| 384 | |
Eli Friedman | a23b485 | 2009-06-08 07:21:15 +0000 | [diff] [blame] | 385 | /// [MS] decl-specifier: |
| 386 | /// __declspec ( extended-decl-modifier-seq ) |
| 387 | /// |
| 388 | /// [MS] extended-decl-modifier-seq: |
| 389 | /// extended-decl-modifier[opt] |
| 390 | /// extended-decl-modifier extended-decl-modifier-seq |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 391 | void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &Attrs) { |
Steve Naroff | f59e17e | 2008-12-24 20:59:21 +0000 | [diff] [blame] | 392 | assert(Tok.is(tok::kw___declspec) && "Not a declspec!"); |
Eli Friedman | a23b485 | 2009-06-08 07:21:15 +0000 | [diff] [blame] | 393 | |
Steve Naroff | f59e17e | 2008-12-24 20:59:21 +0000 | [diff] [blame] | 394 | ConsumeToken(); |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 395 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 396 | if (T.expectAndConsume(diag::err_expected_lparen_after, "__declspec", |
| 397 | tok::r_paren)) |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 398 | return; |
Jakob Stoklund Olesen | 3532936 | 2012-06-19 21:48:43 +0000 | [diff] [blame] | 399 | |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 400 | // An empty declspec is perfectly legal and should not warn. Additionally, |
| 401 | // you can specify multiple attributes per declspec. |
| 402 | while (Tok.getKind() != tok::r_paren) { |
| 403 | // We expect either a well-known identifier or a generic string. Anything |
| 404 | // else is a malformed declspec. |
| 405 | bool IsString = Tok.getKind() == tok::string_literal ? true : false; |
| 406 | if (!IsString && Tok.getKind() != tok::identifier && |
| 407 | Tok.getKind() != tok::kw_restrict) { |
| 408 | Diag(Tok, diag::err_ms_declspec_type); |
| 409 | T.skipToEnd(); |
| 410 | return; |
Jakob Stoklund Olesen | 3532936 | 2012-06-19 21:48:43 +0000 | [diff] [blame] | 411 | } |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 412 | |
| 413 | IdentifierInfo *AttrName; |
| 414 | SourceLocation AttrNameLoc; |
| 415 | if (IsString) { |
| 416 | SmallString<8> StrBuffer; |
| 417 | bool Invalid = false; |
| 418 | StringRef Str = PP.getSpelling(Tok, StrBuffer, &Invalid); |
| 419 | if (Invalid) { |
| 420 | T.skipToEnd(); |
| 421 | return; |
Jakob Stoklund Olesen | 3532936 | 2012-06-19 21:48:43 +0000 | [diff] [blame] | 422 | } |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 423 | AttrName = PP.getIdentifierInfo(Str); |
| 424 | AttrNameLoc = ConsumeStringToken(); |
Jakob Stoklund Olesen | 3532936 | 2012-06-19 21:48:43 +0000 | [diff] [blame] | 425 | } else { |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 426 | AttrName = Tok.getIdentifierInfo(); |
| 427 | AttrNameLoc = ConsumeToken(); |
Jakob Stoklund Olesen | 3532936 | 2012-06-19 21:48:43 +0000 | [diff] [blame] | 428 | } |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 429 | |
| 430 | if (IsString || IsSimpleMicrosoftDeclSpec(AttrName)) |
| 431 | // If we have a generic string, we will allow it because there is no |
| 432 | // documented list of allowable string declspecs, but we know they exist |
| 433 | // (for instance, SAL declspecs in older versions of MSVC). |
| 434 | // |
| 435 | // Alternatively, if the identifier is a simple one, then it requires no |
| 436 | // arguments and can be turned into an attribute directly. |
| 437 | Attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation(), |
| 438 | 0, 0, AttributeList::AS_Declspec); |
| 439 | else |
| 440 | ParseComplexMicrosoftDeclSpec(AttrName, AttrNameLoc, Attrs); |
Jakob Stoklund Olesen | 3532936 | 2012-06-19 21:48:43 +0000 | [diff] [blame] | 441 | } |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 442 | T.consumeClose(); |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 443 | } |
| 444 | |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 445 | void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) { |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 446 | // Treat these like attributes |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 447 | while (Tok.is(tok::kw___fastcall) || Tok.is(tok::kw___stdcall) || |
Douglas Gregor | f813a2c | 2010-05-18 16:57:00 +0000 | [diff] [blame] | 448 | Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___cdecl) || |
Francois Pichet | 3bd9aa4 | 2011-08-18 09:59:55 +0000 | [diff] [blame] | 449 | Tok.is(tok::kw___ptr64) || Tok.is(tok::kw___w64) || |
Francois Pichet | 58fd97a | 2011-08-25 00:36:46 +0000 | [diff] [blame] | 450 | Tok.is(tok::kw___ptr32) || |
Francois Pichet | 3bd9aa4 | 2011-08-18 09:59:55 +0000 | [diff] [blame] | 451 | Tok.is(tok::kw___unaligned)) { |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 452 | IdentifierInfo *AttrName = Tok.getIdentifierInfo(); |
| 453 | SourceLocation AttrNameLoc = ConsumeToken(); |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 454 | attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 455 | SourceLocation(), 0, 0, AttributeList::AS_MSTypespec); |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 456 | } |
Steve Naroff | f59e17e | 2008-12-24 20:59:21 +0000 | [diff] [blame] | 457 | } |
| 458 | |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 459 | void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) { |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 460 | // Treat these like attributes |
| 461 | while (Tok.is(tok::kw___pascal)) { |
| 462 | IdentifierInfo *AttrName = Tok.getIdentifierInfo(); |
| 463 | SourceLocation AttrNameLoc = ConsumeToken(); |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 464 | attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, |
Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 465 | SourceLocation(), 0, 0, AttributeList::AS_MSTypespec); |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 466 | } |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 467 | } |
| 468 | |
Peter Collingbourne | f315fa8 | 2011-02-14 01:42:53 +0000 | [diff] [blame] | 469 | void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) { |
| 470 | // Treat these like attributes |
| 471 | while (Tok.is(tok::kw___kernel)) { |
| 472 | SourceLocation AttrNameLoc = ConsumeToken(); |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 473 | attrs.addNew(PP.getIdentifierInfo("opencl_kernel_function"), |
| 474 | AttrNameLoc, 0, AttrNameLoc, 0, |
Sean Hunt | 93f95f2 | 2012-06-18 16:13:52 +0000 | [diff] [blame] | 475 | SourceLocation(), 0, 0, AttributeList::AS_GNU); |
Peter Collingbourne | f315fa8 | 2011-02-14 01:42:53 +0000 | [diff] [blame] | 476 | } |
| 477 | } |
| 478 | |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 479 | void Parser::ParseOpenCLQualifiers(DeclSpec &DS) { |
| 480 | SourceLocation Loc = Tok.getLocation(); |
| 481 | switch(Tok.getKind()) { |
| 482 | // OpenCL qualifiers: |
| 483 | case tok::kw___private: |
| 484 | case tok::kw_private: |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 485 | DS.getAttributes().addNewInteger( |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 486 | Actions.getASTContext(), |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 487 | PP.getIdentifierInfo("address_space"), Loc, 0); |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 488 | break; |
| 489 | |
| 490 | case tok::kw___global: |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 491 | DS.getAttributes().addNewInteger( |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 492 | Actions.getASTContext(), |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 493 | PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_global); |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 494 | break; |
| 495 | |
| 496 | case tok::kw___local: |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 497 | DS.getAttributes().addNewInteger( |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 498 | Actions.getASTContext(), |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 499 | PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_local); |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 500 | break; |
| 501 | |
| 502 | case tok::kw___constant: |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 503 | DS.getAttributes().addNewInteger( |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 504 | Actions.getASTContext(), |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 505 | PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_constant); |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 506 | break; |
| 507 | |
| 508 | case tok::kw___read_only: |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 509 | DS.getAttributes().addNewInteger( |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 510 | Actions.getASTContext(), |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 511 | PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_only); |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 512 | break; |
| 513 | |
| 514 | case tok::kw___write_only: |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 515 | DS.getAttributes().addNewInteger( |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 516 | Actions.getASTContext(), |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 517 | PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_write_only); |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 518 | break; |
| 519 | |
| 520 | case tok::kw___read_write: |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 521 | DS.getAttributes().addNewInteger( |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 522 | Actions.getASTContext(), |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 523 | PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_write); |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 524 | break; |
| 525 | default: break; |
| 526 | } |
| 527 | } |
| 528 | |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 529 | /// \brief Parse a version number. |
| 530 | /// |
| 531 | /// version: |
| 532 | /// simple-integer |
| 533 | /// simple-integer ',' simple-integer |
| 534 | /// simple-integer ',' simple-integer ',' simple-integer |
| 535 | VersionTuple Parser::ParseVersionTuple(SourceRange &Range) { |
| 536 | Range = Tok.getLocation(); |
| 537 | |
| 538 | if (!Tok.is(tok::numeric_constant)) { |
| 539 | Diag(Tok, diag::err_expected_version); |
| 540 | SkipUntil(tok::comma, tok::r_paren, true, true, true); |
| 541 | return VersionTuple(); |
| 542 | } |
| 543 | |
| 544 | // Parse the major (and possibly minor and subminor) versions, which |
| 545 | // are stored in the numeric constant. We utilize a quirk of the |
| 546 | // lexer, which is that it handles something like 1.2.3 as a single |
| 547 | // numeric constant, rather than two separate tokens. |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 548 | SmallString<512> Buffer; |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 549 | Buffer.resize(Tok.getLength()+1); |
| 550 | const char *ThisTokBegin = &Buffer[0]; |
| 551 | |
| 552 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 553 | bool Invalid = false; |
| 554 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid); |
| 555 | if (Invalid) |
| 556 | return VersionTuple(); |
| 557 | |
| 558 | // Parse the major version. |
| 559 | unsigned AfterMajor = 0; |
| 560 | unsigned Major = 0; |
| 561 | while (AfterMajor < ActualLength && isdigit(ThisTokBegin[AfterMajor])) { |
| 562 | Major = Major * 10 + ThisTokBegin[AfterMajor] - '0'; |
| 563 | ++AfterMajor; |
| 564 | } |
| 565 | |
| 566 | if (AfterMajor == 0) { |
| 567 | Diag(Tok, diag::err_expected_version); |
| 568 | SkipUntil(tok::comma, tok::r_paren, true, true, true); |
| 569 | return VersionTuple(); |
| 570 | } |
| 571 | |
| 572 | if (AfterMajor == ActualLength) { |
| 573 | ConsumeToken(); |
| 574 | |
| 575 | // We only had a single version component. |
| 576 | if (Major == 0) { |
| 577 | Diag(Tok, diag::err_zero_version); |
| 578 | return VersionTuple(); |
| 579 | } |
| 580 | |
| 581 | return VersionTuple(Major); |
| 582 | } |
| 583 | |
| 584 | if (ThisTokBegin[AfterMajor] != '.' || (AfterMajor + 1 == ActualLength)) { |
| 585 | Diag(Tok, diag::err_expected_version); |
| 586 | SkipUntil(tok::comma, tok::r_paren, true, true, true); |
| 587 | return VersionTuple(); |
| 588 | } |
| 589 | |
| 590 | // Parse the minor version. |
| 591 | unsigned AfterMinor = AfterMajor + 1; |
| 592 | unsigned Minor = 0; |
| 593 | while (AfterMinor < ActualLength && isdigit(ThisTokBegin[AfterMinor])) { |
| 594 | Minor = Minor * 10 + ThisTokBegin[AfterMinor] - '0'; |
| 595 | ++AfterMinor; |
| 596 | } |
| 597 | |
| 598 | if (AfterMinor == ActualLength) { |
| 599 | ConsumeToken(); |
| 600 | |
| 601 | // We had major.minor. |
| 602 | if (Major == 0 && Minor == 0) { |
| 603 | Diag(Tok, diag::err_zero_version); |
| 604 | return VersionTuple(); |
| 605 | } |
| 606 | |
| 607 | return VersionTuple(Major, Minor); |
| 608 | } |
| 609 | |
| 610 | // If what follows is not a '.', we have a problem. |
| 611 | if (ThisTokBegin[AfterMinor] != '.') { |
| 612 | Diag(Tok, diag::err_expected_version); |
| 613 | SkipUntil(tok::comma, tok::r_paren, true, true, true); |
| 614 | return VersionTuple(); |
| 615 | } |
| 616 | |
| 617 | // Parse the subminor version. |
| 618 | unsigned AfterSubminor = AfterMinor + 1; |
| 619 | unsigned Subminor = 0; |
| 620 | while (AfterSubminor < ActualLength && isdigit(ThisTokBegin[AfterSubminor])) { |
| 621 | Subminor = Subminor * 10 + ThisTokBegin[AfterSubminor] - '0'; |
| 622 | ++AfterSubminor; |
| 623 | } |
| 624 | |
| 625 | if (AfterSubminor != ActualLength) { |
| 626 | Diag(Tok, diag::err_expected_version); |
| 627 | SkipUntil(tok::comma, tok::r_paren, true, true, true); |
| 628 | return VersionTuple(); |
| 629 | } |
| 630 | ConsumeToken(); |
| 631 | return VersionTuple(Major, Minor, Subminor); |
| 632 | } |
| 633 | |
| 634 | /// \brief Parse the contents of the "availability" attribute. |
| 635 | /// |
| 636 | /// availability-attribute: |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 637 | /// 'availability' '(' platform ',' version-arg-list, opt-message')' |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 638 | /// |
| 639 | /// platform: |
| 640 | /// identifier |
| 641 | /// |
| 642 | /// version-arg-list: |
| 643 | /// version-arg |
| 644 | /// version-arg ',' version-arg-list |
| 645 | /// |
| 646 | /// version-arg: |
| 647 | /// 'introduced' '=' version |
| 648 | /// 'deprecated' '=' version |
Douglas Gregor | 93a7067 | 2012-03-11 04:53:21 +0000 | [diff] [blame] | 649 | /// 'obsoleted' = version |
Douglas Gregor | b53e417 | 2011-03-26 03:35:55 +0000 | [diff] [blame] | 650 | /// 'unavailable' |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 651 | /// opt-message: |
| 652 | /// 'message' '=' <string> |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 653 | void Parser::ParseAvailabilityAttribute(IdentifierInfo &Availability, |
| 654 | SourceLocation AvailabilityLoc, |
| 655 | ParsedAttributes &attrs, |
| 656 | SourceLocation *endLoc) { |
| 657 | SourceLocation PlatformLoc; |
| 658 | IdentifierInfo *Platform = 0; |
| 659 | |
| 660 | enum { Introduced, Deprecated, Obsoleted, Unknown }; |
| 661 | AvailabilityChange Changes[Unknown]; |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 662 | ExprResult MessageExpr; |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 663 | |
| 664 | // Opening '('. |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 665 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 666 | if (T.consumeOpen()) { |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 667 | Diag(Tok, diag::err_expected_lparen); |
| 668 | return; |
| 669 | } |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 670 | |
| 671 | // Parse the platform name, |
| 672 | if (Tok.isNot(tok::identifier)) { |
| 673 | Diag(Tok, diag::err_availability_expected_platform); |
| 674 | SkipUntil(tok::r_paren); |
| 675 | return; |
| 676 | } |
| 677 | Platform = Tok.getIdentifierInfo(); |
| 678 | PlatformLoc = ConsumeToken(); |
| 679 | |
| 680 | // Parse the ',' following the platform name. |
| 681 | if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::r_paren)) |
| 682 | return; |
| 683 | |
| 684 | // If we haven't grabbed the pointers for the identifiers |
| 685 | // "introduced", "deprecated", and "obsoleted", do so now. |
| 686 | if (!Ident_introduced) { |
| 687 | Ident_introduced = PP.getIdentifierInfo("introduced"); |
| 688 | Ident_deprecated = PP.getIdentifierInfo("deprecated"); |
| 689 | Ident_obsoleted = PP.getIdentifierInfo("obsoleted"); |
Douglas Gregor | b53e417 | 2011-03-26 03:35:55 +0000 | [diff] [blame] | 690 | Ident_unavailable = PP.getIdentifierInfo("unavailable"); |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 691 | Ident_message = PP.getIdentifierInfo("message"); |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | // Parse the set of introductions/deprecations/removals. |
Douglas Gregor | b53e417 | 2011-03-26 03:35:55 +0000 | [diff] [blame] | 695 | SourceLocation UnavailableLoc; |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 696 | do { |
| 697 | if (Tok.isNot(tok::identifier)) { |
| 698 | Diag(Tok, diag::err_availability_expected_change); |
| 699 | SkipUntil(tok::r_paren); |
| 700 | return; |
| 701 | } |
| 702 | IdentifierInfo *Keyword = Tok.getIdentifierInfo(); |
| 703 | SourceLocation KeywordLoc = ConsumeToken(); |
| 704 | |
Douglas Gregor | b53e417 | 2011-03-26 03:35:55 +0000 | [diff] [blame] | 705 | if (Keyword == Ident_unavailable) { |
| 706 | if (UnavailableLoc.isValid()) { |
| 707 | Diag(KeywordLoc, diag::err_availability_redundant) |
| 708 | << Keyword << SourceRange(UnavailableLoc); |
| 709 | } |
| 710 | UnavailableLoc = KeywordLoc; |
| 711 | |
| 712 | if (Tok.isNot(tok::comma)) |
| 713 | break; |
| 714 | |
| 715 | ConsumeToken(); |
| 716 | continue; |
| 717 | } |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 718 | |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 719 | if (Tok.isNot(tok::equal)) { |
| 720 | Diag(Tok, diag::err_expected_equal_after) |
| 721 | << Keyword; |
| 722 | SkipUntil(tok::r_paren); |
| 723 | return; |
| 724 | } |
| 725 | ConsumeToken(); |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 726 | if (Keyword == Ident_message) { |
| 727 | if (!isTokenStringLiteral()) { |
| 728 | Diag(Tok, diag::err_expected_string_literal); |
| 729 | SkipUntil(tok::r_paren); |
| 730 | return; |
| 731 | } |
| 732 | MessageExpr = ParseStringLiteralExpression(); |
| 733 | break; |
| 734 | } |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 735 | |
| 736 | SourceRange VersionRange; |
| 737 | VersionTuple Version = ParseVersionTuple(VersionRange); |
| 738 | |
| 739 | if (Version.empty()) { |
| 740 | SkipUntil(tok::r_paren); |
| 741 | return; |
| 742 | } |
| 743 | |
| 744 | unsigned Index; |
| 745 | if (Keyword == Ident_introduced) |
| 746 | Index = Introduced; |
| 747 | else if (Keyword == Ident_deprecated) |
| 748 | Index = Deprecated; |
| 749 | else if (Keyword == Ident_obsoleted) |
| 750 | Index = Obsoleted; |
| 751 | else |
| 752 | Index = Unknown; |
| 753 | |
| 754 | if (Index < Unknown) { |
| 755 | if (!Changes[Index].KeywordLoc.isInvalid()) { |
| 756 | Diag(KeywordLoc, diag::err_availability_redundant) |
| 757 | << Keyword |
| 758 | << SourceRange(Changes[Index].KeywordLoc, |
| 759 | Changes[Index].VersionRange.getEnd()); |
| 760 | } |
| 761 | |
| 762 | Changes[Index].KeywordLoc = KeywordLoc; |
| 763 | Changes[Index].Version = Version; |
| 764 | Changes[Index].VersionRange = VersionRange; |
| 765 | } else { |
| 766 | Diag(KeywordLoc, diag::err_availability_unknown_change) |
| 767 | << Keyword << VersionRange; |
| 768 | } |
| 769 | |
| 770 | if (Tok.isNot(tok::comma)) |
| 771 | break; |
| 772 | |
| 773 | ConsumeToken(); |
| 774 | } while (true); |
| 775 | |
| 776 | // Closing ')'. |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 777 | if (T.consumeClose()) |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 778 | return; |
| 779 | |
| 780 | if (endLoc) |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 781 | *endLoc = T.getCloseLocation(); |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 782 | |
Douglas Gregor | b53e417 | 2011-03-26 03:35:55 +0000 | [diff] [blame] | 783 | // The 'unavailable' availability cannot be combined with any other |
| 784 | // availability changes. Make sure that hasn't happened. |
| 785 | if (UnavailableLoc.isValid()) { |
| 786 | bool Complained = false; |
| 787 | for (unsigned Index = Introduced; Index != Unknown; ++Index) { |
| 788 | if (Changes[Index].KeywordLoc.isValid()) { |
| 789 | if (!Complained) { |
| 790 | Diag(UnavailableLoc, diag::warn_availability_and_unavailable) |
| 791 | << SourceRange(Changes[Index].KeywordLoc, |
| 792 | Changes[Index].VersionRange.getEnd()); |
| 793 | Complained = true; |
| 794 | } |
| 795 | |
| 796 | // Clear out the availability. |
| 797 | Changes[Index] = AvailabilityChange(); |
| 798 | } |
| 799 | } |
| 800 | } |
| 801 | |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 802 | // Record this attribute |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 803 | attrs.addNew(&Availability, |
| 804 | SourceRange(AvailabilityLoc, T.getCloseLocation()), |
Fariborz Jahanian | f96708d | 2012-01-23 23:38:32 +0000 | [diff] [blame] | 805 | 0, AvailabilityLoc, |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 806 | Platform, PlatformLoc, |
| 807 | Changes[Introduced], |
| 808 | Changes[Deprecated], |
Douglas Gregor | b53e417 | 2011-03-26 03:35:55 +0000 | [diff] [blame] | 809 | Changes[Obsoleted], |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 810 | UnavailableLoc, MessageExpr.take(), |
Sean Hunt | 93f95f2 | 2012-06-18 16:13:52 +0000 | [diff] [blame] | 811 | AttributeList::AS_GNU); |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 812 | } |
| 813 | |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 814 | |
| 815 | // Late Parsed Attributes: |
| 816 | // See other examples of late parsing in lib/Parse/ParseCXXInlineMethods |
| 817 | |
| 818 | void Parser::LateParsedDeclaration::ParseLexedAttributes() {} |
| 819 | |
| 820 | void Parser::LateParsedClass::ParseLexedAttributes() { |
| 821 | Self->ParseLexedAttributes(*Class); |
| 822 | } |
| 823 | |
| 824 | void Parser::LateParsedAttribute::ParseLexedAttributes() { |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 825 | Self->ParseLexedAttribute(*this, true, false); |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | /// Wrapper class which calls ParseLexedAttribute, after setting up the |
| 829 | /// scope appropriately. |
| 830 | void Parser::ParseLexedAttributes(ParsingClass &Class) { |
| 831 | // Deal with templates |
| 832 | // FIXME: Test cases to make sure this does the right thing for templates. |
| 833 | bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope; |
| 834 | ParseScope ClassTemplateScope(this, Scope::TemplateParamScope, |
| 835 | HasTemplateScope); |
| 836 | if (HasTemplateScope) |
| 837 | Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate); |
| 838 | |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 839 | // Set or update the scope flags. |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 840 | bool AlreadyHasClassScope = Class.TopLevelClass; |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 841 | unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope; |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 842 | ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope); |
| 843 | ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope); |
| 844 | |
DeLesley Hutchins | cf2fa2f | 2012-04-06 15:10:17 +0000 | [diff] [blame] | 845 | // Enter the scope of nested classes |
| 846 | if (!AlreadyHasClassScope) |
| 847 | Actions.ActOnStartDelayedMemberDeclarations(getCurScope(), |
| 848 | Class.TagOrTemplate); |
Benjamin Kramer | 268efba | 2012-05-17 12:01:52 +0000 | [diff] [blame] | 849 | if (!Class.LateParsedDeclarations.empty()) { |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 850 | // Allow 'this' within late-parsed attributes. |
| 851 | Sema::CXXThisScopeRAII ThisScope(Actions, Class.TagOrTemplate, |
| 852 | /*TypeQuals=*/0); |
| 853 | |
| 854 | for (unsigned i = 0, ni = Class.LateParsedDeclarations.size(); i < ni; ++i){ |
| 855 | Class.LateParsedDeclarations[i]->ParseLexedAttributes(); |
| 856 | } |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 857 | } |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 858 | |
DeLesley Hutchins | cf2fa2f | 2012-04-06 15:10:17 +0000 | [diff] [blame] | 859 | if (!AlreadyHasClassScope) |
| 860 | Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(), |
| 861 | Class.TagOrTemplate); |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 862 | } |
| 863 | |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 864 | |
| 865 | /// \brief Parse all attributes in LAs, and attach them to Decl D. |
| 866 | void Parser::ParseLexedAttributeList(LateParsedAttrList &LAs, Decl *D, |
| 867 | bool EnterScope, bool OnDefinition) { |
| 868 | for (unsigned i = 0, ni = LAs.size(); i < ni; ++i) { |
DeLesley Hutchins | 2287c5e | 2012-03-02 22:12:59 +0000 | [diff] [blame] | 869 | LAs[i]->addDecl(D); |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 870 | ParseLexedAttribute(*LAs[i], EnterScope, OnDefinition); |
Benjamin Kramer | d306cf7 | 2012-04-14 12:44:47 +0000 | [diff] [blame] | 871 | delete LAs[i]; |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 872 | } |
| 873 | LAs.clear(); |
| 874 | } |
| 875 | |
| 876 | |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 877 | /// \brief Finish parsing an attribute for which parsing was delayed. |
| 878 | /// This will be called at the end of parsing a class declaration |
| 879 | /// for each LateParsedAttribute. We consume the saved tokens and |
| 880 | /// create an attribute with the arguments filled in. We add this |
| 881 | /// to the Attribute list for the decl. |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 882 | void Parser::ParseLexedAttribute(LateParsedAttribute &LA, |
| 883 | bool EnterScope, bool OnDefinition) { |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 884 | // Save the current token position. |
| 885 | SourceLocation OrigLoc = Tok.getLocation(); |
| 886 | |
| 887 | // Append the current token at the end of the new token stream so that it |
| 888 | // doesn't get lost. |
| 889 | LA.Toks.push_back(Tok); |
| 890 | PP.EnterTokenStream(LA.Toks.data(), LA.Toks.size(), true, false); |
| 891 | // Consume the previously pushed token. |
| 892 | ConsumeAnyToken(); |
| 893 | |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 894 | if (OnDefinition && !IsThreadSafetyAttribute(LA.AttrName.getName())) { |
| 895 | Diag(Tok, diag::warn_attribute_on_function_definition) |
| 896 | << LA.AttrName.getName(); |
| 897 | } |
| 898 | |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 899 | ParsedAttributes Attrs(AttrFactory); |
| 900 | SourceLocation endLoc; |
| 901 | |
DeLesley Hutchins | 2287c5e | 2012-03-02 22:12:59 +0000 | [diff] [blame] | 902 | if (LA.Decls.size() == 1) { |
| 903 | Decl *D = LA.Decls[0]; |
Caitlin Sadowski | ed9d84a | 2011-09-08 17:42:31 +0000 | [diff] [blame] | 904 | |
DeLesley Hutchins | 2287c5e | 2012-03-02 22:12:59 +0000 | [diff] [blame] | 905 | // If the Decl is templatized, add template parameters to scope. |
| 906 | bool HasTemplateScope = EnterScope && D->isTemplateDecl(); |
| 907 | ParseScope TempScope(this, Scope::TemplateParamScope, HasTemplateScope); |
| 908 | if (HasTemplateScope) |
| 909 | Actions.ActOnReenterTemplateScope(Actions.CurScope, D); |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 910 | |
DeLesley Hutchins | 2287c5e | 2012-03-02 22:12:59 +0000 | [diff] [blame] | 911 | // If the Decl is on a function, add function parameters to the scope. |
| 912 | bool HasFunctionScope = EnterScope && D->isFunctionOrFunctionTemplate(); |
| 913 | ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope, HasFunctionScope); |
| 914 | if (HasFunctionScope) |
| 915 | Actions.ActOnReenterFunctionContext(Actions.CurScope, D); |
| 916 | |
| 917 | ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc); |
| 918 | |
| 919 | if (HasFunctionScope) { |
| 920 | Actions.ActOnExitFunctionContext(); |
| 921 | FnScope.Exit(); // Pop scope, and remove Decls from IdResolver |
| 922 | } |
| 923 | if (HasTemplateScope) { |
| 924 | TempScope.Exit(); |
| 925 | } |
DeLesley Hutchins | 7ec419a | 2012-03-02 22:29:50 +0000 | [diff] [blame] | 926 | } else if (LA.Decls.size() > 0) { |
DeLesley Hutchins | 2287c5e | 2012-03-02 22:12:59 +0000 | [diff] [blame] | 927 | // If there are multiple decls, then the decl cannot be within the |
| 928 | // function scope. |
| 929 | ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc); |
DeLesley Hutchins | 7ec419a | 2012-03-02 22:29:50 +0000 | [diff] [blame] | 930 | } else { |
| 931 | Diag(Tok, diag::warn_attribute_no_decl) << LA.AttrName.getName(); |
Caitlin Sadowski | ed9d84a | 2011-09-08 17:42:31 +0000 | [diff] [blame] | 932 | } |
| 933 | |
DeLesley Hutchins | 2287c5e | 2012-03-02 22:12:59 +0000 | [diff] [blame] | 934 | for (unsigned i = 0, ni = LA.Decls.size(); i < ni; ++i) { |
| 935 | Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs); |
| 936 | } |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 937 | |
| 938 | if (Tok.getLocation() != OrigLoc) { |
| 939 | // Due to a parsing error, we either went over the cached tokens or |
| 940 | // there are still cached tokens left, so we skip the leftover tokens. |
| 941 | // Since this is an uncommon situation that should be avoided, use the |
| 942 | // expensive isBeforeInTranslationUnit call. |
| 943 | if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(), |
| 944 | OrigLoc)) |
| 945 | while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof)) |
Douglas Gregor | d78ef5b | 2012-03-08 01:00:17 +0000 | [diff] [blame] | 946 | ConsumeAnyToken(); |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 947 | } |
| 948 | } |
| 949 | |
Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 950 | /// \brief Wrapper around a case statement checking if AttrName is |
| 951 | /// one of the thread safety attributes |
| 952 | bool Parser::IsThreadSafetyAttribute(llvm::StringRef AttrName){ |
| 953 | return llvm::StringSwitch<bool>(AttrName) |
| 954 | .Case("guarded_by", true) |
| 955 | .Case("guarded_var", true) |
| 956 | .Case("pt_guarded_by", true) |
| 957 | .Case("pt_guarded_var", true) |
| 958 | .Case("lockable", true) |
| 959 | .Case("scoped_lockable", true) |
| 960 | .Case("no_thread_safety_analysis", true) |
| 961 | .Case("acquired_after", true) |
| 962 | .Case("acquired_before", true) |
| 963 | .Case("exclusive_lock_function", true) |
| 964 | .Case("shared_lock_function", true) |
| 965 | .Case("exclusive_trylock_function", true) |
| 966 | .Case("shared_trylock_function", true) |
| 967 | .Case("unlock_function", true) |
| 968 | .Case("lock_returned", true) |
| 969 | .Case("locks_excluded", true) |
| 970 | .Case("exclusive_locks_required", true) |
| 971 | .Case("shared_locks_required", true) |
| 972 | .Default(false); |
| 973 | } |
| 974 | |
| 975 | /// \brief Parse the contents of thread safety attributes. These |
| 976 | /// should always be parsed as an expression list. |
| 977 | /// |
| 978 | /// We need to special case the parsing due to the fact that if the first token |
| 979 | /// of the first argument is an identifier, the main parse loop will store |
| 980 | /// that token as a "parameter" and the rest of |
| 981 | /// the arguments will be added to a list of "arguments". However, |
| 982 | /// subsequent tokens in the first argument are lost. We instead parse each |
| 983 | /// argument as an expression and add all arguments to the list of "arguments". |
| 984 | /// In future, we will take advantage of this special case to also |
| 985 | /// deal with some argument scoping issues here (for example, referring to a |
| 986 | /// function parameter in the attribute on that function). |
| 987 | void Parser::ParseThreadSafetyAttribute(IdentifierInfo &AttrName, |
| 988 | SourceLocation AttrNameLoc, |
| 989 | ParsedAttributes &Attrs, |
| 990 | SourceLocation *EndLoc) { |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 991 | assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('"); |
Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 992 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 993 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 994 | T.consumeOpen(); |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 995 | |
| 996 | ExprVector ArgExprs(Actions); |
| 997 | bool ArgExprsOk = true; |
| 998 | |
| 999 | // now parse the list of expressions |
DeLesley Hutchins | 4805f15 | 2011-12-14 19:36:06 +0000 | [diff] [blame] | 1000 | while (Tok.isNot(tok::r_paren)) { |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 1001 | ExprResult ArgExpr(ParseAssignmentExpression()); |
| 1002 | if (ArgExpr.isInvalid()) { |
| 1003 | ArgExprsOk = false; |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1004 | T.consumeClose(); |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 1005 | break; |
| 1006 | } else { |
| 1007 | ArgExprs.push_back(ArgExpr.release()); |
Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 1008 | } |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 1009 | if (Tok.isNot(tok::comma)) |
| 1010 | break; |
| 1011 | ConsumeToken(); // Eat the comma, move to the next argument |
| 1012 | } |
| 1013 | // Match the ')'. |
DeLesley Hutchins | 23323e0 | 2012-01-20 22:50:54 +0000 | [diff] [blame] | 1014 | if (ArgExprsOk && !T.consumeClose()) { |
Caitlin Sadowski | eff98fc | 2011-09-08 17:42:22 +0000 | [diff] [blame] | 1015 | Attrs.addNew(&AttrName, AttrNameLoc, 0, AttrNameLoc, 0, SourceLocation(), |
Sean Hunt | 93f95f2 | 2012-06-18 16:13:52 +0000 | [diff] [blame] | 1016 | ArgExprs.take(), ArgExprs.size(), AttributeList::AS_GNU); |
Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 1017 | } |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1018 | if (EndLoc) |
| 1019 | *EndLoc = T.getCloseLocation(); |
Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 1020 | } |
| 1021 | |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 1022 | /// DiagnoseProhibitedCXX11Attribute - We have found the opening square brackets |
| 1023 | /// of a C++11 attribute-specifier in a location where an attribute is not |
| 1024 | /// permitted. By C++11 [dcl.attr.grammar]p6, this is ill-formed. Diagnose this |
| 1025 | /// situation. |
| 1026 | /// |
| 1027 | /// \return \c true if we skipped an attribute-like chunk of tokens, \c false if |
| 1028 | /// this doesn't appear to actually be an attribute-specifier, and the caller |
| 1029 | /// should try to parse it. |
| 1030 | bool Parser::DiagnoseProhibitedCXX11Attribute() { |
| 1031 | assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)); |
| 1032 | |
| 1033 | switch (isCXX11AttributeSpecifier(/*Disambiguate*/true)) { |
| 1034 | case CAK_NotAttributeSpecifier: |
| 1035 | // No diagnostic: we're in Obj-C++11 and this is not actually an attribute. |
| 1036 | return false; |
| 1037 | |
| 1038 | case CAK_InvalidAttributeSpecifier: |
| 1039 | Diag(Tok.getLocation(), diag::err_l_square_l_square_not_attribute); |
| 1040 | return false; |
| 1041 | |
| 1042 | case CAK_AttributeSpecifier: |
| 1043 | // Parse and discard the attributes. |
| 1044 | SourceLocation BeginLoc = ConsumeBracket(); |
| 1045 | ConsumeBracket(); |
| 1046 | SkipUntil(tok::r_square, /*StopAtSemi*/ false); |
| 1047 | assert(Tok.is(tok::r_square) && "isCXX11AttributeSpecifier lied"); |
| 1048 | SourceLocation EndLoc = ConsumeBracket(); |
| 1049 | Diag(BeginLoc, diag::err_attributes_not_allowed) |
| 1050 | << SourceRange(BeginLoc, EndLoc); |
| 1051 | return true; |
| 1052 | } |
Chandler Carruth | 2c6dbd7 | 2012-04-10 16:03:08 +0000 | [diff] [blame] | 1053 | llvm_unreachable("All cases handled above."); |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 1054 | } |
| 1055 | |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1056 | void Parser::DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs) { |
| 1057 | Diag(attrs.Range.getBegin(), diag::err_attributes_not_allowed) |
| 1058 | << attrs.Range; |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 1059 | } |
| 1060 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1061 | /// ParseDeclaration - Parse a full 'declaration', which consists of |
| 1062 | /// declaration-specifiers, some number of declarators, and a semicolon. |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 1063 | /// 'Context' should be a Declarator::TheContext value. This returns the |
| 1064 | /// location of the semicolon in DeclEnd. |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 1065 | /// |
| 1066 | /// declaration: [C99 6.7] |
| 1067 | /// block-declaration -> |
| 1068 | /// simple-declaration |
| 1069 | /// others [FIXME] |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 1070 | /// [C++] template-declaration |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 1071 | /// [C++] namespace-definition |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 1072 | /// [C++] using-directive |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 1073 | /// [C++] using-declaration |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 1074 | /// [C++11/C11] static_assert-declaration |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 1075 | /// others... [FIXME] |
| 1076 | /// |
Fariborz Jahanian | c5be7b0 | 2010-09-28 20:42:35 +0000 | [diff] [blame] | 1077 | Parser::DeclGroupPtrTy Parser::ParseDeclaration(StmtVector &Stmts, |
| 1078 | unsigned Context, |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 1079 | SourceLocation &DeclEnd, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1080 | ParsedAttributesWithRange &attrs) { |
Argyrios Kyrtzidis | 36d3680 | 2010-06-17 10:52:18 +0000 | [diff] [blame] | 1081 | ParenBraceBracketBalancer BalancerRAIIObj(*this); |
Fariborz Jahanian | e8cff36 | 2011-08-30 17:10:52 +0000 | [diff] [blame] | 1082 | // Must temporarily exit the objective-c container scope for |
| 1083 | // parsing c none objective-c decls. |
| 1084 | ObjCDeclContextSwitch ObjCDC(*this); |
Argyrios Kyrtzidis | 36d3680 | 2010-06-17 10:52:18 +0000 | [diff] [blame] | 1085 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1086 | Decl *SingleDecl = 0; |
Richard Smith | c89edf5 | 2011-07-01 19:46:12 +0000 | [diff] [blame] | 1087 | Decl *OwnedType = 0; |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 1088 | switch (Tok.getKind()) { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 1089 | case tok::kw_template: |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1090 | case tok::kw_export: |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1091 | ProhibitAttributes(attrs); |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1092 | SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1093 | break; |
Sebastian Redl | d078e64 | 2010-08-27 23:12:46 +0000 | [diff] [blame] | 1094 | case tok::kw_inline: |
Sebastian Redl | 88e64ca | 2010-08-31 00:36:45 +0000 | [diff] [blame] | 1095 | // Could be the start of an inline namespace. Allowed as an ext in C++03. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1096 | if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_namespace)) { |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1097 | ProhibitAttributes(attrs); |
Sebastian Redl | d078e64 | 2010-08-27 23:12:46 +0000 | [diff] [blame] | 1098 | SourceLocation InlineLoc = ConsumeToken(); |
| 1099 | SingleDecl = ParseNamespace(Context, DeclEnd, InlineLoc); |
| 1100 | break; |
| 1101 | } |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1102 | return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs, |
Fariborz Jahanian | c5be7b0 | 2010-09-28 20:42:35 +0000 | [diff] [blame] | 1103 | true); |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 1104 | case tok::kw_namespace: |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1105 | ProhibitAttributes(attrs); |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 1106 | SingleDecl = ParseNamespace(Context, DeclEnd); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1107 | break; |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 1108 | case tok::kw_using: |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 1109 | SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(), |
Richard Smith | c89edf5 | 2011-07-01 19:46:12 +0000 | [diff] [blame] | 1110 | DeclEnd, attrs, &OwnedType); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1111 | break; |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 1112 | case tok::kw_static_assert: |
Peter Collingbourne | c6eb44b | 2011-04-15 00:35:57 +0000 | [diff] [blame] | 1113 | case tok::kw__Static_assert: |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1114 | ProhibitAttributes(attrs); |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 1115 | SingleDecl = ParseStaticAssertDeclaration(DeclEnd); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1116 | break; |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 1117 | default: |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1118 | return ParseSimpleDeclaration(Stmts, Context, DeclEnd, attrs, true); |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 1119 | } |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 1120 | |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1121 | // This routine returns a DeclGroup, if the thing we parsed only contains a |
Richard Smith | c89edf5 | 2011-07-01 19:46:12 +0000 | [diff] [blame] | 1122 | // single decl, convert it now. Alias declarations can also declare a type; |
| 1123 | // include that too if it is present. |
| 1124 | return Actions.ConvertDeclToDeclGroup(SingleDecl, OwnedType); |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 1125 | } |
| 1126 | |
| 1127 | /// simple-declaration: [C99 6.7: declaration] [C++ 7p1: dcl.dcl] |
| 1128 | /// declaration-specifiers init-declarator-list[opt] ';' |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1129 | /// [C++11] attribute-specifier-seq decl-specifier-seq[opt] |
| 1130 | /// init-declarator-list ';' |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 1131 | ///[C90/C++]init-declarator-list ';' [TODO] |
| 1132 | /// [OMP] threadprivate-directive [TODO] |
Chris Lattner | cd14775 | 2009-03-29 17:27:48 +0000 | [diff] [blame] | 1133 | /// |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1134 | /// for-range-declaration: [C++11 6.5p1: stmt.ranged] |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1135 | /// attribute-specifier-seq[opt] type-specifier-seq declarator |
| 1136 | /// |
Chris Lattner | cd14775 | 2009-03-29 17:27:48 +0000 | [diff] [blame] | 1137 | /// If RequireSemi is false, this does not check for a ';' at the end of the |
Chris Lattner | 5c5db55 | 2010-04-05 18:18:31 +0000 | [diff] [blame] | 1138 | /// declaration. If it is true, it checks for and eats it. |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1139 | /// |
| 1140 | /// If FRI is non-null, we might be parsing a for-range-declaration instead |
| 1141 | /// of a simple-declaration. If we find that we are, we also parse the |
| 1142 | /// for-range-initializer, and place it here. |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 1143 | Parser::DeclGroupPtrTy |
| 1144 | Parser::ParseSimpleDeclaration(StmtVector &Stmts, unsigned Context, |
| 1145 | SourceLocation &DeclEnd, |
| 1146 | ParsedAttributesWithRange &attrs, |
| 1147 | bool RequireSemi, ForRangeInit *FRI) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1148 | // Parse the common declaration-specifiers piece. |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1149 | ParsingDeclSpec DS(*this); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1150 | DS.takeAttributesFrom(attrs); |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 1151 | |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 1152 | ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none, |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1153 | getDeclSpecContextFromDeclaratorContext(Context)); |
Abramo Bagnara | 06284c1 | 2012-01-07 10:52:36 +0000 | [diff] [blame] | 1154 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1155 | // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };" |
| 1156 | // declaration-specifiers init-declarator-list[opt] ';' |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 1157 | if (Tok.is(tok::semi)) { |
Argyrios Kyrtzidis | 5641b0d | 2012-05-16 23:49:15 +0000 | [diff] [blame] | 1158 | DeclEnd = Tok.getLocation(); |
Chris Lattner | 5c5db55 | 2010-04-05 18:18:31 +0000 | [diff] [blame] | 1159 | if (RequireSemi) ConsumeToken(); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1160 | Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none, |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 1161 | DS); |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1162 | DS.complete(TheDecl); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1163 | return Actions.ConvertDeclToDeclGroup(TheDecl); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1164 | } |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 1165 | |
| 1166 | return ParseDeclGroup(DS, Context, /*FunctionDefs=*/ false, &DeclEnd, FRI); |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1167 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1168 | |
Richard Smith | 0706df4 | 2011-10-19 21:33:05 +0000 | [diff] [blame] | 1169 | /// Returns true if this might be the start of a declarator, or a common typo |
| 1170 | /// for a declarator. |
| 1171 | bool Parser::MightBeDeclarator(unsigned Context) { |
| 1172 | switch (Tok.getKind()) { |
| 1173 | case tok::annot_cxxscope: |
| 1174 | case tok::annot_template_id: |
| 1175 | case tok::caret: |
| 1176 | case tok::code_completion: |
| 1177 | case tok::coloncolon: |
| 1178 | case tok::ellipsis: |
| 1179 | case tok::kw___attribute: |
| 1180 | case tok::kw_operator: |
| 1181 | case tok::l_paren: |
| 1182 | case tok::star: |
| 1183 | return true; |
| 1184 | |
| 1185 | case tok::amp: |
| 1186 | case tok::ampamp: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1187 | return getLangOpts().CPlusPlus; |
Richard Smith | 0706df4 | 2011-10-19 21:33:05 +0000 | [diff] [blame] | 1188 | |
Richard Smith | 1c94c16 | 2012-01-09 22:31:44 +0000 | [diff] [blame] | 1189 | case tok::l_square: // Might be an attribute on an unnamed bit-field. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1190 | return Context == Declarator::MemberContext && getLangOpts().CPlusPlus0x && |
Richard Smith | 1c94c16 | 2012-01-09 22:31:44 +0000 | [diff] [blame] | 1191 | NextToken().is(tok::l_square); |
| 1192 | |
| 1193 | case tok::colon: // Might be a typo for '::' or an unnamed bit-field. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1194 | return Context == Declarator::MemberContext || getLangOpts().CPlusPlus; |
Richard Smith | 1c94c16 | 2012-01-09 22:31:44 +0000 | [diff] [blame] | 1195 | |
Richard Smith | 0706df4 | 2011-10-19 21:33:05 +0000 | [diff] [blame] | 1196 | case tok::identifier: |
| 1197 | switch (NextToken().getKind()) { |
| 1198 | case tok::code_completion: |
| 1199 | case tok::coloncolon: |
| 1200 | case tok::comma: |
| 1201 | case tok::equal: |
| 1202 | case tok::equalequal: // Might be a typo for '='. |
| 1203 | case tok::kw_alignas: |
| 1204 | case tok::kw_asm: |
| 1205 | case tok::kw___attribute: |
| 1206 | case tok::l_brace: |
| 1207 | case tok::l_paren: |
| 1208 | case tok::l_square: |
| 1209 | case tok::less: |
| 1210 | case tok::r_brace: |
| 1211 | case tok::r_paren: |
| 1212 | case tok::r_square: |
| 1213 | case tok::semi: |
| 1214 | return true; |
| 1215 | |
| 1216 | case tok::colon: |
| 1217 | // At namespace scope, 'identifier:' is probably a typo for 'identifier::' |
Richard Smith | 1c94c16 | 2012-01-09 22:31:44 +0000 | [diff] [blame] | 1218 | // and in block scope it's probably a label. Inside a class definition, |
| 1219 | // this is a bit-field. |
| 1220 | return Context == Declarator::MemberContext || |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1221 | (getLangOpts().CPlusPlus && Context == Declarator::FileContext); |
Richard Smith | 1c94c16 | 2012-01-09 22:31:44 +0000 | [diff] [blame] | 1222 | |
| 1223 | case tok::identifier: // Possible virt-specifier. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1224 | return getLangOpts().CPlusPlus0x && isCXX0XVirtSpecifier(NextToken()); |
Richard Smith | 0706df4 | 2011-10-19 21:33:05 +0000 | [diff] [blame] | 1225 | |
| 1226 | default: |
| 1227 | return false; |
| 1228 | } |
| 1229 | |
| 1230 | default: |
| 1231 | return false; |
| 1232 | } |
| 1233 | } |
| 1234 | |
Richard Smith | 994d73f | 2012-04-11 20:59:20 +0000 | [diff] [blame] | 1235 | /// Skip until we reach something which seems like a sensible place to pick |
| 1236 | /// up parsing after a malformed declaration. This will sometimes stop sooner |
| 1237 | /// than SkipUntil(tok::r_brace) would, but will never stop later. |
| 1238 | void Parser::SkipMalformedDecl() { |
| 1239 | while (true) { |
| 1240 | switch (Tok.getKind()) { |
| 1241 | case tok::l_brace: |
| 1242 | // Skip until matching }, then stop. We've probably skipped over |
| 1243 | // a malformed class or function definition or similar. |
| 1244 | ConsumeBrace(); |
| 1245 | SkipUntil(tok::r_brace, /*StopAtSemi*/false); |
| 1246 | if (Tok.is(tok::comma) || Tok.is(tok::l_brace) || Tok.is(tok::kw_try)) { |
| 1247 | // This declaration isn't over yet. Keep skipping. |
| 1248 | continue; |
| 1249 | } |
| 1250 | if (Tok.is(tok::semi)) |
| 1251 | ConsumeToken(); |
| 1252 | return; |
| 1253 | |
| 1254 | case tok::l_square: |
| 1255 | ConsumeBracket(); |
| 1256 | SkipUntil(tok::r_square, /*StopAtSemi*/false); |
| 1257 | continue; |
| 1258 | |
| 1259 | case tok::l_paren: |
| 1260 | ConsumeParen(); |
| 1261 | SkipUntil(tok::r_paren, /*StopAtSemi*/false); |
| 1262 | continue; |
| 1263 | |
| 1264 | case tok::r_brace: |
| 1265 | return; |
| 1266 | |
| 1267 | case tok::semi: |
| 1268 | ConsumeToken(); |
| 1269 | return; |
| 1270 | |
| 1271 | case tok::kw_inline: |
| 1272 | // 'inline namespace' at the start of a line is almost certainly |
| 1273 | // a good place to pick back up parsing. |
| 1274 | if (Tok.isAtStartOfLine() && NextToken().is(tok::kw_namespace)) |
| 1275 | return; |
| 1276 | break; |
| 1277 | |
| 1278 | case tok::kw_namespace: |
| 1279 | // 'namespace' at the start of a line is almost certainly a good |
| 1280 | // place to pick back up parsing. |
| 1281 | if (Tok.isAtStartOfLine()) |
| 1282 | return; |
| 1283 | break; |
| 1284 | |
| 1285 | case tok::eof: |
| 1286 | return; |
| 1287 | |
| 1288 | default: |
| 1289 | break; |
| 1290 | } |
| 1291 | |
| 1292 | ConsumeAnyToken(); |
| 1293 | } |
| 1294 | } |
| 1295 | |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1296 | /// ParseDeclGroup - Having concluded that this is either a function |
| 1297 | /// definition or a group of object declarations, actually parse the |
| 1298 | /// result. |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1299 | Parser::DeclGroupPtrTy Parser::ParseDeclGroup(ParsingDeclSpec &DS, |
| 1300 | unsigned Context, |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1301 | bool AllowFunctionDefinitions, |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1302 | SourceLocation *DeclEnd, |
| 1303 | ForRangeInit *FRI) { |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1304 | // Parse the first declarator. |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1305 | ParsingDeclarator D(*this, DS, static_cast<Declarator::TheContext>(Context)); |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1306 | ParseDeclarator(D); |
Chris Lattner | cd14775 | 2009-03-29 17:27:48 +0000 | [diff] [blame] | 1307 | |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1308 | // Bail out if the first declarator didn't seem well-formed. |
| 1309 | if (!D.hasName() && !D.mayOmitIdentifier()) { |
Richard Smith | 994d73f | 2012-04-11 20:59:20 +0000 | [diff] [blame] | 1310 | SkipMalformedDecl(); |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1311 | return DeclGroupPtrTy(); |
Chris Lattner | 23c4b18 | 2009-03-29 17:18:04 +0000 | [diff] [blame] | 1312 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1313 | |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 1314 | // Save late-parsed attributes for now; they need to be parsed in the |
| 1315 | // appropriate function scope after the function Decl has been constructed. |
| 1316 | LateParsedAttrList LateParsedAttrs; |
| 1317 | if (D.isFunctionDeclarator()) |
| 1318 | MaybeParseGNUAttributes(D, &LateParsedAttrs); |
| 1319 | |
Chris Lattner | c82daef | 2010-07-11 22:24:20 +0000 | [diff] [blame] | 1320 | // Check to see if we have a function *definition* which must have a body. |
| 1321 | if (AllowFunctionDefinitions && D.isFunctionDeclarator() && |
| 1322 | // Look at the next token to make sure that this isn't a function |
| 1323 | // declaration. We have to check this because __attribute__ might be the |
| 1324 | // start of a function definition in GCC-extended K&R C. |
| 1325 | !isDeclarationAfterDeclarator()) { |
Richard Smith | 58196dc | 2011-11-30 23:45:35 +0000 | [diff] [blame] | 1326 | |
Chris Lattner | 004659a | 2010-07-11 22:42:07 +0000 | [diff] [blame] | 1327 | if (isStartOfFunctionDefinition(D)) { |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1328 | if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) { |
| 1329 | Diag(Tok, diag::err_function_declared_typedef); |
| 1330 | |
| 1331 | // Recover by treating the 'typedef' as spurious. |
| 1332 | DS.ClearStorageClassSpecs(); |
| 1333 | } |
| 1334 | |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 1335 | Decl *TheDecl = |
| 1336 | ParseFunctionDefinition(D, ParsedTemplateInfo(), &LateParsedAttrs); |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1337 | return Actions.ConvertDeclToDeclGroup(TheDecl); |
Chris Lattner | 004659a | 2010-07-11 22:42:07 +0000 | [diff] [blame] | 1338 | } |
| 1339 | |
| 1340 | if (isDeclarationSpecifier()) { |
| 1341 | // If there is an invalid declaration specifier right after the function |
| 1342 | // prototype, then we must be in a missing semicolon case where this isn't |
| 1343 | // actually a body. Just fall through into the code that handles it as a |
| 1344 | // prototype, and let the top-level code handle the erroneous declspec |
| 1345 | // where it would otherwise expect a comma or semicolon. |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1346 | } else { |
| 1347 | Diag(Tok, diag::err_expected_fn_body); |
| 1348 | SkipUntil(tok::semi); |
| 1349 | return DeclGroupPtrTy(); |
| 1350 | } |
| 1351 | } |
| 1352 | |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 1353 | if (ParseAsmAttributesAfterDeclarator(D)) |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1354 | return DeclGroupPtrTy(); |
| 1355 | |
| 1356 | // C++0x [stmt.iter]p1: Check if we have a for-range-declarator. If so, we |
| 1357 | // must parse and analyze the for-range-initializer before the declaration is |
| 1358 | // analyzed. |
| 1359 | if (FRI && Tok.is(tok::colon)) { |
| 1360 | FRI->ColonLoc = ConsumeToken(); |
Sebastian Redl | dbef1bb | 2011-06-05 12:23:16 +0000 | [diff] [blame] | 1361 | if (Tok.is(tok::l_brace)) |
| 1362 | FRI->RangeExpr = ParseBraceInitializer(); |
| 1363 | else |
| 1364 | FRI->RangeExpr = ParseExpression(); |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1365 | Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D); |
| 1366 | Actions.ActOnCXXForRangeDecl(ThisDecl); |
| 1367 | Actions.FinalizeDeclaration(ThisDecl); |
John McCall | 6895a64 | 2012-01-27 01:29:43 +0000 | [diff] [blame] | 1368 | D.complete(ThisDecl); |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1369 | return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, &ThisDecl, 1); |
| 1370 | } |
| 1371 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1372 | SmallVector<Decl *, 8> DeclsInGroup; |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1373 | Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(D); |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 1374 | if (LateParsedAttrs.size() > 0) |
| 1375 | ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false); |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1376 | D.complete(FirstDecl); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1377 | if (FirstDecl) |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1378 | DeclsInGroup.push_back(FirstDecl); |
| 1379 | |
Richard Smith | 0706df4 | 2011-10-19 21:33:05 +0000 | [diff] [blame] | 1380 | bool ExpectSemi = Context != Declarator::ForContext; |
| 1381 | |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1382 | // If we don't have a comma, it is either the end of the list (a ';') or an |
| 1383 | // error, bail out. |
| 1384 | while (Tok.is(tok::comma)) { |
Richard Smith | 0706df4 | 2011-10-19 21:33:05 +0000 | [diff] [blame] | 1385 | SourceLocation CommaLoc = ConsumeToken(); |
| 1386 | |
| 1387 | if (Tok.isAtStartOfLine() && ExpectSemi && !MightBeDeclarator(Context)) { |
| 1388 | // This comma was followed by a line-break and something which can't be |
| 1389 | // the start of a declarator. The comma was probably a typo for a |
| 1390 | // semicolon. |
| 1391 | Diag(CommaLoc, diag::err_expected_semi_declaration) |
| 1392 | << FixItHint::CreateReplacement(CommaLoc, ";"); |
| 1393 | ExpectSemi = false; |
| 1394 | break; |
| 1395 | } |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1396 | |
| 1397 | // Parse the next declarator. |
| 1398 | D.clear(); |
Richard Smith | 7984de3 | 2012-01-12 23:53:29 +0000 | [diff] [blame] | 1399 | D.setCommaLoc(CommaLoc); |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1400 | |
| 1401 | // Accept attributes in an init-declarator. In the first declarator in a |
| 1402 | // declaration, these would be part of the declspec. In subsequent |
| 1403 | // declarators, they become part of the declarator itself, so that they |
| 1404 | // don't apply to declarators after *this* one. Examples: |
| 1405 | // short __attribute__((common)) var; -> declspec |
| 1406 | // short var __attribute__((common)); -> declarator |
| 1407 | // short x, __attribute__((common)) var; -> declarator |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1408 | MaybeParseGNUAttributes(D); |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1409 | |
| 1410 | ParseDeclarator(D); |
Fariborz Jahanian | 9baf39d | 2012-01-13 00:14:12 +0000 | [diff] [blame] | 1411 | if (!D.isInvalidType()) { |
| 1412 | Decl *ThisDecl = ParseDeclarationAfterDeclarator(D); |
| 1413 | D.complete(ThisDecl); |
| 1414 | if (ThisDecl) |
| 1415 | DeclsInGroup.push_back(ThisDecl); |
| 1416 | } |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1417 | } |
| 1418 | |
| 1419 | if (DeclEnd) |
| 1420 | *DeclEnd = Tok.getLocation(); |
| 1421 | |
Richard Smith | 0706df4 | 2011-10-19 21:33:05 +0000 | [diff] [blame] | 1422 | if (ExpectSemi && |
Chris Lattner | 8bb21d3 | 2012-04-28 16:12:17 +0000 | [diff] [blame] | 1423 | ExpectAndConsumeSemi(Context == Declarator::FileContext |
| 1424 | ? diag::err_invalid_token_after_toplevel_declarator |
| 1425 | : diag::err_expected_semi_declaration)) { |
Chris Lattner | 004659a | 2010-07-11 22:42:07 +0000 | [diff] [blame] | 1426 | // Okay, there was no semicolon and one was expected. If we see a |
| 1427 | // declaration specifier, just assume it was missing and continue parsing. |
| 1428 | // Otherwise things are very confused and we skip to recover. |
| 1429 | if (!isDeclarationSpecifier()) { |
| 1430 | SkipUntil(tok::r_brace, true, true); |
| 1431 | if (Tok.is(tok::semi)) |
| 1432 | ConsumeToken(); |
| 1433 | } |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1434 | } |
| 1435 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1436 | return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, |
John McCall | d8ac057 | 2009-11-03 19:26:08 +0000 | [diff] [blame] | 1437 | DeclsInGroup.data(), |
| 1438 | DeclsInGroup.size()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1439 | } |
| 1440 | |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1441 | /// Parse an optional simple-asm-expr and attributes, and attach them to a |
| 1442 | /// declarator. Returns true on an error. |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 1443 | bool Parser::ParseAsmAttributesAfterDeclarator(Declarator &D) { |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1444 | // If a simple-asm-expr is present, parse it. |
| 1445 | if (Tok.is(tok::kw_asm)) { |
| 1446 | SourceLocation Loc; |
| 1447 | ExprResult AsmLabel(ParseSimpleAsm(&Loc)); |
| 1448 | if (AsmLabel.isInvalid()) { |
| 1449 | SkipUntil(tok::semi, true, true); |
| 1450 | return true; |
| 1451 | } |
| 1452 | |
| 1453 | D.setAsmLabel(AsmLabel.release()); |
| 1454 | D.SetRangeEnd(Loc); |
| 1455 | } |
| 1456 | |
| 1457 | MaybeParseGNUAttributes(D); |
| 1458 | return false; |
| 1459 | } |
| 1460 | |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1461 | /// \brief Parse 'declaration' after parsing 'declaration-specifiers |
| 1462 | /// declarator'. This method parses the remainder of the declaration |
| 1463 | /// (including any attributes or initializer, among other things) and |
| 1464 | /// finalizes the declaration. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1465 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1466 | /// init-declarator: [C99 6.7] |
| 1467 | /// declarator |
| 1468 | /// declarator '=' initializer |
| 1469 | /// [GNU] declarator simple-asm-expr[opt] attributes[opt] |
| 1470 | /// [GNU] declarator simple-asm-expr[opt] attributes[opt] '=' initializer |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 1471 | /// [C++] declarator initializer[opt] |
| 1472 | /// |
| 1473 | /// [C++] initializer: |
| 1474 | /// [C++] '=' initializer-clause |
| 1475 | /// [C++] '(' expression-list ')' |
Sebastian Redl | 50de12f | 2009-03-24 22:27:57 +0000 | [diff] [blame] | 1476 | /// [C++0x] '=' 'default' [TODO] |
| 1477 | /// [C++0x] '=' 'delete' |
Sebastian Redl | dbef1bb | 2011-06-05 12:23:16 +0000 | [diff] [blame] | 1478 | /// [C++0x] braced-init-list |
Sebastian Redl | 50de12f | 2009-03-24 22:27:57 +0000 | [diff] [blame] | 1479 | /// |
| 1480 | /// According to the standard grammar, =default and =delete are function |
| 1481 | /// definitions, but that definitely doesn't fit with the parser here. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1482 | /// |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1483 | Decl *Parser::ParseDeclarationAfterDeclarator(Declarator &D, |
Douglas Gregor | e542c86 | 2009-06-23 23:11:28 +0000 | [diff] [blame] | 1484 | const ParsedTemplateInfo &TemplateInfo) { |
DeLesley Hutchins | c24a233 | 2012-02-16 16:50:43 +0000 | [diff] [blame] | 1485 | if (ParseAsmAttributesAfterDeclarator(D)) |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1486 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1487 | |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1488 | return ParseDeclarationAfterDeclaratorAndAttributes(D, TemplateInfo); |
| 1489 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1490 | |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1491 | Decl *Parser::ParseDeclarationAfterDeclaratorAndAttributes(Declarator &D, |
| 1492 | const ParsedTemplateInfo &TemplateInfo) { |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1493 | // Inform the current actions module that we just parsed this declarator. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1494 | Decl *ThisDecl = 0; |
Douglas Gregor | d5a423b | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 1495 | switch (TemplateInfo.Kind) { |
| 1496 | case ParsedTemplateInfo::NonTemplate: |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1497 | ThisDecl = Actions.ActOnDeclarator(getCurScope(), D); |
Douglas Gregor | d5a423b | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 1498 | break; |
| 1499 | |
| 1500 | case ParsedTemplateInfo::Template: |
| 1501 | case ParsedTemplateInfo::ExplicitSpecialization: |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1502 | ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(), |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1503 | MultiTemplateParamsArg(Actions, |
Douglas Gregor | e542c86 | 2009-06-23 23:11:28 +0000 | [diff] [blame] | 1504 | TemplateInfo.TemplateParams->data(), |
| 1505 | TemplateInfo.TemplateParams->size()), |
Douglas Gregor | d5a423b | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 1506 | D); |
| 1507 | break; |
| 1508 | |
| 1509 | case ParsedTemplateInfo::ExplicitInstantiation: { |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1510 | DeclResult ThisRes |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1511 | = Actions.ActOnExplicitInstantiation(getCurScope(), |
Douglas Gregor | d5a423b | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 1512 | TemplateInfo.ExternLoc, |
| 1513 | TemplateInfo.TemplateLoc, |
| 1514 | D); |
| 1515 | if (ThisRes.isInvalid()) { |
| 1516 | SkipUntil(tok::semi, true, true); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1517 | return 0; |
Douglas Gregor | d5a423b | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 1518 | } |
| 1519 | |
| 1520 | ThisDecl = ThisRes.get(); |
| 1521 | break; |
| 1522 | } |
| 1523 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1524 | |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1525 | bool TypeContainsAuto = |
| 1526 | D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto; |
| 1527 | |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1528 | // Parse declarator '=' initializer. |
Richard Trieu | d6c7c67 | 2012-01-18 22:54:52 +0000 | [diff] [blame] | 1529 | // If a '==' or '+=' is found, suggest a fixit to '='. |
Richard Trieu | fcaf27e | 2012-01-19 22:01:51 +0000 | [diff] [blame] | 1530 | if (isTokenEqualOrEqualTypo()) { |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1531 | ConsumeToken(); |
Anders Carlsson | 37bf9d2 | 2010-09-24 21:25:25 +0000 | [diff] [blame] | 1532 | if (Tok.is(tok::kw_delete)) { |
Sean Hunt | e4246a6 | 2011-05-12 06:15:49 +0000 | [diff] [blame] | 1533 | if (D.isFunctionDeclarator()) |
| 1534 | Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration) |
| 1535 | << 1 /* delete */; |
| 1536 | else |
| 1537 | Diag(ConsumeToken(), diag::err_deleted_non_function); |
Sean Hunt | fe2695e | 2011-05-06 01:42:00 +0000 | [diff] [blame] | 1538 | } else if (Tok.is(tok::kw_default)) { |
Sean Hunt | e4246a6 | 2011-05-12 06:15:49 +0000 | [diff] [blame] | 1539 | if (D.isFunctionDeclarator()) |
Sebastian Redl | ecfcd56 | 2012-02-11 23:51:21 +0000 | [diff] [blame] | 1540 | Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration) |
| 1541 | << 0 /* default */; |
Sean Hunt | e4246a6 | 2011-05-12 06:15:49 +0000 | [diff] [blame] | 1542 | else |
| 1543 | Diag(ConsumeToken(), diag::err_default_special_members); |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1544 | } else { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1545 | if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) { |
John McCall | 731ad84 | 2009-12-19 09:28:58 +0000 | [diff] [blame] | 1546 | EnterScope(0); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1547 | Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl); |
John McCall | 731ad84 | 2009-12-19 09:28:58 +0000 | [diff] [blame] | 1548 | } |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 1549 | |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 1550 | if (Tok.is(tok::code_completion)) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1551 | Actions.CodeCompleteInitializer(getCurScope(), ThisDecl); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1552 | cutOffParsing(); |
| 1553 | return 0; |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 1554 | } |
| 1555 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1556 | ExprResult Init(ParseInitializer()); |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 1557 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1558 | if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1559 | Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl); |
John McCall | 731ad84 | 2009-12-19 09:28:58 +0000 | [diff] [blame] | 1560 | ExitScope(); |
| 1561 | } |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 1562 | |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1563 | if (Init.isInvalid()) { |
Douglas Gregor | 0022554 | 2010-03-01 18:27:54 +0000 | [diff] [blame] | 1564 | SkipUntil(tok::comma, true, true); |
| 1565 | Actions.ActOnInitializerError(ThisDecl); |
| 1566 | } else |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1567 | Actions.AddInitializerToDecl(ThisDecl, Init.take(), |
| 1568 | /*DirectInit=*/false, TypeContainsAuto); |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1569 | } |
| 1570 | } else if (Tok.is(tok::l_paren)) { |
| 1571 | // Parse C++ direct initializer: '(' expression-list ')' |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1572 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 1573 | T.consumeOpen(); |
| 1574 | |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1575 | ExprVector Exprs(Actions); |
| 1576 | CommaLocsTy CommaLocs; |
| 1577 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1578 | if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) { |
Douglas Gregor | b4debae | 2009-12-22 17:47:17 +0000 | [diff] [blame] | 1579 | EnterScope(0); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1580 | Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl); |
Douglas Gregor | b4debae | 2009-12-22 17:47:17 +0000 | [diff] [blame] | 1581 | } |
| 1582 | |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1583 | if (ParseExpressionList(Exprs, CommaLocs)) { |
| 1584 | SkipUntil(tok::r_paren); |
Douglas Gregor | b4debae | 2009-12-22 17:47:17 +0000 | [diff] [blame] | 1585 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1586 | if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1587 | Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl); |
Douglas Gregor | b4debae | 2009-12-22 17:47:17 +0000 | [diff] [blame] | 1588 | ExitScope(); |
| 1589 | } |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1590 | } else { |
| 1591 | // Match the ')'. |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1592 | T.consumeClose(); |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1593 | |
| 1594 | assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() && |
| 1595 | "Unexpected number of commas!"); |
Douglas Gregor | b4debae | 2009-12-22 17:47:17 +0000 | [diff] [blame] | 1596 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1597 | if (getLangOpts().CPlusPlus && D.getCXXScopeSpec().isSet()) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1598 | Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl); |
Douglas Gregor | b4debae | 2009-12-22 17:47:17 +0000 | [diff] [blame] | 1599 | ExitScope(); |
| 1600 | } |
| 1601 | |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 1602 | ExprResult Initializer = Actions.ActOnParenListExpr(T.getOpenLocation(), |
| 1603 | T.getCloseLocation(), |
| 1604 | move_arg(Exprs)); |
| 1605 | Actions.AddInitializerToDecl(ThisDecl, Initializer.take(), |
| 1606 | /*DirectInit=*/true, TypeContainsAuto); |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1607 | } |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1608 | } else if (getLangOpts().CPlusPlus0x && Tok.is(tok::l_brace)) { |
Sebastian Redl | dbef1bb | 2011-06-05 12:23:16 +0000 | [diff] [blame] | 1609 | // Parse C++0x braced-init-list. |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 1610 | Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists); |
| 1611 | |
Sebastian Redl | dbef1bb | 2011-06-05 12:23:16 +0000 | [diff] [blame] | 1612 | if (D.getCXXScopeSpec().isSet()) { |
| 1613 | EnterScope(0); |
| 1614 | Actions.ActOnCXXEnterDeclInitializer(getCurScope(), ThisDecl); |
| 1615 | } |
| 1616 | |
| 1617 | ExprResult Init(ParseBraceInitializer()); |
| 1618 | |
| 1619 | if (D.getCXXScopeSpec().isSet()) { |
| 1620 | Actions.ActOnCXXExitDeclInitializer(getCurScope(), ThisDecl); |
| 1621 | ExitScope(); |
| 1622 | } |
| 1623 | |
| 1624 | if (Init.isInvalid()) { |
| 1625 | Actions.ActOnInitializerError(ThisDecl); |
| 1626 | } else |
| 1627 | Actions.AddInitializerToDecl(ThisDecl, Init.take(), |
| 1628 | /*DirectInit=*/true, TypeContainsAuto); |
| 1629 | |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1630 | } else { |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1631 | Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsAuto); |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1632 | } |
| 1633 | |
Richard Smith | 483b9f3 | 2011-02-21 20:05:19 +0000 | [diff] [blame] | 1634 | Actions.FinalizeDeclaration(ThisDecl); |
| 1635 | |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1636 | return ThisDecl; |
| 1637 | } |
| 1638 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1639 | /// ParseSpecifierQualifierList |
| 1640 | /// specifier-qualifier-list: |
| 1641 | /// type-specifier specifier-qualifier-list[opt] |
| 1642 | /// type-qualifier specifier-qualifier-list[opt] |
| 1643 | /// [GNU] attributes specifier-qualifier-list[opt] |
| 1644 | /// |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 1645 | void Parser::ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS, |
| 1646 | DeclSpecContext DSC) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1647 | /// specifier-qualifier-list is a subset of declaration-specifiers. Just |
| 1648 | /// parse declaration-specifiers and complain about extra stuff. |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1649 | /// TODO: diagnose attribute-specifiers and alignment-specifiers. |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 1650 | ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1651 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1652 | // Validate declspec for type-name. |
| 1653 | unsigned Specs = DS.getParsedSpecifiers(); |
Richard Smith | a971d24 | 2012-05-09 20:55:26 +0000 | [diff] [blame] | 1654 | if ((DSC == DSC_type_specifier || DSC == DSC_trailing) && |
| 1655 | !DS.hasTypeSpecifier()) { |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 1656 | Diag(Tok, diag::err_expected_type); |
| 1657 | DS.SetTypeSpecError(); |
| 1658 | } else if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers() && |
| 1659 | !DS.hasAttributes()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1660 | Diag(Tok, diag::err_typename_requires_specqual); |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 1661 | if (!DS.hasTypeSpecifier()) |
| 1662 | DS.SetTypeSpecError(); |
| 1663 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1664 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1665 | // Issue diagnostic and remove storage class if present. |
| 1666 | if (Specs & DeclSpec::PQ_StorageClassSpecifier) { |
| 1667 | if (DS.getStorageClassSpecLoc().isValid()) |
| 1668 | Diag(DS.getStorageClassSpecLoc(),diag::err_typename_invalid_storageclass); |
| 1669 | else |
| 1670 | Diag(DS.getThreadSpecLoc(), diag::err_typename_invalid_storageclass); |
| 1671 | DS.ClearStorageClassSpecs(); |
| 1672 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1673 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1674 | // Issue diagnostic and remove function specfier if present. |
| 1675 | if (Specs & DeclSpec::PQ_FunctionSpecifier) { |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 1676 | if (DS.isInlineSpecified()) |
| 1677 | Diag(DS.getInlineSpecLoc(), diag::err_typename_invalid_functionspec); |
| 1678 | if (DS.isVirtualSpecified()) |
| 1679 | Diag(DS.getVirtualSpecLoc(), diag::err_typename_invalid_functionspec); |
| 1680 | if (DS.isExplicitSpecified()) |
| 1681 | Diag(DS.getExplicitSpecLoc(), diag::err_typename_invalid_functionspec); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1682 | DS.ClearFunctionSpecs(); |
| 1683 | } |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 1684 | |
| 1685 | // Issue diagnostic and remove constexpr specfier if present. |
| 1686 | if (DS.isConstexprSpecified()) { |
| 1687 | Diag(DS.getConstexprSpecLoc(), diag::err_typename_invalid_constexpr); |
| 1688 | DS.ClearConstexprSpec(); |
| 1689 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1690 | } |
| 1691 | |
Chris Lattner | c199ab3 | 2009-04-12 20:42:31 +0000 | [diff] [blame] | 1692 | /// isValidAfterIdentifierInDeclaratorAfterDeclSpec - Return true if the |
| 1693 | /// specified token is valid after the identifier in a declarator which |
| 1694 | /// immediately follows the declspec. For example, these things are valid: |
| 1695 | /// |
| 1696 | /// int x [ 4]; // direct-declarator |
| 1697 | /// int x ( int y); // direct-declarator |
| 1698 | /// int(int x ) // direct-declarator |
| 1699 | /// int x ; // simple-declaration |
| 1700 | /// int x = 17; // init-declarator-list |
| 1701 | /// int x , y; // init-declarator-list |
| 1702 | /// int x __asm__ ("foo"); // init-declarator-list |
Chris Lattner | b6645dd | 2009-04-14 21:16:09 +0000 | [diff] [blame] | 1703 | /// int x : 4; // struct-declarator |
Chris Lattner | c83c27a | 2009-04-12 22:29:43 +0000 | [diff] [blame] | 1704 | /// int x { 5}; // C++'0x unified initializers |
Chris Lattner | c199ab3 | 2009-04-12 20:42:31 +0000 | [diff] [blame] | 1705 | /// |
| 1706 | /// This is not, because 'x' does not immediately follow the declspec (though |
| 1707 | /// ')' happens to be valid anyway). |
| 1708 | /// int (x) |
| 1709 | /// |
| 1710 | static bool isValidAfterIdentifierInDeclarator(const Token &T) { |
| 1711 | return T.is(tok::l_square) || T.is(tok::l_paren) || T.is(tok::r_paren) || |
| 1712 | T.is(tok::semi) || T.is(tok::comma) || T.is(tok::equal) || |
Chris Lattner | b6645dd | 2009-04-14 21:16:09 +0000 | [diff] [blame] | 1713 | T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon); |
Chris Lattner | c199ab3 | 2009-04-12 20:42:31 +0000 | [diff] [blame] | 1714 | } |
| 1715 | |
Chris Lattner | e40c295 | 2009-04-14 21:34:55 +0000 | [diff] [blame] | 1716 | |
| 1717 | /// ParseImplicitInt - This method is called when we have an non-typename |
| 1718 | /// identifier in a declspec (which normally terminates the decl spec) when |
| 1719 | /// the declspec has no type specifier. In this case, the declspec is either |
| 1720 | /// malformed or is "implicit int" (in K&R and C89). |
| 1721 | /// |
| 1722 | /// This method handles diagnosing this prettily and returns false if the |
| 1723 | /// declspec is done being processed. If it recovers and thinks there may be |
| 1724 | /// other pieces of declspec after it, it returns true. |
| 1725 | /// |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 1726 | bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1727 | const ParsedTemplateInfo &TemplateInfo, |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 1728 | AccessSpecifier AS, DeclSpecContext DSC) { |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 1729 | assert(Tok.is(tok::identifier) && "should have identifier"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1730 | |
Chris Lattner | e40c295 | 2009-04-14 21:34:55 +0000 | [diff] [blame] | 1731 | SourceLocation Loc = Tok.getLocation(); |
| 1732 | // If we see an identifier that is not a type name, we normally would |
| 1733 | // parse it as the identifer being declared. However, when a typename |
| 1734 | // is typo'd or the definition is not included, this will incorrectly |
| 1735 | // parse the typename as the identifier name and fall over misparsing |
| 1736 | // later parts of the diagnostic. |
| 1737 | // |
| 1738 | // As such, we try to do some look-ahead in cases where this would |
| 1739 | // otherwise be an "implicit-int" case to see if this is invalid. For |
| 1740 | // example: "static foo_t x = 4;" In this case, if we parsed foo_t as |
| 1741 | // an identifier with implicit int, we'd get a parse error because the |
| 1742 | // next token is obviously invalid for a type. Parse these as a case |
| 1743 | // with an invalid type specifier. |
| 1744 | assert(!DS.hasTypeSpecifier() && "Type specifier checked above"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1745 | |
Chris Lattner | e40c295 | 2009-04-14 21:34:55 +0000 | [diff] [blame] | 1746 | // Since we know that this either implicit int (which is rare) or an |
Richard Smith | 827adaf | 2012-05-15 21:01:51 +0000 | [diff] [blame] | 1747 | // error, do lookahead to try to do better recovery. This never applies |
| 1748 | // within a type specifier. Outside of C++, we allow this even if the |
| 1749 | // language doesn't "officially" support implicit int -- we support |
| 1750 | // implicit int as an extension in C99 and C11. Allegedly, MS also |
| 1751 | // supports implicit int in C++ mode. |
Richard Smith | a971d24 | 2012-05-09 20:55:26 +0000 | [diff] [blame] | 1752 | if (DSC != DSC_type_specifier && DSC != DSC_trailing && |
Richard Smith | 827adaf | 2012-05-15 21:01:51 +0000 | [diff] [blame] | 1753 | (!getLangOpts().CPlusPlus || getLangOpts().MicrosoftExt) && |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 1754 | isValidAfterIdentifierInDeclarator(NextToken())) { |
Chris Lattner | e40c295 | 2009-04-14 21:34:55 +0000 | [diff] [blame] | 1755 | // If this token is valid for implicit int, e.g. "static x = 4", then |
| 1756 | // we just avoid eating the identifier, so it will be parsed as the |
| 1757 | // identifier in the declarator. |
| 1758 | return false; |
| 1759 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1760 | |
Richard Smith | 827adaf | 2012-05-15 21:01:51 +0000 | [diff] [blame] | 1761 | if (getLangOpts().CPlusPlus && |
| 1762 | DS.getStorageClassSpec() == DeclSpec::SCS_auto) { |
| 1763 | // Don't require a type specifier if we have the 'auto' storage class |
| 1764 | // specifier in C++98 -- we'll promote it to a type specifier. |
| 1765 | return false; |
| 1766 | } |
| 1767 | |
Chris Lattner | e40c295 | 2009-04-14 21:34:55 +0000 | [diff] [blame] | 1768 | // Otherwise, if we don't consume this token, we are going to emit an |
| 1769 | // error anyway. Try to recover from various common problems. Check |
| 1770 | // to see if this was a reference to a tag name without a tag specified. |
| 1771 | // This is a common problem in C (saying 'foo' instead of 'struct foo'). |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 1772 | // |
| 1773 | // C++ doesn't need this, and isTagName doesn't take SS. |
| 1774 | if (SS == 0) { |
Argyrios Kyrtzidis | b8a9d3b | 2011-04-21 17:29:47 +0000 | [diff] [blame] | 1775 | const char *TagName = 0, *FixitTagName = 0; |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 1776 | tok::TokenKind TagKind = tok::unknown; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1777 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1778 | switch (Actions.isTagName(*Tok.getIdentifierInfo(), getCurScope())) { |
Chris Lattner | e40c295 | 2009-04-14 21:34:55 +0000 | [diff] [blame] | 1779 | default: break; |
Argyrios Kyrtzidis | b8a9d3b | 2011-04-21 17:29:47 +0000 | [diff] [blame] | 1780 | case DeclSpec::TST_enum: |
| 1781 | TagName="enum" ; FixitTagName = "enum " ; TagKind=tok::kw_enum ;break; |
| 1782 | case DeclSpec::TST_union: |
| 1783 | TagName="union" ; FixitTagName = "union " ;TagKind=tok::kw_union ;break; |
| 1784 | case DeclSpec::TST_struct: |
| 1785 | TagName="struct"; FixitTagName = "struct ";TagKind=tok::kw_struct;break; |
| 1786 | case DeclSpec::TST_class: |
| 1787 | TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break; |
Chris Lattner | e40c295 | 2009-04-14 21:34:55 +0000 | [diff] [blame] | 1788 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1789 | |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 1790 | if (TagName) { |
Kaelyn Uhrain | aec2ac6 | 2012-04-26 23:36:17 +0000 | [diff] [blame] | 1791 | IdentifierInfo *TokenName = Tok.getIdentifierInfo(); |
| 1792 | LookupResult R(Actions, TokenName, SourceLocation(), |
| 1793 | Sema::LookupOrdinaryName); |
| 1794 | |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 1795 | Diag(Loc, diag::err_use_of_tag_name_without_tag) |
Kaelyn Uhrain | aec2ac6 | 2012-04-26 23:36:17 +0000 | [diff] [blame] | 1796 | << TokenName << TagName << getLangOpts().CPlusPlus |
| 1797 | << FixItHint::CreateInsertion(Tok.getLocation(), FixitTagName); |
| 1798 | |
| 1799 | if (Actions.LookupParsedName(R, getCurScope(), SS)) { |
| 1800 | for (LookupResult::iterator I = R.begin(), IEnd = R.end(); |
| 1801 | I != IEnd; ++I) |
Kaelyn Uhrain | 392b3f5 | 2012-04-27 18:26:49 +0000 | [diff] [blame] | 1802 | Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type) |
Kaelyn Uhrain | aec2ac6 | 2012-04-26 23:36:17 +0000 | [diff] [blame] | 1803 | << TokenName << TagName; |
| 1804 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1805 | |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 1806 | // Parse this as a tag as if the missing tag were present. |
| 1807 | if (TagKind == tok::kw_enum) |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 1808 | ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSC_normal); |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 1809 | else |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 1810 | ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS, |
| 1811 | /*EnteringContext*/ false, DSC_normal); |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 1812 | return true; |
| 1813 | } |
Chris Lattner | e40c295 | 2009-04-14 21:34:55 +0000 | [diff] [blame] | 1814 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1815 | |
Richard Smith | 8f0a7e7 | 2012-05-15 21:29:55 +0000 | [diff] [blame] | 1816 | // Determine whether this identifier could plausibly be the name of something |
Richard Smith | 7514db2 | 2012-05-15 21:42:17 +0000 | [diff] [blame] | 1817 | // being declared (with a missing type). |
Richard Smith | 8f0a7e7 | 2012-05-15 21:29:55 +0000 | [diff] [blame] | 1818 | if (DSC != DSC_type_specifier && DSC != DSC_trailing && |
| 1819 | (!SS || DSC == DSC_top_level || DSC == DSC_class)) { |
Richard Smith | 827adaf | 2012-05-15 21:01:51 +0000 | [diff] [blame] | 1820 | // Look ahead to the next token to try to figure out what this declaration |
| 1821 | // was supposed to be. |
| 1822 | switch (NextToken().getKind()) { |
| 1823 | case tok::comma: |
| 1824 | case tok::equal: |
| 1825 | case tok::kw_asm: |
| 1826 | case tok::l_brace: |
| 1827 | case tok::l_square: |
| 1828 | case tok::semi: |
| 1829 | // This looks like a variable declaration. The type is probably missing. |
| 1830 | // We're done parsing decl-specifiers. |
| 1831 | return false; |
| 1832 | |
| 1833 | case tok::l_paren: { |
| 1834 | // static x(4); // 'x' is not a type |
| 1835 | // x(int n); // 'x' is not a type |
| 1836 | // x (*p)[]; // 'x' is a type |
| 1837 | // |
| 1838 | // Since we're in an error case (or the rare 'implicit int in C++' MS |
| 1839 | // extension), we can afford to perform a tentative parse to determine |
| 1840 | // which case we're in. |
| 1841 | TentativeParsingAction PA(*this); |
| 1842 | ConsumeToken(); |
| 1843 | TPResult TPR = TryParseDeclarator(/*mayBeAbstract*/false); |
| 1844 | PA.Revert(); |
| 1845 | if (TPR == TPResult::False()) |
| 1846 | return false; |
| 1847 | // The identifier is followed by a parenthesized declarator. |
| 1848 | // It's supposed to be a type. |
| 1849 | break; |
| 1850 | } |
| 1851 | |
| 1852 | default: |
| 1853 | // This is probably supposed to be a type. This includes cases like: |
| 1854 | // int f(itn); |
| 1855 | // struct S { unsinged : 4; }; |
| 1856 | break; |
| 1857 | } |
| 1858 | } |
| 1859 | |
Douglas Gregor | a786fdb | 2009-10-13 23:27:22 +0000 | [diff] [blame] | 1860 | // This is almost certainly an invalid type name. Let the action emit a |
| 1861 | // diagnostic and attempt to recover. |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1862 | ParsedType T; |
Kaelyn Uhrain | 50dc12a | 2012-06-15 23:45:58 +0000 | [diff] [blame] | 1863 | IdentifierInfo *II = Tok.getIdentifierInfo(); |
| 1864 | if (Actions.DiagnoseUnknownTypeName(II, Loc, getCurScope(), SS, T)) { |
Douglas Gregor | a786fdb | 2009-10-13 23:27:22 +0000 | [diff] [blame] | 1865 | // The action emitted a diagnostic, so we don't have to. |
| 1866 | if (T) { |
| 1867 | // The action has suggested that the type T could be used. Set that as |
| 1868 | // the type in the declaration specifiers, consume the would-be type |
| 1869 | // name token, and we're done. |
| 1870 | const char *PrevSpec; |
| 1871 | unsigned DiagID; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1872 | DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, T); |
Douglas Gregor | a786fdb | 2009-10-13 23:27:22 +0000 | [diff] [blame] | 1873 | DS.SetRangeEnd(Tok.getLocation()); |
| 1874 | ConsumeToken(); |
Kaelyn Uhrain | 50dc12a | 2012-06-15 23:45:58 +0000 | [diff] [blame] | 1875 | // There may be other declaration specifiers after this. |
| 1876 | return true; |
| 1877 | } else if (II != Tok.getIdentifierInfo()) { |
| 1878 | // If no type was suggested, the correction is to a keyword |
| 1879 | Tok.setKind(II->getTokenID()); |
Douglas Gregor | a786fdb | 2009-10-13 23:27:22 +0000 | [diff] [blame] | 1880 | // There may be other declaration specifiers after this. |
| 1881 | return true; |
| 1882 | } |
| 1883 | |
| 1884 | // Fall through; the action had no suggestion for us. |
| 1885 | } else { |
| 1886 | // The action did not emit a diagnostic, so emit one now. |
| 1887 | SourceRange R; |
| 1888 | if (SS) R = SS->getRange(); |
| 1889 | Diag(Loc, diag::err_unknown_typename) << Tok.getIdentifierInfo() << R; |
| 1890 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1891 | |
Douglas Gregor | a786fdb | 2009-10-13 23:27:22 +0000 | [diff] [blame] | 1892 | // Mark this as an error. |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 1893 | DS.SetTypeSpecError(); |
Chris Lattner | e40c295 | 2009-04-14 21:34:55 +0000 | [diff] [blame] | 1894 | DS.SetRangeEnd(Tok.getLocation()); |
| 1895 | ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1896 | |
Chris Lattner | e40c295 | 2009-04-14 21:34:55 +0000 | [diff] [blame] | 1897 | // TODO: Could inject an invalid typedef decl in an enclosing scope to |
| 1898 | // avoid rippling error messages on subsequent uses of the same type, |
| 1899 | // could be useful if #include was forgotten. |
| 1900 | return false; |
| 1901 | } |
| 1902 | |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 1903 | /// \brief Determine the declaration specifier context from the declarator |
| 1904 | /// context. |
| 1905 | /// |
| 1906 | /// \param Context the declarator context, which is one of the |
| 1907 | /// Declarator::TheContext enumerator values. |
| 1908 | Parser::DeclSpecContext |
| 1909 | Parser::getDeclSpecContextFromDeclaratorContext(unsigned Context) { |
| 1910 | if (Context == Declarator::MemberContext) |
| 1911 | return DSC_class; |
| 1912 | if (Context == Declarator::FileContext) |
| 1913 | return DSC_top_level; |
Richard Smith | 6d96d3a | 2012-03-15 01:02:11 +0000 | [diff] [blame] | 1914 | if (Context == Declarator::TrailingReturnContext) |
| 1915 | return DSC_trailing; |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 1916 | return DSC_normal; |
| 1917 | } |
| 1918 | |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1919 | /// ParseAlignArgument - Parse the argument to an alignment-specifier. |
| 1920 | /// |
| 1921 | /// FIXME: Simply returns an alignof() expression if the argument is a |
| 1922 | /// type. Ideally, the type should be propagated directly into Sema. |
| 1923 | /// |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1924 | /// [C11] type-id |
| 1925 | /// [C11] constant-expression |
Peter Collingbourne | 0b64ba9 | 2011-10-23 20:07:52 +0000 | [diff] [blame] | 1926 | /// [C++0x] type-id ...[opt] |
| 1927 | /// [C++0x] assignment-expression ...[opt] |
| 1928 | ExprResult Parser::ParseAlignArgument(SourceLocation Start, |
| 1929 | SourceLocation &EllipsisLoc) { |
| 1930 | ExprResult ER; |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1931 | if (isTypeIdInParens()) { |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1932 | SourceLocation TypeLoc = Tok.getLocation(); |
| 1933 | ParsedType Ty = ParseTypeName().get(); |
| 1934 | SourceRange TypeRange(Start, Tok.getLocation()); |
Peter Collingbourne | 0b64ba9 | 2011-10-23 20:07:52 +0000 | [diff] [blame] | 1935 | ER = Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true, |
| 1936 | Ty.getAsOpaquePtr(), TypeRange); |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1937 | } else |
Peter Collingbourne | 0b64ba9 | 2011-10-23 20:07:52 +0000 | [diff] [blame] | 1938 | ER = ParseConstantExpression(); |
| 1939 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1940 | if (getLangOpts().CPlusPlus0x && Tok.is(tok::ellipsis)) |
Peter Collingbourne | fe9b2a8 | 2011-10-24 17:56:00 +0000 | [diff] [blame] | 1941 | EllipsisLoc = ConsumeToken(); |
Peter Collingbourne | 0b64ba9 | 2011-10-23 20:07:52 +0000 | [diff] [blame] | 1942 | |
| 1943 | return ER; |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1944 | } |
| 1945 | |
| 1946 | /// ParseAlignmentSpecifier - Parse an alignment-specifier, and add the |
| 1947 | /// attribute to Attrs. |
| 1948 | /// |
| 1949 | /// alignment-specifier: |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1950 | /// [C11] '_Alignas' '(' type-id ')' |
| 1951 | /// [C11] '_Alignas' '(' constant-expression ')' |
Peter Collingbourne | 0b64ba9 | 2011-10-23 20:07:52 +0000 | [diff] [blame] | 1952 | /// [C++0x] 'alignas' '(' type-id ...[opt] ')' |
| 1953 | /// [C++0x] 'alignas' '(' assignment-expression ...[opt] ')' |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1954 | void Parser::ParseAlignmentSpecifier(ParsedAttributes &Attrs, |
| 1955 | SourceLocation *endLoc) { |
| 1956 | assert((Tok.is(tok::kw_alignas) || Tok.is(tok::kw__Alignas)) && |
| 1957 | "Not an alignment-specifier!"); |
| 1958 | |
| 1959 | SourceLocation KWLoc = Tok.getLocation(); |
| 1960 | ConsumeToken(); |
| 1961 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1962 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 1963 | if (T.expectAndConsume(diag::err_expected_lparen)) |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1964 | return; |
| 1965 | |
Peter Collingbourne | 0b64ba9 | 2011-10-23 20:07:52 +0000 | [diff] [blame] | 1966 | SourceLocation EllipsisLoc; |
| 1967 | ExprResult ArgExpr = ParseAlignArgument(T.getOpenLocation(), EllipsisLoc); |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1968 | if (ArgExpr.isInvalid()) { |
| 1969 | SkipUntil(tok::r_paren); |
| 1970 | return; |
| 1971 | } |
| 1972 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1973 | T.consumeClose(); |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1974 | if (endLoc) |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 1975 | *endLoc = T.getCloseLocation(); |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1976 | |
Peter Collingbourne | 0b64ba9 | 2011-10-23 20:07:52 +0000 | [diff] [blame] | 1977 | // FIXME: Handle pack-expansions here. |
| 1978 | if (EllipsisLoc.isValid()) { |
| 1979 | Diag(EllipsisLoc, diag::err_alignas_pack_exp_unsupported); |
| 1980 | return; |
| 1981 | } |
| 1982 | |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1983 | ExprVector ArgExprs(Actions); |
| 1984 | ArgExprs.push_back(ArgExpr.release()); |
Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 1985 | // FIXME: This should not be GNU, but we since the attribute used is |
| 1986 | // based on the spelling, and there is no true spelling for |
| 1987 | // C++11 attributes, this isn't accepted. |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1988 | Attrs.addNew(PP.getIdentifierInfo("aligned"), KWLoc, 0, KWLoc, |
Sean Hunt | 93f95f2 | 2012-06-18 16:13:52 +0000 | [diff] [blame] | 1989 | 0, T.getOpenLocation(), ArgExprs.take(), 1, |
Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 1990 | AttributeList::AS_GNU); |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 1991 | } |
| 1992 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1993 | /// ParseDeclarationSpecifiers |
| 1994 | /// declaration-specifiers: [C99 6.7] |
| 1995 | /// storage-class-specifier declaration-specifiers[opt] |
| 1996 | /// type-specifier declaration-specifiers[opt] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1997 | /// [C99] function-specifier declaration-specifiers[opt] |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1998 | /// [C11] alignment-specifier declaration-specifiers[opt] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1999 | /// [GNU] attributes declaration-specifiers[opt] |
Douglas Gregor | 8d267c5 | 2011-09-09 02:06:17 +0000 | [diff] [blame] | 2000 | /// [Clang] '__module_private__' declaration-specifiers[opt] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2001 | /// |
| 2002 | /// storage-class-specifier: [C99 6.7.1] |
| 2003 | /// 'typedef' |
| 2004 | /// 'extern' |
| 2005 | /// 'static' |
| 2006 | /// 'auto' |
| 2007 | /// 'register' |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 2008 | /// [C++] 'mutable' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2009 | /// [GNU] '__thread' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2010 | /// function-specifier: [C99 6.7.4] |
| 2011 | /// [C99] 'inline' |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 2012 | /// [C++] 'virtual' |
| 2013 | /// [C++] 'explicit' |
Peter Collingbourne | f315fa8 | 2011-02-14 01:42:53 +0000 | [diff] [blame] | 2014 | /// [OpenCL] '__kernel' |
Anders Carlsson | f47f7a1 | 2009-05-06 04:46:28 +0000 | [diff] [blame] | 2015 | /// 'friend': [C++ dcl.friend] |
Sebastian Redl | 2ac6723 | 2009-11-05 15:47:02 +0000 | [diff] [blame] | 2016 | /// 'constexpr': [C++0x dcl.constexpr] |
Anders Carlsson | f47f7a1 | 2009-05-06 04:46:28 +0000 | [diff] [blame] | 2017 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2018 | /// |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 2019 | void Parser::ParseDeclarationSpecifiers(DeclSpec &DS, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 2020 | const ParsedTemplateInfo &TemplateInfo, |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 2021 | AccessSpecifier AS, |
DeLesley Hutchins | 2287c5e | 2012-03-02 22:12:59 +0000 | [diff] [blame] | 2022 | DeclSpecContext DSContext, |
| 2023 | LateParsedAttrList *LateAttrs) { |
Douglas Gregor | 312eadb | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 2024 | if (DS.getSourceRange().isInvalid()) { |
| 2025 | DS.SetRangeStart(Tok.getLocation()); |
| 2026 | DS.SetRangeEnd(Tok.getLocation()); |
| 2027 | } |
| 2028 | |
Douglas Gregor | efaa93a | 2011-11-07 17:33:42 +0000 | [diff] [blame] | 2029 | bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level); |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 2030 | bool AttrsLastTime = false; |
| 2031 | ParsedAttributesWithRange attrs(AttrFactory); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2032 | while (1) { |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2033 | bool isInvalid = false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2034 | const char *PrevSpec = 0; |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2035 | unsigned DiagID = 0; |
| 2036 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2037 | SourceLocation Loc = Tok.getLocation(); |
Douglas Gregor | 12e083c | 2008-11-07 15:42:26 +0000 | [diff] [blame] | 2038 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2039 | switch (Tok.getKind()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2040 | default: |
Chris Lattner | bce6135 | 2008-07-26 00:20:22 +0000 | [diff] [blame] | 2041 | DoneWithDeclSpec: |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 2042 | if (!AttrsLastTime) |
| 2043 | ProhibitAttributes(attrs); |
| 2044 | else |
| 2045 | DS.takeAttributesFrom(attrs); |
Peter Collingbourne | f190768 | 2011-09-29 18:03:57 +0000 | [diff] [blame] | 2046 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2047 | // If this is not a declaration specifier token, we're done reading decl |
| 2048 | // specifiers. First verify that DeclSpec's are consistent. |
Douglas Gregor | 9b3064b | 2009-04-01 22:41:11 +0000 | [diff] [blame] | 2049 | DS.Finish(Diags, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2050 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2051 | |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 2052 | case tok::l_square: |
| 2053 | case tok::kw_alignas: |
| 2054 | if (!isCXX11AttributeSpecifier()) |
| 2055 | goto DoneWithDeclSpec; |
| 2056 | |
| 2057 | ProhibitAttributes(attrs); |
| 2058 | // FIXME: It would be good to recover by accepting the attributes, |
| 2059 | // but attempting to do that now would cause serious |
| 2060 | // madness in terms of diagnostics. |
| 2061 | attrs.clear(); |
| 2062 | attrs.Range = SourceRange(); |
| 2063 | |
| 2064 | ParseCXX11Attributes(attrs); |
| 2065 | AttrsLastTime = true; |
| 2066 | continue; |
| 2067 | |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 2068 | case tok::code_completion: { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2069 | Sema::ParserCompletionContext CCC = Sema::PCC_Namespace; |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 2070 | if (DS.hasTypeSpecifier()) { |
| 2071 | bool AllowNonIdentifiers |
| 2072 | = (getCurScope()->getFlags() & (Scope::ControlScope | |
| 2073 | Scope::BlockScope | |
| 2074 | Scope::TemplateParamScope | |
| 2075 | Scope::FunctionPrototypeScope | |
| 2076 | Scope::AtCatchScope)) == 0; |
| 2077 | bool AllowNestedNameSpecifiers |
| 2078 | = DSContext == DSC_top_level || |
| 2079 | (DSContext == DSC_class && DS.isFriendSpecified()); |
| 2080 | |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 2081 | Actions.CodeCompleteDeclSpec(getCurScope(), DS, |
| 2082 | AllowNonIdentifiers, |
| 2083 | AllowNestedNameSpecifiers); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2084 | return cutOffParsing(); |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 2085 | } |
| 2086 | |
Douglas Gregor | 68e3c2e | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 2087 | if (getCurScope()->getFnParent() || getCurScope()->getBlockParent()) |
| 2088 | CCC = Sema::PCC_LocalDeclarationSpecifiers; |
| 2089 | else if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2090 | CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate |
| 2091 | : Sema::PCC_Template; |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 2092 | else if (DSContext == DSC_class) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2093 | CCC = Sema::PCC_Class; |
Argyrios Kyrtzidis | 849639d | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 2094 | else if (CurParsedObjCImpl) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2095 | CCC = Sema::PCC_ObjCImplementation; |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 2096 | |
| 2097 | Actions.CodeCompleteOrdinaryName(getCurScope(), CCC); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2098 | return cutOffParsing(); |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 2099 | } |
| 2100 | |
Chris Lattner | 5e02c47 | 2009-01-05 00:07:25 +0000 | [diff] [blame] | 2101 | case tok::coloncolon: // ::foo::bar |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 2102 | // C++ scope specifier. Annotate and loop, or bail out on error. |
| 2103 | if (TryAnnotateCXXScopeToken(true)) { |
| 2104 | if (!DS.hasTypeSpecifier()) |
| 2105 | DS.SetTypeSpecError(); |
| 2106 | goto DoneWithDeclSpec; |
| 2107 | } |
John McCall | 2e0a715 | 2010-03-01 18:20:46 +0000 | [diff] [blame] | 2108 | if (Tok.is(tok::coloncolon)) // ::new or ::delete |
| 2109 | goto DoneWithDeclSpec; |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 2110 | continue; |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2111 | |
| 2112 | case tok::annot_cxxscope: { |
Richard Smith | f63eee7 | 2012-05-09 18:56:43 +0000 | [diff] [blame] | 2113 | if (DS.hasTypeSpecifier() || DS.isTypeAltiVecVector()) |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2114 | goto DoneWithDeclSpec; |
| 2115 | |
John McCall | aa87d33 | 2009-12-12 11:40:51 +0000 | [diff] [blame] | 2116 | CXXScopeSpec SS; |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 2117 | Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(), |
| 2118 | Tok.getAnnotationRange(), |
| 2119 | SS); |
John McCall | aa87d33 | 2009-12-12 11:40:51 +0000 | [diff] [blame] | 2120 | |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2121 | // We are looking for a qualified typename. |
Douglas Gregor | 9135c72 | 2009-03-25 15:40:00 +0000 | [diff] [blame] | 2122 | Token Next = NextToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2123 | if (Next.is(tok::annot_template_id) && |
Douglas Gregor | 9135c72 | 2009-03-25 15:40:00 +0000 | [diff] [blame] | 2124 | static_cast<TemplateIdAnnotation *>(Next.getAnnotationValue()) |
Douglas Gregor | c45c232 | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 2125 | ->Kind == TNK_Type_template) { |
Douglas Gregor | 9135c72 | 2009-03-25 15:40:00 +0000 | [diff] [blame] | 2126 | // We have a qualified template-id, e.g., N::A<int> |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 2127 | |
| 2128 | // C++ [class.qual]p2: |
| 2129 | // In a lookup in which the constructor is an acceptable lookup |
| 2130 | // result and the nested-name-specifier nominates a class C: |
| 2131 | // |
| 2132 | // - if the name specified after the |
| 2133 | // nested-name-specifier, when looked up in C, is the |
| 2134 | // injected-class-name of C (Clause 9), or |
| 2135 | // |
| 2136 | // - if the name specified after the nested-name-specifier |
| 2137 | // is the same as the identifier or the |
| 2138 | // simple-template-id's template-name in the last |
| 2139 | // component of the nested-name-specifier, |
| 2140 | // |
| 2141 | // the name is instead considered to name the constructor of |
| 2142 | // class C. |
| 2143 | // |
| 2144 | // Thus, if the template-name is actually the constructor |
| 2145 | // name, then the code is ill-formed; this interpretation is |
| 2146 | // reinforced by the NAD status of core issue 635. |
Argyrios Kyrtzidis | 25a7676 | 2011-06-22 06:09:49 +0000 | [diff] [blame] | 2147 | TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Next); |
John McCall | ba9d853 | 2010-04-13 06:39:49 +0000 | [diff] [blame] | 2148 | if ((DSContext == DSC_top_level || |
| 2149 | (DSContext == DSC_class && DS.isFriendSpecified())) && |
| 2150 | TemplateId->Name && |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2151 | Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) { |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 2152 | if (isConstructorDeclarator()) { |
| 2153 | // The user meant this to be an out-of-line constructor |
| 2154 | // definition, but template arguments are not allowed |
| 2155 | // there. Just allow this as a constructor; we'll |
| 2156 | // complain about it later. |
| 2157 | goto DoneWithDeclSpec; |
| 2158 | } |
| 2159 | |
| 2160 | // The user meant this to name a type, but it actually names |
| 2161 | // a constructor with some extraneous template |
| 2162 | // arguments. Complain, then parse it as a type as the user |
| 2163 | // intended. |
| 2164 | Diag(TemplateId->TemplateNameLoc, |
| 2165 | diag::err_out_of_line_template_id_names_constructor) |
| 2166 | << TemplateId->Name; |
| 2167 | } |
| 2168 | |
John McCall | aa87d33 | 2009-12-12 11:40:51 +0000 | [diff] [blame] | 2169 | DS.getTypeSpecScope() = SS; |
| 2170 | ConsumeToken(); // The C++ scope. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2171 | assert(Tok.is(tok::annot_template_id) && |
Douglas Gregor | 9135c72 | 2009-03-25 15:40:00 +0000 | [diff] [blame] | 2172 | "ParseOptionalCXXScopeSpecifier not working"); |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 2173 | AnnotateTemplateIdTokenAsType(); |
Douglas Gregor | 9135c72 | 2009-03-25 15:40:00 +0000 | [diff] [blame] | 2174 | continue; |
| 2175 | } |
| 2176 | |
Douglas Gregor | 9d7b353 | 2009-09-28 07:26:33 +0000 | [diff] [blame] | 2177 | if (Next.is(tok::annot_typename)) { |
John McCall | aa87d33 | 2009-12-12 11:40:51 +0000 | [diff] [blame] | 2178 | DS.getTypeSpecScope() = SS; |
| 2179 | ConsumeToken(); // The C++ scope. |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2180 | if (Tok.getAnnotationValue()) { |
| 2181 | ParsedType T = getTypeAnnotation(Tok); |
Nico Weber | 253e80b | 2010-11-22 10:30:56 +0000 | [diff] [blame] | 2182 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, |
| 2183 | Tok.getAnnotationEndLoc(), |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2184 | PrevSpec, DiagID, T); |
| 2185 | } |
Douglas Gregor | 9d7b353 | 2009-09-28 07:26:33 +0000 | [diff] [blame] | 2186 | else |
| 2187 | DS.SetTypeSpecError(); |
| 2188 | DS.SetRangeEnd(Tok.getAnnotationEndLoc()); |
| 2189 | ConsumeToken(); // The typename |
| 2190 | } |
| 2191 | |
Douglas Gregor | 9135c72 | 2009-03-25 15:40:00 +0000 | [diff] [blame] | 2192 | if (Next.isNot(tok::identifier)) |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2193 | goto DoneWithDeclSpec; |
| 2194 | |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 2195 | // If we're in a context where the identifier could be a class name, |
| 2196 | // check whether this is a constructor declaration. |
John McCall | ba9d853 | 2010-04-13 06:39:49 +0000 | [diff] [blame] | 2197 | if ((DSContext == DSC_top_level || |
| 2198 | (DSContext == DSC_class && DS.isFriendSpecified())) && |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2199 | Actions.isCurrentClassName(*Next.getIdentifierInfo(), getCurScope(), |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 2200 | &SS)) { |
| 2201 | if (isConstructorDeclarator()) |
| 2202 | goto DoneWithDeclSpec; |
| 2203 | |
| 2204 | // As noted in C++ [class.qual]p2 (cited above), when the name |
| 2205 | // of the class is qualified in a context where it could name |
| 2206 | // a constructor, its a constructor name. However, we've |
| 2207 | // looked at the declarator, and the user probably meant this |
| 2208 | // to be a type. Complain that it isn't supposed to be treated |
| 2209 | // as a type, then proceed to parse it as a type. |
| 2210 | Diag(Next.getLocation(), diag::err_out_of_line_type_names_constructor) |
| 2211 | << Next.getIdentifierInfo(); |
| 2212 | } |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2213 | |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2214 | ParsedType TypeRep = Actions.getTypeName(*Next.getIdentifierInfo(), |
| 2215 | Next.getLocation(), |
Douglas Gregor | 9e87687 | 2011-03-01 18:12:44 +0000 | [diff] [blame] | 2216 | getCurScope(), &SS, |
| 2217 | false, false, ParsedType(), |
Abramo Bagnara | fad03b7 | 2012-01-27 08:46:19 +0000 | [diff] [blame] | 2218 | /*IsCtorOrDtorName=*/false, |
Douglas Gregor | 9e87687 | 2011-03-01 18:12:44 +0000 | [diff] [blame] | 2219 | /*NonTrivialSourceInfo=*/true); |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 2220 | |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 2221 | // If the referenced identifier is not a type, then this declspec is |
| 2222 | // erroneous: We already checked about that it has no type specifier, and |
| 2223 | // C++ doesn't have implicit int. Diagnose it as a typo w.r.t. to the |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2224 | // typename. |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 2225 | if (TypeRep == 0) { |
| 2226 | ConsumeToken(); // Eat the scope spec so the identifier is current. |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 2227 | if (ParseImplicitInt(DS, &SS, TemplateInfo, AS, DSContext)) continue; |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2228 | goto DoneWithDeclSpec; |
Chris Lattner | f4382f5 | 2009-04-14 22:17:06 +0000 | [diff] [blame] | 2229 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2230 | |
John McCall | aa87d33 | 2009-12-12 11:40:51 +0000 | [diff] [blame] | 2231 | DS.getTypeSpecScope() = SS; |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2232 | ConsumeToken(); // The C++ scope. |
| 2233 | |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 2234 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2235 | DiagID, TypeRep); |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2236 | if (isInvalid) |
| 2237 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2238 | |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2239 | DS.SetRangeEnd(Tok.getLocation()); |
| 2240 | ConsumeToken(); // The typename. |
| 2241 | |
| 2242 | continue; |
| 2243 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2244 | |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2245 | case tok::annot_typename: { |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2246 | if (Tok.getAnnotationValue()) { |
| 2247 | ParsedType T = getTypeAnnotation(Tok); |
Nico Weber | c43271e | 2010-11-22 12:50:03 +0000 | [diff] [blame] | 2248 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2249 | DiagID, T); |
| 2250 | } else |
Douglas Gregor | 31a19b6 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 2251 | DS.SetTypeSpecError(); |
Chris Lattner | 5c5db55 | 2010-04-05 18:18:31 +0000 | [diff] [blame] | 2252 | |
| 2253 | if (isInvalid) |
| 2254 | break; |
| 2255 | |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2256 | DS.SetRangeEnd(Tok.getAnnotationEndLoc()); |
| 2257 | ConsumeToken(); // The typename |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2258 | |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2259 | // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id' |
| 2260 | // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an |
Douglas Gregor | 9bd1d8d | 2010-10-21 23:17:00 +0000 | [diff] [blame] | 2261 | // Objective-C interface. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2262 | if (Tok.is(tok::less) && getLangOpts().ObjC1) |
Douglas Gregor | 9bd1d8d | 2010-10-21 23:17:00 +0000 | [diff] [blame] | 2263 | ParseObjCProtocolQualifiers(DS); |
| 2264 | |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2265 | continue; |
| 2266 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2267 | |
Douglas Gregor | bfad915 | 2011-04-28 15:48:45 +0000 | [diff] [blame] | 2268 | case tok::kw___is_signed: |
| 2269 | // GNU libstdc++ 4.4 uses __is_signed as an identifier, but Clang |
| 2270 | // typically treats it as a trait. If we see __is_signed as it appears |
| 2271 | // in libstdc++, e.g., |
| 2272 | // |
| 2273 | // static const bool __is_signed; |
| 2274 | // |
| 2275 | // then treat __is_signed as an identifier rather than as a keyword. |
| 2276 | if (DS.getTypeSpecType() == TST_bool && |
| 2277 | DS.getTypeQualifiers() == DeclSpec::TQ_const && |
| 2278 | DS.getStorageClassSpec() == DeclSpec::SCS_static) { |
| 2279 | Tok.getIdentifierInfo()->RevertTokenIDToIdentifier(); |
| 2280 | Tok.setKind(tok::identifier); |
| 2281 | } |
| 2282 | |
| 2283 | // We're done with the declaration-specifiers. |
| 2284 | goto DoneWithDeclSpec; |
| 2285 | |
Chris Lattner | 3bd934a | 2008-07-26 01:18:38 +0000 | [diff] [blame] | 2286 | // typedef-name |
David Blaikie | 42d6d0c | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 2287 | case tok::kw_decltype: |
Chris Lattner | 3bd934a | 2008-07-26 01:18:38 +0000 | [diff] [blame] | 2288 | case tok::identifier: { |
Chris Lattner | 5e02c47 | 2009-01-05 00:07:25 +0000 | [diff] [blame] | 2289 | // In C++, check to see if this is a scope specifier like foo::bar::, if |
| 2290 | // so handle it as such. This is important for ctor parsing. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2291 | if (getLangOpts().CPlusPlus) { |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 2292 | if (TryAnnotateCXXScopeToken(true)) { |
| 2293 | if (!DS.hasTypeSpecifier()) |
| 2294 | DS.SetTypeSpecError(); |
| 2295 | goto DoneWithDeclSpec; |
| 2296 | } |
| 2297 | if (!Tok.is(tok::identifier)) |
| 2298 | continue; |
| 2299 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2300 | |
Chris Lattner | 3bd934a | 2008-07-26 01:18:38 +0000 | [diff] [blame] | 2301 | // This identifier can only be a typedef name if we haven't already seen |
| 2302 | // a type-specifier. Without this check we misparse: |
| 2303 | // typedef int X; struct Y { short X; }; as 'short int'. |
| 2304 | if (DS.hasTypeSpecifier()) |
| 2305 | goto DoneWithDeclSpec; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2306 | |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 2307 | // Check for need to substitute AltiVec keyword tokens. |
| 2308 | if (TryAltiVecToken(DS, Loc, PrevSpec, DiagID, isInvalid)) |
| 2309 | break; |
| 2310 | |
Richard Smith | f63eee7 | 2012-05-09 18:56:43 +0000 | [diff] [blame] | 2311 | // [AltiVec] 2.2: [If the 'vector' specifier is used] The syntax does not |
| 2312 | // allow the use of a typedef name as a type specifier. |
| 2313 | if (DS.isTypeAltiVecVector()) |
| 2314 | goto DoneWithDeclSpec; |
| 2315 | |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2316 | ParsedType TypeRep = |
| 2317 | Actions.getTypeName(*Tok.getIdentifierInfo(), |
| 2318 | Tok.getLocation(), getCurScope()); |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 2319 | |
Chris Lattner | c199ab3 | 2009-04-12 20:42:31 +0000 | [diff] [blame] | 2320 | // If this is not a typedef name, don't parse it as part of the declspec, |
| 2321 | // it must be an implicit int or an error. |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2322 | if (!TypeRep) { |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 2323 | if (ParseImplicitInt(DS, 0, TemplateInfo, AS, DSContext)) continue; |
Chris Lattner | 3bd934a | 2008-07-26 01:18:38 +0000 | [diff] [blame] | 2324 | goto DoneWithDeclSpec; |
Chris Lattner | c199ab3 | 2009-04-12 20:42:31 +0000 | [diff] [blame] | 2325 | } |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 2326 | |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 2327 | // If we're in a context where the identifier could be a class name, |
| 2328 | // check whether this is a constructor declaration. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2329 | if (getLangOpts().CPlusPlus && DSContext == DSC_class && |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2330 | Actions.isCurrentClassName(*Tok.getIdentifierInfo(), getCurScope()) && |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 2331 | isConstructorDeclarator()) |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 2332 | goto DoneWithDeclSpec; |
| 2333 | |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 2334 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2335 | DiagID, TypeRep); |
Chris Lattner | 3bd934a | 2008-07-26 01:18:38 +0000 | [diff] [blame] | 2336 | if (isInvalid) |
| 2337 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2338 | |
Chris Lattner | 3bd934a | 2008-07-26 01:18:38 +0000 | [diff] [blame] | 2339 | DS.SetRangeEnd(Tok.getLocation()); |
| 2340 | ConsumeToken(); // The identifier |
| 2341 | |
| 2342 | // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id' |
| 2343 | // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an |
Douglas Gregor | 9bd1d8d | 2010-10-21 23:17:00 +0000 | [diff] [blame] | 2344 | // Objective-C interface. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2345 | if (Tok.is(tok::less) && getLangOpts().ObjC1) |
Douglas Gregor | 9bd1d8d | 2010-10-21 23:17:00 +0000 | [diff] [blame] | 2346 | ParseObjCProtocolQualifiers(DS); |
| 2347 | |
Steve Naroff | 4f9b9f1 | 2008-09-22 10:28:57 +0000 | [diff] [blame] | 2348 | // Need to support trailing type qualifiers (e.g. "id<p> const"). |
| 2349 | // If a type specifier follows, it will be diagnosed elsewhere. |
| 2350 | continue; |
Chris Lattner | 3bd934a | 2008-07-26 01:18:38 +0000 | [diff] [blame] | 2351 | } |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 2352 | |
| 2353 | // type-name |
| 2354 | case tok::annot_template_id: { |
Argyrios Kyrtzidis | 25a7676 | 2011-06-22 06:09:49 +0000 | [diff] [blame] | 2355 | TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok); |
Douglas Gregor | c45c232 | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 2356 | if (TemplateId->Kind != TNK_Type_template) { |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 2357 | // This template-id does not refer to a type name, so we're |
| 2358 | // done with the type-specifiers. |
| 2359 | goto DoneWithDeclSpec; |
| 2360 | } |
| 2361 | |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 2362 | // If we're in a context where the template-id could be a |
| 2363 | // constructor name or specialization, check whether this is a |
| 2364 | // constructor declaration. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2365 | if (getLangOpts().CPlusPlus && DSContext == DSC_class && |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2366 | Actions.isCurrentClassName(*TemplateId->Name, getCurScope()) && |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 2367 | isConstructorDeclarator()) |
| 2368 | goto DoneWithDeclSpec; |
| 2369 | |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 2370 | // Turn the template-id annotation token into a type annotation |
| 2371 | // token, then try again to parse it as a type-specifier. |
Douglas Gregor | 31a19b6 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 2372 | AnnotateTemplateIdTokenAsType(); |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 2373 | continue; |
| 2374 | } |
| 2375 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2376 | // GNU attributes support. |
| 2377 | case tok::kw___attribute: |
DeLesley Hutchins | 2287c5e | 2012-03-02 22:12:59 +0000 | [diff] [blame] | 2378 | ParseGNUAttributes(DS.getAttributes(), 0, LateAttrs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2379 | continue; |
Steve Naroff | f59e17e | 2008-12-24 20:59:21 +0000 | [diff] [blame] | 2380 | |
| 2381 | // Microsoft declspec support. |
| 2382 | case tok::kw___declspec: |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2383 | ParseMicrosoftDeclSpec(DS.getAttributes()); |
Steve Naroff | f59e17e | 2008-12-24 20:59:21 +0000 | [diff] [blame] | 2384 | continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2385 | |
Steve Naroff | 239f073 | 2008-12-25 14:16:32 +0000 | [diff] [blame] | 2386 | // Microsoft single token adornments. |
Michael J. Spencer | adc6cbf | 2012-06-18 07:00:48 +0000 | [diff] [blame] | 2387 | case tok::kw___forceinline: { |
| 2388 | isInvalid = DS.SetFunctionSpecInline(Loc, PrevSpec, DiagID); |
| 2389 | IdentifierInfo *AttrName = Tok.getIdentifierInfo(); |
| 2390 | SourceLocation AttrNameLoc = ConsumeToken(); |
Sean Hunt | 93f95f2 | 2012-06-18 16:13:52 +0000 | [diff] [blame] | 2391 | // FIXME: This does not work correctly if it is set to be a declspec |
| 2392 | // attribute, and a GNU attribute is simply incorrect. |
Michael J. Spencer | adc6cbf | 2012-06-18 07:00:48 +0000 | [diff] [blame] | 2393 | DS.getAttributes().addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, |
Sean Hunt | 93f95f2 | 2012-06-18 16:13:52 +0000 | [diff] [blame] | 2394 | SourceLocation(), 0, 0, AttributeList::AS_GNU); |
Michael J. Spencer | adc6cbf | 2012-06-18 07:00:48 +0000 | [diff] [blame] | 2395 | continue; |
| 2396 | } |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 2397 | |
| 2398 | case tok::kw___ptr64: |
Francois Pichet | 58fd97a | 2011-08-25 00:36:46 +0000 | [diff] [blame] | 2399 | case tok::kw___ptr32: |
Steve Naroff | 86bc6cf | 2008-12-25 14:41:26 +0000 | [diff] [blame] | 2400 | case tok::kw___w64: |
Steve Naroff | 239f073 | 2008-12-25 14:16:32 +0000 | [diff] [blame] | 2401 | case tok::kw___cdecl: |
| 2402 | case tok::kw___stdcall: |
| 2403 | case tok::kw___fastcall: |
Douglas Gregor | f813a2c | 2010-05-18 16:57:00 +0000 | [diff] [blame] | 2404 | case tok::kw___thiscall: |
Francois Pichet | 3bd9aa4 | 2011-08-18 09:59:55 +0000 | [diff] [blame] | 2405 | case tok::kw___unaligned: |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2406 | ParseMicrosoftTypeAttributes(DS.getAttributes()); |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 2407 | continue; |
| 2408 | |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 2409 | // Borland single token adornments. |
| 2410 | case tok::kw___pascal: |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2411 | ParseBorlandTypeAttributes(DS.getAttributes()); |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 2412 | continue; |
| 2413 | |
Peter Collingbourne | f315fa8 | 2011-02-14 01:42:53 +0000 | [diff] [blame] | 2414 | // OpenCL single token adornments. |
| 2415 | case tok::kw___kernel: |
| 2416 | ParseOpenCLAttributes(DS.getAttributes()); |
| 2417 | continue; |
| 2418 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2419 | // storage-class-specifier |
| 2420 | case tok::kw_typedef: |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 2421 | isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_typedef, Loc, |
| 2422 | PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2423 | break; |
| 2424 | case tok::kw_extern: |
| 2425 | if (DS.isThreadSpecified()) |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 2426 | Diag(Tok, diag::ext_thread_before) << "extern"; |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 2427 | isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_extern, Loc, |
| 2428 | PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2429 | break; |
Steve Naroff | 8d54bf2 | 2007-12-18 00:16:02 +0000 | [diff] [blame] | 2430 | case tok::kw___private_extern__: |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 2431 | isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_private_extern, |
| 2432 | Loc, PrevSpec, DiagID); |
Steve Naroff | 8d54bf2 | 2007-12-18 00:16:02 +0000 | [diff] [blame] | 2433 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2434 | case tok::kw_static: |
| 2435 | if (DS.isThreadSpecified()) |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 2436 | Diag(Tok, diag::ext_thread_before) << "static"; |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 2437 | isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_static, Loc, |
| 2438 | PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2439 | break; |
| 2440 | case tok::kw_auto: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2441 | if (getLangOpts().CPlusPlus0x) { |
Fariborz Jahanian | 12e3ece | 2011-02-22 23:17:49 +0000 | [diff] [blame] | 2442 | if (isKnownToBeTypeSpecifier(GetLookAheadToken(1))) { |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 2443 | isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc, |
| 2444 | PrevSpec, DiagID); |
Fariborz Jahanian | 12e3ece | 2011-02-22 23:17:49 +0000 | [diff] [blame] | 2445 | if (!isInvalid) |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 2446 | Diag(Tok, diag::ext_auto_storage_class) |
Fariborz Jahanian | 12e3ece | 2011-02-22 23:17:49 +0000 | [diff] [blame] | 2447 | << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 2448 | } else |
Fariborz Jahanian | 12e3ece | 2011-02-22 23:17:49 +0000 | [diff] [blame] | 2449 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_auto, Loc, PrevSpec, |
| 2450 | DiagID); |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 2451 | } else |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 2452 | isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_auto, Loc, |
| 2453 | PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2454 | break; |
| 2455 | case tok::kw_register: |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 2456 | isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_register, Loc, |
| 2457 | PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2458 | break; |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 2459 | case tok::kw_mutable: |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 2460 | isInvalid = DS.SetStorageClassSpec(Actions, DeclSpec::SCS_mutable, Loc, |
| 2461 | PrevSpec, DiagID); |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 2462 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2463 | case tok::kw___thread: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2464 | isInvalid = DS.SetStorageClassSpecThread(Loc, PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2465 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2466 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2467 | // function-specifier |
| 2468 | case tok::kw_inline: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2469 | isInvalid = DS.SetFunctionSpecInline(Loc, PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2470 | break; |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 2471 | case tok::kw_virtual: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2472 | isInvalid = DS.SetFunctionSpecVirtual(Loc, PrevSpec, DiagID); |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 2473 | break; |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 2474 | case tok::kw_explicit: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2475 | isInvalid = DS.SetFunctionSpecExplicit(Loc, PrevSpec, DiagID); |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 2476 | break; |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2477 | |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 2478 | // alignment-specifier |
| 2479 | case tok::kw__Alignas: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2480 | if (!getLangOpts().C11) |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 2481 | Diag(Tok, diag::ext_c11_alignas); |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 2482 | ParseAlignmentSpecifier(DS.getAttributes()); |
| 2483 | continue; |
| 2484 | |
Anders Carlsson | f47f7a1 | 2009-05-06 04:46:28 +0000 | [diff] [blame] | 2485 | // friend |
| 2486 | case tok::kw_friend: |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 2487 | if (DSContext == DSC_class) |
| 2488 | isInvalid = DS.SetFriendSpec(Loc, PrevSpec, DiagID); |
| 2489 | else { |
| 2490 | PrevSpec = ""; // not actually used by the diagnostic |
| 2491 | DiagID = diag::err_friend_invalid_in_context; |
| 2492 | isInvalid = true; |
| 2493 | } |
Anders Carlsson | f47f7a1 | 2009-05-06 04:46:28 +0000 | [diff] [blame] | 2494 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2495 | |
Douglas Gregor | 8d267c5 | 2011-09-09 02:06:17 +0000 | [diff] [blame] | 2496 | // Modules |
| 2497 | case tok::kw___module_private__: |
| 2498 | isInvalid = DS.setModulePrivateSpec(Loc, PrevSpec, DiagID); |
| 2499 | break; |
| 2500 | |
Sebastian Redl | 2ac6723 | 2009-11-05 15:47:02 +0000 | [diff] [blame] | 2501 | // constexpr |
| 2502 | case tok::kw_constexpr: |
| 2503 | isInvalid = DS.SetConstexprSpec(Loc, PrevSpec, DiagID); |
| 2504 | break; |
| 2505 | |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2506 | // type-specifier |
| 2507 | case tok::kw_short: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2508 | isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, |
| 2509 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2510 | break; |
| 2511 | case tok::kw_long: |
| 2512 | if (DS.getTypeSpecWidth() != DeclSpec::TSW_long) |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2513 | isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, |
| 2514 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2515 | else |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2516 | isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec, |
| 2517 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2518 | break; |
Francois Pichet | 338d7f7 | 2011-04-28 01:59:37 +0000 | [diff] [blame] | 2519 | case tok::kw___int64: |
| 2520 | isInvalid = DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec, |
| 2521 | DiagID); |
| 2522 | break; |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2523 | case tok::kw_signed: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2524 | isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, |
| 2525 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2526 | break; |
| 2527 | case tok::kw_unsigned: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2528 | isInvalid = DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, |
| 2529 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2530 | break; |
| 2531 | case tok::kw__Complex: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2532 | isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_complex, Loc, PrevSpec, |
| 2533 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2534 | break; |
| 2535 | case tok::kw__Imaginary: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2536 | isInvalid = DS.SetTypeSpecComplex(DeclSpec::TSC_imaginary, Loc, PrevSpec, |
| 2537 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2538 | break; |
| 2539 | case tok::kw_void: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2540 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, |
| 2541 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2542 | break; |
| 2543 | case tok::kw_char: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2544 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, |
| 2545 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2546 | break; |
| 2547 | case tok::kw_int: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2548 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, |
| 2549 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2550 | break; |
Richard Smith | 5a5a971 | 2012-04-04 06:24:32 +0000 | [diff] [blame] | 2551 | case tok::kw___int128: |
| 2552 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_int128, Loc, PrevSpec, |
| 2553 | DiagID); |
| 2554 | break; |
| 2555 | case tok::kw_half: |
| 2556 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec, |
| 2557 | DiagID); |
| 2558 | break; |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2559 | case tok::kw_float: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2560 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, |
| 2561 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2562 | break; |
| 2563 | case tok::kw_double: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2564 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, |
| 2565 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2566 | break; |
| 2567 | case tok::kw_wchar_t: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2568 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, |
| 2569 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2570 | break; |
Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 2571 | case tok::kw_char16_t: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2572 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, |
| 2573 | DiagID); |
Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 2574 | break; |
| 2575 | case tok::kw_char32_t: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2576 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, |
| 2577 | DiagID); |
Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 2578 | break; |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2579 | case tok::kw_bool: |
| 2580 | case tok::kw__Bool: |
Argyrios Kyrtzidis | 4383e18 | 2010-11-16 18:18:13 +0000 | [diff] [blame] | 2581 | if (Tok.is(tok::kw_bool) && |
| 2582 | DS.getTypeSpecType() != DeclSpec::TST_unspecified && |
| 2583 | DS.getStorageClassSpec() == DeclSpec::SCS_typedef) { |
| 2584 | PrevSpec = ""; // Not used by the diagnostic. |
| 2585 | DiagID = diag::err_bool_redeclaration; |
Fariborz Jahanian | e106a0b | 2011-04-19 21:42:37 +0000 | [diff] [blame] | 2586 | // For better error recovery. |
| 2587 | Tok.setKind(tok::identifier); |
Argyrios Kyrtzidis | 4383e18 | 2010-11-16 18:18:13 +0000 | [diff] [blame] | 2588 | isInvalid = true; |
| 2589 | } else { |
| 2590 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, |
| 2591 | DiagID); |
| 2592 | } |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2593 | break; |
| 2594 | case tok::kw__Decimal32: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2595 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal32, Loc, PrevSpec, |
| 2596 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2597 | break; |
| 2598 | case tok::kw__Decimal64: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2599 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal64, Loc, PrevSpec, |
| 2600 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2601 | break; |
| 2602 | case tok::kw__Decimal128: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2603 | isInvalid = DS.SetTypeSpecType(DeclSpec::TST_decimal128, Loc, PrevSpec, |
| 2604 | DiagID); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2605 | break; |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 2606 | case tok::kw___vector: |
| 2607 | isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID); |
| 2608 | break; |
| 2609 | case tok::kw___pixel: |
| 2610 | isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID); |
| 2611 | break; |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 2612 | case tok::kw___unknown_anytype: |
| 2613 | isInvalid = DS.SetTypeSpecType(TST_unknown_anytype, Loc, |
| 2614 | PrevSpec, DiagID); |
| 2615 | break; |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2616 | |
| 2617 | // class-specifier: |
| 2618 | case tok::kw_class: |
| 2619 | case tok::kw_struct: |
Chris Lattner | 4c97d76 | 2009-04-12 21:49:30 +0000 | [diff] [blame] | 2620 | case tok::kw_union: { |
| 2621 | tok::TokenKind Kind = Tok.getKind(); |
| 2622 | ConsumeToken(); |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 2623 | ParseClassSpecifier(Kind, Loc, DS, TemplateInfo, AS, |
| 2624 | EnteringContext, DSContext); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2625 | continue; |
Chris Lattner | 4c97d76 | 2009-04-12 21:49:30 +0000 | [diff] [blame] | 2626 | } |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2627 | |
| 2628 | // enum-specifier: |
| 2629 | case tok::kw_enum: |
Chris Lattner | 4c97d76 | 2009-04-12 21:49:30 +0000 | [diff] [blame] | 2630 | ConsumeToken(); |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 2631 | ParseEnumSpecifier(Loc, DS, TemplateInfo, AS, DSContext); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2632 | continue; |
| 2633 | |
| 2634 | // cv-qualifier: |
| 2635 | case tok::kw_const: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2636 | isInvalid = DS.SetTypeQual(DeclSpec::TQ_const, Loc, PrevSpec, DiagID, |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2637 | getLangOpts()); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2638 | break; |
| 2639 | case tok::kw_volatile: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2640 | isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID, |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2641 | getLangOpts()); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2642 | break; |
| 2643 | case tok::kw_restrict: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2644 | isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID, |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2645 | getLangOpts()); |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2646 | break; |
| 2647 | |
Douglas Gregor | d57959a | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 2648 | // C++ typename-specifier: |
| 2649 | case tok::kw_typename: |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 2650 | if (TryAnnotateTypeOrScopeToken()) { |
| 2651 | DS.SetTypeSpecError(); |
| 2652 | goto DoneWithDeclSpec; |
| 2653 | } |
| 2654 | if (!Tok.is(tok::kw_typename)) |
Douglas Gregor | d57959a | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 2655 | continue; |
| 2656 | break; |
| 2657 | |
Chris Lattner | 80d0c89 | 2009-01-21 19:48:37 +0000 | [diff] [blame] | 2658 | // GNU typeof support. |
| 2659 | case tok::kw_typeof: |
| 2660 | ParseTypeofSpecifier(DS); |
| 2661 | continue; |
| 2662 | |
David Blaikie | 42d6d0c | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 2663 | case tok::annot_decltype: |
Anders Carlsson | 6fd634f | 2009-06-24 17:47:40 +0000 | [diff] [blame] | 2664 | ParseDecltypeSpecifier(DS); |
| 2665 | continue; |
| 2666 | |
Sean Hunt | db5d44b | 2011-05-19 05:37:45 +0000 | [diff] [blame] | 2667 | case tok::kw___underlying_type: |
| 2668 | ParseUnderlyingTypeSpecifier(DS); |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 2669 | continue; |
| 2670 | |
| 2671 | case tok::kw__Atomic: |
| 2672 | ParseAtomicSpecifier(DS); |
| 2673 | continue; |
Sean Hunt | db5d44b | 2011-05-19 05:37:45 +0000 | [diff] [blame] | 2674 | |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 2675 | // OpenCL qualifiers: |
| 2676 | case tok::kw_private: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2677 | if (!getLangOpts().OpenCL) |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 2678 | goto DoneWithDeclSpec; |
| 2679 | case tok::kw___private: |
| 2680 | case tok::kw___global: |
| 2681 | case tok::kw___local: |
| 2682 | case tok::kw___constant: |
| 2683 | case tok::kw___read_only: |
| 2684 | case tok::kw___write_only: |
| 2685 | case tok::kw___read_write: |
| 2686 | ParseOpenCLQualifiers(DS); |
| 2687 | break; |
| 2688 | |
Steve Naroff | d3ded1f | 2008-06-05 00:02:44 +0000 | [diff] [blame] | 2689 | case tok::less: |
Chris Lattner | 3bd934a | 2008-07-26 01:18:38 +0000 | [diff] [blame] | 2690 | // GCC ObjC supports types like "<SomeProtocol>" as a synonym for |
Chris Lattner | bce6135 | 2008-07-26 00:20:22 +0000 | [diff] [blame] | 2691 | // "id<SomeProtocol>". This is hopelessly old fashioned and dangerous, |
| 2692 | // but we support it. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2693 | if (DS.hasTypeSpecifier() || !getLangOpts().ObjC1) |
Chris Lattner | bce6135 | 2008-07-26 00:20:22 +0000 | [diff] [blame] | 2694 | goto DoneWithDeclSpec; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2695 | |
Douglas Gregor | 46f936e | 2010-11-19 17:10:50 +0000 | [diff] [blame] | 2696 | if (!ParseObjCProtocolQualifiers(DS)) |
| 2697 | Diag(Loc, diag::warn_objc_protocol_qualifier_missing_id) |
| 2698 | << FixItHint::CreateInsertion(Loc, "id") |
| 2699 | << SourceRange(Loc, DS.getSourceRange().getEnd()); |
Douglas Gregor | 9bd1d8d | 2010-10-21 23:17:00 +0000 | [diff] [blame] | 2700 | |
| 2701 | // Need to support trailing type qualifiers (e.g. "id<p> const"). |
| 2702 | // If a type specifier follows, it will be diagnosed elsewhere. |
| 2703 | continue; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2704 | } |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2705 | // If the specifier wasn't legal, issue a diagnostic. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2706 | if (isInvalid) { |
| 2707 | assert(PrevSpec && "Method did not return previous specifier!"); |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 2708 | assert(DiagID); |
Douglas Gregor | ae2fb14 | 2010-08-23 14:34:43 +0000 | [diff] [blame] | 2709 | |
| 2710 | if (DiagID == diag::ext_duplicate_declspec) |
| 2711 | Diag(Tok, DiagID) |
| 2712 | << PrevSpec << FixItHint::CreateRemoval(Tok.getLocation()); |
| 2713 | else |
| 2714 | Diag(Tok, DiagID) << PrevSpec; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2715 | } |
Fariborz Jahanian | 12e3ece | 2011-02-22 23:17:49 +0000 | [diff] [blame] | 2716 | |
Chris Lattner | 81c018d | 2008-03-13 06:29:04 +0000 | [diff] [blame] | 2717 | DS.SetRangeEnd(Tok.getLocation()); |
Fariborz Jahanian | e106a0b | 2011-04-19 21:42:37 +0000 | [diff] [blame] | 2718 | if (DiagID != diag::err_bool_redeclaration) |
| 2719 | ConsumeToken(); |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 2720 | |
| 2721 | AttrsLastTime = false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2722 | } |
| 2723 | } |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 2724 | |
Chris Lattner | cd4b83c | 2007-10-29 04:42:53 +0000 | [diff] [blame] | 2725 | /// ParseStructDeclaration - Parse a struct declaration without the terminating |
| 2726 | /// semicolon. |
| 2727 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2728 | /// struct-declaration: |
Chris Lattner | cd4b83c | 2007-10-29 04:42:53 +0000 | [diff] [blame] | 2729 | /// specifier-qualifier-list struct-declarator-list |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2730 | /// [GNU] __extension__ struct-declaration |
Chris Lattner | cd4b83c | 2007-10-29 04:42:53 +0000 | [diff] [blame] | 2731 | /// [GNU] specifier-qualifier-list |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2732 | /// struct-declarator-list: |
| 2733 | /// struct-declarator |
| 2734 | /// struct-declarator-list ',' struct-declarator |
| 2735 | /// [GNU] struct-declarator-list ',' attributes[opt] struct-declarator |
| 2736 | /// struct-declarator: |
| 2737 | /// declarator |
| 2738 | /// [GNU] declarator attributes[opt] |
| 2739 | /// declarator[opt] ':' constant-expression |
| 2740 | /// [GNU] declarator[opt] ':' constant-expression attributes[opt] |
| 2741 | /// |
Chris Lattner | e135942 | 2008-04-10 06:46:29 +0000 | [diff] [blame] | 2742 | void Parser:: |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2743 | ParseStructDeclaration(DeclSpec &DS, FieldCallback &Fields) { |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2744 | |
Chris Lattner | c46d1a1 | 2008-10-20 06:45:43 +0000 | [diff] [blame] | 2745 | if (Tok.is(tok::kw___extension__)) { |
| 2746 | // __extension__ silences extension warnings in the subexpression. |
| 2747 | ExtensionRAIIObject O(Diags); // Use RAII to do this. |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2748 | ConsumeToken(); |
Chris Lattner | c46d1a1 | 2008-10-20 06:45:43 +0000 | [diff] [blame] | 2749 | return ParseStructDeclaration(DS, Fields); |
| 2750 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2751 | |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2752 | // Parse the common specifier-qualifiers-list piece. |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2753 | ParseSpecifierQualifierList(DS); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2754 | |
Douglas Gregor | 4920f1f | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 2755 | // If there are no declarators, this is a free-standing declaration |
| 2756 | // specifier. Let the actions module cope with it. |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 2757 | if (Tok.is(tok::semi)) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2758 | Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none, DS); |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2759 | return; |
| 2760 | } |
| 2761 | |
| 2762 | // Read struct-declarators until we find the semicolon. |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2763 | bool FirstDeclarator = true; |
Richard Smith | 7984de3 | 2012-01-12 23:53:29 +0000 | [diff] [blame] | 2764 | SourceLocation CommaLoc; |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2765 | while (1) { |
John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 2766 | ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent); |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2767 | FieldDeclarator DeclaratorInfo(DS); |
Richard Smith | 7984de3 | 2012-01-12 23:53:29 +0000 | [diff] [blame] | 2768 | DeclaratorInfo.D.setCommaLoc(CommaLoc); |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2769 | |
| 2770 | // Attributes are only allowed here on successive declarators. |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2771 | if (!FirstDeclarator) |
| 2772 | MaybeParseGNUAttributes(DeclaratorInfo.D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2773 | |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2774 | /// struct-declarator: declarator |
| 2775 | /// struct-declarator: declarator[opt] ':' constant-expression |
Chris Lattner | a1efc8c | 2009-12-10 01:59:24 +0000 | [diff] [blame] | 2776 | if (Tok.isNot(tok::colon)) { |
| 2777 | // Don't parse FOO:BAR as if it were a typo for FOO::BAR. |
| 2778 | ColonProtectionRAIIObject X(*this); |
Chris Lattner | e135942 | 2008-04-10 06:46:29 +0000 | [diff] [blame] | 2779 | ParseDeclarator(DeclaratorInfo.D); |
Chris Lattner | a1efc8c | 2009-12-10 01:59:24 +0000 | [diff] [blame] | 2780 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2781 | |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 2782 | if (Tok.is(tok::colon)) { |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2783 | ConsumeToken(); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2784 | ExprResult Res(ParseConstantExpression()); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 2785 | if (Res.isInvalid()) |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2786 | SkipUntil(tok::semi, true, true); |
Chris Lattner | 60b1e3e | 2008-04-10 06:15:14 +0000 | [diff] [blame] | 2787 | else |
Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 2788 | DeclaratorInfo.BitfieldSize = Res.release(); |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2789 | } |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 2790 | |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2791 | // If attributes exist after the declarator, parse them. |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2792 | MaybeParseGNUAttributes(DeclaratorInfo.D); |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 2793 | |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2794 | // We're done with this declarator; invoke the callback. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2795 | Decl *D = Fields.invoke(DeclaratorInfo); |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 2796 | PD.complete(D); |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2797 | |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2798 | // If we don't have a comma, it is either the end of the list (a ';') |
| 2799 | // or an error, bail out. |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 2800 | if (Tok.isNot(tok::comma)) |
Chris Lattner | cd4b83c | 2007-10-29 04:42:53 +0000 | [diff] [blame] | 2801 | return; |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 2802 | |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2803 | // Consume the comma. |
Richard Smith | 7984de3 | 2012-01-12 23:53:29 +0000 | [diff] [blame] | 2804 | CommaLoc = ConsumeToken(); |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 2805 | |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2806 | FirstDeclarator = false; |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2807 | } |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2808 | } |
| 2809 | |
| 2810 | /// ParseStructUnionBody |
| 2811 | /// struct-contents: |
| 2812 | /// struct-declaration-list |
| 2813 | /// [EXT] empty |
| 2814 | /// [GNU] "struct-declaration-list" without terminatoring ';' |
| 2815 | /// struct-declaration-list: |
| 2816 | /// struct-declaration |
| 2817 | /// struct-declaration-list struct-declaration |
Chris Lattner | 5a6ddbf | 2008-06-21 19:39:06 +0000 | [diff] [blame] | 2818 | /// [OBC] '@' 'defs' '(' class-name ')' |
Steve Naroff | 28a7ca8 | 2007-08-20 22:28:22 +0000 | [diff] [blame] | 2819 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2820 | void Parser::ParseStructUnionBody(SourceLocation RecordLoc, |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2821 | unsigned TagType, Decl *TagDecl) { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2822 | PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc, |
| 2823 | "parsing struct/union body"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2824 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2825 | BalancedDelimiterTracker T(*this, tok::l_brace); |
| 2826 | if (T.consumeOpen()) |
| 2827 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2828 | |
Douglas Gregor | 3218c4b | 2009-01-09 22:42:13 +0000 | [diff] [blame] | 2829 | ParseScope StructScope(this, Scope::ClassScope|Scope::DeclScope); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2830 | Actions.ActOnTagStartDefinition(getCurScope(), TagDecl); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 2831 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2832 | // Empty structs are an extension in C (C99 6.7.2.1p7), but are allowed in |
| 2833 | // C++. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2834 | if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus) { |
Richard Smith | d7c56e1 | 2011-12-29 21:57:33 +0000 | [diff] [blame] | 2835 | Diag(Tok, diag::ext_empty_struct_union) << (TagType == TST_union); |
| 2836 | Diag(Tok, diag::warn_empty_struct_union_compat) << (TagType == TST_union); |
| 2837 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2838 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2839 | SmallVector<Decl *, 32> FieldDecls; |
Chris Lattner | e135942 | 2008-04-10 06:46:29 +0000 | [diff] [blame] | 2840 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2841 | // While we still have something to read, read the declarations in the struct. |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 2842 | while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2843 | // Each iteration of this loop reads one struct-declaration. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2844 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2845 | // Check for extraneous top-level semicolon. |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 2846 | if (Tok.is(tok::semi)) { |
Richard Trieu | 4b0e6f1 | 2012-05-16 19:04:59 +0000 | [diff] [blame] | 2847 | ConsumeExtraSemi(InsideStruct, |
| 2848 | DeclSpec::getSpecifierName((DeclSpec::TST)TagType)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2849 | continue; |
| 2850 | } |
Chris Lattner | e135942 | 2008-04-10 06:46:29 +0000 | [diff] [blame] | 2851 | |
| 2852 | // Parse all the comma separated declarators. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 2853 | DeclSpec DS(AttrFactory); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2854 | |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2855 | if (!Tok.is(tok::at)) { |
| 2856 | struct CFieldCallback : FieldCallback { |
| 2857 | Parser &P; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2858 | Decl *TagDecl; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2859 | SmallVectorImpl<Decl *> &FieldDecls; |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2860 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2861 | CFieldCallback(Parser &P, Decl *TagDecl, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2862 | SmallVectorImpl<Decl *> &FieldDecls) : |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2863 | P(P), TagDecl(TagDecl), FieldDecls(FieldDecls) {} |
| 2864 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2865 | virtual Decl *invoke(FieldDeclarator &FD) { |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2866 | // Install the declarator into the current TagDecl. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2867 | Decl *Field = P.Actions.ActOnField(P.getCurScope(), TagDecl, |
John McCall | 4ba3971 | 2009-11-03 21:13:47 +0000 | [diff] [blame] | 2868 | FD.D.getDeclSpec().getSourceRange().getBegin(), |
| 2869 | FD.D, FD.BitfieldSize); |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2870 | FieldDecls.push_back(Field); |
| 2871 | return Field; |
Douglas Gregor | 91a2886 | 2009-08-26 14:27:30 +0000 | [diff] [blame] | 2872 | } |
John McCall | bdd563e | 2009-11-03 02:38:08 +0000 | [diff] [blame] | 2873 | } Callback(*this, TagDecl, FieldDecls); |
| 2874 | |
| 2875 | ParseStructDeclaration(DS, Callback); |
Chris Lattner | 5a6ddbf | 2008-06-21 19:39:06 +0000 | [diff] [blame] | 2876 | } else { // Handle @defs |
| 2877 | ConsumeToken(); |
| 2878 | if (!Tok.isObjCAtKeyword(tok::objc_defs)) { |
| 2879 | Diag(Tok, diag::err_unexpected_at); |
Chris Lattner | 3e156ad | 2010-02-02 00:37:27 +0000 | [diff] [blame] | 2880 | SkipUntil(tok::semi, true); |
Chris Lattner | 5a6ddbf | 2008-06-21 19:39:06 +0000 | [diff] [blame] | 2881 | continue; |
| 2882 | } |
| 2883 | ConsumeToken(); |
| 2884 | ExpectAndConsume(tok::l_paren, diag::err_expected_lparen); |
| 2885 | if (!Tok.is(tok::identifier)) { |
| 2886 | Diag(Tok, diag::err_expected_ident); |
Chris Lattner | 3e156ad | 2010-02-02 00:37:27 +0000 | [diff] [blame] | 2887 | SkipUntil(tok::semi, true); |
Chris Lattner | 5a6ddbf | 2008-06-21 19:39:06 +0000 | [diff] [blame] | 2888 | continue; |
| 2889 | } |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2890 | SmallVector<Decl *, 16> Fields; |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2891 | Actions.ActOnDefs(getCurScope(), TagDecl, Tok.getLocation(), |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2892 | Tok.getIdentifierInfo(), Fields); |
Chris Lattner | 5a6ddbf | 2008-06-21 19:39:06 +0000 | [diff] [blame] | 2893 | FieldDecls.insert(FieldDecls.end(), Fields.begin(), Fields.end()); |
| 2894 | ConsumeToken(); |
| 2895 | ExpectAndConsume(tok::r_paren, diag::err_expected_rparen); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2896 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2897 | |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 2898 | if (Tok.is(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2899 | ConsumeToken(); |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 2900 | } else if (Tok.is(tok::r_brace)) { |
Chris Lattner | 3e156ad | 2010-02-02 00:37:27 +0000 | [diff] [blame] | 2901 | ExpectAndConsume(tok::semi, diag::ext_expected_semi_decl_list); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2902 | break; |
| 2903 | } else { |
Chris Lattner | 3e156ad | 2010-02-02 00:37:27 +0000 | [diff] [blame] | 2904 | ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list); |
| 2905 | // Skip to end of block or statement to avoid ext-warning on extra ';'. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2906 | SkipUntil(tok::r_brace, true, true); |
Chris Lattner | 3e156ad | 2010-02-02 00:37:27 +0000 | [diff] [blame] | 2907 | // If we stopped at a ';', eat it. |
| 2908 | if (Tok.is(tok::semi)) ConsumeToken(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2909 | } |
| 2910 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2911 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2912 | T.consumeClose(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2913 | |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 2914 | ParsedAttributes attrs(AttrFactory); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2915 | // If attributes exist after struct contents, parse them. |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2916 | MaybeParseGNUAttributes(attrs); |
Daniel Dunbar | 1bfe1c2 | 2008-10-03 02:03:53 +0000 | [diff] [blame] | 2917 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2918 | Actions.ActOnFields(getCurScope(), |
David Blaikie | 77b6de0 | 2011-09-22 02:58:26 +0000 | [diff] [blame] | 2919 | RecordLoc, TagDecl, FieldDecls, |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2920 | T.getOpenLocation(), T.getCloseLocation(), |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2921 | attrs.getList()); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 2922 | StructScope.Exit(); |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 2923 | Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, |
| 2924 | T.getCloseLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2925 | } |
| 2926 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2927 | /// ParseEnumSpecifier |
| 2928 | /// enum-specifier: [C99 6.7.2.2] |
| 2929 | /// 'enum' identifier[opt] '{' enumerator-list '}' |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2930 | ///[C99/C++]'enum' identifier[opt] '{' enumerator-list ',' '}' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2931 | /// [GNU] 'enum' attributes[opt] identifier[opt] '{' enumerator-list ',' [opt] |
| 2932 | /// '}' attributes[opt] |
Aaron Ballman | 6454a02 | 2012-03-01 04:09:28 +0000 | [diff] [blame] | 2933 | /// [MS] 'enum' __declspec[opt] identifier[opt] '{' enumerator-list ',' [opt] |
| 2934 | /// '}' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2935 | /// 'enum' identifier |
| 2936 | /// [GNU] 'enum' attributes[opt] identifier |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2937 | /// |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 2938 | /// [C++11] enum-head '{' enumerator-list[opt] '}' |
| 2939 | /// [C++11] enum-head '{' enumerator-list ',' '}' |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 2940 | /// |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 2941 | /// enum-head: [C++11] |
| 2942 | /// enum-key attribute-specifier-seq[opt] identifier[opt] enum-base[opt] |
| 2943 | /// enum-key attribute-specifier-seq[opt] nested-name-specifier |
| 2944 | /// identifier enum-base[opt] |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 2945 | /// |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 2946 | /// enum-key: [C++11] |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 2947 | /// 'enum' |
| 2948 | /// 'enum' 'class' |
| 2949 | /// 'enum' 'struct' |
| 2950 | /// |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 2951 | /// enum-base: [C++11] |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 2952 | /// ':' type-specifier-seq |
| 2953 | /// |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 2954 | /// [C++] elaborated-type-specifier: |
| 2955 | /// [C++] 'enum' '::'[opt] nested-name-specifier[opt] identifier |
| 2956 | /// |
Chris Lattner | 4c97d76 | 2009-04-12 21:49:30 +0000 | [diff] [blame] | 2957 | void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS, |
Douglas Gregor | 9b9edd6 | 2010-03-02 17:53:14 +0000 | [diff] [blame] | 2958 | const ParsedTemplateInfo &TemplateInfo, |
Richard Smith | 69730c1 | 2012-03-12 07:56:15 +0000 | [diff] [blame] | 2959 | AccessSpecifier AS, DeclSpecContext DSC) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2960 | // Parse the tag portion of this. |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 2961 | if (Tok.is(tok::code_completion)) { |
| 2962 | // Code completion for an enum name. |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2963 | Actions.CodeCompleteTag(getCurScope(), DeclSpec::TST_enum); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 2964 | return cutOffParsing(); |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 2965 | } |
John McCall | 57c1300 | 2011-07-06 05:58:41 +0000 | [diff] [blame] | 2966 | |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 2967 | // If attributes exist after tag, parse them. |
| 2968 | ParsedAttributesWithRange attrs(AttrFactory); |
| 2969 | MaybeParseGNUAttributes(attrs); |
| 2970 | MaybeParseCXX0XAttributes(attrs); |
| 2971 | |
| 2972 | // If declspecs exist after tag, parse them. |
| 2973 | while (Tok.is(tok::kw___declspec)) |
| 2974 | ParseMicrosoftDeclSpec(attrs); |
| 2975 | |
Richard Smith | bdad7a2 | 2012-01-10 01:33:14 +0000 | [diff] [blame] | 2976 | SourceLocation ScopedEnumKWLoc; |
John McCall | 57c1300 | 2011-07-06 05:58:41 +0000 | [diff] [blame] | 2977 | bool IsScopedUsingClassTag = false; |
| 2978 | |
John McCall | 1e12b3d | 2012-06-23 22:30:04 +0000 | [diff] [blame] | 2979 | // In C++11, recognize 'enum class' and 'enum struct'. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2980 | if (getLangOpts().CPlusPlus0x && |
John McCall | 57c1300 | 2011-07-06 05:58:41 +0000 | [diff] [blame] | 2981 | (Tok.is(tok::kw_class) || Tok.is(tok::kw_struct))) { |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 2982 | Diag(Tok, diag::warn_cxx98_compat_scoped_enum); |
John McCall | 57c1300 | 2011-07-06 05:58:41 +0000 | [diff] [blame] | 2983 | IsScopedUsingClassTag = Tok.is(tok::kw_class); |
Richard Smith | bdad7a2 | 2012-01-10 01:33:14 +0000 | [diff] [blame] | 2984 | ScopedEnumKWLoc = ConsumeToken(); |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 2985 | |
John McCall | 1e12b3d | 2012-06-23 22:30:04 +0000 | [diff] [blame] | 2986 | // Attributes are not allowed between these keywords. Diagnose, |
| 2987 | // but then just treat them like they appeared in the right place. |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 2988 | ProhibitAttributes(attrs); |
John McCall | 1e12b3d | 2012-06-23 22:30:04 +0000 | [diff] [blame] | 2989 | |
| 2990 | // They are allowed afterwards, though. |
| 2991 | MaybeParseGNUAttributes(attrs); |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 2992 | MaybeParseCXX0XAttributes(attrs); |
John McCall | 1e12b3d | 2012-06-23 22:30:04 +0000 | [diff] [blame] | 2993 | while (Tok.is(tok::kw___declspec)) |
| 2994 | ParseMicrosoftDeclSpec(attrs); |
John McCall | 57c1300 | 2011-07-06 05:58:41 +0000 | [diff] [blame] | 2995 | } |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 2996 | |
John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 2997 | // C++11 [temp.explicit]p12: |
| 2998 | // The usual access controls do not apply to names used to specify |
| 2999 | // explicit instantiations. |
| 3000 | // We extend this to also cover explicit specializations. Note that |
| 3001 | // we don't suppress if this turns out to be an elaborated type |
| 3002 | // specifier. |
| 3003 | bool shouldDelayDiagsInTag = |
| 3004 | (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation || |
| 3005 | TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization); |
| 3006 | SuppressAccessChecks diagsFromTag(*this, shouldDelayDiagsInTag); |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 3007 | |
Richard Smith | 7796eb5 | 2012-03-12 08:56:40 +0000 | [diff] [blame] | 3008 | // Enum definitions should not be parsed in a trailing-return-type. |
| 3009 | bool AllowDeclaration = DSC != DSC_trailing; |
| 3010 | |
| 3011 | bool AllowFixedUnderlyingType = AllowDeclaration && |
| 3012 | (getLangOpts().CPlusPlus0x || getLangOpts().MicrosoftExt || |
| 3013 | getLangOpts().ObjC2); |
John McCall | 57c1300 | 2011-07-06 05:58:41 +0000 | [diff] [blame] | 3014 | |
Abramo Bagnara | e4da7a0 | 2010-05-19 21:37:53 +0000 | [diff] [blame] | 3015 | CXXScopeSpec &SS = DS.getTypeSpecScope(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3016 | if (getLangOpts().CPlusPlus) { |
John McCall | 57c1300 | 2011-07-06 05:58:41 +0000 | [diff] [blame] | 3017 | // "enum foo : bar;" is not a potential typo for "enum foo::bar;" |
| 3018 | // if a fixed underlying type is allowed. |
| 3019 | ColonProtectionRAIIObject X(*this, AllowFixedUnderlyingType); |
| 3020 | |
Douglas Gregor | efaa93a | 2011-11-07 17:33:42 +0000 | [diff] [blame] | 3021 | if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), |
| 3022 | /*EnteringContext=*/false)) |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 3023 | return; |
| 3024 | |
| 3025 | if (SS.isSet() && Tok.isNot(tok::identifier)) { |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 3026 | Diag(Tok, diag::err_expected_ident); |
| 3027 | if (Tok.isNot(tok::l_brace)) { |
| 3028 | // Has no name and is not a definition. |
| 3029 | // Skip the rest of this declarator, up until the comma or semicolon. |
| 3030 | SkipUntil(tok::comma, true); |
| 3031 | return; |
| 3032 | } |
| 3033 | } |
| 3034 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3035 | |
Argyrios Kyrtzidis | e281b4c | 2008-09-11 00:21:41 +0000 | [diff] [blame] | 3036 | // Must have either 'enum name' or 'enum {...}'. |
Douglas Gregor | b907560 | 2011-02-22 02:55:24 +0000 | [diff] [blame] | 3037 | if (Tok.isNot(tok::identifier) && Tok.isNot(tok::l_brace) && |
Richard Smith | 7796eb5 | 2012-03-12 08:56:40 +0000 | [diff] [blame] | 3038 | !(AllowFixedUnderlyingType && Tok.is(tok::colon))) { |
Argyrios Kyrtzidis | e281b4c | 2008-09-11 00:21:41 +0000 | [diff] [blame] | 3039 | Diag(Tok, diag::err_expected_ident_lbrace); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3040 | |
Argyrios Kyrtzidis | e281b4c | 2008-09-11 00:21:41 +0000 | [diff] [blame] | 3041 | // Skip the rest of this declarator, up until the comma or semicolon. |
| 3042 | SkipUntil(tok::comma, true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3043 | return; |
Argyrios Kyrtzidis | e281b4c | 2008-09-11 00:21:41 +0000 | [diff] [blame] | 3044 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3045 | |
Argyrios Kyrtzidis | e281b4c | 2008-09-11 00:21:41 +0000 | [diff] [blame] | 3046 | // If an identifier is present, consume and remember it. |
| 3047 | IdentifierInfo *Name = 0; |
| 3048 | SourceLocation NameLoc; |
| 3049 | if (Tok.is(tok::identifier)) { |
| 3050 | Name = Tok.getIdentifierInfo(); |
| 3051 | NameLoc = ConsumeToken(); |
| 3052 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3053 | |
Richard Smith | bdad7a2 | 2012-01-10 01:33:14 +0000 | [diff] [blame] | 3054 | if (!Name && ScopedEnumKWLoc.isValid()) { |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 3055 | // C++0x 7.2p2: The optional identifier shall not be omitted in the |
| 3056 | // declaration of a scoped enumeration. |
| 3057 | Diag(Tok, diag::err_scoped_enum_missing_identifier); |
Richard Smith | bdad7a2 | 2012-01-10 01:33:14 +0000 | [diff] [blame] | 3058 | ScopedEnumKWLoc = SourceLocation(); |
Abramo Bagnara | a88cefd | 2010-12-03 18:54:17 +0000 | [diff] [blame] | 3059 | IsScopedUsingClassTag = false; |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 3060 | } |
| 3061 | |
John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 3062 | // Okay, end the suppression area. We'll decide whether to emit the |
| 3063 | // diagnostics in a second. |
| 3064 | if (shouldDelayDiagsInTag) |
| 3065 | diagsFromTag.done(); |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 3066 | |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 3067 | TypeResult BaseType; |
| 3068 | |
Douglas Gregor | a61b3e7 | 2010-12-01 17:42:47 +0000 | [diff] [blame] | 3069 | // Parse the fixed underlying type. |
Douglas Gregor | b907560 | 2011-02-22 02:55:24 +0000 | [diff] [blame] | 3070 | if (AllowFixedUnderlyingType && Tok.is(tok::colon)) { |
Douglas Gregor | a61b3e7 | 2010-12-01 17:42:47 +0000 | [diff] [blame] | 3071 | bool PossibleBitfield = false; |
| 3072 | if (getCurScope()->getFlags() & Scope::ClassScope) { |
| 3073 | // If we're in class scope, this can either be an enum declaration with |
| 3074 | // an underlying type, or a declaration of a bitfield member. We try to |
| 3075 | // use a simple disambiguation scheme first to catch the common cases |
| 3076 | // (integer literal, sizeof); if it's still ambiguous, we then consider |
| 3077 | // anything that's a simple-type-specifier followed by '(' as an |
| 3078 | // expression. This suffices because function types are not valid |
| 3079 | // underlying types anyway. |
| 3080 | TPResult TPR = isExpressionOrTypeSpecifierSimple(NextToken().getKind()); |
| 3081 | // If the next token starts an expression, we know we're parsing a |
| 3082 | // bit-field. This is the common case. |
| 3083 | if (TPR == TPResult::True()) |
| 3084 | PossibleBitfield = true; |
| 3085 | // If the next token starts a type-specifier-seq, it may be either a |
| 3086 | // a fixed underlying type or the start of a function-style cast in C++; |
| 3087 | // lookahead one more token to see if it's obvious that we have a |
| 3088 | // fixed underlying type. |
| 3089 | else if (TPR == TPResult::False() && |
| 3090 | GetLookAheadToken(2).getKind() == tok::semi) { |
| 3091 | // Consume the ':'. |
| 3092 | ConsumeToken(); |
| 3093 | } else { |
| 3094 | // We have the start of a type-specifier-seq, so we have to perform |
| 3095 | // tentative parsing to determine whether we have an expression or a |
| 3096 | // type. |
| 3097 | TentativeParsingAction TPA(*this); |
| 3098 | |
| 3099 | // Consume the ':'. |
| 3100 | ConsumeToken(); |
Richard Smith | d81e961 | 2012-02-23 01:36:12 +0000 | [diff] [blame] | 3101 | |
| 3102 | // If we see a type specifier followed by an open-brace, we have an |
| 3103 | // ambiguity between an underlying type and a C++11 braced |
| 3104 | // function-style cast. Resolve this by always treating it as an |
| 3105 | // underlying type. |
| 3106 | // FIXME: The standard is not entirely clear on how to disambiguate in |
| 3107 | // this case. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3108 | if ((getLangOpts().CPlusPlus && |
Richard Smith | d81e961 | 2012-02-23 01:36:12 +0000 | [diff] [blame] | 3109 | isCXXDeclarationSpecifier(TPResult::True()) != TPResult::True()) || |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3110 | (!getLangOpts().CPlusPlus && !isDeclarationSpecifier(true))) { |
Douglas Gregor | a61b3e7 | 2010-12-01 17:42:47 +0000 | [diff] [blame] | 3111 | // We'll parse this as a bitfield later. |
| 3112 | PossibleBitfield = true; |
| 3113 | TPA.Revert(); |
| 3114 | } else { |
| 3115 | // We have a type-specifier-seq. |
| 3116 | TPA.Commit(); |
| 3117 | } |
| 3118 | } |
| 3119 | } else { |
| 3120 | // Consume the ':'. |
| 3121 | ConsumeToken(); |
| 3122 | } |
| 3123 | |
| 3124 | if (!PossibleBitfield) { |
| 3125 | SourceRange Range; |
| 3126 | BaseType = ParseTypeName(&Range); |
Douglas Gregor | 86f208c | 2011-02-22 20:32:04 +0000 | [diff] [blame] | 3127 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3128 | if (!getLangOpts().CPlusPlus0x && !getLangOpts().ObjC2) |
Douglas Gregor | 86f208c | 2011-02-22 20:32:04 +0000 | [diff] [blame] | 3129 | Diag(StartLoc, diag::ext_ms_enum_fixed_underlying_type) |
| 3130 | << Range; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3131 | if (getLangOpts().CPlusPlus0x) |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 3132 | Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type); |
Douglas Gregor | a61b3e7 | 2010-12-01 17:42:47 +0000 | [diff] [blame] | 3133 | } |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 3134 | } |
| 3135 | |
Richard Smith | bdad7a2 | 2012-01-10 01:33:14 +0000 | [diff] [blame] | 3136 | // There are four options here. If we have 'friend enum foo;' then this is a |
| 3137 | // friend declaration, and cannot have an accompanying definition. If we have |
| 3138 | // 'enum foo;', then this is a forward declaration. If we have |
| 3139 | // 'enum foo {...' then this is a definition. Otherwise we have something |
| 3140 | // like 'enum foo xyz', a reference. |
Argyrios Kyrtzidis | e281b4c | 2008-09-11 00:21:41 +0000 | [diff] [blame] | 3141 | // |
| 3142 | // This is needed to handle stuff like this right (C99 6.7.2.3p11): |
| 3143 | // enum foo {..}; void bar() { enum foo; } <- new foo in bar. |
| 3144 | // enum foo {..}; void bar() { enum foo x; } <- use of old foo. |
| 3145 | // |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3146 | Sema::TagUseKind TUK; |
John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 3147 | if (!AllowDeclaration) { |
Richard Smith | 7796eb5 | 2012-03-12 08:56:40 +0000 | [diff] [blame] | 3148 | TUK = Sema::TUK_Reference; |
John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 3149 | } else if (Tok.is(tok::l_brace)) { |
| 3150 | if (DS.isFriendSpecified()) { |
| 3151 | Diag(Tok.getLocation(), diag::err_friend_decl_defines_type) |
| 3152 | << SourceRange(DS.getFriendSpecLoc()); |
| 3153 | ConsumeBrace(); |
| 3154 | SkipUntil(tok::r_brace); |
| 3155 | TUK = Sema::TUK_Friend; |
| 3156 | } else { |
| 3157 | TUK = Sema::TUK_Definition; |
| 3158 | } |
Richard Smith | c9f3517 | 2012-06-25 21:37:02 +0000 | [diff] [blame^] | 3159 | } else if (DSC != DSC_type_specifier && |
| 3160 | (Tok.is(tok::semi) || |
| 3161 | (Tok.isAtStartOfLine() && !isValidAfterTypeSpecifier()))) { |
| 3162 | TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration; |
| 3163 | if (Tok.isNot(tok::semi)) { |
| 3164 | // A semicolon was missing after this declaration. Diagnose and recover. |
| 3165 | ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl, |
| 3166 | "enum"); |
| 3167 | PP.EnterToken(Tok); |
| 3168 | Tok.setKind(tok::semi); |
| 3169 | } |
John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 3170 | } else { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3171 | TUK = Sema::TUK_Reference; |
John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 3172 | } |
| 3173 | |
| 3174 | // If this is an elaborated type specifier, and we delayed |
| 3175 | // diagnostics before, just merge them into the current pool. |
| 3176 | if (TUK == Sema::TUK_Reference && shouldDelayDiagsInTag) { |
| 3177 | diagsFromTag.redelay(); |
| 3178 | } |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 3179 | |
| 3180 | MultiTemplateParamsArg TParams; |
Douglas Gregor | 8fc6d23 | 2010-05-03 17:48:54 +0000 | [diff] [blame] | 3181 | if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate && |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3182 | TUK != Sema::TUK_Reference) { |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 3183 | if (!getLangOpts().CPlusPlus0x || !SS.isSet()) { |
| 3184 | // Skip the rest of this declarator, up until the comma or semicolon. |
| 3185 | Diag(Tok, diag::err_enum_template); |
| 3186 | SkipUntil(tok::comma, true); |
| 3187 | return; |
| 3188 | } |
| 3189 | |
| 3190 | if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) { |
| 3191 | // Enumerations can't be explicitly instantiated. |
| 3192 | DS.SetTypeSpecError(); |
| 3193 | Diag(StartLoc, diag::err_explicit_instantiation_enum); |
| 3194 | return; |
| 3195 | } |
| 3196 | |
| 3197 | assert(TemplateInfo.TemplateParams && "no template parameters"); |
| 3198 | TParams = MultiTemplateParamsArg(TemplateInfo.TemplateParams->data(), |
| 3199 | TemplateInfo.TemplateParams->size()); |
Douglas Gregor | 8fc6d23 | 2010-05-03 17:48:54 +0000 | [diff] [blame] | 3200 | } |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 3201 | |
| 3202 | if (TUK == Sema::TUK_Reference) |
| 3203 | ProhibitAttributes(attrs); |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 3204 | |
Douglas Gregor | b907560 | 2011-02-22 02:55:24 +0000 | [diff] [blame] | 3205 | if (!Name && TUK != Sema::TUK_Definition) { |
| 3206 | Diag(Tok, diag::err_enumerator_unnamed_no_def); |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 3207 | |
Douglas Gregor | b907560 | 2011-02-22 02:55:24 +0000 | [diff] [blame] | 3208 | // Skip the rest of this declarator, up until the comma or semicolon. |
| 3209 | SkipUntil(tok::comma, true); |
| 3210 | return; |
| 3211 | } |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 3212 | |
Douglas Gregor | 402abb5 | 2009-05-28 23:31:59 +0000 | [diff] [blame] | 3213 | bool Owned = false; |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 3214 | bool IsDependent = false; |
Douglas Gregor | 48c89f4 | 2010-04-24 16:38:41 +0000 | [diff] [blame] | 3215 | const char *PrevSpec = 0; |
| 3216 | unsigned DiagID; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 3217 | Decl *TagDecl = Actions.ActOnTag(getCurScope(), DeclSpec::TST_enum, TUK, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 3218 | StartLoc, SS, Name, NameLoc, attrs.getList(), |
Richard Smith | 1af83c4 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 3219 | AS, DS.getModulePrivateSpecLoc(), TParams, |
Richard Smith | bdad7a2 | 2012-01-10 01:33:14 +0000 | [diff] [blame] | 3220 | Owned, IsDependent, ScopedEnumKWLoc, |
Abramo Bagnara | a88cefd | 2010-12-03 18:54:17 +0000 | [diff] [blame] | 3221 | IsScopedUsingClassTag, BaseType); |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 3222 | |
Douglas Gregor | 48c89f4 | 2010-04-24 16:38:41 +0000 | [diff] [blame] | 3223 | if (IsDependent) { |
| 3224 | // This enum has a dependent nested-name-specifier. Handle it as a |
| 3225 | // dependent tag. |
| 3226 | if (!Name) { |
| 3227 | DS.SetTypeSpecError(); |
| 3228 | Diag(Tok, diag::err_expected_type_name_after_typename); |
| 3229 | return; |
| 3230 | } |
| 3231 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 3232 | TypeResult Type = Actions.ActOnDependentTag(getCurScope(), DeclSpec::TST_enum, |
Douglas Gregor | 48c89f4 | 2010-04-24 16:38:41 +0000 | [diff] [blame] | 3233 | TUK, SS, Name, StartLoc, |
| 3234 | NameLoc); |
| 3235 | if (Type.isInvalid()) { |
| 3236 | DS.SetTypeSpecError(); |
| 3237 | return; |
| 3238 | } |
| 3239 | |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 3240 | if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc, |
| 3241 | NameLoc.isValid() ? NameLoc : StartLoc, |
| 3242 | PrevSpec, DiagID, Type.get())) |
Douglas Gregor | 48c89f4 | 2010-04-24 16:38:41 +0000 | [diff] [blame] | 3243 | Diag(StartLoc, DiagID) << PrevSpec; |
| 3244 | |
| 3245 | return; |
| 3246 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3247 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 3248 | if (!TagDecl) { |
Douglas Gregor | 48c89f4 | 2010-04-24 16:38:41 +0000 | [diff] [blame] | 3249 | // The action failed to produce an enumeration tag. If this is a |
| 3250 | // definition, consume the entire definition. |
Richard Smith | 7796eb5 | 2012-03-12 08:56:40 +0000 | [diff] [blame] | 3251 | if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference) { |
Douglas Gregor | 48c89f4 | 2010-04-24 16:38:41 +0000 | [diff] [blame] | 3252 | ConsumeBrace(); |
| 3253 | SkipUntil(tok::r_brace); |
| 3254 | } |
| 3255 | |
| 3256 | DS.SetTypeSpecError(); |
| 3257 | return; |
| 3258 | } |
Richard Smith | bdad7a2 | 2012-01-10 01:33:14 +0000 | [diff] [blame] | 3259 | |
Richard Smith | c9f3517 | 2012-06-25 21:37:02 +0000 | [diff] [blame^] | 3260 | if (Tok.is(tok::l_brace) && TUK != Sema::TUK_Reference) |
John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 3261 | ParseEnumBody(StartLoc, TagDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3262 | |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 3263 | if (DS.SetTypeSpecType(DeclSpec::TST_enum, StartLoc, |
| 3264 | NameLoc.isValid() ? NameLoc : StartLoc, |
| 3265 | PrevSpec, DiagID, TagDecl, Owned)) |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 3266 | Diag(StartLoc, DiagID) << PrevSpec; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3267 | } |
| 3268 | |
| 3269 | /// ParseEnumBody - Parse a {} enclosed enumerator-list. |
| 3270 | /// enumerator-list: |
| 3271 | /// enumerator |
| 3272 | /// enumerator-list ',' enumerator |
| 3273 | /// enumerator: |
| 3274 | /// enumeration-constant |
| 3275 | /// enumeration-constant '=' constant-expression |
| 3276 | /// enumeration-constant: |
| 3277 | /// identifier |
| 3278 | /// |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 3279 | void Parser::ParseEnumBody(SourceLocation StartLoc, Decl *EnumDecl) { |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 3280 | // Enter the scope of the enum body and start the definition. |
| 3281 | ParseScope EnumScope(this, Scope::DeclScope); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 3282 | Actions.ActOnTagStartDefinition(getCurScope(), EnumDecl); |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 3283 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 3284 | BalancedDelimiterTracker T(*this, tok::l_brace); |
| 3285 | T.consumeOpen(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3286 | |
Chris Lattner | 7946dd3 | 2007-08-27 17:24:30 +0000 | [diff] [blame] | 3287 | // C does not allow an empty enumerator-list, C++ does [dcl.enum]. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3288 | if (Tok.is(tok::r_brace) && !getLangOpts().CPlusPlus) |
Fariborz Jahanian | 0511552 | 2010-05-28 22:23:22 +0000 | [diff] [blame] | 3289 | Diag(Tok, diag::error_empty_enum); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3290 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3291 | SmallVector<Decl *, 32> EnumConstantDecls; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3292 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 3293 | Decl *LastEnumConstDecl = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3294 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3295 | // Parse the enumerator-list. |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 3296 | while (Tok.is(tok::identifier)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3297 | IdentifierInfo *Ident = Tok.getIdentifierInfo(); |
| 3298 | SourceLocation IdentLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3299 | |
John McCall | 5b629aa | 2010-10-22 23:36:17 +0000 | [diff] [blame] | 3300 | // If attributes exist after the enumerator, parse them. |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 3301 | ParsedAttributesWithRange attrs(AttrFactory); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 3302 | MaybeParseGNUAttributes(attrs); |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 3303 | MaybeParseCXX0XAttributes(attrs); |
| 3304 | ProhibitAttributes(attrs); |
John McCall | 5b629aa | 2010-10-22 23:36:17 +0000 | [diff] [blame] | 3305 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3306 | SourceLocation EqualLoc; |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3307 | ExprResult AssignedVal; |
John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 3308 | ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent); |
Fariborz Jahanian | 5a477db | 2011-12-09 01:15:54 +0000 | [diff] [blame] | 3309 | |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 3310 | if (Tok.is(tok::equal)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3311 | EqualLoc = ConsumeToken(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 3312 | AssignedVal = ParseConstantExpression(); |
| 3313 | if (AssignedVal.isInvalid()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3314 | SkipUntil(tok::comma, tok::r_brace, true, true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3315 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3316 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3317 | // Install the enumerator constant into EnumDecl. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 3318 | Decl *EnumConstDecl = Actions.ActOnEnumConstant(getCurScope(), EnumDecl, |
| 3319 | LastEnumConstDecl, |
| 3320 | IdentLoc, Ident, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 3321 | attrs.getList(), EqualLoc, |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 3322 | AssignedVal.release()); |
Fariborz Jahanian | 5a477db | 2011-12-09 01:15:54 +0000 | [diff] [blame] | 3323 | PD.complete(EnumConstDecl); |
| 3324 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3325 | EnumConstantDecls.push_back(EnumConstDecl); |
| 3326 | LastEnumConstDecl = EnumConstDecl; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3327 | |
Douglas Gregor | 751f692 | 2010-09-07 14:51:08 +0000 | [diff] [blame] | 3328 | if (Tok.is(tok::identifier)) { |
| 3329 | // We're missing a comma between enumerators. |
| 3330 | SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation); |
| 3331 | Diag(Loc, diag::err_enumerator_list_missing_comma) |
| 3332 | << FixItHint::CreateInsertion(Loc, ", "); |
| 3333 | continue; |
| 3334 | } |
| 3335 | |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 3336 | if (Tok.isNot(tok::comma)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3337 | break; |
| 3338 | SourceLocation CommaLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3339 | |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 3340 | if (Tok.isNot(tok::identifier)) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3341 | if (!getLangOpts().C99 && !getLangOpts().CPlusPlus0x) |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 3342 | Diag(CommaLoc, diag::ext_enumerator_list_comma) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3343 | << getLangOpts().CPlusPlus |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 3344 | << FixItHint::CreateRemoval(CommaLoc); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3345 | else if (getLangOpts().CPlusPlus0x) |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 3346 | Diag(CommaLoc, diag::warn_cxx98_compat_enumerator_list_comma) |
| 3347 | << FixItHint::CreateRemoval(CommaLoc); |
| 3348 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3349 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3350 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3351 | // Eat the }. |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 3352 | T.consumeClose(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3353 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3354 | // If attributes exist after the identifier list, parse them. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 3355 | ParsedAttributes attrs(AttrFactory); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 3356 | MaybeParseGNUAttributes(attrs); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3357 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 3358 | Actions.ActOnEnumBody(StartLoc, T.getOpenLocation(), T.getCloseLocation(), |
| 3359 | EnumDecl, EnumConstantDecls.data(), |
| 3360 | EnumConstantDecls.size(), getCurScope(), |
| 3361 | attrs.getList()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3362 | |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3363 | EnumScope.Exit(); |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 3364 | Actions.ActOnTagFinishDefinition(getCurScope(), EnumDecl, |
| 3365 | T.getCloseLocation()); |
Richard Smith | c9f3517 | 2012-06-25 21:37:02 +0000 | [diff] [blame^] | 3366 | |
| 3367 | // The next token must be valid after an enum definition. If not, a ';' |
| 3368 | // was probably forgotten. |
| 3369 | if (!isValidAfterTypeSpecifier()) { |
| 3370 | ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl, "enum"); |
| 3371 | // Push this token back into the preprocessor and change our current token |
| 3372 | // to ';' so that the rest of the code recovers as though there were an |
| 3373 | // ';' after the definition. |
| 3374 | PP.EnterToken(Tok); |
| 3375 | Tok.setKind(tok::semi); |
| 3376 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3377 | } |
| 3378 | |
| 3379 | /// isTypeSpecifierQualifier - Return true if the current token could be the |
Steve Naroff | 5f8aa69 | 2008-02-11 23:15:56 +0000 | [diff] [blame] | 3380 | /// start of a type-qualifier-list. |
| 3381 | bool Parser::isTypeQualifier() const { |
| 3382 | switch (Tok.getKind()) { |
| 3383 | default: return false; |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 3384 | |
| 3385 | // type-qualifier only in OpenCL |
| 3386 | case tok::kw_private: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3387 | return getLangOpts().OpenCL; |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 3388 | |
Steve Naroff | 5f8aa69 | 2008-02-11 23:15:56 +0000 | [diff] [blame] | 3389 | // type-qualifier |
| 3390 | case tok::kw_const: |
| 3391 | case tok::kw_volatile: |
| 3392 | case tok::kw_restrict: |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 3393 | case tok::kw___private: |
| 3394 | case tok::kw___local: |
| 3395 | case tok::kw___global: |
| 3396 | case tok::kw___constant: |
| 3397 | case tok::kw___read_only: |
| 3398 | case tok::kw___read_write: |
| 3399 | case tok::kw___write_only: |
Steve Naroff | 5f8aa69 | 2008-02-11 23:15:56 +0000 | [diff] [blame] | 3400 | return true; |
| 3401 | } |
| 3402 | } |
| 3403 | |
Chris Lattner | b3a4e43 | 2010-02-28 18:18:36 +0000 | [diff] [blame] | 3404 | /// isKnownToBeTypeSpecifier - Return true if we know that the specified token |
| 3405 | /// is definitely a type-specifier. Return false if it isn't part of a type |
| 3406 | /// specifier or if we're not sure. |
| 3407 | bool Parser::isKnownToBeTypeSpecifier(const Token &Tok) const { |
| 3408 | switch (Tok.getKind()) { |
| 3409 | default: return false; |
| 3410 | // type-specifiers |
| 3411 | case tok::kw_short: |
| 3412 | case tok::kw_long: |
Francois Pichet | 338d7f7 | 2011-04-28 01:59:37 +0000 | [diff] [blame] | 3413 | case tok::kw___int64: |
Richard Smith | 5a5a971 | 2012-04-04 06:24:32 +0000 | [diff] [blame] | 3414 | case tok::kw___int128: |
Chris Lattner | b3a4e43 | 2010-02-28 18:18:36 +0000 | [diff] [blame] | 3415 | case tok::kw_signed: |
| 3416 | case tok::kw_unsigned: |
| 3417 | case tok::kw__Complex: |
| 3418 | case tok::kw__Imaginary: |
| 3419 | case tok::kw_void: |
| 3420 | case tok::kw_char: |
| 3421 | case tok::kw_wchar_t: |
| 3422 | case tok::kw_char16_t: |
| 3423 | case tok::kw_char32_t: |
| 3424 | case tok::kw_int: |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 3425 | case tok::kw_half: |
Chris Lattner | b3a4e43 | 2010-02-28 18:18:36 +0000 | [diff] [blame] | 3426 | case tok::kw_float: |
| 3427 | case tok::kw_double: |
| 3428 | case tok::kw_bool: |
| 3429 | case tok::kw__Bool: |
| 3430 | case tok::kw__Decimal32: |
| 3431 | case tok::kw__Decimal64: |
| 3432 | case tok::kw__Decimal128: |
| 3433 | case tok::kw___vector: |
| 3434 | |
| 3435 | // struct-or-union-specifier (C99) or class-specifier (C++) |
| 3436 | case tok::kw_class: |
| 3437 | case tok::kw_struct: |
| 3438 | case tok::kw_union: |
| 3439 | // enum-specifier |
| 3440 | case tok::kw_enum: |
| 3441 | |
| 3442 | // typedef-name |
| 3443 | case tok::annot_typename: |
| 3444 | return true; |
| 3445 | } |
| 3446 | } |
| 3447 | |
Steve Naroff | 5f8aa69 | 2008-02-11 23:15:56 +0000 | [diff] [blame] | 3448 | /// isTypeSpecifierQualifier - Return true if the current token could be the |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3449 | /// start of a specifier-qualifier-list. |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 3450 | bool Parser::isTypeSpecifierQualifier() { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3451 | switch (Tok.getKind()) { |
| 3452 | default: return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3453 | |
Chris Lattner | 166a8fc | 2009-01-04 23:41:41 +0000 | [diff] [blame] | 3454 | case tok::identifier: // foo::bar |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 3455 | if (TryAltiVecVectorToken()) |
| 3456 | return true; |
| 3457 | // Fall through. |
Douglas Gregor | d57959a | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 3458 | case tok::kw_typename: // typename T::type |
Chris Lattner | 166a8fc | 2009-01-04 23:41:41 +0000 | [diff] [blame] | 3459 | // Annotate typenames and C++ scope specifiers. If we get one, just |
| 3460 | // recurse to handle whatever we get. |
| 3461 | if (TryAnnotateTypeOrScopeToken()) |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 3462 | return true; |
| 3463 | if (Tok.is(tok::identifier)) |
| 3464 | return false; |
| 3465 | return isTypeSpecifierQualifier(); |
Douglas Gregor | d57959a | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 3466 | |
Chris Lattner | 166a8fc | 2009-01-04 23:41:41 +0000 | [diff] [blame] | 3467 | case tok::coloncolon: // ::foo::bar |
| 3468 | if (NextToken().is(tok::kw_new) || // ::new |
| 3469 | NextToken().is(tok::kw_delete)) // ::delete |
| 3470 | return false; |
| 3471 | |
Chris Lattner | 166a8fc | 2009-01-04 23:41:41 +0000 | [diff] [blame] | 3472 | if (TryAnnotateTypeOrScopeToken()) |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 3473 | return true; |
| 3474 | return isTypeSpecifierQualifier(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3475 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3476 | // GNU attributes support. |
| 3477 | case tok::kw___attribute: |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 3478 | // GNU typeof support. |
| 3479 | case tok::kw_typeof: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3480 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3481 | // type-specifiers |
| 3482 | case tok::kw_short: |
| 3483 | case tok::kw_long: |
Francois Pichet | 338d7f7 | 2011-04-28 01:59:37 +0000 | [diff] [blame] | 3484 | case tok::kw___int64: |
Richard Smith | 5a5a971 | 2012-04-04 06:24:32 +0000 | [diff] [blame] | 3485 | case tok::kw___int128: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3486 | case tok::kw_signed: |
| 3487 | case tok::kw_unsigned: |
| 3488 | case tok::kw__Complex: |
| 3489 | case tok::kw__Imaginary: |
| 3490 | case tok::kw_void: |
| 3491 | case tok::kw_char: |
Argyrios Kyrtzidis | 64c438a | 2008-08-09 16:51:54 +0000 | [diff] [blame] | 3492 | case tok::kw_wchar_t: |
Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 3493 | case tok::kw_char16_t: |
| 3494 | case tok::kw_char32_t: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3495 | case tok::kw_int: |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 3496 | case tok::kw_half: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3497 | case tok::kw_float: |
| 3498 | case tok::kw_double: |
Chris Lattner | 9298d96 | 2007-11-15 05:25:19 +0000 | [diff] [blame] | 3499 | case tok::kw_bool: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3500 | case tok::kw__Bool: |
| 3501 | case tok::kw__Decimal32: |
| 3502 | case tok::kw__Decimal64: |
| 3503 | case tok::kw__Decimal128: |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 3504 | case tok::kw___vector: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3505 | |
Chris Lattner | 99dc914 | 2008-04-13 18:59:07 +0000 | [diff] [blame] | 3506 | // struct-or-union-specifier (C99) or class-specifier (C++) |
| 3507 | case tok::kw_class: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3508 | case tok::kw_struct: |
| 3509 | case tok::kw_union: |
| 3510 | // enum-specifier |
| 3511 | case tok::kw_enum: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3512 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3513 | // type-qualifier |
| 3514 | case tok::kw_const: |
| 3515 | case tok::kw_volatile: |
| 3516 | case tok::kw_restrict: |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 3517 | |
| 3518 | // typedef-name |
Chris Lattner | b31757b | 2009-01-06 05:06:21 +0000 | [diff] [blame] | 3519 | case tok::annot_typename: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3520 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3521 | |
Chris Lattner | 7c186be | 2008-10-20 00:25:30 +0000 | [diff] [blame] | 3522 | // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'. |
| 3523 | case tok::less: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3524 | return getLangOpts().ObjC1; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3525 | |
Steve Naroff | 239f073 | 2008-12-25 14:16:32 +0000 | [diff] [blame] | 3526 | case tok::kw___cdecl: |
| 3527 | case tok::kw___stdcall: |
| 3528 | case tok::kw___fastcall: |
Douglas Gregor | f813a2c | 2010-05-18 16:57:00 +0000 | [diff] [blame] | 3529 | case tok::kw___thiscall: |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 3530 | case tok::kw___w64: |
| 3531 | case tok::kw___ptr64: |
Francois Pichet | 58fd97a | 2011-08-25 00:36:46 +0000 | [diff] [blame] | 3532 | case tok::kw___ptr32: |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 3533 | case tok::kw___pascal: |
Francois Pichet | 3bd9aa4 | 2011-08-18 09:59:55 +0000 | [diff] [blame] | 3534 | case tok::kw___unaligned: |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 3535 | |
| 3536 | case tok::kw___private: |
| 3537 | case tok::kw___local: |
| 3538 | case tok::kw___global: |
| 3539 | case tok::kw___constant: |
| 3540 | case tok::kw___read_only: |
| 3541 | case tok::kw___read_write: |
| 3542 | case tok::kw___write_only: |
| 3543 | |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 3544 | return true; |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 3545 | |
| 3546 | case tok::kw_private: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3547 | return getLangOpts().OpenCL; |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 3548 | |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 3549 | // C11 _Atomic() |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 3550 | case tok::kw__Atomic: |
| 3551 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3552 | } |
| 3553 | } |
| 3554 | |
| 3555 | /// isDeclarationSpecifier() - Return true if the current token is part of a |
| 3556 | /// declaration specifier. |
Douglas Gregor | 9497a73 | 2010-09-16 01:51:54 +0000 | [diff] [blame] | 3557 | /// |
| 3558 | /// \param DisambiguatingWithExpression True to indicate that the purpose of |
| 3559 | /// this check is to disambiguate between an expression and a declaration. |
| 3560 | bool Parser::isDeclarationSpecifier(bool DisambiguatingWithExpression) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3561 | switch (Tok.getKind()) { |
| 3562 | default: return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3563 | |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 3564 | case tok::kw_private: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3565 | return getLangOpts().OpenCL; |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 3566 | |
Chris Lattner | 166a8fc | 2009-01-04 23:41:41 +0000 | [diff] [blame] | 3567 | case tok::identifier: // foo::bar |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 3568 | // Unfortunate hack to support "Class.factoryMethod" notation. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3569 | if (getLangOpts().ObjC1 && NextToken().is(tok::period)) |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 3570 | return false; |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 3571 | if (TryAltiVecVectorToken()) |
| 3572 | return true; |
| 3573 | // Fall through. |
David Blaikie | 42d6d0c | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 3574 | case tok::kw_decltype: // decltype(T())::type |
Douglas Gregor | d57959a | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 3575 | case tok::kw_typename: // typename T::type |
Chris Lattner | 166a8fc | 2009-01-04 23:41:41 +0000 | [diff] [blame] | 3576 | // Annotate typenames and C++ scope specifiers. If we get one, just |
| 3577 | // recurse to handle whatever we get. |
| 3578 | if (TryAnnotateTypeOrScopeToken()) |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 3579 | return true; |
| 3580 | if (Tok.is(tok::identifier)) |
| 3581 | return false; |
Douglas Gregor | 9497a73 | 2010-09-16 01:51:54 +0000 | [diff] [blame] | 3582 | |
| 3583 | // If we're in Objective-C and we have an Objective-C class type followed |
| 3584 | // by an identifier and then either ':' or ']', in a place where an |
| 3585 | // expression is permitted, then this is probably a class message send |
| 3586 | // missing the initial '['. In this case, we won't consider this to be |
| 3587 | // the start of a declaration. |
| 3588 | if (DisambiguatingWithExpression && |
| 3589 | isStartOfObjCClassMessageMissingOpenBracket()) |
| 3590 | return false; |
| 3591 | |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 3592 | return isDeclarationSpecifier(); |
| 3593 | |
Chris Lattner | 166a8fc | 2009-01-04 23:41:41 +0000 | [diff] [blame] | 3594 | case tok::coloncolon: // ::foo::bar |
| 3595 | if (NextToken().is(tok::kw_new) || // ::new |
| 3596 | NextToken().is(tok::kw_delete)) // ::delete |
| 3597 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3598 | |
Chris Lattner | 166a8fc | 2009-01-04 23:41:41 +0000 | [diff] [blame] | 3599 | // Annotate typenames and C++ scope specifiers. If we get one, just |
| 3600 | // recurse to handle whatever we get. |
| 3601 | if (TryAnnotateTypeOrScopeToken()) |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 3602 | return true; |
| 3603 | return isDeclarationSpecifier(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3604 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3605 | // storage-class-specifier |
| 3606 | case tok::kw_typedef: |
| 3607 | case tok::kw_extern: |
Steve Naroff | 8d54bf2 | 2007-12-18 00:16:02 +0000 | [diff] [blame] | 3608 | case tok::kw___private_extern__: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3609 | case tok::kw_static: |
| 3610 | case tok::kw_auto: |
| 3611 | case tok::kw_register: |
| 3612 | case tok::kw___thread: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3613 | |
Douglas Gregor | 8d267c5 | 2011-09-09 02:06:17 +0000 | [diff] [blame] | 3614 | // Modules |
| 3615 | case tok::kw___module_private__: |
| 3616 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3617 | // type-specifiers |
| 3618 | case tok::kw_short: |
| 3619 | case tok::kw_long: |
Francois Pichet | 338d7f7 | 2011-04-28 01:59:37 +0000 | [diff] [blame] | 3620 | case tok::kw___int64: |
Richard Smith | 5a5a971 | 2012-04-04 06:24:32 +0000 | [diff] [blame] | 3621 | case tok::kw___int128: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3622 | case tok::kw_signed: |
| 3623 | case tok::kw_unsigned: |
| 3624 | case tok::kw__Complex: |
| 3625 | case tok::kw__Imaginary: |
| 3626 | case tok::kw_void: |
| 3627 | case tok::kw_char: |
Argyrios Kyrtzidis | 64c438a | 2008-08-09 16:51:54 +0000 | [diff] [blame] | 3628 | case tok::kw_wchar_t: |
Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 3629 | case tok::kw_char16_t: |
| 3630 | case tok::kw_char32_t: |
| 3631 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3632 | case tok::kw_int: |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 3633 | case tok::kw_half: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3634 | case tok::kw_float: |
| 3635 | case tok::kw_double: |
Chris Lattner | 9298d96 | 2007-11-15 05:25:19 +0000 | [diff] [blame] | 3636 | case tok::kw_bool: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3637 | case tok::kw__Bool: |
| 3638 | case tok::kw__Decimal32: |
| 3639 | case tok::kw__Decimal64: |
| 3640 | case tok::kw__Decimal128: |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 3641 | case tok::kw___vector: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3642 | |
Chris Lattner | 99dc914 | 2008-04-13 18:59:07 +0000 | [diff] [blame] | 3643 | // struct-or-union-specifier (C99) or class-specifier (C++) |
| 3644 | case tok::kw_class: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3645 | case tok::kw_struct: |
| 3646 | case tok::kw_union: |
| 3647 | // enum-specifier |
| 3648 | case tok::kw_enum: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3649 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3650 | // type-qualifier |
| 3651 | case tok::kw_const: |
| 3652 | case tok::kw_volatile: |
| 3653 | case tok::kw_restrict: |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 3654 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3655 | // function-specifier |
| 3656 | case tok::kw_inline: |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 3657 | case tok::kw_virtual: |
| 3658 | case tok::kw_explicit: |
Chris Lattner | d6c7c18 | 2007-08-09 16:40:21 +0000 | [diff] [blame] | 3659 | |
Peter Collingbourne | c6eb44b | 2011-04-15 00:35:57 +0000 | [diff] [blame] | 3660 | // static_assert-declaration |
| 3661 | case tok::kw__Static_assert: |
| 3662 | |
Chris Lattner | 1ef0876 | 2007-08-09 17:01:07 +0000 | [diff] [blame] | 3663 | // GNU typeof support. |
| 3664 | case tok::kw_typeof: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3665 | |
Chris Lattner | 1ef0876 | 2007-08-09 17:01:07 +0000 | [diff] [blame] | 3666 | // GNU attributes. |
Chris Lattner | d6c7c18 | 2007-08-09 16:40:21 +0000 | [diff] [blame] | 3667 | case tok::kw___attribute: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3668 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3669 | |
Francois Pichet | e3d49b4 | 2011-06-19 08:02:06 +0000 | [diff] [blame] | 3670 | // C++0x decltype. |
David Blaikie | 42d6d0c | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 3671 | case tok::annot_decltype: |
Francois Pichet | e3d49b4 | 2011-06-19 08:02:06 +0000 | [diff] [blame] | 3672 | return true; |
| 3673 | |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 3674 | // C11 _Atomic() |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 3675 | case tok::kw__Atomic: |
| 3676 | return true; |
| 3677 | |
Chris Lattner | f3948c4 | 2008-07-26 03:38:44 +0000 | [diff] [blame] | 3678 | // GNU ObjC bizarre protocol extension: <proto1,proto2> with implicit 'id'. |
| 3679 | case tok::less: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3680 | return getLangOpts().ObjC1; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3681 | |
Douglas Gregor | d9d75e5 | 2011-04-27 05:41:15 +0000 | [diff] [blame] | 3682 | // typedef-name |
| 3683 | case tok::annot_typename: |
| 3684 | return !DisambiguatingWithExpression || |
| 3685 | !isStartOfObjCClassMessageMissingOpenBracket(); |
| 3686 | |
Steve Naroff | 47f5209 | 2009-01-06 19:34:12 +0000 | [diff] [blame] | 3687 | case tok::kw___declspec: |
Steve Naroff | 239f073 | 2008-12-25 14:16:32 +0000 | [diff] [blame] | 3688 | case tok::kw___cdecl: |
| 3689 | case tok::kw___stdcall: |
| 3690 | case tok::kw___fastcall: |
Douglas Gregor | f813a2c | 2010-05-18 16:57:00 +0000 | [diff] [blame] | 3691 | case tok::kw___thiscall: |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 3692 | case tok::kw___w64: |
| 3693 | case tok::kw___ptr64: |
Francois Pichet | 58fd97a | 2011-08-25 00:36:46 +0000 | [diff] [blame] | 3694 | case tok::kw___ptr32: |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 3695 | case tok::kw___forceinline: |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 3696 | case tok::kw___pascal: |
Francois Pichet | 3bd9aa4 | 2011-08-18 09:59:55 +0000 | [diff] [blame] | 3697 | case tok::kw___unaligned: |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 3698 | |
| 3699 | case tok::kw___private: |
| 3700 | case tok::kw___local: |
| 3701 | case tok::kw___global: |
| 3702 | case tok::kw___constant: |
| 3703 | case tok::kw___read_only: |
| 3704 | case tok::kw___read_write: |
| 3705 | case tok::kw___write_only: |
| 3706 | |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 3707 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3708 | } |
| 3709 | } |
| 3710 | |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 3711 | bool Parser::isConstructorDeclarator() { |
| 3712 | TentativeParsingAction TPA(*this); |
| 3713 | |
| 3714 | // Parse the C++ scope specifier. |
| 3715 | CXXScopeSpec SS; |
Douglas Gregor | efaa93a | 2011-11-07 17:33:42 +0000 | [diff] [blame] | 3716 | if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), |
| 3717 | /*EnteringContext=*/true)) { |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 3718 | TPA.Revert(); |
| 3719 | return false; |
| 3720 | } |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 3721 | |
| 3722 | // Parse the constructor name. |
| 3723 | if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id)) { |
| 3724 | // We already know that we have a constructor name; just consume |
| 3725 | // the token. |
| 3726 | ConsumeToken(); |
| 3727 | } else { |
| 3728 | TPA.Revert(); |
| 3729 | return false; |
| 3730 | } |
| 3731 | |
Richard Smith | 2259286 | 2012-03-27 23:05:05 +0000 | [diff] [blame] | 3732 | // Current class name must be followed by a left parenthesis. |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 3733 | if (Tok.isNot(tok::l_paren)) { |
| 3734 | TPA.Revert(); |
| 3735 | return false; |
| 3736 | } |
| 3737 | ConsumeParen(); |
| 3738 | |
Richard Smith | 2259286 | 2012-03-27 23:05:05 +0000 | [diff] [blame] | 3739 | // A right parenthesis, or ellipsis followed by a right parenthesis signals |
| 3740 | // that we have a constructor. |
| 3741 | if (Tok.is(tok::r_paren) || |
| 3742 | (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren))) { |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 3743 | TPA.Revert(); |
| 3744 | return true; |
| 3745 | } |
| 3746 | |
| 3747 | // If we need to, enter the specified scope. |
| 3748 | DeclaratorScopeObj DeclScopeObj(*this, SS); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 3749 | if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS)) |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 3750 | DeclScopeObj.EnterDeclaratorScope(); |
| 3751 | |
Francois Pichet | dfaa5fb | 2011-01-31 04:54:32 +0000 | [diff] [blame] | 3752 | // Optionally skip Microsoft attributes. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 3753 | ParsedAttributes Attrs(AttrFactory); |
Francois Pichet | dfaa5fb | 2011-01-31 04:54:32 +0000 | [diff] [blame] | 3754 | MaybeParseMicrosoftAttributes(Attrs); |
| 3755 | |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 3756 | // Check whether the next token(s) are part of a declaration |
| 3757 | // specifier, in which case we have the start of a parameter and, |
| 3758 | // therefore, we know that this is a constructor. |
Richard Smith | 412e0cc | 2012-03-27 00:56:56 +0000 | [diff] [blame] | 3759 | bool IsConstructor = false; |
| 3760 | if (isDeclarationSpecifier()) |
| 3761 | IsConstructor = true; |
| 3762 | else if (Tok.is(tok::identifier) || |
| 3763 | (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier))) { |
| 3764 | // We've seen "C ( X" or "C ( X::Y", but "X" / "X::Y" is not a type. |
| 3765 | // This might be a parenthesized member name, but is more likely to |
| 3766 | // be a constructor declaration with an invalid argument type. Keep |
| 3767 | // looking. |
| 3768 | if (Tok.is(tok::annot_cxxscope)) |
| 3769 | ConsumeToken(); |
| 3770 | ConsumeToken(); |
| 3771 | |
| 3772 | // If this is not a constructor, we must be parsing a declarator, |
Richard Smith | 5d8388c | 2012-03-27 01:42:32 +0000 | [diff] [blame] | 3773 | // which must have one of the following syntactic forms (see the |
| 3774 | // grammar extract at the start of ParseDirectDeclarator): |
Richard Smith | 412e0cc | 2012-03-27 00:56:56 +0000 | [diff] [blame] | 3775 | switch (Tok.getKind()) { |
| 3776 | case tok::l_paren: |
| 3777 | // C(X ( int)); |
| 3778 | case tok::l_square: |
| 3779 | // C(X [ 5]); |
| 3780 | // C(X [ [attribute]]); |
| 3781 | case tok::coloncolon: |
| 3782 | // C(X :: Y); |
| 3783 | // C(X :: *p); |
| 3784 | case tok::r_paren: |
| 3785 | // C(X ) |
| 3786 | // Assume this isn't a constructor, rather than assuming it's a |
| 3787 | // constructor with an unnamed parameter of an ill-formed type. |
| 3788 | break; |
| 3789 | |
| 3790 | default: |
| 3791 | IsConstructor = true; |
| 3792 | break; |
| 3793 | } |
| 3794 | } |
| 3795 | |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 3796 | TPA.Revert(); |
| 3797 | return IsConstructor; |
| 3798 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3799 | |
| 3800 | /// ParseTypeQualifierListOpt |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 3801 | /// type-qualifier-list: [C99 6.7.5] |
| 3802 | /// type-qualifier |
| 3803 | /// [vendor] attributes |
| 3804 | /// [ only if VendorAttributesAllowed=true ] |
| 3805 | /// type-qualifier-list type-qualifier |
| 3806 | /// [vendor] type-qualifier-list attributes |
| 3807 | /// [ only if VendorAttributesAllowed=true ] |
| 3808 | /// [C++0x] attribute-specifier[opt] is allowed before cv-qualifier-seq |
| 3809 | /// [ only if CXX0XAttributesAllowed=true ] |
| 3810 | /// Note: vendor can be GNU, MS, etc. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3811 | /// |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 3812 | void Parser::ParseTypeQualifierListOpt(DeclSpec &DS, |
| 3813 | bool VendorAttributesAllowed, |
Richard Smith | c56298d | 2012-04-10 03:25:07 +0000 | [diff] [blame] | 3814 | bool CXX11AttributesAllowed) { |
| 3815 | if (getLangOpts().CPlusPlus0x && CXX11AttributesAllowed && |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 3816 | isCXX11AttributeSpecifier()) { |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 3817 | ParsedAttributesWithRange attrs(AttrFactory); |
Richard Smith | c56298d | 2012-04-10 03:25:07 +0000 | [diff] [blame] | 3818 | ParseCXX11Attributes(attrs); |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 3819 | DS.takeAttributesFrom(attrs); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 3820 | } |
Abramo Bagnara | 796aa44 | 2011-03-12 11:17:06 +0000 | [diff] [blame] | 3821 | |
| 3822 | SourceLocation EndLoc; |
| 3823 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3824 | while (1) { |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 3825 | bool isInvalid = false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3826 | const char *PrevSpec = 0; |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 3827 | unsigned DiagID = 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3828 | SourceLocation Loc = Tok.getLocation(); |
| 3829 | |
| 3830 | switch (Tok.getKind()) { |
Douglas Gregor | 1a480c4 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 3831 | case tok::code_completion: |
| 3832 | Actions.CodeCompleteTypeQualifiers(DS); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 3833 | return cutOffParsing(); |
Douglas Gregor | 1a480c4 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 3834 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3835 | case tok::kw_const: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 3836 | isInvalid = DS.SetTypeQual(DeclSpec::TQ_const , Loc, PrevSpec, DiagID, |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3837 | getLangOpts()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3838 | break; |
| 3839 | case tok::kw_volatile: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 3840 | isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID, |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3841 | getLangOpts()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3842 | break; |
| 3843 | case tok::kw_restrict: |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 3844 | isInvalid = DS.SetTypeQual(DeclSpec::TQ_restrict, Loc, PrevSpec, DiagID, |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3845 | getLangOpts()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3846 | break; |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 3847 | |
| 3848 | // OpenCL qualifiers: |
| 3849 | case tok::kw_private: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3850 | if (!getLangOpts().OpenCL) |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 3851 | goto DoneWithTypeQuals; |
| 3852 | case tok::kw___private: |
| 3853 | case tok::kw___global: |
| 3854 | case tok::kw___local: |
| 3855 | case tok::kw___constant: |
| 3856 | case tok::kw___read_only: |
| 3857 | case tok::kw___write_only: |
| 3858 | case tok::kw___read_write: |
| 3859 | ParseOpenCLQualifiers(DS); |
| 3860 | break; |
| 3861 | |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 3862 | case tok::kw___w64: |
Steve Naroff | 86bc6cf | 2008-12-25 14:41:26 +0000 | [diff] [blame] | 3863 | case tok::kw___ptr64: |
Francois Pichet | 58fd97a | 2011-08-25 00:36:46 +0000 | [diff] [blame] | 3864 | case tok::kw___ptr32: |
Steve Naroff | 239f073 | 2008-12-25 14:16:32 +0000 | [diff] [blame] | 3865 | case tok::kw___cdecl: |
| 3866 | case tok::kw___stdcall: |
| 3867 | case tok::kw___fastcall: |
Douglas Gregor | f813a2c | 2010-05-18 16:57:00 +0000 | [diff] [blame] | 3868 | case tok::kw___thiscall: |
Francois Pichet | 3bd9aa4 | 2011-08-18 09:59:55 +0000 | [diff] [blame] | 3869 | case tok::kw___unaligned: |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 3870 | if (VendorAttributesAllowed) { |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 3871 | ParseMicrosoftTypeAttributes(DS.getAttributes()); |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 3872 | continue; |
| 3873 | } |
| 3874 | goto DoneWithTypeQuals; |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 3875 | case tok::kw___pascal: |
| 3876 | if (VendorAttributesAllowed) { |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 3877 | ParseBorlandTypeAttributes(DS.getAttributes()); |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 3878 | continue; |
| 3879 | } |
| 3880 | goto DoneWithTypeQuals; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3881 | case tok::kw___attribute: |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 3882 | if (VendorAttributesAllowed) { |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 3883 | ParseGNUAttributes(DS.getAttributes()); |
Chris Lattner | 5a69d1c | 2008-12-18 07:02:59 +0000 | [diff] [blame] | 3884 | continue; // do *not* consume the next token! |
| 3885 | } |
| 3886 | // otherwise, FALL THROUGH! |
| 3887 | default: |
Steve Naroff | 239f073 | 2008-12-25 14:16:32 +0000 | [diff] [blame] | 3888 | DoneWithTypeQuals: |
Chris Lattner | 5a69d1c | 2008-12-18 07:02:59 +0000 | [diff] [blame] | 3889 | // If this is not a type-qualifier token, we're done reading type |
| 3890 | // qualifiers. First verify that DeclSpec's are consistent. |
Douglas Gregor | 9b3064b | 2009-04-01 22:41:11 +0000 | [diff] [blame] | 3891 | DS.Finish(Diags, PP); |
Abramo Bagnara | 796aa44 | 2011-03-12 11:17:06 +0000 | [diff] [blame] | 3892 | if (EndLoc.isValid()) |
| 3893 | DS.SetRangeEnd(EndLoc); |
Chris Lattner | 5a69d1c | 2008-12-18 07:02:59 +0000 | [diff] [blame] | 3894 | return; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3895 | } |
Chris Lattner | a1fcbad | 2008-12-18 06:50:14 +0000 | [diff] [blame] | 3896 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3897 | // If the specifier combination wasn't legal, issue a diagnostic. |
| 3898 | if (isInvalid) { |
| 3899 | assert(PrevSpec && "Method did not return previous specifier!"); |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 3900 | Diag(Tok, DiagID) << PrevSpec; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3901 | } |
Abramo Bagnara | 796aa44 | 2011-03-12 11:17:06 +0000 | [diff] [blame] | 3902 | EndLoc = ConsumeToken(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3903 | } |
| 3904 | } |
| 3905 | |
| 3906 | |
| 3907 | /// ParseDeclarator - Parse and verify a newly-initialized declarator. |
| 3908 | /// |
| 3909 | void Parser::ParseDeclarator(Declarator &D) { |
| 3910 | /// This implements the 'declarator' production in the C grammar, then checks |
| 3911 | /// for well-formedness and issues diagnostics. |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 3912 | ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3913 | } |
| 3914 | |
Richard Smith | 9988f28 | 2012-03-29 01:16:42 +0000 | [diff] [blame] | 3915 | static bool isPtrOperatorToken(tok::TokenKind Kind, const LangOptions &Lang) { |
| 3916 | if (Kind == tok::star || Kind == tok::caret) |
| 3917 | return true; |
| 3918 | |
| 3919 | // We parse rvalue refs in C++03, because otherwise the errors are scary. |
| 3920 | if (!Lang.CPlusPlus) |
| 3921 | return false; |
| 3922 | |
| 3923 | return Kind == tok::amp || Kind == tok::ampamp; |
| 3924 | } |
| 3925 | |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 3926 | /// ParseDeclaratorInternal - Parse a C or C++ declarator. The direct-declarator |
| 3927 | /// is parsed by the function passed to it. Pass null, and the direct-declarator |
| 3928 | /// isn't parsed at all, making this function effectively parse the C++ |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 3929 | /// ptr-operator production. |
| 3930 | /// |
Richard Smith | 0706df4 | 2011-10-19 21:33:05 +0000 | [diff] [blame] | 3931 | /// If the grammar of this construct is extended, matching changes must also be |
Richard Smith | 5d8388c | 2012-03-27 01:42:32 +0000 | [diff] [blame] | 3932 | /// made to TryParseDeclarator and MightBeDeclarator, and possibly to |
| 3933 | /// isConstructorDeclarator. |
Richard Smith | 0706df4 | 2011-10-19 21:33:05 +0000 | [diff] [blame] | 3934 | /// |
Sebastian Redl | f30208a | 2009-01-24 21:16:55 +0000 | [diff] [blame] | 3935 | /// declarator: [C99 6.7.5] [C++ 8p4, dcl.decl] |
| 3936 | /// [C] pointer[opt] direct-declarator |
| 3937 | /// [C++] direct-declarator |
| 3938 | /// [C++] ptr-operator declarator |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3939 | /// |
| 3940 | /// pointer: [C99 6.7.5] |
| 3941 | /// '*' type-qualifier-list[opt] |
| 3942 | /// '*' type-qualifier-list[opt] pointer |
| 3943 | /// |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 3944 | /// ptr-operator: |
| 3945 | /// '*' cv-qualifier-seq[opt] |
| 3946 | /// '&' |
Sebastian Redl | 05532f2 | 2009-03-15 22:02:01 +0000 | [diff] [blame] | 3947 | /// [C++0x] '&&' |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 3948 | /// [GNU] '&' restrict[opt] attributes[opt] |
Sebastian Redl | 05532f2 | 2009-03-15 22:02:01 +0000 | [diff] [blame] | 3949 | /// [GNU?] '&&' restrict[opt] attributes[opt] |
Sebastian Redl | f30208a | 2009-01-24 21:16:55 +0000 | [diff] [blame] | 3950 | /// '::'[opt] nested-name-specifier '*' cv-qualifier-seq[opt] |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 3951 | void Parser::ParseDeclaratorInternal(Declarator &D, |
| 3952 | DirectDeclParseFunction DirectDeclParser) { |
Douglas Gregor | 91a2886 | 2009-08-26 14:27:30 +0000 | [diff] [blame] | 3953 | if (Diags.hasAllExtensionsSilenced()) |
| 3954 | D.setExtension(); |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 3955 | |
Sebastian Redl | f30208a | 2009-01-24 21:16:55 +0000 | [diff] [blame] | 3956 | // C++ member pointers start with a '::' or a nested-name. |
| 3957 | // Member pointers get special handling, since there's no place for the |
| 3958 | // scope spec in the generic path below. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3959 | if (getLangOpts().CPlusPlus && |
Chris Lattner | f919bfe | 2009-03-24 17:04:48 +0000 | [diff] [blame] | 3960 | (Tok.is(tok::coloncolon) || Tok.is(tok::identifier) || |
| 3961 | Tok.is(tok::annot_cxxscope))) { |
Douglas Gregor | efaa93a | 2011-11-07 17:33:42 +0000 | [diff] [blame] | 3962 | bool EnteringContext = D.getContext() == Declarator::FileContext || |
| 3963 | D.getContext() == Declarator::MemberContext; |
Sebastian Redl | f30208a | 2009-01-24 21:16:55 +0000 | [diff] [blame] | 3964 | CXXScopeSpec SS; |
Douglas Gregor | efaa93a | 2011-11-07 17:33:42 +0000 | [diff] [blame] | 3965 | ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext); |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 3966 | |
Jeffrey Yasskin | edc2877 | 2010-04-07 23:29:58 +0000 | [diff] [blame] | 3967 | if (SS.isNotEmpty()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3968 | if (Tok.isNot(tok::star)) { |
Sebastian Redl | f30208a | 2009-01-24 21:16:55 +0000 | [diff] [blame] | 3969 | // The scope spec really belongs to the direct-declarator. |
| 3970 | D.getCXXScopeSpec() = SS; |
| 3971 | if (DirectDeclParser) |
| 3972 | (this->*DirectDeclParser)(D); |
| 3973 | return; |
| 3974 | } |
| 3975 | |
| 3976 | SourceLocation Loc = ConsumeToken(); |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 3977 | D.SetRangeEnd(Loc); |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 3978 | DeclSpec DS(AttrFactory); |
Sebastian Redl | f30208a | 2009-01-24 21:16:55 +0000 | [diff] [blame] | 3979 | ParseTypeQualifierListOpt(DS); |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 3980 | D.ExtendWithDeclSpec(DS); |
Sebastian Redl | f30208a | 2009-01-24 21:16:55 +0000 | [diff] [blame] | 3981 | |
| 3982 | // Recurse to parse whatever is left. |
| 3983 | ParseDeclaratorInternal(D, DirectDeclParser); |
| 3984 | |
| 3985 | // Sema will have to catch (syntactically invalid) pointers into global |
| 3986 | // scope. It has to catch pointers into namespace scope anyway. |
| 3987 | D.AddTypeInfo(DeclaratorChunk::getMemberPointer(SS,DS.getTypeQualifiers(), |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 3988 | Loc), |
| 3989 | DS.getAttributes(), |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 3990 | /* Don't replace range end. */SourceLocation()); |
Sebastian Redl | f30208a | 2009-01-24 21:16:55 +0000 | [diff] [blame] | 3991 | return; |
| 3992 | } |
| 3993 | } |
| 3994 | |
| 3995 | tok::TokenKind Kind = Tok.getKind(); |
Steve Naroff | 5618bd4 | 2008-08-27 16:04:49 +0000 | [diff] [blame] | 3996 | // Not a pointer, C++ reference, or block. |
Richard Smith | 9988f28 | 2012-03-29 01:16:42 +0000 | [diff] [blame] | 3997 | if (!isPtrOperatorToken(Kind, getLangOpts())) { |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 3998 | if (DirectDeclParser) |
| 3999 | (this->*DirectDeclParser)(D); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 4000 | return; |
| 4001 | } |
Sebastian Redl | f30208a | 2009-01-24 21:16:55 +0000 | [diff] [blame] | 4002 | |
Sebastian Redl | 05532f2 | 2009-03-15 22:02:01 +0000 | [diff] [blame] | 4003 | // Otherwise, '*' -> pointer, '^' -> block, '&' -> lvalue reference, |
| 4004 | // '&&' -> rvalue reference |
Sebastian Redl | 743de1f | 2009-03-23 00:00:23 +0000 | [diff] [blame] | 4005 | SourceLocation Loc = ConsumeToken(); // Eat the *, ^, & or &&. |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 4006 | D.SetRangeEnd(Loc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4007 | |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 4008 | if (Kind == tok::star || Kind == tok::caret) { |
Chris Lattner | 7654914 | 2008-02-21 01:32:26 +0000 | [diff] [blame] | 4009 | // Is a pointer. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4010 | DeclSpec DS(AttrFactory); |
Sebastian Redl | f30208a | 2009-01-24 21:16:55 +0000 | [diff] [blame] | 4011 | |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4012 | // FIXME: GNU attributes are not allowed here in a new-type-id. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4013 | ParseTypeQualifierListOpt(DS); |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 4014 | D.ExtendWithDeclSpec(DS); |
Sebastian Redl | f30208a | 2009-01-24 21:16:55 +0000 | [diff] [blame] | 4015 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4016 | // Recursively parse the declarator. |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 4017 | ParseDeclaratorInternal(D, DirectDeclParser); |
Steve Naroff | 5618bd4 | 2008-08-27 16:04:49 +0000 | [diff] [blame] | 4018 | if (Kind == tok::star) |
| 4019 | // Remember that we parsed a pointer type, and remember the type-quals. |
| 4020 | D.AddTypeInfo(DeclaratorChunk::getPointer(DS.getTypeQualifiers(), Loc, |
Chandler Carruth | d067c07 | 2011-02-23 18:51:59 +0000 | [diff] [blame] | 4021 | DS.getConstSpecLoc(), |
| 4022 | DS.getVolatileSpecLoc(), |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4023 | DS.getRestrictSpecLoc()), |
| 4024 | DS.getAttributes(), |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 4025 | SourceLocation()); |
Steve Naroff | 5618bd4 | 2008-08-27 16:04:49 +0000 | [diff] [blame] | 4026 | else |
| 4027 | // Remember that we parsed a Block type, and remember the type-quals. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4028 | D.AddTypeInfo(DeclaratorChunk::getBlockPointer(DS.getTypeQualifiers(), |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4029 | Loc), |
| 4030 | DS.getAttributes(), |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 4031 | SourceLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4032 | } else { |
| 4033 | // Is a reference |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4034 | DeclSpec DS(AttrFactory); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4035 | |
Sebastian Redl | 743de1f | 2009-03-23 00:00:23 +0000 | [diff] [blame] | 4036 | // Complain about rvalue references in C++03, but then go on and build |
| 4037 | // the declarator. |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 4038 | if (Kind == tok::ampamp) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4039 | Diag(Loc, getLangOpts().CPlusPlus0x ? |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 4040 | diag::warn_cxx98_compat_rvalue_reference : |
| 4041 | diag::ext_rvalue_reference); |
Sebastian Redl | 743de1f | 2009-03-23 00:00:23 +0000 | [diff] [blame] | 4042 | |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4043 | // GNU-style and C++11 attributes are allowed here, as is restrict. |
| 4044 | ParseTypeQualifierListOpt(DS); |
| 4045 | D.ExtendWithDeclSpec(DS); |
| 4046 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4047 | // C++ 8.3.2p1: cv-qualified references are ill-formed except when the |
| 4048 | // cv-qualifiers are introduced through the use of a typedef or of a |
| 4049 | // template type argument, in which case the cv-qualifiers are ignored. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4050 | if (DS.getTypeQualifiers() != DeclSpec::TQ_unspecified) { |
| 4051 | if (DS.getTypeQualifiers() & DeclSpec::TQ_const) |
| 4052 | Diag(DS.getConstSpecLoc(), |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 4053 | diag::err_invalid_reference_qualifier_application) << "const"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4054 | if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile) |
| 4055 | Diag(DS.getVolatileSpecLoc(), |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 4056 | diag::err_invalid_reference_qualifier_application) << "volatile"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4057 | } |
| 4058 | |
| 4059 | // Recursively parse the declarator. |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 4060 | ParseDeclaratorInternal(D, DirectDeclParser); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4061 | |
Douglas Gregor | f1f9b4e | 2008-11-03 15:51:28 +0000 | [diff] [blame] | 4062 | if (D.getNumTypeObjects() > 0) { |
| 4063 | // C++ [dcl.ref]p4: There shall be no references to references. |
| 4064 | DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1); |
| 4065 | if (InnerChunk.Kind == DeclaratorChunk::Reference) { |
Chris Lattner | da83bac | 2008-11-19 07:37:42 +0000 | [diff] [blame] | 4066 | if (const IdentifierInfo *II = D.getIdentifier()) |
| 4067 | Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference) |
| 4068 | << II; |
| 4069 | else |
| 4070 | Diag(InnerChunk.Loc, diag::err_illegal_decl_reference_to_reference) |
| 4071 | << "type name"; |
Douglas Gregor | f1f9b4e | 2008-11-03 15:51:28 +0000 | [diff] [blame] | 4072 | |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 4073 | // Once we've complained about the reference-to-reference, we |
Douglas Gregor | f1f9b4e | 2008-11-03 15:51:28 +0000 | [diff] [blame] | 4074 | // can go ahead and build the (technically ill-formed) |
| 4075 | // declarator: reference collapsing will take care of it. |
| 4076 | } |
| 4077 | } |
| 4078 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4079 | // Remember that we parsed a reference type. It doesn't have type-quals. |
Chris Lattner | 7654914 | 2008-02-21 01:32:26 +0000 | [diff] [blame] | 4080 | D.AddTypeInfo(DeclaratorChunk::getReference(DS.getTypeQualifiers(), Loc, |
Sebastian Redl | 05532f2 | 2009-03-15 22:02:01 +0000 | [diff] [blame] | 4081 | Kind == tok::amp), |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4082 | DS.getAttributes(), |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 4083 | SourceLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4084 | } |
| 4085 | } |
| 4086 | |
Richard Smith | 9988f28 | 2012-03-29 01:16:42 +0000 | [diff] [blame] | 4087 | static void diagnoseMisplacedEllipsis(Parser &P, Declarator &D, |
| 4088 | SourceLocation EllipsisLoc) { |
| 4089 | if (EllipsisLoc.isValid()) { |
| 4090 | FixItHint Insertion; |
| 4091 | if (!D.getEllipsisLoc().isValid()) { |
| 4092 | Insertion = FixItHint::CreateInsertion(D.getIdentifierLoc(), "..."); |
| 4093 | D.setEllipsisLoc(EllipsisLoc); |
| 4094 | } |
| 4095 | P.Diag(EllipsisLoc, diag::err_misplaced_ellipsis_in_declaration) |
| 4096 | << FixItHint::CreateRemoval(EllipsisLoc) << Insertion << !D.hasName(); |
| 4097 | } |
| 4098 | } |
| 4099 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4100 | /// ParseDirectDeclarator |
| 4101 | /// direct-declarator: [C99 6.7.5] |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 4102 | /// [C99] identifier |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4103 | /// '(' declarator ')' |
| 4104 | /// [GNU] '(' attributes declarator ')' |
| 4105 | /// [C90] direct-declarator '[' constant-expression[opt] ']' |
| 4106 | /// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']' |
| 4107 | /// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']' |
| 4108 | /// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']' |
| 4109 | /// [C99] direct-declarator '[' type-qual-list[opt] '*' ']' |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4110 | /// [C++11] direct-declarator '[' constant-expression[opt] ']' |
| 4111 | /// attribute-specifier-seq[opt] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4112 | /// direct-declarator '(' parameter-type-list ')' |
| 4113 | /// direct-declarator '(' identifier-list[opt] ')' |
| 4114 | /// [GNU] direct-declarator '(' parameter-forward-declarations |
| 4115 | /// parameter-type-list[opt] ')' |
Argyrios Kyrtzidis | 971c4fa | 2008-10-24 21:46:40 +0000 | [diff] [blame] | 4116 | /// [C++] direct-declarator '(' parameter-declaration-clause ')' |
| 4117 | /// cv-qualifier-seq[opt] exception-specification[opt] |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4118 | /// [C++11] direct-declarator '(' parameter-declaration-clause ')' |
| 4119 | /// attribute-specifier-seq[opt] cv-qualifier-seq[opt] |
| 4120 | /// ref-qualifier[opt] exception-specification[opt] |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 4121 | /// [C++] declarator-id |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4122 | /// [C++11] declarator-id attribute-specifier-seq[opt] |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 4123 | /// |
| 4124 | /// declarator-id: [C++ 8] |
Douglas Gregor | a8bc8c9 | 2010-12-23 22:44:42 +0000 | [diff] [blame] | 4125 | /// '...'[opt] id-expression |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 4126 | /// '::'[opt] nested-name-specifier[opt] type-name |
| 4127 | /// |
| 4128 | /// id-expression: [C++ 5.1] |
| 4129 | /// unqualified-id |
Douglas Gregor | db422df | 2009-09-25 21:45:23 +0000 | [diff] [blame] | 4130 | /// qualified-id |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 4131 | /// |
| 4132 | /// unqualified-id: [C++ 5.1] |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4133 | /// identifier |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 4134 | /// operator-function-id |
Douglas Gregor | db422df | 2009-09-25 21:45:23 +0000 | [diff] [blame] | 4135 | /// conversion-function-id |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4136 | /// '~' class-name |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 4137 | /// template-id |
Argyrios Kyrtzidis | c7ed9c6 | 2008-11-07 22:02:30 +0000 | [diff] [blame] | 4138 | /// |
Richard Smith | 5d8388c | 2012-03-27 01:42:32 +0000 | [diff] [blame] | 4139 | /// Note, any additional constructs added here may need corresponding changes |
| 4140 | /// in isConstructorDeclarator. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4141 | void Parser::ParseDirectDeclarator(Declarator &D) { |
Argyrios Kyrtzidis | 314fe78 | 2008-11-26 22:40:03 +0000 | [diff] [blame] | 4142 | DeclaratorScopeObj DeclScopeObj(*this, D.getCXXScopeSpec()); |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 4143 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4144 | if (getLangOpts().CPlusPlus && D.mayHaveIdentifier()) { |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 4145 | // ParseDeclaratorInternal might already have parsed the scope. |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 4146 | if (D.getCXXScopeSpec().isEmpty()) { |
Douglas Gregor | efaa93a | 2011-11-07 17:33:42 +0000 | [diff] [blame] | 4147 | bool EnteringContext = D.getContext() == Declarator::FileContext || |
| 4148 | D.getContext() == Declarator::MemberContext; |
| 4149 | ParseOptionalCXXScopeSpecifier(D.getCXXScopeSpec(), ParsedType(), |
| 4150 | EnteringContext); |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 4151 | } |
| 4152 | |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 4153 | if (D.getCXXScopeSpec().isValid()) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 4154 | if (Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec())) |
John McCall | e7e278b | 2009-12-11 20:04:54 +0000 | [diff] [blame] | 4155 | // Change the declaration context for name lookup, until this function |
| 4156 | // is exited (and the declarator has been parsed). |
| 4157 | DeclScopeObj.EnterDeclaratorScope(); |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 4158 | } |
| 4159 | |
Douglas Gregor | a8bc8c9 | 2010-12-23 22:44:42 +0000 | [diff] [blame] | 4160 | // C++0x [dcl.fct]p14: |
| 4161 | // There is a syntactic ambiguity when an ellipsis occurs at the end |
| 4162 | // of a parameter-declaration-clause without a preceding comma. In |
| 4163 | // this case, the ellipsis is parsed as part of the |
| 4164 | // abstract-declarator if the type of the parameter names a template |
| 4165 | // parameter pack that has not been expanded; otherwise, it is parsed |
| 4166 | // as part of the parameter-declaration-clause. |
Richard Smith | 9988f28 | 2012-03-29 01:16:42 +0000 | [diff] [blame] | 4167 | if (Tok.is(tok::ellipsis) && D.getCXXScopeSpec().isEmpty() && |
Douglas Gregor | a8bc8c9 | 2010-12-23 22:44:42 +0000 | [diff] [blame] | 4168 | !((D.getContext() == Declarator::PrototypeContext || |
| 4169 | D.getContext() == Declarator::BlockLiteralContext) && |
Douglas Gregor | a8bc8c9 | 2010-12-23 22:44:42 +0000 | [diff] [blame] | 4170 | NextToken().is(tok::r_paren) && |
Richard Smith | 9988f28 | 2012-03-29 01:16:42 +0000 | [diff] [blame] | 4171 | !Actions.containsUnexpandedParameterPacks(D))) { |
| 4172 | SourceLocation EllipsisLoc = ConsumeToken(); |
| 4173 | if (isPtrOperatorToken(Tok.getKind(), getLangOpts())) { |
| 4174 | // The ellipsis was put in the wrong place. Recover, and explain to |
| 4175 | // the user what they should have done. |
| 4176 | ParseDeclarator(D); |
| 4177 | diagnoseMisplacedEllipsis(*this, D, EllipsisLoc); |
| 4178 | return; |
| 4179 | } else |
| 4180 | D.setEllipsisLoc(EllipsisLoc); |
| 4181 | |
| 4182 | // The ellipsis can't be followed by a parenthesized declarator. We |
| 4183 | // check for that in ParseParenDeclarator, after we have disambiguated |
| 4184 | // the l_paren token. |
| 4185 | } |
| 4186 | |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 4187 | if (Tok.is(tok::identifier) || Tok.is(tok::kw_operator) || |
| 4188 | Tok.is(tok::annot_template_id) || Tok.is(tok::tilde)) { |
| 4189 | // We found something that indicates the start of an unqualified-id. |
| 4190 | // Parse that unqualified-id. |
John McCall | ba9d853 | 2010-04-13 06:39:49 +0000 | [diff] [blame] | 4191 | bool AllowConstructorName; |
| 4192 | if (D.getDeclSpec().hasTypeSpecifier()) |
| 4193 | AllowConstructorName = false; |
| 4194 | else if (D.getCXXScopeSpec().isSet()) |
| 4195 | AllowConstructorName = |
| 4196 | (D.getContext() == Declarator::FileContext || |
| 4197 | (D.getContext() == Declarator::MemberContext && |
| 4198 | D.getDeclSpec().isFriendSpecified())); |
| 4199 | else |
| 4200 | AllowConstructorName = (D.getContext() == Declarator::MemberContext); |
| 4201 | |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 4202 | SourceLocation TemplateKWLoc; |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 4203 | if (ParseUnqualifiedId(D.getCXXScopeSpec(), |
| 4204 | /*EnteringContext=*/true, |
| 4205 | /*AllowDestructorName=*/true, |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 4206 | AllowConstructorName, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 4207 | ParsedType(), |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 4208 | TemplateKWLoc, |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 4209 | D.getName()) || |
| 4210 | // Once we're past the identifier, if the scope was bad, mark the |
| 4211 | // whole declarator bad. |
| 4212 | D.getCXXScopeSpec().isInvalid()) { |
Argyrios Kyrtzidis | 314fe78 | 2008-11-26 22:40:03 +0000 | [diff] [blame] | 4213 | D.SetIdentifier(0, Tok.getLocation()); |
| 4214 | D.setInvalidType(true); |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 4215 | } else { |
| 4216 | // Parsed the unqualified-id; update range information and move along. |
| 4217 | if (D.getSourceRange().getBegin().isInvalid()) |
| 4218 | D.SetRangeBegin(D.getName().getSourceRange().getBegin()); |
| 4219 | D.SetRangeEnd(D.getName().getSourceRange().getEnd()); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 4220 | } |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 4221 | goto PastIdentifier; |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4222 | } |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 4223 | } else if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4224 | assert(!getLangOpts().CPlusPlus && |
Argyrios Kyrtzidis | 314fe78 | 2008-11-26 22:40:03 +0000 | [diff] [blame] | 4225 | "There's a C++-specific check for tok::identifier above"); |
| 4226 | assert(Tok.getIdentifierInfo() && "Not an identifier?"); |
| 4227 | D.SetIdentifier(Tok.getIdentifierInfo(), Tok.getLocation()); |
| 4228 | ConsumeToken(); |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 4229 | goto PastIdentifier; |
| 4230 | } |
Richard Smith | 9988f28 | 2012-03-29 01:16:42 +0000 | [diff] [blame] | 4231 | |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 4232 | if (Tok.is(tok::l_paren)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4233 | // direct-declarator: '(' declarator ')' |
| 4234 | // direct-declarator: '(' attributes declarator ')' |
| 4235 | // Example: 'char (*X)' or 'int (*XX)(void)' |
| 4236 | ParseParenDeclarator(D); |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 4237 | |
| 4238 | // If the declarator was parenthesized, we entered the declarator |
| 4239 | // scope when parsing the parenthesized declarator, then exited |
| 4240 | // the scope already. Re-enter the scope, if we need to. |
| 4241 | if (D.getCXXScopeSpec().isSet()) { |
Fariborz Jahanian | 46877cd | 2010-08-17 23:50:37 +0000 | [diff] [blame] | 4242 | // If there was an error parsing parenthesized declarator, declarator |
Richard Smith | 9988f28 | 2012-03-29 01:16:42 +0000 | [diff] [blame] | 4243 | // scope may have been entered before. Don't do it again. |
Fariborz Jahanian | 46877cd | 2010-08-17 23:50:37 +0000 | [diff] [blame] | 4244 | if (!D.isInvalidType() && |
| 4245 | Actions.ShouldEnterDeclaratorScope(getCurScope(), D.getCXXScopeSpec())) |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 4246 | // Change the declaration context for name lookup, until this function |
| 4247 | // is exited (and the declarator has been parsed). |
Fariborz Jahanian | 46877cd | 2010-08-17 23:50:37 +0000 | [diff] [blame] | 4248 | DeclScopeObj.EnterDeclaratorScope(); |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 4249 | } |
Argyrios Kyrtzidis | 314fe78 | 2008-11-26 22:40:03 +0000 | [diff] [blame] | 4250 | } else if (D.mayOmitIdentifier()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4251 | // This could be something simple like "int" (in which case the declarator |
| 4252 | // portion is empty), if an abstract-declarator is allowed. |
| 4253 | D.SetIdentifier(0, Tok.getLocation()); |
| 4254 | } else { |
Douglas Gregor | e950d4b | 2009-03-06 23:28:18 +0000 | [diff] [blame] | 4255 | if (D.getContext() == Declarator::MemberContext) |
| 4256 | Diag(Tok, diag::err_expected_member_name_or_semi) |
| 4257 | << D.getDeclSpec().getSourceRange(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4258 | else if (getLangOpts().CPlusPlus) |
| 4259 | Diag(Tok, diag::err_expected_unqualified_id) << getLangOpts().CPlusPlus; |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 4260 | else |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 4261 | Diag(Tok, diag::err_expected_ident_lparen); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4262 | D.SetIdentifier(0, Tok.getLocation()); |
Chris Lattner | 1f6f54b | 2008-11-11 06:13:16 +0000 | [diff] [blame] | 4263 | D.setInvalidType(true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4264 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4265 | |
Argyrios Kyrtzidis | 314fe78 | 2008-11-26 22:40:03 +0000 | [diff] [blame] | 4266 | PastIdentifier: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4267 | assert(D.isPastIdentifier() && |
| 4268 | "Haven't past the location of the identifier yet?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4269 | |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4270 | // Don't parse attributes unless we have parsed an unparenthesized name. |
| 4271 | if (D.hasName() && !D.getNumTypeObjects()) |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4272 | MaybeParseCXX0XAttributes(D); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 4273 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4274 | while (1) { |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 4275 | if (Tok.is(tok::l_paren)) { |
David Blaikie | 42d6d0c | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 4276 | // Enter function-declaration scope, limiting any declarators to the |
| 4277 | // function prototype scope, including parameter declarators. |
| 4278 | ParseScope PrototypeScope(this, |
| 4279 | Scope::FunctionPrototypeScope|Scope::DeclScope); |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 4280 | // The paren may be part of a C++ direct initializer, eg. "int x(1);". |
| 4281 | // In such a case, check if we actually have a function declarator; if it |
| 4282 | // is not, the declarator has been fully parsed. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4283 | if (getLangOpts().CPlusPlus && D.mayBeFollowedByCXXDirectInit()) { |
Chris Lattner | 7399ee0 | 2008-10-20 02:05:46 +0000 | [diff] [blame] | 4284 | // When not in file scope, warn for ambiguous function declarators, just |
| 4285 | // in case the author intended it as a variable definition. |
| 4286 | bool warnIfAmbiguous = D.getContext() != Declarator::FileContext; |
| 4287 | if (!isCXXFunctionDeclarator(warnIfAmbiguous)) |
| 4288 | break; |
| 4289 | } |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4290 | ParsedAttributes attrs(AttrFactory); |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4291 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 4292 | T.consumeOpen(); |
| 4293 | ParseFunctionDeclarator(D, attrs, T); |
David Blaikie | 42d6d0c | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 4294 | PrototypeScope.Exit(); |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 4295 | } else if (Tok.is(tok::l_square)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4296 | ParseBracketDeclarator(D); |
| 4297 | } else { |
| 4298 | break; |
| 4299 | } |
| 4300 | } |
David Blaikie | 42d6d0c | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 4301 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4302 | |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4303 | /// ParseParenDeclarator - We parsed the declarator D up to a paren. This is |
| 4304 | /// only called before the identifier, so these are most likely just grouping |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4305 | /// parens for precedence. If we find that these are actually function |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4306 | /// parameter parens in an abstract-declarator, we call ParseFunctionDeclarator. |
| 4307 | /// |
| 4308 | /// direct-declarator: |
| 4309 | /// '(' declarator ')' |
| 4310 | /// [GNU] '(' attributes declarator ')' |
Chris Lattner | 7399ee0 | 2008-10-20 02:05:46 +0000 | [diff] [blame] | 4311 | /// direct-declarator '(' parameter-type-list ')' |
| 4312 | /// direct-declarator '(' identifier-list[opt] ')' |
| 4313 | /// [GNU] direct-declarator '(' parameter-forward-declarations |
| 4314 | /// parameter-type-list[opt] ')' |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4315 | /// |
| 4316 | void Parser::ParseParenDeclarator(Declarator &D) { |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4317 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 4318 | T.consumeOpen(); |
| 4319 | |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4320 | assert(!D.isPastIdentifier() && "Should be called before passing identifier"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4321 | |
Chris Lattner | 7399ee0 | 2008-10-20 02:05:46 +0000 | [diff] [blame] | 4322 | // Eat any attributes before we look at whether this is a grouping or function |
| 4323 | // declarator paren. If this is a grouping paren, the attribute applies to |
| 4324 | // the type being built up, for example: |
| 4325 | // int (__attribute__(()) *x)(long y) |
| 4326 | // If this ends up not being a grouping paren, the attribute applies to the |
| 4327 | // first argument, for example: |
| 4328 | // int (__attribute__(()) int x) |
| 4329 | // In either case, we need to eat any attributes to be able to determine what |
| 4330 | // sort of paren this is. |
| 4331 | // |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4332 | ParsedAttributes attrs(AttrFactory); |
Chris Lattner | 7399ee0 | 2008-10-20 02:05:46 +0000 | [diff] [blame] | 4333 | bool RequiresArg = false; |
| 4334 | if (Tok.is(tok::kw___attribute)) { |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4335 | ParseGNUAttributes(attrs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4336 | |
Chris Lattner | 7399ee0 | 2008-10-20 02:05:46 +0000 | [diff] [blame] | 4337 | // We require that the argument list (if this is a non-grouping paren) be |
| 4338 | // present even if the attribute list was empty. |
| 4339 | RequiresArg = true; |
| 4340 | } |
Steve Naroff | 239f073 | 2008-12-25 14:16:32 +0000 | [diff] [blame] | 4341 | // Eat any Microsoft extensions. |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 4342 | if (Tok.is(tok::kw___cdecl) || Tok.is(tok::kw___stdcall) || |
Douglas Gregor | f813a2c | 2010-05-18 16:57:00 +0000 | [diff] [blame] | 4343 | Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___fastcall) || |
Francois Pichet | 3bd9aa4 | 2011-08-18 09:59:55 +0000 | [diff] [blame] | 4344 | Tok.is(tok::kw___w64) || Tok.is(tok::kw___ptr64) || |
Francois Pichet | 58fd97a | 2011-08-25 00:36:46 +0000 | [diff] [blame] | 4345 | Tok.is(tok::kw___ptr32) || Tok.is(tok::kw___unaligned)) { |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4346 | ParseMicrosoftTypeAttributes(attrs); |
Eli Friedman | 290eeb0 | 2009-06-08 23:27:34 +0000 | [diff] [blame] | 4347 | } |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 4348 | // Eat any Borland extensions. |
Ted Kremenek | 8113ecf | 2010-11-10 05:59:39 +0000 | [diff] [blame] | 4349 | if (Tok.is(tok::kw___pascal)) |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4350 | ParseBorlandTypeAttributes(attrs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4351 | |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4352 | // If we haven't past the identifier yet (or where the identifier would be |
| 4353 | // stored, if this is an abstract declarator), then this is probably just |
| 4354 | // grouping parens. However, if this could be an abstract-declarator, then |
| 4355 | // this could also be the start of function arguments (consider 'void()'). |
| 4356 | bool isGrouping; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4357 | |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4358 | if (!D.mayOmitIdentifier()) { |
| 4359 | // If this can't be an abstract-declarator, this *must* be a grouping |
| 4360 | // paren, because we haven't seen the identifier yet. |
| 4361 | isGrouping = true; |
| 4362 | } else if (Tok.is(tok::r_paren) || // 'int()' is a function. |
Richard Smith | 2259286 | 2012-03-27 23:05:05 +0000 | [diff] [blame] | 4363 | (getLangOpts().CPlusPlus && Tok.is(tok::ellipsis) && |
| 4364 | NextToken().is(tok::r_paren)) || // C++ int(...) |
Richard Smith | 6ce48a7 | 2012-04-11 04:01:28 +0000 | [diff] [blame] | 4365 | isDeclarationSpecifier() || // 'int(int)' is a function. |
| 4366 | isCXX11AttributeSpecifier()) { // 'int([[]]int)' is a function. |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4367 | // This handles C99 6.7.5.3p11: in "typedef int X; void foo(X)", X is |
| 4368 | // considered to be a type, not a K&R identifier-list. |
| 4369 | isGrouping = false; |
| 4370 | } else { |
| 4371 | // Otherwise, this is a grouping paren, e.g. 'int (*X)' or 'int(X)'. |
| 4372 | isGrouping = true; |
| 4373 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4374 | |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4375 | // If this is a grouping paren, handle: |
| 4376 | // direct-declarator: '(' declarator ')' |
| 4377 | // direct-declarator: '(' attributes declarator ')' |
| 4378 | if (isGrouping) { |
Richard Smith | 9988f28 | 2012-03-29 01:16:42 +0000 | [diff] [blame] | 4379 | SourceLocation EllipsisLoc = D.getEllipsisLoc(); |
| 4380 | D.setEllipsisLoc(SourceLocation()); |
| 4381 | |
Argyrios Kyrtzidis | 3f2a8a0 | 2008-10-07 10:21:57 +0000 | [diff] [blame] | 4382 | bool hadGroupingParens = D.hasGroupingParens(); |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 4383 | D.setGroupingParens(true); |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 4384 | ParseDeclaratorInternal(D, &Parser::ParseDirectDeclarator); |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4385 | // Match the ')'. |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4386 | T.consumeClose(); |
| 4387 | D.AddTypeInfo(DeclaratorChunk::getParen(T.getOpenLocation(), |
| 4388 | T.getCloseLocation()), |
| 4389 | attrs, T.getCloseLocation()); |
Argyrios Kyrtzidis | 3f2a8a0 | 2008-10-07 10:21:57 +0000 | [diff] [blame] | 4390 | |
| 4391 | D.setGroupingParens(hadGroupingParens); |
Richard Smith | 9988f28 | 2012-03-29 01:16:42 +0000 | [diff] [blame] | 4392 | |
| 4393 | // An ellipsis cannot be placed outside parentheses. |
| 4394 | if (EllipsisLoc.isValid()) |
| 4395 | diagnoseMisplacedEllipsis(*this, D, EllipsisLoc); |
| 4396 | |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4397 | return; |
| 4398 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4399 | |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4400 | // Okay, if this wasn't a grouping paren, it must be the start of a function |
| 4401 | // argument list. Recognize that this declarator will never have an |
Chris Lattner | 7399ee0 | 2008-10-20 02:05:46 +0000 | [diff] [blame] | 4402 | // identifier (and remember where it would have been), then call into |
| 4403 | // ParseFunctionDeclarator to handle of argument list. |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4404 | D.SetIdentifier(0, Tok.getLocation()); |
| 4405 | |
David Blaikie | 42d6d0c | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 4406 | // Enter function-declaration scope, limiting any declarators to the |
| 4407 | // function prototype scope, including parameter declarators. |
| 4408 | ParseScope PrototypeScope(this, |
| 4409 | Scope::FunctionPrototypeScope|Scope::DeclScope); |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4410 | ParseFunctionDeclarator(D, attrs, T, RequiresArg); |
David Blaikie | 42d6d0c | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 4411 | PrototypeScope.Exit(); |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4412 | } |
| 4413 | |
| 4414 | /// ParseFunctionDeclarator - We are after the identifier and have parsed the |
| 4415 | /// declarator D up to a paren, which indicates that we are parsing function |
| 4416 | /// arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4417 | /// |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4418 | /// If FirstArgAttrs is non-null, then the caller parsed those arguments |
| 4419 | /// immediately after the open paren - they should be considered to be the |
| 4420 | /// first argument of a parameter. |
Chris Lattner | 7399ee0 | 2008-10-20 02:05:46 +0000 | [diff] [blame] | 4421 | /// |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4422 | /// If RequiresArg is true, then the first argument of the function is required |
| 4423 | /// to be present and required to not be an identifier list. |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4424 | /// |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4425 | /// For C++, after the parameter-list, it also parses the cv-qualifier-seq[opt], |
| 4426 | /// (C++11) ref-qualifier[opt], exception-specification[opt], |
| 4427 | /// (C++11) attribute-specifier-seq[opt], and (C++11) trailing-return-type[opt]. |
| 4428 | /// |
| 4429 | /// [C++11] exception-specification: |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4430 | /// dynamic-exception-specification |
| 4431 | /// noexcept-specification |
| 4432 | /// |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4433 | void Parser::ParseFunctionDeclarator(Declarator &D, |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4434 | ParsedAttributes &FirstArgAttrs, |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4435 | BalancedDelimiterTracker &Tracker, |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4436 | bool RequiresArg) { |
David Blaikie | 42d6d0c | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 4437 | assert(getCurScope()->isFunctionPrototypeScope() && |
| 4438 | "Should call from a Function scope"); |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4439 | // lparen is already consumed! |
| 4440 | assert(D.isPastIdentifier() && "Should not call before identifier!"); |
| 4441 | |
| 4442 | // This should be true when the function has typed arguments. |
| 4443 | // Otherwise, it is treated as a K&R-style function. |
| 4444 | bool HasProto = false; |
| 4445 | // Build up an array of information about the parsed arguments. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4446 | SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo; |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4447 | // Remember where we see an ellipsis, if any. |
| 4448 | SourceLocation EllipsisLoc; |
| 4449 | |
| 4450 | DeclSpec DS(AttrFactory); |
| 4451 | bool RefQualifierIsLValueRef = true; |
| 4452 | SourceLocation RefQualifierLoc; |
Douglas Gregor | 43f5103 | 2011-10-19 06:04:55 +0000 | [diff] [blame] | 4453 | SourceLocation ConstQualifierLoc; |
| 4454 | SourceLocation VolatileQualifierLoc; |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4455 | ExceptionSpecificationType ESpecType = EST_None; |
| 4456 | SourceRange ESpecRange; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4457 | SmallVector<ParsedType, 2> DynamicExceptions; |
| 4458 | SmallVector<SourceRange, 2> DynamicExceptionRanges; |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4459 | ExprResult NoexceptExpr; |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4460 | ParsedAttributes FnAttrs(AttrFactory); |
Richard Smith | 54655be | 2012-06-12 01:51:59 +0000 | [diff] [blame] | 4461 | TypeResult TrailingReturnType; |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4462 | |
James Molloy | 16f1f71 | 2012-02-29 10:24:19 +0000 | [diff] [blame] | 4463 | Actions.ActOnStartFunctionDeclarator(); |
| 4464 | |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4465 | SourceLocation EndLoc; |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4466 | if (isFunctionDeclaratorIdentifierList()) { |
| 4467 | if (RequiresArg) |
| 4468 | Diag(Tok, diag::err_argument_required_after_attribute); |
| 4469 | |
| 4470 | ParseFunctionDeclaratorIdentifierList(D, ParamInfo); |
| 4471 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4472 | Tracker.consumeClose(); |
| 4473 | EndLoc = Tracker.getCloseLocation(); |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4474 | } else { |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4475 | if (Tok.isNot(tok::r_paren)) |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4476 | ParseParameterDeclarationClause(D, FirstArgAttrs, ParamInfo, EllipsisLoc); |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4477 | else if (RequiresArg) |
| 4478 | Diag(Tok, diag::err_argument_required_after_attribute); |
| 4479 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4480 | HasProto = ParamInfo.size() || getLangOpts().CPlusPlus; |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4481 | |
| 4482 | // If we have the closing ')', eat it. |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4483 | Tracker.consumeClose(); |
| 4484 | EndLoc = Tracker.getCloseLocation(); |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4485 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4486 | if (getLangOpts().CPlusPlus) { |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4487 | // FIXME: Accept these components in any order, and produce fixits to |
| 4488 | // correct the order if the user gets it wrong. Ideally we should deal |
| 4489 | // with the virt-specifier-seq and pure-specifier in the same way. |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4490 | |
| 4491 | // Parse cv-qualifier-seq[opt]. |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4492 | ParseTypeQualifierListOpt(DS, false /*no attributes*/, false); |
| 4493 | if (!DS.getSourceRange().getEnd().isInvalid()) { |
| 4494 | EndLoc = DS.getSourceRange().getEnd(); |
| 4495 | ConstQualifierLoc = DS.getConstSpecLoc(); |
| 4496 | VolatileQualifierLoc = DS.getVolatileSpecLoc(); |
| 4497 | } |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4498 | |
| 4499 | // Parse ref-qualifier[opt]. |
| 4500 | if (Tok.is(tok::amp) || Tok.is(tok::ampamp)) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4501 | Diag(Tok, getLangOpts().CPlusPlus0x ? |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 4502 | diag::warn_cxx98_compat_ref_qualifier : |
| 4503 | diag::ext_ref_qualifier); |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4504 | |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4505 | RefQualifierIsLValueRef = Tok.is(tok::amp); |
| 4506 | RefQualifierLoc = ConsumeToken(); |
| 4507 | EndLoc = RefQualifierLoc; |
| 4508 | } |
| 4509 | |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 4510 | // C++11 [expr.prim.general]p3: |
| 4511 | // If a declaration declares a member function or member function |
| 4512 | // template of a class X, the expression this is a prvalue of type |
| 4513 | // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq |
| 4514 | // and the end of the function-definition, member-declarator, or |
| 4515 | // declarator. |
| 4516 | bool IsCXX11MemberFunction = |
| 4517 | getLangOpts().CPlusPlus0x && |
| 4518 | (D.getContext() == Declarator::MemberContext || |
| 4519 | (D.getContext() == Declarator::FileContext && |
| 4520 | D.getCXXScopeSpec().isValid() && |
| 4521 | Actions.CurContext->isRecord())); |
| 4522 | Sema::CXXThisScopeRAII ThisScope(Actions, |
| 4523 | dyn_cast<CXXRecordDecl>(Actions.CurContext), |
| 4524 | DS.getTypeQualifiers(), |
| 4525 | IsCXX11MemberFunction); |
Richard Smith | a058fd4 | 2012-05-02 22:22:32 +0000 | [diff] [blame] | 4526 | |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4527 | // Parse exception-specification[opt]. |
Richard Smith | a058fd4 | 2012-05-02 22:22:32 +0000 | [diff] [blame] | 4528 | ESpecType = tryParseExceptionSpecification(ESpecRange, |
Douglas Gregor | 74e2fc3 | 2012-04-16 18:27:27 +0000 | [diff] [blame] | 4529 | DynamicExceptions, |
| 4530 | DynamicExceptionRanges, |
Richard Smith | a058fd4 | 2012-05-02 22:22:32 +0000 | [diff] [blame] | 4531 | NoexceptExpr); |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4532 | if (ESpecType != EST_None) |
| 4533 | EndLoc = ESpecRange.getEnd(); |
| 4534 | |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4535 | // Parse attribute-specifier-seq[opt]. Per DR 979 and DR 1297, this goes |
| 4536 | // after the exception-specification. |
| 4537 | MaybeParseCXX0XAttributes(FnAttrs); |
| 4538 | |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4539 | // Parse trailing-return-type[opt]. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4540 | if (getLangOpts().CPlusPlus0x && Tok.is(tok::arrow)) { |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 4541 | Diag(Tok, diag::warn_cxx98_compat_trailing_return_type); |
Douglas Gregor | ae7902c | 2011-08-04 15:30:47 +0000 | [diff] [blame] | 4542 | SourceRange Range; |
Richard Smith | 54655be | 2012-06-12 01:51:59 +0000 | [diff] [blame] | 4543 | TrailingReturnType = ParseTrailingReturnType(Range); |
Douglas Gregor | ae7902c | 2011-08-04 15:30:47 +0000 | [diff] [blame] | 4544 | if (Range.getEnd().isValid()) |
| 4545 | EndLoc = Range.getEnd(); |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4546 | } |
| 4547 | } |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4548 | } |
| 4549 | |
| 4550 | // Remember that we parsed a function type, and remember the attributes. |
| 4551 | D.AddTypeInfo(DeclaratorChunk::getFunction(HasProto, |
| 4552 | /*isVariadic=*/EllipsisLoc.isValid(), |
| 4553 | EllipsisLoc, |
| 4554 | ParamInfo.data(), ParamInfo.size(), |
| 4555 | DS.getTypeQualifiers(), |
| 4556 | RefQualifierIsLValueRef, |
Douglas Gregor | 43f5103 | 2011-10-19 06:04:55 +0000 | [diff] [blame] | 4557 | RefQualifierLoc, ConstQualifierLoc, |
| 4558 | VolatileQualifierLoc, |
Douglas Gregor | 90ebed0 | 2011-07-13 21:47:47 +0000 | [diff] [blame] | 4559 | /*MutableLoc=*/SourceLocation(), |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4560 | ESpecType, ESpecRange.getBegin(), |
| 4561 | DynamicExceptions.data(), |
| 4562 | DynamicExceptionRanges.data(), |
| 4563 | DynamicExceptions.size(), |
| 4564 | NoexceptExpr.isUsable() ? |
| 4565 | NoexceptExpr.get() : 0, |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4566 | Tracker.getOpenLocation(), |
| 4567 | EndLoc, D, |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4568 | TrailingReturnType), |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4569 | FnAttrs, EndLoc); |
James Molloy | 16f1f71 | 2012-02-29 10:24:19 +0000 | [diff] [blame] | 4570 | |
| 4571 | Actions.ActOnEndFunctionDeclarator(); |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4572 | } |
| 4573 | |
| 4574 | /// isFunctionDeclaratorIdentifierList - This parameter list may have an |
| 4575 | /// identifier list form for a K&R-style function: void foo(a,b,c) |
| 4576 | /// |
| 4577 | /// Note that identifier-lists are only allowed for normal declarators, not for |
| 4578 | /// abstract-declarators. |
| 4579 | bool Parser::isFunctionDeclaratorIdentifierList() { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4580 | return !getLangOpts().CPlusPlus |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4581 | && Tok.is(tok::identifier) |
| 4582 | && !TryAltiVecVectorToken() |
| 4583 | // K&R identifier lists can't have typedefs as identifiers, per C99 |
| 4584 | // 6.7.5.3p11. |
| 4585 | && (TryAnnotateTypeOrScopeToken() || !Tok.is(tok::annot_typename)) |
| 4586 | // Identifier lists follow a really simple grammar: the identifiers can |
| 4587 | // be followed *only* by a ", identifier" or ")". However, K&R |
| 4588 | // identifier lists are really rare in the brave new modern world, and |
| 4589 | // it is very common for someone to typo a type in a non-K&R style |
| 4590 | // list. If we are presented with something like: "void foo(intptr x, |
| 4591 | // float y)", we don't want to start parsing the function declarator as |
| 4592 | // though it is a K&R style declarator just because intptr is an |
| 4593 | // invalid type. |
| 4594 | // |
| 4595 | // To handle this, we check to see if the token after the first |
| 4596 | // identifier is a "," or ")". Only then do we parse it as an |
| 4597 | // identifier list. |
| 4598 | && (NextToken().is(tok::comma) || NextToken().is(tok::r_paren)); |
| 4599 | } |
| 4600 | |
| 4601 | /// ParseFunctionDeclaratorIdentifierList - While parsing a function declarator |
| 4602 | /// we found a K&R-style identifier list instead of a typed parameter list. |
| 4603 | /// |
| 4604 | /// After returning, ParamInfo will hold the parsed parameters. |
| 4605 | /// |
| 4606 | /// identifier-list: [C99 6.7.5] |
| 4607 | /// identifier |
| 4608 | /// identifier-list ',' identifier |
| 4609 | /// |
| 4610 | void Parser::ParseFunctionDeclaratorIdentifierList( |
| 4611 | Declarator &D, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4612 | SmallVector<DeclaratorChunk::ParamInfo, 16> &ParamInfo) { |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4613 | // If there was no identifier specified for the declarator, either we are in |
| 4614 | // an abstract-declarator, or we are in a parameter declarator which was found |
| 4615 | // to be abstract. In abstract-declarators, identifier lists are not valid: |
| 4616 | // diagnose this. |
| 4617 | if (!D.getIdentifier()) |
| 4618 | Diag(Tok, diag::ext_ident_list_in_param); |
| 4619 | |
| 4620 | // Maintain an efficient lookup of params we have seen so far. |
| 4621 | llvm::SmallSet<const IdentifierInfo*, 16> ParamsSoFar; |
| 4622 | |
| 4623 | while (1) { |
| 4624 | // If this isn't an identifier, report the error and skip until ')'. |
| 4625 | if (Tok.isNot(tok::identifier)) { |
| 4626 | Diag(Tok, diag::err_expected_ident); |
| 4627 | SkipUntil(tok::r_paren, /*StopAtSemi=*/true, /*DontConsume=*/true); |
| 4628 | // Forget we parsed anything. |
| 4629 | ParamInfo.clear(); |
| 4630 | return; |
| 4631 | } |
| 4632 | |
| 4633 | IdentifierInfo *ParmII = Tok.getIdentifierInfo(); |
| 4634 | |
| 4635 | // Reject 'typedef int y; int test(x, y)', but continue parsing. |
| 4636 | if (Actions.getTypeName(*ParmII, Tok.getLocation(), getCurScope())) |
| 4637 | Diag(Tok, diag::err_unexpected_typedef_ident) << ParmII; |
| 4638 | |
| 4639 | // Verify that the argument identifier has not already been mentioned. |
| 4640 | if (!ParamsSoFar.insert(ParmII)) { |
| 4641 | Diag(Tok, diag::err_param_redefinition) << ParmII; |
| 4642 | } else { |
| 4643 | // Remember this identifier in ParamInfo. |
| 4644 | ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII, |
| 4645 | Tok.getLocation(), |
| 4646 | 0)); |
| 4647 | } |
| 4648 | |
| 4649 | // Eat the identifier. |
| 4650 | ConsumeToken(); |
| 4651 | |
| 4652 | // The list continues if we see a comma. |
| 4653 | if (Tok.isNot(tok::comma)) |
| 4654 | break; |
| 4655 | ConsumeToken(); |
| 4656 | } |
| 4657 | } |
| 4658 | |
| 4659 | /// ParseParameterDeclarationClause - Parse a (possibly empty) parameter-list |
| 4660 | /// after the opening parenthesis. This function will not parse a K&R-style |
| 4661 | /// identifier list. |
| 4662 | /// |
Richard Smith | 6ce48a7 | 2012-04-11 04:01:28 +0000 | [diff] [blame] | 4663 | /// D is the declarator being parsed. If FirstArgAttrs is non-null, then the |
| 4664 | /// caller parsed those arguments immediately after the open paren - they should |
| 4665 | /// be considered to be part of the first parameter. |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4666 | /// |
| 4667 | /// After returning, ParamInfo will hold the parsed parameters. EllipsisLoc will |
| 4668 | /// be the location of the ellipsis, if any was parsed. |
| 4669 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4670 | /// parameter-type-list: [C99 6.7.5] |
| 4671 | /// parameter-list |
| 4672 | /// parameter-list ',' '...' |
Douglas Gregor | ed5d651 | 2009-09-22 21:41:40 +0000 | [diff] [blame] | 4673 | /// [C++] parameter-list '...' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4674 | /// |
| 4675 | /// parameter-list: [C99 6.7.5] |
| 4676 | /// parameter-declaration |
| 4677 | /// parameter-list ',' parameter-declaration |
| 4678 | /// |
| 4679 | /// parameter-declaration: [C99 6.7.5] |
| 4680 | /// declaration-specifiers declarator |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 4681 | /// [C++] declaration-specifiers declarator '=' assignment-expression |
Sebastian Redl | 84407ba | 2012-03-14 15:54:00 +0000 | [diff] [blame] | 4682 | /// [C++11] initializer-clause |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4683 | /// [GNU] declaration-specifiers declarator attributes |
Sebastian Redl | 50de12f | 2009-03-24 22:27:57 +0000 | [diff] [blame] | 4684 | /// declaration-specifiers abstract-declarator[opt] |
| 4685 | /// [C++] declaration-specifiers abstract-declarator[opt] |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 4686 | /// '=' assignment-expression |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4687 | /// [GNU] declaration-specifiers abstract-declarator[opt] attributes |
Richard Smith | 6ce48a7 | 2012-04-11 04:01:28 +0000 | [diff] [blame] | 4688 | /// [C++11] attribute-specifier-seq parameter-declaration |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4689 | /// |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4690 | void Parser::ParseParameterDeclarationClause( |
| 4691 | Declarator &D, |
Richard Smith | 6ce48a7 | 2012-04-11 04:01:28 +0000 | [diff] [blame] | 4692 | ParsedAttributes &FirstArgAttrs, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4693 | SmallVector<DeclaratorChunk::ParamInfo, 16> &ParamInfo, |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4694 | SourceLocation &EllipsisLoc) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4695 | |
Chris Lattner | f97409f | 2008-04-06 06:57:35 +0000 | [diff] [blame] | 4696 | while (1) { |
| 4697 | if (Tok.is(tok::ellipsis)) { |
Richard Smith | 6ce48a7 | 2012-04-11 04:01:28 +0000 | [diff] [blame] | 4698 | // FIXME: Issue a diagnostic if we parsed an attribute-specifier-seq |
| 4699 | // before deciding this was a parameter-declaration-clause. |
Douglas Gregor | 965acbb | 2009-02-18 07:07:28 +0000 | [diff] [blame] | 4700 | EllipsisLoc = ConsumeToken(); // Consume the ellipsis. |
Chris Lattner | f97409f | 2008-04-06 06:57:35 +0000 | [diff] [blame] | 4701 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4702 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4703 | |
Chris Lattner | f97409f | 2008-04-06 06:57:35 +0000 | [diff] [blame] | 4704 | // Parse the declaration-specifiers. |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 4705 | // Just use the ParsingDeclaration "scope" of the declarator. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4706 | DeclSpec DS(AttrFactory); |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4707 | |
Richard Smith | 6ce48a7 | 2012-04-11 04:01:28 +0000 | [diff] [blame] | 4708 | // Parse any C++11 attributes. |
| 4709 | MaybeParseCXX0XAttributes(DS.getAttributes()); |
| 4710 | |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4711 | // Skip any Microsoft attributes before a param. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4712 | if (getLangOpts().MicrosoftExt && Tok.is(tok::l_square)) |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4713 | ParseMicrosoftAttributes(DS.getAttributes()); |
| 4714 | |
| 4715 | SourceLocation DSStart = Tok.getLocation(); |
Chris Lattner | 7399ee0 | 2008-10-20 02:05:46 +0000 | [diff] [blame] | 4716 | |
| 4717 | // If the caller parsed attributes for the first argument, add them now. |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4718 | // Take them so that we only apply the attributes to the first parameter. |
Douglas Gregor | 3fd1ba0 | 2011-07-05 16:44:18 +0000 | [diff] [blame] | 4719 | // FIXME: If we can leave the attributes in the token stream somehow, we can |
Richard Smith | 6ce48a7 | 2012-04-11 04:01:28 +0000 | [diff] [blame] | 4720 | // get rid of a parameter (FirstArgAttrs) and this statement. It might be |
| 4721 | // too much hassle. |
| 4722 | DS.takeAttributesFrom(FirstArgAttrs); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4723 | |
Chris Lattner | e64c549 | 2009-02-27 18:38:20 +0000 | [diff] [blame] | 4724 | ParseDeclarationSpecifiers(DS); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4725 | |
Chris Lattner | f97409f | 2008-04-06 06:57:35 +0000 | [diff] [blame] | 4726 | // Parse the declarator. This is "PrototypeContext", because we must |
| 4727 | // accept either 'declarator' or 'abstract-declarator' here. |
| 4728 | Declarator ParmDecl(DS, Declarator::PrototypeContext); |
| 4729 | ParseDeclarator(ParmDecl); |
| 4730 | |
| 4731 | // Parse GNU attributes, if present. |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4732 | MaybeParseGNUAttributes(ParmDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4733 | |
Chris Lattner | f97409f | 2008-04-06 06:57:35 +0000 | [diff] [blame] | 4734 | // Remember this parsed parameter in ParamInfo. |
| 4735 | IdentifierInfo *ParmII = ParmDecl.getIdentifier(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4736 | |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 4737 | // DefArgToks is used when the parsing of default arguments needs |
| 4738 | // to be delayed. |
| 4739 | CachedTokens *DefArgToks = 0; |
| 4740 | |
Chris Lattner | f97409f | 2008-04-06 06:57:35 +0000 | [diff] [blame] | 4741 | // If no parameter was specified, verify that *something* was specified, |
| 4742 | // otherwise we have a missing type and identifier. |
Chris Lattner | e64c549 | 2009-02-27 18:38:20 +0000 | [diff] [blame] | 4743 | if (DS.isEmpty() && ParmDecl.getIdentifier() == 0 && |
| 4744 | ParmDecl.getNumTypeObjects() == 0) { |
Chris Lattner | f97409f | 2008-04-06 06:57:35 +0000 | [diff] [blame] | 4745 | // Completely missing, emit error. |
| 4746 | Diag(DSStart, diag::err_missing_param); |
| 4747 | } else { |
| 4748 | // Otherwise, we have something. Add it and let semantic analysis try |
| 4749 | // to grok it and add the result to the ParamInfo we are building. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4750 | |
Chris Lattner | f97409f | 2008-04-06 06:57:35 +0000 | [diff] [blame] | 4751 | // Inform the actions module about the parameter declarator, so it gets |
| 4752 | // added to the current scope. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 4753 | Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 4754 | |
| 4755 | // Parse the default argument, if any. We parse the default |
| 4756 | // arguments in all dialects; the semantic analysis in |
| 4757 | // ActOnParamDefaultArgument will reject the default argument in |
| 4758 | // C. |
| 4759 | if (Tok.is(tok::equal)) { |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 4760 | SourceLocation EqualLoc = Tok.getLocation(); |
| 4761 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 4762 | // Parse the default argument |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 4763 | if (D.getContext() == Declarator::MemberContext) { |
| 4764 | // If we're inside a class definition, cache the tokens |
| 4765 | // corresponding to the default argument. We'll actually parse |
| 4766 | // them when we see the end of the class definition. |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 4767 | // FIXME: Can we use a smart pointer for Toks? |
| 4768 | DefArgToks = new CachedTokens; |
| 4769 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4770 | if (!ConsumeAndStoreUntil(tok::comma, tok::r_paren, *DefArgToks, |
Argyrios Kyrtzidis | 14b9162 | 2010-04-23 21:20:12 +0000 | [diff] [blame] | 4771 | /*StopAtSemi=*/true, |
| 4772 | /*ConsumeFinalToken=*/false)) { |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 4773 | delete DefArgToks; |
| 4774 | DefArgToks = 0; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 4775 | Actions.ActOnParamDefaultArgumentError(Param); |
Argyrios Kyrtzidis | 2b602ad | 2010-08-06 09:47:24 +0000 | [diff] [blame] | 4776 | } else { |
| 4777 | // Mark the end of the default argument so that we know when to |
| 4778 | // stop when we parse it later on. |
| 4779 | Token DefArgEnd; |
| 4780 | DefArgEnd.startToken(); |
| 4781 | DefArgEnd.setKind(tok::cxx_defaultarg_end); |
| 4782 | DefArgEnd.setLocation(Tok.getLocation()); |
| 4783 | DefArgToks->push_back(DefArgEnd); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4784 | Actions.ActOnParamUnparsedDefaultArgument(Param, EqualLoc, |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 4785 | (*DefArgToks)[1].getLocation()); |
Argyrios Kyrtzidis | 2b602ad | 2010-08-06 09:47:24 +0000 | [diff] [blame] | 4786 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 4787 | } else { |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 4788 | // Consume the '='. |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 4789 | ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4790 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 4791 | // The argument isn't actually potentially evaluated unless it is |
| 4792 | // used. |
| 4793 | EnterExpressionEvaluationContext Eval(Actions, |
Douglas Gregor | ccc1b5e | 2012-02-21 00:37:24 +0000 | [diff] [blame] | 4794 | Sema::PotentiallyEvaluatedIfUsed, |
| 4795 | Param); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 4796 | |
Sebastian Redl | 84407ba | 2012-03-14 15:54:00 +0000 | [diff] [blame] | 4797 | ExprResult DefArgResult; |
Sebastian Redl | 3e280b5 | 2012-03-18 22:25:45 +0000 | [diff] [blame] | 4798 | if (getLangOpts().CPlusPlus0x && Tok.is(tok::l_brace)) { |
| 4799 | Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists); |
Sebastian Redl | 84407ba | 2012-03-14 15:54:00 +0000 | [diff] [blame] | 4800 | DefArgResult = ParseBraceInitializer(); |
Sebastian Redl | 3e280b5 | 2012-03-18 22:25:45 +0000 | [diff] [blame] | 4801 | } else |
Sebastian Redl | 84407ba | 2012-03-14 15:54:00 +0000 | [diff] [blame] | 4802 | DefArgResult = ParseAssignmentExpression(); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 4803 | if (DefArgResult.isInvalid()) { |
| 4804 | Actions.ActOnParamDefaultArgumentError(Param); |
| 4805 | SkipUntil(tok::comma, tok::r_paren, true, true); |
| 4806 | } else { |
| 4807 | // Inform the actions module about the default argument |
| 4808 | Actions.ActOnParamDefaultArgument(Param, EqualLoc, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 4809 | DefArgResult.take()); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 4810 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 4811 | } |
| 4812 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4813 | |
| 4814 | ParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII, |
| 4815 | ParmDecl.getIdentifierLoc(), Param, |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 4816 | DefArgToks)); |
Chris Lattner | f97409f | 2008-04-06 06:57:35 +0000 | [diff] [blame] | 4817 | } |
| 4818 | |
| 4819 | // If the next token is a comma, consume it and keep reading arguments. |
Douglas Gregor | ed5d651 | 2009-09-22 21:41:40 +0000 | [diff] [blame] | 4820 | if (Tok.isNot(tok::comma)) { |
| 4821 | if (Tok.is(tok::ellipsis)) { |
Douglas Gregor | ed5d651 | 2009-09-22 21:41:40 +0000 | [diff] [blame] | 4822 | EllipsisLoc = ConsumeToken(); // Consume the ellipsis. |
| 4823 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4824 | if (!getLangOpts().CPlusPlus) { |
Douglas Gregor | ed5d651 | 2009-09-22 21:41:40 +0000 | [diff] [blame] | 4825 | // We have ellipsis without a preceding ',', which is ill-formed |
| 4826 | // in C. Complain and provide the fix. |
| 4827 | Diag(EllipsisLoc, diag::err_missing_comma_before_ellipsis) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 4828 | << FixItHint::CreateInsertion(EllipsisLoc, ", "); |
Douglas Gregor | ed5d651 | 2009-09-22 21:41:40 +0000 | [diff] [blame] | 4829 | } |
| 4830 | } |
| 4831 | |
| 4832 | break; |
| 4833 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4834 | |
Chris Lattner | f97409f | 2008-04-06 06:57:35 +0000 | [diff] [blame] | 4835 | // Consume the comma. |
| 4836 | ConsumeToken(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4837 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4838 | |
Chris Lattner | 66d2865 | 2008-04-06 06:34:08 +0000 | [diff] [blame] | 4839 | } |
Chris Lattner | ef4715c | 2008-04-06 05:45:57 +0000 | [diff] [blame] | 4840 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4841 | /// [C90] direct-declarator '[' constant-expression[opt] ']' |
| 4842 | /// [C99] direct-declarator '[' type-qual-list[opt] assignment-expr[opt] ']' |
| 4843 | /// [C99] direct-declarator '[' 'static' type-qual-list[opt] assign-expr ']' |
| 4844 | /// [C99] direct-declarator '[' type-qual-list 'static' assignment-expr ']' |
| 4845 | /// [C99] direct-declarator '[' type-qual-list[opt] '*' ']' |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4846 | /// [C++11] direct-declarator '[' constant-expression[opt] ']' |
| 4847 | /// attribute-specifier-seq[opt] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4848 | void Parser::ParseBracketDeclarator(Declarator &D) { |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 4849 | if (CheckProhibitedCXX11Attribute()) |
| 4850 | return; |
| 4851 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4852 | BalancedDelimiterTracker T(*this, tok::l_square); |
| 4853 | T.consumeOpen(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4854 | |
Chris Lattner | 378c7e4 | 2008-12-18 07:27:21 +0000 | [diff] [blame] | 4855 | // C array syntax has many features, but by-far the most common is [] and [4]. |
| 4856 | // This code does a fast path to handle some of the most obvious cases. |
| 4857 | if (Tok.getKind() == tok::r_square) { |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4858 | T.consumeClose(); |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4859 | ParsedAttributes attrs(AttrFactory); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4860 | MaybeParseCXX0XAttributes(attrs); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 4861 | |
Chris Lattner | 378c7e4 | 2008-12-18 07:27:21 +0000 | [diff] [blame] | 4862 | // Remember that we parsed the empty array type. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4863 | ExprResult NumElements; |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4864 | D.AddTypeInfo(DeclaratorChunk::getArray(0, false, false, 0, |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4865 | T.getOpenLocation(), |
| 4866 | T.getCloseLocation()), |
| 4867 | attrs, T.getCloseLocation()); |
Chris Lattner | 378c7e4 | 2008-12-18 07:27:21 +0000 | [diff] [blame] | 4868 | return; |
| 4869 | } else if (Tok.getKind() == tok::numeric_constant && |
| 4870 | GetLookAheadToken(1).is(tok::r_square)) { |
| 4871 | // [4] is very common. Parse the numeric constant expression. |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 4872 | ExprResult ExprRes(Actions.ActOnNumericConstant(Tok, getCurScope())); |
Chris Lattner | 378c7e4 | 2008-12-18 07:27:21 +0000 | [diff] [blame] | 4873 | ConsumeToken(); |
| 4874 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4875 | T.consumeClose(); |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4876 | ParsedAttributes attrs(AttrFactory); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4877 | MaybeParseCXX0XAttributes(attrs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4878 | |
Chris Lattner | 378c7e4 | 2008-12-18 07:27:21 +0000 | [diff] [blame] | 4879 | // Remember that we parsed a array type, and remember its features. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4880 | D.AddTypeInfo(DeclaratorChunk::getArray(0, false, 0, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4881 | ExprRes.release(), |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4882 | T.getOpenLocation(), |
| 4883 | T.getCloseLocation()), |
| 4884 | attrs, T.getCloseLocation()); |
Chris Lattner | 378c7e4 | 2008-12-18 07:27:21 +0000 | [diff] [blame] | 4885 | return; |
| 4886 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4887 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4888 | // If valid, this location is the position where we read the 'static' keyword. |
| 4889 | SourceLocation StaticLoc; |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 4890 | if (Tok.is(tok::kw_static)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4891 | StaticLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4892 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4893 | // If there is a type-qualifier-list, read it now. |
Chris Lattner | a1fcbad | 2008-12-18 06:50:14 +0000 | [diff] [blame] | 4894 | // Type qualifiers in an array subscript are a C99 feature. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4895 | DeclSpec DS(AttrFactory); |
Chris Lattner | 5a69d1c | 2008-12-18 07:02:59 +0000 | [diff] [blame] | 4896 | ParseTypeQualifierListOpt(DS, false /*no attributes*/); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4897 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4898 | // If we haven't already read 'static', check to see if there is one after the |
| 4899 | // type-qualifier-list. |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 4900 | if (!StaticLoc.isValid() && Tok.is(tok::kw_static)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4901 | StaticLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4902 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4903 | // Handle "direct-declarator [ type-qual-list[opt] * ]". |
| 4904 | bool isStar = false; |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4905 | ExprResult NumElements; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4906 | |
Chris Lattner | 5dcc6ce | 2008-04-06 05:26:30 +0000 | [diff] [blame] | 4907 | // Handle the case where we have '[*]' as the array size. However, a leading |
| 4908 | // star could be the start of an expression, for example 'X[*p + 4]'. Verify |
| 4909 | // the the token after the star is a ']'. Since stars in arrays are |
| 4910 | // infrequent, use of lookahead is not costly here. |
| 4911 | if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) { |
Chris Lattner | a711dd0 | 2008-04-06 05:27:21 +0000 | [diff] [blame] | 4912 | ConsumeToken(); // Eat the '*'. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4913 | |
Chris Lattner | a1fcbad | 2008-12-18 06:50:14 +0000 | [diff] [blame] | 4914 | if (StaticLoc.isValid()) { |
Chris Lattner | 5dcc6ce | 2008-04-06 05:26:30 +0000 | [diff] [blame] | 4915 | Diag(StaticLoc, diag::err_unspecified_vla_size_with_static); |
Chris Lattner | a1fcbad | 2008-12-18 06:50:14 +0000 | [diff] [blame] | 4916 | StaticLoc = SourceLocation(); // Drop the static. |
| 4917 | } |
Chris Lattner | 5dcc6ce | 2008-04-06 05:26:30 +0000 | [diff] [blame] | 4918 | isStar = true; |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 4919 | } else if (Tok.isNot(tok::r_square)) { |
Chris Lattner | 378c7e4 | 2008-12-18 07:27:21 +0000 | [diff] [blame] | 4920 | // Note, in C89, this production uses the constant-expr production instead |
| 4921 | // of assignment-expr. The only difference is that assignment-expr allows |
| 4922 | // things like '=' and '*='. Sema rejects these in C89 mode because they |
| 4923 | // are not i-c-e's, so we don't need to distinguish between the two here. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4924 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 4925 | // Parse the constant-expression or assignment-expression now (depending |
| 4926 | // on dialect). |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4927 | if (getLangOpts().CPlusPlus) { |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 4928 | NumElements = ParseConstantExpression(); |
Eli Friedman | 71b8fb5 | 2012-01-21 01:01:51 +0000 | [diff] [blame] | 4929 | } else { |
| 4930 | EnterExpressionEvaluationContext Unevaluated(Actions, |
| 4931 | Sema::ConstantEvaluated); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 4932 | NumElements = ParseAssignmentExpression(); |
Eli Friedman | 71b8fb5 | 2012-01-21 01:01:51 +0000 | [diff] [blame] | 4933 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4934 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4935 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4936 | // If there was an error parsing the assignment-expression, recover. |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 4937 | if (NumElements.isInvalid()) { |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 4938 | D.setInvalidType(true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4939 | // If the expression was invalid, skip it. |
| 4940 | SkipUntil(tok::r_square); |
| 4941 | return; |
| 4942 | } |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 4943 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4944 | T.consumeClose(); |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 4945 | |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4946 | ParsedAttributes attrs(AttrFactory); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 4947 | MaybeParseCXX0XAttributes(attrs); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 4948 | |
Chris Lattner | 378c7e4 | 2008-12-18 07:27:21 +0000 | [diff] [blame] | 4949 | // Remember that we parsed a array type, and remember its features. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 4950 | D.AddTypeInfo(DeclaratorChunk::getArray(DS.getTypeQualifiers(), |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4951 | StaticLoc.isValid(), isStar, |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 4952 | NumElements.release(), |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 4953 | T.getOpenLocation(), |
| 4954 | T.getCloseLocation()), |
| 4955 | attrs, T.getCloseLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4956 | } |
| 4957 | |
Argyrios Kyrtzidis | 0f07203 | 2008-09-05 11:26:19 +0000 | [diff] [blame] | 4958 | /// [GNU] typeof-specifier: |
| 4959 | /// typeof ( expressions ) |
| 4960 | /// typeof ( type-name ) |
| 4961 | /// [GNU/C++] typeof unary-expression |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 4962 | /// |
| 4963 | void Parser::ParseTypeofSpecifier(DeclSpec &DS) { |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 4964 | assert(Tok.is(tok::kw_typeof) && "Not a typeof specifier"); |
Argyrios Kyrtzidis | 5ab0640 | 2009-05-22 10:22:50 +0000 | [diff] [blame] | 4965 | Token OpTok = Tok; |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 4966 | SourceLocation StartLoc = ConsumeToken(); |
| 4967 | |
John McCall | cfb708c | 2010-01-13 20:03:27 +0000 | [diff] [blame] | 4968 | const bool hasParens = Tok.is(tok::l_paren); |
| 4969 | |
Eli Friedman | 71b8fb5 | 2012-01-21 01:01:51 +0000 | [diff] [blame] | 4970 | EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated); |
| 4971 | |
Argyrios Kyrtzidis | 5ab0640 | 2009-05-22 10:22:50 +0000 | [diff] [blame] | 4972 | bool isCastExpr; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 4973 | ParsedType CastTy; |
Argyrios Kyrtzidis | 5ab0640 | 2009-05-22 10:22:50 +0000 | [diff] [blame] | 4974 | SourceRange CastRange; |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 4975 | ExprResult Operand = ParseExprAfterUnaryExprOrTypeTrait(OpTok, isCastExpr, |
| 4976 | CastTy, CastRange); |
John McCall | cfb708c | 2010-01-13 20:03:27 +0000 | [diff] [blame] | 4977 | if (hasParens) |
| 4978 | DS.setTypeofParensRange(CastRange); |
Argyrios Kyrtzidis | 5ab0640 | 2009-05-22 10:22:50 +0000 | [diff] [blame] | 4979 | |
| 4980 | if (CastRange.getEnd().isInvalid()) |
Argyrios Kyrtzidis | 6409625 | 2009-05-22 10:22:18 +0000 | [diff] [blame] | 4981 | // FIXME: Not accurate, the range gets one token more than it should. |
| 4982 | DS.SetRangeEnd(Tok.getLocation()); |
Argyrios Kyrtzidis | 5ab0640 | 2009-05-22 10:22:50 +0000 | [diff] [blame] | 4983 | else |
| 4984 | DS.SetRangeEnd(CastRange.getEnd()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4985 | |
Argyrios Kyrtzidis | 5ab0640 | 2009-05-22 10:22:50 +0000 | [diff] [blame] | 4986 | if (isCastExpr) { |
| 4987 | if (!CastTy) { |
| 4988 | DS.SetTypeSpecError(); |
Argyrios Kyrtzidis | 0f07203 | 2008-09-05 11:26:19 +0000 | [diff] [blame] | 4989 | return; |
Douglas Gregor | 809070a | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 4990 | } |
Argyrios Kyrtzidis | 0f07203 | 2008-09-05 11:26:19 +0000 | [diff] [blame] | 4991 | |
Argyrios Kyrtzidis | 5ab0640 | 2009-05-22 10:22:50 +0000 | [diff] [blame] | 4992 | const char *PrevSpec = 0; |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 4993 | unsigned DiagID; |
Argyrios Kyrtzidis | 5ab0640 | 2009-05-22 10:22:50 +0000 | [diff] [blame] | 4994 | // Check for duplicate type specifiers (e.g. "int typeof(int)"). |
| 4995 | if (DS.SetTypeSpecType(DeclSpec::TST_typeofType, StartLoc, PrevSpec, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 4996 | DiagID, CastTy)) |
| 4997 | Diag(StartLoc, DiagID) << PrevSpec; |
Argyrios Kyrtzidis | 5ab0640 | 2009-05-22 10:22:50 +0000 | [diff] [blame] | 4998 | return; |
Argyrios Kyrtzidis | 6409625 | 2009-05-22 10:22:18 +0000 | [diff] [blame] | 4999 | } |
Argyrios Kyrtzidis | 0f07203 | 2008-09-05 11:26:19 +0000 | [diff] [blame] | 5000 | |
Argyrios Kyrtzidis | 6409625 | 2009-05-22 10:22:18 +0000 | [diff] [blame] | 5001 | // If we get here, the operand to the typeof was an expresion. |
| 5002 | if (Operand.isInvalid()) { |
| 5003 | DS.SetTypeSpecError(); |
Steve Naroff | 9dfa7b4 | 2007-08-02 02:53:48 +0000 | [diff] [blame] | 5004 | return; |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 5005 | } |
Argyrios Kyrtzidis | 0f07203 | 2008-09-05 11:26:19 +0000 | [diff] [blame] | 5006 | |
Eli Friedman | 71b8fb5 | 2012-01-21 01:01:51 +0000 | [diff] [blame] | 5007 | // We might need to transform the operand if it is potentially evaluated. |
| 5008 | Operand = Actions.HandleExprEvaluationContextForTypeof(Operand.get()); |
| 5009 | if (Operand.isInvalid()) { |
| 5010 | DS.SetTypeSpecError(); |
| 5011 | return; |
| 5012 | } |
| 5013 | |
Argyrios Kyrtzidis | 6409625 | 2009-05-22 10:22:18 +0000 | [diff] [blame] | 5014 | const char *PrevSpec = 0; |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 5015 | unsigned DiagID; |
Argyrios Kyrtzidis | 6409625 | 2009-05-22 10:22:18 +0000 | [diff] [blame] | 5016 | // Check for duplicate type specifiers (e.g. "int typeof(int)"). |
| 5017 | if (DS.SetTypeSpecType(DeclSpec::TST_typeofExpr, StartLoc, PrevSpec, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 5018 | DiagID, Operand.get())) |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 5019 | Diag(StartLoc, DiagID) << PrevSpec; |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 5020 | } |
Chris Lattner | 1b49242 | 2010-02-28 18:33:55 +0000 | [diff] [blame] | 5021 | |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 5022 | /// [C11] atomic-specifier: |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 5023 | /// _Atomic ( type-name ) |
| 5024 | /// |
| 5025 | void Parser::ParseAtomicSpecifier(DeclSpec &DS) { |
| 5026 | assert(Tok.is(tok::kw__Atomic) && "Not an atomic specifier"); |
| 5027 | |
| 5028 | SourceLocation StartLoc = ConsumeToken(); |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 5029 | BalancedDelimiterTracker T(*this, tok::l_paren); |
| 5030 | if (T.expectAndConsume(diag::err_expected_lparen_after, "_Atomic")) { |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 5031 | SkipUntil(tok::r_paren); |
| 5032 | return; |
| 5033 | } |
| 5034 | |
| 5035 | TypeResult Result = ParseTypeName(); |
| 5036 | if (Result.isInvalid()) { |
| 5037 | SkipUntil(tok::r_paren); |
| 5038 | return; |
| 5039 | } |
| 5040 | |
| 5041 | // Match the ')' |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 5042 | T.consumeClose(); |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 5043 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 5044 | if (T.getCloseLocation().isInvalid()) |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 5045 | return; |
| 5046 | |
Douglas Gregor | 4a8dfb5 | 2011-10-12 16:37:45 +0000 | [diff] [blame] | 5047 | DS.setTypeofParensRange(T.getRange()); |
| 5048 | DS.SetRangeEnd(T.getCloseLocation()); |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 5049 | |
| 5050 | const char *PrevSpec = 0; |
| 5051 | unsigned DiagID; |
| 5052 | if (DS.SetTypeSpecType(DeclSpec::TST_atomic, StartLoc, PrevSpec, |
| 5053 | DiagID, Result.release())) |
| 5054 | Diag(StartLoc, DiagID) << PrevSpec; |
| 5055 | } |
| 5056 | |
Chris Lattner | 1b49242 | 2010-02-28 18:33:55 +0000 | [diff] [blame] | 5057 | |
| 5058 | /// TryAltiVecVectorTokenOutOfLine - Out of line body that should only be called |
| 5059 | /// from TryAltiVecVectorToken. |
| 5060 | bool Parser::TryAltiVecVectorTokenOutOfLine() { |
| 5061 | Token Next = NextToken(); |
| 5062 | switch (Next.getKind()) { |
| 5063 | default: return false; |
| 5064 | case tok::kw_short: |
| 5065 | case tok::kw_long: |
| 5066 | case tok::kw_signed: |
| 5067 | case tok::kw_unsigned: |
| 5068 | case tok::kw_void: |
| 5069 | case tok::kw_char: |
| 5070 | case tok::kw_int: |
| 5071 | case tok::kw_float: |
| 5072 | case tok::kw_double: |
| 5073 | case tok::kw_bool: |
| 5074 | case tok::kw___pixel: |
| 5075 | Tok.setKind(tok::kw___vector); |
| 5076 | return true; |
| 5077 | case tok::identifier: |
| 5078 | if (Next.getIdentifierInfo() == Ident_pixel) { |
| 5079 | Tok.setKind(tok::kw___vector); |
| 5080 | return true; |
| 5081 | } |
| 5082 | return false; |
| 5083 | } |
| 5084 | } |
| 5085 | |
| 5086 | bool Parser::TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc, |
| 5087 | const char *&PrevSpec, unsigned &DiagID, |
| 5088 | bool &isInvalid) { |
| 5089 | if (Tok.getIdentifierInfo() == Ident_vector) { |
| 5090 | Token Next = NextToken(); |
| 5091 | switch (Next.getKind()) { |
| 5092 | case tok::kw_short: |
| 5093 | case tok::kw_long: |
| 5094 | case tok::kw_signed: |
| 5095 | case tok::kw_unsigned: |
| 5096 | case tok::kw_void: |
| 5097 | case tok::kw_char: |
| 5098 | case tok::kw_int: |
| 5099 | case tok::kw_float: |
| 5100 | case tok::kw_double: |
| 5101 | case tok::kw_bool: |
| 5102 | case tok::kw___pixel: |
| 5103 | isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID); |
| 5104 | return true; |
| 5105 | case tok::identifier: |
| 5106 | if (Next.getIdentifierInfo() == Ident_pixel) { |
| 5107 | isInvalid = DS.SetTypeAltiVecVector(true, Loc, PrevSpec, DiagID); |
| 5108 | return true; |
| 5109 | } |
| 5110 | break; |
| 5111 | default: |
| 5112 | break; |
| 5113 | } |
Douglas Gregor | a8f031f | 2010-06-16 15:28:57 +0000 | [diff] [blame] | 5114 | } else if ((Tok.getIdentifierInfo() == Ident_pixel) && |
Chris Lattner | 1b49242 | 2010-02-28 18:33:55 +0000 | [diff] [blame] | 5115 | DS.isTypeAltiVecVector()) { |
| 5116 | isInvalid = DS.SetTypeAltiVecPixel(true, Loc, PrevSpec, DiagID); |
| 5117 | return true; |
| 5118 | } |
| 5119 | return false; |
| 5120 | } |