Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 1 | //===--- ParseDeclCXX.cpp - C++ 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. |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the C++ Declaration portions of the Parser interfaces. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Anders Carlsson | 0c6139d | 2009-06-27 00:27:47 +0000 | [diff] [blame] | 14 | #include "clang/Basic/OperatorKinds.h" |
Douglas Gregor | 1b7f898 | 2008-04-14 00:13:42 +0000 | [diff] [blame] | 15 | #include "clang/Parse/Parser.h" |
Chris Lattner | 500d329 | 2009-01-29 05:15:15 +0000 | [diff] [blame] | 16 | #include "clang/Parse/ParseDiagnostic.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 17 | #include "clang/Sema/DeclSpec.h" |
| 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" |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 22 | using namespace clang; |
| 23 | |
| 24 | /// ParseNamespace - We know that the current token is a namespace keyword. This |
Sebastian Redl | d078e64 | 2010-08-27 23:12:46 +0000 | [diff] [blame] | 25 | /// may either be a top level namespace or a block-level namespace alias. If |
| 26 | /// there was an inline keyword, it has already been parsed. |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 27 | /// |
| 28 | /// namespace-definition: [C++ 7.3: basic.namespace] |
| 29 | /// named-namespace-definition |
| 30 | /// unnamed-namespace-definition |
| 31 | /// |
| 32 | /// unnamed-namespace-definition: |
Sebastian Redl | d078e64 | 2010-08-27 23:12:46 +0000 | [diff] [blame] | 33 | /// 'inline'[opt] 'namespace' attributes[opt] '{' namespace-body '}' |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 34 | /// |
| 35 | /// named-namespace-definition: |
| 36 | /// original-namespace-definition |
| 37 | /// extension-namespace-definition |
| 38 | /// |
| 39 | /// original-namespace-definition: |
Sebastian Redl | d078e64 | 2010-08-27 23:12:46 +0000 | [diff] [blame] | 40 | /// 'inline'[opt] 'namespace' identifier attributes[opt] |
| 41 | /// '{' namespace-body '}' |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 42 | /// |
| 43 | /// extension-namespace-definition: |
Sebastian Redl | d078e64 | 2010-08-27 23:12:46 +0000 | [diff] [blame] | 44 | /// 'inline'[opt] 'namespace' original-namespace-name |
| 45 | /// '{' namespace-body '}' |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 46 | /// |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 47 | /// namespace-alias-definition: [C++ 7.3.2: namespace.alias] |
| 48 | /// 'namespace' identifier '=' qualified-namespace-specifier ';' |
| 49 | /// |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 50 | Decl *Parser::ParseNamespace(unsigned Context, |
Sebastian Redl | d078e64 | 2010-08-27 23:12:46 +0000 | [diff] [blame] | 51 | SourceLocation &DeclEnd, |
| 52 | SourceLocation InlineLoc) { |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 53 | assert(Tok.is(tok::kw_namespace) && "Not a namespace!"); |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 54 | SourceLocation NamespaceLoc = ConsumeToken(); // eat the 'namespace'. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 55 | |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 56 | if (Tok.is(tok::code_completion)) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 57 | Actions.CodeCompleteNamespaceDecl(getCurScope()); |
Douglas Gregor | dc84534 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 58 | ConsumeCodeCompletionToken(); |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 59 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 60 | |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 61 | SourceLocation IdentLoc; |
| 62 | IdentifierInfo *Ident = 0; |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 63 | std::vector<SourceLocation> ExtraIdentLoc; |
| 64 | std::vector<IdentifierInfo*> ExtraIdent; |
| 65 | std::vector<SourceLocation> ExtraNamespaceLoc; |
Douglas Gregor | 6a588dd | 2009-06-17 19:49:00 +0000 | [diff] [blame] | 66 | |
| 67 | Token attrTok; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 68 | |
Chris Lattner | 04d6666 | 2007-10-09 17:33:22 +0000 | [diff] [blame] | 69 | if (Tok.is(tok::identifier)) { |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 70 | Ident = Tok.getIdentifierInfo(); |
| 71 | IdentLoc = ConsumeToken(); // eat the identifier. |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 72 | while (Tok.is(tok::coloncolon) && NextToken().is(tok::identifier)) { |
| 73 | ExtraNamespaceLoc.push_back(ConsumeToken()); |
| 74 | ExtraIdent.push_back(Tok.getIdentifierInfo()); |
| 75 | ExtraIdentLoc.push_back(ConsumeToken()); |
| 76 | } |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 77 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 78 | |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 79 | // Read label attributes, if present. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 80 | ParsedAttributes attrs(AttrFactory); |
Douglas Gregor | 6a588dd | 2009-06-17 19:49:00 +0000 | [diff] [blame] | 81 | if (Tok.is(tok::kw___attribute)) { |
| 82 | attrTok = Tok; |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 83 | ParseGNUAttributes(attrs); |
Douglas Gregor | 6a588dd | 2009-06-17 19:49:00 +0000 | [diff] [blame] | 84 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 85 | |
Douglas Gregor | 6a588dd | 2009-06-17 19:49:00 +0000 | [diff] [blame] | 86 | if (Tok.is(tok::equal)) { |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 87 | if (!attrs.empty()) |
Douglas Gregor | 6a588dd | 2009-06-17 19:49:00 +0000 | [diff] [blame] | 88 | Diag(attrTok, diag::err_unexpected_namespace_attributes_alias); |
Sebastian Redl | d078e64 | 2010-08-27 23:12:46 +0000 | [diff] [blame] | 89 | if (InlineLoc.isValid()) |
| 90 | Diag(InlineLoc, diag::err_inline_namespace_alias) |
| 91 | << FixItHint::CreateRemoval(InlineLoc); |
Douglas Gregor | 6a588dd | 2009-06-17 19:49:00 +0000 | [diff] [blame] | 92 | |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 93 | return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd); |
Douglas Gregor | 6a588dd | 2009-06-17 19:49:00 +0000 | [diff] [blame] | 94 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 95 | |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 96 | |
Chris Lattner | 5144832 | 2009-03-29 14:02:43 +0000 | [diff] [blame] | 97 | if (Tok.isNot(tok::l_brace)) { |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 98 | if (!ExtraIdent.empty()) { |
| 99 | Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon) |
| 100 | << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back()); |
| 101 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 102 | Diag(Tok, Ident ? diag::err_expected_lbrace : |
Chris Lattner | 5144832 | 2009-03-29 14:02:43 +0000 | [diff] [blame] | 103 | diag::err_expected_ident_lbrace); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 104 | return 0; |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 105 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 106 | |
Chris Lattner | 5144832 | 2009-03-29 14:02:43 +0000 | [diff] [blame] | 107 | SourceLocation LBrace = ConsumeBrace(); |
| 108 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 109 | if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() || |
| 110 | getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() || |
| 111 | getCurScope()->getFnParent()) { |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 112 | if (!ExtraIdent.empty()) { |
| 113 | Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon) |
| 114 | << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back()); |
| 115 | } |
Douglas Gregor | 95f1b15 | 2010-05-14 05:08:22 +0000 | [diff] [blame] | 116 | Diag(LBrace, diag::err_namespace_nonnamespace_scope); |
| 117 | SkipUntil(tok::r_brace, false); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 118 | return 0; |
Douglas Gregor | 95f1b15 | 2010-05-14 05:08:22 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 121 | if (!ExtraIdent.empty()) { |
| 122 | TentativeParsingAction TPA(*this); |
| 123 | SkipUntil(tok::r_brace, /*StopAtSemi*/false, /*DontConsume*/true); |
| 124 | Token rBraceToken = Tok; |
| 125 | TPA.Revert(); |
| 126 | |
| 127 | if (!rBraceToken.is(tok::r_brace)) { |
| 128 | Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon) |
| 129 | << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back()); |
| 130 | } else { |
Benjamin Kramer | 9910df0 | 2011-05-26 21:32:30 +0000 | [diff] [blame] | 131 | std::string NamespaceFix; |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 132 | for (std::vector<IdentifierInfo*>::iterator I = ExtraIdent.begin(), |
| 133 | E = ExtraIdent.end(); I != E; ++I) { |
| 134 | NamespaceFix += " { namespace "; |
| 135 | NamespaceFix += (*I)->getName(); |
| 136 | } |
Benjamin Kramer | 9910df0 | 2011-05-26 21:32:30 +0000 | [diff] [blame] | 137 | |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 138 | std::string RBraces; |
Benjamin Kramer | 9910df0 | 2011-05-26 21:32:30 +0000 | [diff] [blame] | 139 | for (unsigned i = 0, e = ExtraIdent.size(); i != e; ++i) |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 140 | RBraces += "} "; |
Benjamin Kramer | 9910df0 | 2011-05-26 21:32:30 +0000 | [diff] [blame] | 141 | |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 142 | Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon) |
| 143 | << FixItHint::CreateReplacement(SourceRange(ExtraNamespaceLoc.front(), |
| 144 | ExtraIdentLoc.back()), |
| 145 | NamespaceFix) |
| 146 | << FixItHint::CreateInsertion(rBraceToken.getLocation(), RBraces); |
| 147 | } |
| 148 | } |
| 149 | |
Sebastian Redl | 88e64ca | 2010-08-31 00:36:45 +0000 | [diff] [blame] | 150 | // If we're still good, complain about inline namespaces in non-C++0x now. |
| 151 | if (!getLang().CPlusPlus0x && InlineLoc.isValid()) |
| 152 | Diag(InlineLoc, diag::ext_inline_namespace); |
| 153 | |
Chris Lattner | 5144832 | 2009-03-29 14:02:43 +0000 | [diff] [blame] | 154 | // Enter a scope for the namespace. |
| 155 | ParseScope NamespaceScope(this, Scope::DeclScope); |
| 156 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 157 | Decl *NamespcDecl = |
Abramo Bagnara | acba90f | 2011-03-08 12:38:20 +0000 | [diff] [blame] | 158 | Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc, |
| 159 | IdentLoc, Ident, LBrace, attrs.getList()); |
Chris Lattner | 5144832 | 2009-03-29 14:02:43 +0000 | [diff] [blame] | 160 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 161 | PrettyDeclStackTraceEntry CrashInfo(Actions, NamespcDecl, NamespaceLoc, |
| 162 | "parsing namespace"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 163 | |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 164 | SourceLocation RBraceLoc; |
| 165 | // Parse the contents of the namespace. This includes parsing recovery on |
| 166 | // any improperly nested namespaces. |
| 167 | ParseInnerNamespace(ExtraIdentLoc, ExtraIdent, ExtraNamespaceLoc, 0, |
| 168 | InlineLoc, LBrace, attrs, RBraceLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 169 | |
Chris Lattner | 5144832 | 2009-03-29 14:02:43 +0000 | [diff] [blame] | 170 | // Leave the namespace scope. |
| 171 | NamespaceScope.Exit(); |
| 172 | |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 173 | Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc); |
Chris Lattner | 5144832 | 2009-03-29 14:02:43 +0000 | [diff] [blame] | 174 | |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 175 | DeclEnd = RBraceLoc; |
Chris Lattner | 5144832 | 2009-03-29 14:02:43 +0000 | [diff] [blame] | 176 | return NamespcDecl; |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 177 | } |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 178 | |
Richard Trieu | f858bd8 | 2011-05-26 20:11:09 +0000 | [diff] [blame] | 179 | /// ParseInnerNamespace - Parse the contents of a namespace. |
| 180 | void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc, |
| 181 | std::vector<IdentifierInfo*>& Ident, |
| 182 | std::vector<SourceLocation>& NamespaceLoc, |
| 183 | unsigned int index, SourceLocation& InlineLoc, |
| 184 | SourceLocation& LBrace, |
| 185 | ParsedAttributes& attrs, |
| 186 | SourceLocation& RBraceLoc) { |
| 187 | if (index == Ident.size()) { |
| 188 | while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) { |
| 189 | ParsedAttributesWithRange attrs(AttrFactory); |
| 190 | MaybeParseCXX0XAttributes(attrs); |
| 191 | MaybeParseMicrosoftAttributes(attrs); |
| 192 | ParseExternalDeclaration(attrs); |
| 193 | } |
| 194 | RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBrace); |
| 195 | |
| 196 | return; |
| 197 | } |
| 198 | |
| 199 | // Parse improperly nested namespaces. |
| 200 | ParseScope NamespaceScope(this, Scope::DeclScope); |
| 201 | Decl *NamespcDecl = |
| 202 | Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(), |
| 203 | NamespaceLoc[index], IdentLoc[index], |
| 204 | Ident[index], LBrace, attrs.getList()); |
| 205 | |
| 206 | ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc, |
| 207 | LBrace, attrs, RBraceLoc); |
| 208 | |
| 209 | NamespaceScope.Exit(); |
| 210 | |
| 211 | Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc); |
| 212 | } |
| 213 | |
Anders Carlsson | f67606a | 2009-03-28 04:07:16 +0000 | [diff] [blame] | 214 | /// ParseNamespaceAlias - Parse the part after the '=' in a namespace |
| 215 | /// alias definition. |
| 216 | /// |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 217 | Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc, |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 218 | SourceLocation AliasLoc, |
| 219 | IdentifierInfo *Alias, |
| 220 | SourceLocation &DeclEnd) { |
Anders Carlsson | f67606a | 2009-03-28 04:07:16 +0000 | [diff] [blame] | 221 | assert(Tok.is(tok::equal) && "Not equal token"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 222 | |
Anders Carlsson | f67606a | 2009-03-28 04:07:16 +0000 | [diff] [blame] | 223 | ConsumeToken(); // eat the '='. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 224 | |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 225 | if (Tok.is(tok::code_completion)) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 226 | Actions.CodeCompleteNamespaceAliasDecl(getCurScope()); |
Douglas Gregor | dc84534 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 227 | ConsumeCodeCompletionToken(); |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 228 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 229 | |
Anders Carlsson | f67606a | 2009-03-28 04:07:16 +0000 | [diff] [blame] | 230 | CXXScopeSpec SS; |
| 231 | // Parse (optional) nested-name-specifier. |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 232 | ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false); |
Anders Carlsson | f67606a | 2009-03-28 04:07:16 +0000 | [diff] [blame] | 233 | |
| 234 | if (SS.isInvalid() || Tok.isNot(tok::identifier)) { |
| 235 | Diag(Tok, diag::err_expected_namespace_name); |
| 236 | // Skip to end of the definition and eat the ';'. |
| 237 | SkipUntil(tok::semi); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 238 | return 0; |
Anders Carlsson | f67606a | 2009-03-28 04:07:16 +0000 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | // Parse identifier. |
Anders Carlsson | 03bd5a1 | 2009-03-28 22:53:22 +0000 | [diff] [blame] | 242 | IdentifierInfo *Ident = Tok.getIdentifierInfo(); |
| 243 | SourceLocation IdentLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 244 | |
Anders Carlsson | f67606a | 2009-03-28 04:07:16 +0000 | [diff] [blame] | 245 | // Eat the ';'. |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 246 | DeclEnd = Tok.getLocation(); |
Chris Lattner | 6869d8e | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 247 | ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name, |
| 248 | "", tok::semi); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 249 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 250 | return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias, |
Anders Carlsson | 03bd5a1 | 2009-03-28 22:53:22 +0000 | [diff] [blame] | 251 | SS, IdentLoc, Ident); |
Anders Carlsson | f67606a | 2009-03-28 04:07:16 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 254 | /// ParseLinkage - We know that the current token is a string_literal |
| 255 | /// and just before that, that extern was seen. |
| 256 | /// |
| 257 | /// linkage-specification: [C++ 7.5p2: dcl.link] |
| 258 | /// 'extern' string-literal '{' declaration-seq[opt] '}' |
| 259 | /// 'extern' string-literal declaration |
| 260 | /// |
Chris Lattner | 7d64271 | 2010-11-09 20:15:55 +0000 | [diff] [blame] | 261 | Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) { |
Douglas Gregor | c19923d | 2008-11-21 16:10:08 +0000 | [diff] [blame] | 262 | assert(Tok.is(tok::string_literal) && "Not a string literal!"); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 263 | llvm::SmallString<8> LangBuffer; |
Douglas Gregor | 453091c | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 264 | bool Invalid = false; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 265 | StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid); |
Douglas Gregor | 453091c | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 266 | if (Invalid) |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 267 | return 0; |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 268 | |
| 269 | SourceLocation Loc = ConsumeStringToken(); |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 270 | |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 271 | ParseScope LinkageScope(this, Scope::DeclScope); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 272 | Decl *LinkageSpec |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 273 | = Actions.ActOnStartLinkageSpecification(getCurScope(), |
Abramo Bagnara | a2026c9 | 2011-03-08 16:41:52 +0000 | [diff] [blame] | 274 | DS.getSourceRange().getBegin(), |
Benjamin Kramer | d566381 | 2010-05-03 13:08:54 +0000 | [diff] [blame] | 275 | Loc, Lang, |
Abramo Bagnara | a2026c9 | 2011-03-08 16:41:52 +0000 | [diff] [blame] | 276 | Tok.is(tok::l_brace) ? Tok.getLocation() |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 277 | : SourceLocation()); |
| 278 | |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 279 | ParsedAttributesWithRange attrs(AttrFactory); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 280 | MaybeParseCXX0XAttributes(attrs); |
| 281 | MaybeParseMicrosoftAttributes(attrs); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 282 | |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 283 | if (Tok.isNot(tok::l_brace)) { |
Abramo Bagnara | f41e33c | 2011-05-01 16:25:54 +0000 | [diff] [blame] | 284 | // Reset the source range in DS, as the leading "extern" |
| 285 | // does not really belong to the inner declaration ... |
| 286 | DS.SetRangeStart(SourceLocation()); |
| 287 | DS.SetRangeEnd(SourceLocation()); |
| 288 | // ... but anyway remember that such an "extern" was seen. |
Abramo Bagnara | 35f9a19 | 2010-07-30 16:47:02 +0000 | [diff] [blame] | 289 | DS.setExternInLinkageSpec(true); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 290 | ParseExternalDeclaration(attrs, &DS); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 291 | return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec, |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 292 | SourceLocation()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 293 | } |
Douglas Gregor | f44515a | 2008-12-16 22:23:02 +0000 | [diff] [blame] | 294 | |
Douglas Gregor | 63a0113 | 2010-02-07 08:38:28 +0000 | [diff] [blame] | 295 | DS.abort(); |
| 296 | |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 297 | ProhibitAttributes(attrs); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 298 | |
Douglas Gregor | f44515a | 2008-12-16 22:23:02 +0000 | [diff] [blame] | 299 | SourceLocation LBrace = ConsumeBrace(); |
Douglas Gregor | f44515a | 2008-12-16 22:23:02 +0000 | [diff] [blame] | 300 | while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) { |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 301 | ParsedAttributesWithRange attrs(AttrFactory); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 302 | MaybeParseCXX0XAttributes(attrs); |
| 303 | MaybeParseMicrosoftAttributes(attrs); |
| 304 | ParseExternalDeclaration(attrs); |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 305 | } |
| 306 | |
Douglas Gregor | f44515a | 2008-12-16 22:23:02 +0000 | [diff] [blame] | 307 | SourceLocation RBrace = MatchRHSPunctuation(tok::r_brace, LBrace); |
Chris Lattner | 7d64271 | 2010-11-09 20:15:55 +0000 | [diff] [blame] | 308 | return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec, |
| 309 | RBrace); |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 310 | } |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 311 | |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 312 | /// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or |
| 313 | /// using-directive. Assumes that current token is 'using'. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 314 | Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context, |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 315 | const ParsedTemplateInfo &TemplateInfo, |
| 316 | SourceLocation &DeclEnd, |
Richard Smith | c89edf5 | 2011-07-01 19:46:12 +0000 | [diff] [blame] | 317 | ParsedAttributesWithRange &attrs, |
| 318 | Decl **OwnedType) { |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 319 | assert(Tok.is(tok::kw_using) && "Not using token"); |
| 320 | |
| 321 | // Eat 'using'. |
| 322 | SourceLocation UsingLoc = ConsumeToken(); |
| 323 | |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 324 | if (Tok.is(tok::code_completion)) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 325 | Actions.CodeCompleteUsing(getCurScope()); |
Douglas Gregor | dc84534 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 326 | ConsumeCodeCompletionToken(); |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 327 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 328 | |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 329 | // 'using namespace' means this is a using-directive. |
| 330 | if (Tok.is(tok::kw_namespace)) { |
| 331 | // Template parameters are always an error here. |
| 332 | if (TemplateInfo.Kind) { |
| 333 | SourceRange R = TemplateInfo.getSourceRange(); |
| 334 | Diag(UsingLoc, diag::err_templated_using_directive) |
| 335 | << R << FixItHint::CreateRemoval(R); |
| 336 | } |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 337 | |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 338 | return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs); |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 339 | } |
| 340 | |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 341 | // Otherwise, it must be a using-declaration or an alias-declaration. |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 342 | |
| 343 | // Using declarations can't have attributes. |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 344 | ProhibitAttributes(attrs); |
Chris Lattner | 2f27477 | 2009-01-06 06:55:51 +0000 | [diff] [blame] | 345 | |
Richard Smith | c89edf5 | 2011-07-01 19:46:12 +0000 | [diff] [blame] | 346 | return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd, |
| 347 | AS_none, OwnedType); |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | /// ParseUsingDirective - Parse C++ using-directive, assumes |
| 351 | /// that current token is 'namespace' and 'using' was already parsed. |
| 352 | /// |
| 353 | /// using-directive: [C++ 7.3.p4: namespace.udir] |
| 354 | /// 'using' 'namespace' ::[opt] nested-name-specifier[opt] |
| 355 | /// namespace-name ; |
| 356 | /// [GNU] using-directive: |
| 357 | /// 'using' 'namespace' ::[opt] nested-name-specifier[opt] |
| 358 | /// namespace-name attributes[opt] ; |
| 359 | /// |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 360 | Decl *Parser::ParseUsingDirective(unsigned Context, |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 361 | SourceLocation UsingLoc, |
| 362 | SourceLocation &DeclEnd, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 363 | ParsedAttributes &attrs) { |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 364 | assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token"); |
| 365 | |
| 366 | // Eat 'namespace'. |
| 367 | SourceLocation NamespcLoc = ConsumeToken(); |
| 368 | |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 369 | if (Tok.is(tok::code_completion)) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 370 | Actions.CodeCompleteUsingDirective(getCurScope()); |
Douglas Gregor | dc84534 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 371 | ConsumeCodeCompletionToken(); |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 372 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 373 | |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 374 | CXXScopeSpec SS; |
| 375 | // Parse (optional) nested-name-specifier. |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 376 | ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false); |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 377 | |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 378 | IdentifierInfo *NamespcName = 0; |
| 379 | SourceLocation IdentLoc = SourceLocation(); |
| 380 | |
| 381 | // Parse namespace-name. |
Chris Lattner | 823c44e | 2009-01-06 07:27:21 +0000 | [diff] [blame] | 382 | if (SS.isInvalid() || Tok.isNot(tok::identifier)) { |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 383 | Diag(Tok, diag::err_expected_namespace_name); |
| 384 | // If there was invalid namespace name, skip to end of decl, and eat ';'. |
| 385 | SkipUntil(tok::semi); |
| 386 | // FIXME: Are there cases, when we would like to call ActOnUsingDirective? |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 387 | return 0; |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 388 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 389 | |
Chris Lattner | 823c44e | 2009-01-06 07:27:21 +0000 | [diff] [blame] | 390 | // Parse identifier. |
| 391 | NamespcName = Tok.getIdentifierInfo(); |
| 392 | IdentLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 393 | |
Chris Lattner | 823c44e | 2009-01-06 07:27:21 +0000 | [diff] [blame] | 394 | // Parse (optional) attributes (most likely GNU strong-using extension). |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 395 | bool GNUAttr = false; |
| 396 | if (Tok.is(tok::kw___attribute)) { |
| 397 | GNUAttr = true; |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 398 | ParseGNUAttributes(attrs); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 399 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 400 | |
Chris Lattner | 823c44e | 2009-01-06 07:27:21 +0000 | [diff] [blame] | 401 | // Eat ';'. |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 402 | DeclEnd = Tok.getLocation(); |
Chris Lattner | 6869d8e | 2009-06-14 00:07:48 +0000 | [diff] [blame] | 403 | ExpectAndConsume(tok::semi, |
Douglas Gregor | 9ba23b4 | 2010-09-07 15:23:11 +0000 | [diff] [blame] | 404 | GNUAttr ? diag::err_expected_semi_after_attribute_list |
| 405 | : diag::err_expected_semi_after_namespace_name, |
| 406 | "", tok::semi); |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 407 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 408 | return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 409 | IdentLoc, NamespcName, attrs.getList()); |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 410 | } |
| 411 | |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 412 | /// ParseUsingDeclaration - Parse C++ using-declaration or alias-declaration. |
| 413 | /// Assumes that 'using' was already seen. |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 414 | /// |
| 415 | /// using-declaration: [C++ 7.3.p3: namespace.udecl] |
| 416 | /// 'using' 'typename'[opt] ::[opt] nested-name-specifier |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 417 | /// unqualified-id |
| 418 | /// 'using' :: unqualified-id |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 419 | /// |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 420 | /// alias-declaration: C++0x [decl.typedef]p2 |
| 421 | /// 'using' identifier = type-id ; |
| 422 | /// |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 423 | Decl *Parser::ParseUsingDeclaration(unsigned Context, |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 424 | const ParsedTemplateInfo &TemplateInfo, |
| 425 | SourceLocation UsingLoc, |
| 426 | SourceLocation &DeclEnd, |
Richard Smith | c89edf5 | 2011-07-01 19:46:12 +0000 | [diff] [blame] | 427 | AccessSpecifier AS, |
| 428 | Decl **OwnedType) { |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 429 | CXXScopeSpec SS; |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 430 | SourceLocation TypenameLoc; |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 431 | bool IsTypeName; |
| 432 | |
| 433 | // Ignore optional 'typename'. |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 434 | // FIXME: This is wrong; we should parse this as a typename-specifier. |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 435 | if (Tok.is(tok::kw_typename)) { |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 436 | TypenameLoc = Tok.getLocation(); |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 437 | ConsumeToken(); |
| 438 | IsTypeName = true; |
| 439 | } |
| 440 | else |
| 441 | IsTypeName = false; |
| 442 | |
| 443 | // Parse nested-name-specifier. |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 444 | ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false); |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 445 | |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 446 | // Check nested-name specifier. |
| 447 | if (SS.isInvalid()) { |
| 448 | SkipUntil(tok::semi); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 449 | return 0; |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 450 | } |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 451 | |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 452 | // Parse the unqualified-id. We allow parsing of both constructor and |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 453 | // destructor names and allow the action module to diagnose any semantic |
| 454 | // errors. |
| 455 | UnqualifiedId Name; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 456 | if (ParseUnqualifiedId(SS, |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 457 | /*EnteringContext=*/false, |
| 458 | /*AllowDestructorName=*/true, |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 459 | /*AllowConstructorName=*/true, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 460 | ParsedType(), |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 461 | Name)) { |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 462 | SkipUntil(tok::semi); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 463 | return 0; |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 464 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 465 | |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 466 | ParsedAttributes attrs(AttrFactory); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 467 | |
| 468 | // Maybe this is an alias-declaration. |
| 469 | bool IsAliasDecl = Tok.is(tok::equal); |
| 470 | TypeResult TypeAlias; |
| 471 | if (IsAliasDecl) { |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 472 | // TODO: Attribute support. C++0x attributes may appear before the equals. |
| 473 | // Where can GNU attributes appear? |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 474 | ConsumeToken(); |
| 475 | |
| 476 | if (!getLang().CPlusPlus0x) |
| 477 | Diag(Tok.getLocation(), diag::ext_alias_declaration); |
| 478 | |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 479 | // Type alias templates cannot be specialized. |
| 480 | int SpecKind = -1; |
Richard Smith | 536e9c1 | 2011-05-05 22:36:10 +0000 | [diff] [blame] | 481 | if (TemplateInfo.Kind == ParsedTemplateInfo::Template && |
| 482 | Name.getKind() == UnqualifiedId::IK_TemplateId) |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 483 | SpecKind = 0; |
| 484 | if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) |
| 485 | SpecKind = 1; |
| 486 | if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) |
| 487 | SpecKind = 2; |
| 488 | if (SpecKind != -1) { |
| 489 | SourceRange Range; |
| 490 | if (SpecKind == 0) |
| 491 | Range = SourceRange(Name.TemplateId->LAngleLoc, |
| 492 | Name.TemplateId->RAngleLoc); |
| 493 | else |
| 494 | Range = TemplateInfo.getSourceRange(); |
| 495 | Diag(Range.getBegin(), diag::err_alias_declaration_specialization) |
| 496 | << SpecKind << Range; |
| 497 | SkipUntil(tok::semi); |
| 498 | return 0; |
| 499 | } |
| 500 | |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 501 | // Name must be an identifier. |
| 502 | if (Name.getKind() != UnqualifiedId::IK_Identifier) { |
| 503 | Diag(Name.StartLocation, diag::err_alias_declaration_not_identifier); |
| 504 | // No removal fixit: can't recover from this. |
| 505 | SkipUntil(tok::semi); |
| 506 | return 0; |
| 507 | } else if (IsTypeName) |
| 508 | Diag(TypenameLoc, diag::err_alias_declaration_not_identifier) |
| 509 | << FixItHint::CreateRemoval(SourceRange(TypenameLoc, |
| 510 | SS.isNotEmpty() ? SS.getEndLoc() : TypenameLoc)); |
| 511 | else if (SS.isNotEmpty()) |
| 512 | Diag(SS.getBeginLoc(), diag::err_alias_declaration_not_identifier) |
| 513 | << FixItHint::CreateRemoval(SS.getRange()); |
| 514 | |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 515 | TypeAlias = ParseTypeName(0, TemplateInfo.Kind ? |
| 516 | Declarator::AliasTemplateContext : |
Richard Smith | c89edf5 | 2011-07-01 19:46:12 +0000 | [diff] [blame] | 517 | Declarator::AliasDeclContext, 0, AS, OwnedType); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 518 | } else |
| 519 | // Parse (optional) attributes (most likely GNU strong-using extension). |
| 520 | MaybeParseGNUAttributes(attrs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 521 | |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 522 | // Eat ';'. |
| 523 | DeclEnd = Tok.getLocation(); |
| 524 | ExpectAndConsume(tok::semi, diag::err_expected_semi_after, |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 525 | !attrs.empty() ? "attributes list" : |
| 526 | IsAliasDecl ? "alias declaration" : "using declaration", |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 527 | tok::semi); |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 528 | |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 529 | // Diagnose an attempt to declare a templated using-declaration. |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 530 | // In C++0x, alias-declarations can be templates: |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 531 | // template <...> using id = type; |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 532 | if (TemplateInfo.Kind && !IsAliasDecl) { |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 533 | SourceRange R = TemplateInfo.getSourceRange(); |
| 534 | Diag(UsingLoc, diag::err_templated_using_declaration) |
| 535 | << R << FixItHint::CreateRemoval(R); |
| 536 | |
| 537 | // Unfortunately, we have to bail out instead of recovering by |
| 538 | // ignoring the parameters, just in case the nested name specifier |
| 539 | // depends on the parameters. |
| 540 | return 0; |
| 541 | } |
| 542 | |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 543 | if (IsAliasDecl) { |
| 544 | TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams; |
| 545 | MultiTemplateParamsArg TemplateParamsArg(Actions, |
| 546 | TemplateParams ? TemplateParams->data() : 0, |
| 547 | TemplateParams ? TemplateParams->size() : 0); |
| 548 | return Actions.ActOnAliasDeclaration(getCurScope(), AS, TemplateParamsArg, |
| 549 | UsingLoc, Name, TypeAlias); |
| 550 | } |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 551 | |
Ted Kremenek | 8113ecf | 2010-11-10 05:59:39 +0000 | [diff] [blame] | 552 | return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 553 | Name, attrs.getList(), |
| 554 | IsTypeName, TypenameLoc); |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 555 | } |
| 556 | |
Peter Collingbourne | c6eb44b | 2011-04-15 00:35:57 +0000 | [diff] [blame] | 557 | /// ParseStaticAssertDeclaration - Parse C++0x or C1X static_assert-declaration. |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 558 | /// |
Peter Collingbourne | c6eb44b | 2011-04-15 00:35:57 +0000 | [diff] [blame] | 559 | /// [C++0x] static_assert-declaration: |
| 560 | /// static_assert ( constant-expression , string-literal ) ; |
| 561 | /// |
| 562 | /// [C1X] static_assert-declaration: |
| 563 | /// _Static_assert ( constant-expression , string-literal ) ; |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 564 | /// |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 565 | Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){ |
Peter Collingbourne | c6eb44b | 2011-04-15 00:35:57 +0000 | [diff] [blame] | 566 | assert((Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) && |
| 567 | "Not a static_assert declaration"); |
| 568 | |
| 569 | if (Tok.is(tok::kw__Static_assert) && !getLang().C1X) |
| 570 | Diag(Tok, diag::ext_c1x_static_assert); |
| 571 | |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 572 | SourceLocation StaticAssertLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 573 | |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 574 | if (Tok.isNot(tok::l_paren)) { |
| 575 | Diag(Tok, diag::err_expected_lparen); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 576 | return 0; |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 577 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 578 | |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 579 | SourceLocation LParenLoc = ConsumeParen(); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 580 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 581 | ExprResult AssertExpr(ParseConstantExpression()); |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 582 | if (AssertExpr.isInvalid()) { |
| 583 | SkipUntil(tok::semi); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 584 | return 0; |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 585 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 586 | |
Anders Carlsson | ad5f960 | 2009-03-13 23:29:20 +0000 | [diff] [blame] | 587 | if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi)) |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 588 | return 0; |
Anders Carlsson | ad5f960 | 2009-03-13 23:29:20 +0000 | [diff] [blame] | 589 | |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 590 | if (Tok.isNot(tok::string_literal)) { |
| 591 | Diag(Tok, diag::err_expected_string_literal); |
| 592 | SkipUntil(tok::semi); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 593 | return 0; |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 594 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 595 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 596 | ExprResult AssertMessage(ParseStringLiteralExpression()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 597 | if (AssertMessage.isInvalid()) |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 598 | return 0; |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 599 | |
Abramo Bagnara | a2026c9 | 2011-03-08 16:41:52 +0000 | [diff] [blame] | 600 | SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 601 | |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 602 | DeclEnd = Tok.getLocation(); |
Douglas Gregor | 9ba23b4 | 2010-09-07 15:23:11 +0000 | [diff] [blame] | 603 | ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert); |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 604 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 605 | return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc, |
| 606 | AssertExpr.take(), |
Abramo Bagnara | a2026c9 | 2011-03-08 16:41:52 +0000 | [diff] [blame] | 607 | AssertMessage.take(), |
| 608 | RParenLoc); |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 609 | } |
| 610 | |
Anders Carlsson | 6fd634f | 2009-06-24 17:47:40 +0000 | [diff] [blame] | 611 | /// ParseDecltypeSpecifier - Parse a C++0x decltype specifier. |
| 612 | /// |
| 613 | /// 'decltype' ( expression ) |
| 614 | /// |
| 615 | void Parser::ParseDecltypeSpecifier(DeclSpec &DS) { |
| 616 | assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier"); |
| 617 | |
| 618 | SourceLocation StartLoc = ConsumeToken(); |
| 619 | SourceLocation LParenLoc = Tok.getLocation(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 620 | |
| 621 | if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, |
Anders Carlsson | 6fd634f | 2009-06-24 17:47:40 +0000 | [diff] [blame] | 622 | "decltype")) { |
| 623 | SkipUntil(tok::r_paren); |
| 624 | return; |
| 625 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 626 | |
Anders Carlsson | 6fd634f | 2009-06-24 17:47:40 +0000 | [diff] [blame] | 627 | // Parse the expression |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 628 | |
Anders Carlsson | 6fd634f | 2009-06-24 17:47:40 +0000 | [diff] [blame] | 629 | // C++0x [dcl.type.simple]p4: |
| 630 | // The operand of the decltype specifier is an unevaluated operand. |
| 631 | EnterExpressionEvaluationContext Unevaluated(Actions, |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 632 | Sema::Unevaluated); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 633 | ExprResult Result = ParseExpression(); |
Anders Carlsson | 6fd634f | 2009-06-24 17:47:40 +0000 | [diff] [blame] | 634 | if (Result.isInvalid()) { |
| 635 | SkipUntil(tok::r_paren); |
| 636 | return; |
| 637 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 638 | |
Anders Carlsson | 6fd634f | 2009-06-24 17:47:40 +0000 | [diff] [blame] | 639 | // Match the ')' |
| 640 | SourceLocation RParenLoc; |
| 641 | if (Tok.is(tok::r_paren)) |
| 642 | RParenLoc = ConsumeParen(); |
| 643 | else |
| 644 | MatchRHSPunctuation(tok::r_paren, LParenLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 645 | |
Anders Carlsson | 6fd634f | 2009-06-24 17:47:40 +0000 | [diff] [blame] | 646 | if (RParenLoc.isInvalid()) |
| 647 | return; |
| 648 | |
| 649 | const char *PrevSpec = 0; |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 650 | unsigned DiagID; |
Anders Carlsson | 6fd634f | 2009-06-24 17:47:40 +0000 | [diff] [blame] | 651 | // Check for duplicate type specifiers (e.g. "int decltype(a)"). |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 652 | if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 653 | DiagID, Result.release())) |
| 654 | Diag(StartLoc, DiagID) << PrevSpec; |
Anders Carlsson | 6fd634f | 2009-06-24 17:47:40 +0000 | [diff] [blame] | 655 | } |
| 656 | |
Sean Hunt | db5d44b | 2011-05-19 05:37:45 +0000 | [diff] [blame] | 657 | void Parser::ParseUnderlyingTypeSpecifier(DeclSpec &DS) { |
| 658 | assert(Tok.is(tok::kw___underlying_type) && |
| 659 | "Not an underlying type specifier"); |
| 660 | |
| 661 | SourceLocation StartLoc = ConsumeToken(); |
| 662 | SourceLocation LParenLoc = Tok.getLocation(); |
| 663 | |
| 664 | if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, |
| 665 | "__underlying_type")) { |
| 666 | SkipUntil(tok::r_paren); |
| 667 | return; |
| 668 | } |
| 669 | |
| 670 | TypeResult Result = ParseTypeName(); |
| 671 | if (Result.isInvalid()) { |
| 672 | SkipUntil(tok::r_paren); |
| 673 | return; |
| 674 | } |
| 675 | |
| 676 | // Match the ')' |
| 677 | SourceLocation RParenLoc; |
| 678 | if (Tok.is(tok::r_paren)) |
| 679 | RParenLoc = ConsumeParen(); |
| 680 | else |
| 681 | MatchRHSPunctuation(tok::r_paren, LParenLoc); |
| 682 | |
| 683 | if (RParenLoc.isInvalid()) |
| 684 | return; |
| 685 | |
| 686 | const char *PrevSpec = 0; |
| 687 | unsigned DiagID; |
Sean Hunt | ca63c20 | 2011-05-24 22:41:36 +0000 | [diff] [blame] | 688 | if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec, |
Sean Hunt | db5d44b | 2011-05-19 05:37:45 +0000 | [diff] [blame] | 689 | DiagID, Result.release())) |
| 690 | Diag(StartLoc, DiagID) << PrevSpec; |
| 691 | } |
| 692 | |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 693 | /// ParseClassName - Parse a C++ class-name, which names a class. Note |
| 694 | /// that we only check that the result names a type; semantic analysis |
| 695 | /// will need to verify that the type names a class. The result is |
Douglas Gregor | 7f43d67 | 2009-02-25 23:52:28 +0000 | [diff] [blame] | 696 | /// either a type or NULL, depending on whether a type name was |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 697 | /// found. |
| 698 | /// |
| 699 | /// class-name: [C++ 9.1] |
| 700 | /// identifier |
Douglas Gregor | 7f43d67 | 2009-02-25 23:52:28 +0000 | [diff] [blame] | 701 | /// simple-template-id |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 702 | /// |
Douglas Gregor | 31a19b6 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 703 | Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation, |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 704 | CXXScopeSpec &SS) { |
Douglas Gregor | 7f43d67 | 2009-02-25 23:52:28 +0000 | [diff] [blame] | 705 | // Check whether we have a template-id that names a type. |
| 706 | if (Tok.is(tok::annot_template_id)) { |
Argyrios Kyrtzidis | 25a7676 | 2011-06-22 06:09:49 +0000 | [diff] [blame] | 707 | TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok); |
Douglas Gregor | d9b600c | 2010-01-12 17:52:59 +0000 | [diff] [blame] | 708 | if (TemplateId->Kind == TNK_Type_template || |
| 709 | TemplateId->Kind == TNK_Dependent_template_name) { |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 710 | AnnotateTemplateIdTokenAsType(); |
Douglas Gregor | 7f43d67 | 2009-02-25 23:52:28 +0000 | [diff] [blame] | 711 | |
| 712 | assert(Tok.is(tok::annot_typename) && "template-id -> type failed"); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 713 | ParsedType Type = getTypeAnnotation(Tok); |
Douglas Gregor | 7f43d67 | 2009-02-25 23:52:28 +0000 | [diff] [blame] | 714 | EndLocation = Tok.getAnnotationEndLoc(); |
| 715 | ConsumeToken(); |
Douglas Gregor | 31a19b6 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 716 | |
| 717 | if (Type) |
| 718 | return Type; |
| 719 | return true; |
Douglas Gregor | 7f43d67 | 2009-02-25 23:52:28 +0000 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | // Fall through to produce an error below. |
| 723 | } |
| 724 | |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 725 | if (Tok.isNot(tok::identifier)) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 726 | Diag(Tok, diag::err_expected_class_name); |
Douglas Gregor | 31a19b6 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 727 | return true; |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 728 | } |
| 729 | |
Douglas Gregor | 84d0a19 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 730 | IdentifierInfo *Id = Tok.getIdentifierInfo(); |
| 731 | SourceLocation IdLoc = ConsumeToken(); |
| 732 | |
| 733 | if (Tok.is(tok::less)) { |
| 734 | // It looks the user intended to write a template-id here, but the |
| 735 | // template-name was wrong. Try to fix that. |
| 736 | TemplateNameKind TNK = TNK_Type_template; |
| 737 | TemplateTy Template; |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 738 | if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(), |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 739 | &SS, Template, TNK)) { |
Douglas Gregor | 84d0a19 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 740 | Diag(IdLoc, diag::err_unknown_template_name) |
| 741 | << Id; |
| 742 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 743 | |
Douglas Gregor | 84d0a19 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 744 | if (!Template) |
| 745 | return true; |
| 746 | |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 747 | // Form the template name |
Douglas Gregor | 84d0a19 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 748 | UnqualifiedId TemplateName; |
| 749 | TemplateName.setIdentifier(Id, IdLoc); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 750 | |
Douglas Gregor | 84d0a19 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 751 | // Parse the full template-id, then turn it into a type. |
| 752 | if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName, |
| 753 | SourceLocation(), true)) |
| 754 | return true; |
| 755 | if (TNK == TNK_Dependent_template_name) |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 756 | AnnotateTemplateIdTokenAsType(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 757 | |
Douglas Gregor | 84d0a19 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 758 | // If we didn't end up with a typename token, there's nothing more we |
| 759 | // can do. |
| 760 | if (Tok.isNot(tok::annot_typename)) |
| 761 | return true; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 762 | |
Douglas Gregor | 84d0a19 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 763 | // Retrieve the type from the annotation token, consume that token, and |
| 764 | // return. |
| 765 | EndLocation = Tok.getAnnotationEndLoc(); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 766 | ParsedType Type = getTypeAnnotation(Tok); |
Douglas Gregor | 84d0a19 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 767 | ConsumeToken(); |
| 768 | return Type; |
| 769 | } |
| 770 | |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 771 | // We have an identifier; check whether it is actually a type. |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 772 | ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true, |
Douglas Gregor | 9e87687 | 2011-03-01 18:12:44 +0000 | [diff] [blame] | 773 | false, ParsedType(), |
| 774 | /*NonTrivialTypeSourceInfo=*/true); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 775 | if (!Type) { |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 776 | Diag(IdLoc, diag::err_expected_class_name); |
Douglas Gregor | 31a19b6 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 777 | return true; |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | // Consume the identifier. |
Douglas Gregor | 84d0a19 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 781 | EndLocation = IdLoc; |
Nick Lewycky | 5606220 | 2010-07-26 16:56:01 +0000 | [diff] [blame] | 782 | |
| 783 | // Fake up a Declarator to use with ActOnTypeName. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 784 | DeclSpec DS(AttrFactory); |
Nick Lewycky | 5606220 | 2010-07-26 16:56:01 +0000 | [diff] [blame] | 785 | DS.SetRangeStart(IdLoc); |
| 786 | DS.SetRangeEnd(EndLocation); |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 787 | DS.getTypeSpecScope() = SS; |
Nick Lewycky | 5606220 | 2010-07-26 16:56:01 +0000 | [diff] [blame] | 788 | |
| 789 | const char *PrevSpec = 0; |
| 790 | unsigned DiagID; |
| 791 | DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type); |
| 792 | |
| 793 | Declarator DeclaratorInfo(DS, Declarator::TypeNameContext); |
| 794 | return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 795 | } |
| 796 | |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 797 | /// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or |
| 798 | /// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which |
| 799 | /// until we reach the start of a definition or see a token that |
Sebastian Redl | d9bafa7 | 2010-02-03 21:21:43 +0000 | [diff] [blame] | 800 | /// cannot start a definition. If SuppressDeclarations is true, we do know. |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 801 | /// |
| 802 | /// class-specifier: [C++ class] |
| 803 | /// class-head '{' member-specification[opt] '}' |
| 804 | /// class-head '{' member-specification[opt] '}' attributes[opt] |
| 805 | /// class-head: |
| 806 | /// class-key identifier[opt] base-clause[opt] |
| 807 | /// class-key nested-name-specifier identifier base-clause[opt] |
| 808 | /// class-key nested-name-specifier[opt] simple-template-id |
| 809 | /// base-clause[opt] |
| 810 | /// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt] |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 811 | /// [GNU] class-key attributes[opt] nested-name-specifier |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 812 | /// identifier base-clause[opt] |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 813 | /// [GNU] class-key attributes[opt] nested-name-specifier[opt] |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 814 | /// simple-template-id base-clause[opt] |
| 815 | /// class-key: |
| 816 | /// 'class' |
| 817 | /// 'struct' |
| 818 | /// 'union' |
| 819 | /// |
| 820 | /// elaborated-type-specifier: [C++ dcl.type.elab] |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 821 | /// class-key ::[opt] nested-name-specifier[opt] identifier |
| 822 | /// class-key ::[opt] nested-name-specifier[opt] 'template'[opt] |
| 823 | /// simple-template-id |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 824 | /// |
| 825 | /// Note that the C++ class-specifier and elaborated-type-specifier, |
| 826 | /// together, subsume the C99 struct-or-union-specifier: |
| 827 | /// |
| 828 | /// struct-or-union-specifier: [C99 6.7.2.1] |
| 829 | /// struct-or-union identifier[opt] '{' struct-contents '}' |
| 830 | /// struct-or-union identifier |
| 831 | /// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents |
| 832 | /// '}' attributes[opt] |
| 833 | /// [GNU] struct-or-union attributes[opt] identifier |
| 834 | /// struct-or-union: |
| 835 | /// 'struct' |
| 836 | /// 'union' |
Chris Lattner | 4c97d76 | 2009-04-12 21:49:30 +0000 | [diff] [blame] | 837 | void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind, |
| 838 | SourceLocation StartLoc, DeclSpec &DS, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 839 | const ParsedTemplateInfo &TemplateInfo, |
Sebastian Redl | d9bafa7 | 2010-02-03 21:21:43 +0000 | [diff] [blame] | 840 | AccessSpecifier AS, bool SuppressDeclarations){ |
Chris Lattner | 4c97d76 | 2009-04-12 21:49:30 +0000 | [diff] [blame] | 841 | DeclSpec::TST TagType; |
| 842 | if (TagTokKind == tok::kw_struct) |
| 843 | TagType = DeclSpec::TST_struct; |
| 844 | else if (TagTokKind == tok::kw_class) |
| 845 | TagType = DeclSpec::TST_class; |
| 846 | else { |
| 847 | assert(TagTokKind == tok::kw_union && "Not a class specifier"); |
| 848 | TagType = DeclSpec::TST_union; |
| 849 | } |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 850 | |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 851 | if (Tok.is(tok::code_completion)) { |
| 852 | // Code completion for a struct, class, or union name. |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 853 | Actions.CodeCompleteTag(getCurScope(), TagType); |
Douglas Gregor | dc84534 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 854 | ConsumeCodeCompletionToken(); |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 855 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 856 | |
Chandler Carruth | 926c4b4 | 2010-06-28 08:39:25 +0000 | [diff] [blame] | 857 | // C++03 [temp.explicit] 14.7.2/8: |
| 858 | // The usual access checking rules do not apply to names used to specify |
| 859 | // explicit instantiations. |
| 860 | // |
| 861 | // As an extension we do not perform access checking on the names used to |
| 862 | // specify explicit specializations either. This is important to allow |
| 863 | // specializing traits classes for private types. |
| 864 | bool SuppressingAccessChecks = false; |
| 865 | if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation || |
| 866 | TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) { |
| 867 | Actions.ActOnStartSuppressingAccessChecks(); |
| 868 | SuppressingAccessChecks = true; |
| 869 | } |
| 870 | |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 871 | ParsedAttributes attrs(AttrFactory); |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 872 | // If attributes exist after tag, parse them. |
| 873 | if (Tok.is(tok::kw___attribute)) |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 874 | ParseGNUAttributes(attrs); |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 875 | |
Steve Naroff | f59e17e | 2008-12-24 20:59:21 +0000 | [diff] [blame] | 876 | // If declspecs exist after tag, parse them. |
John McCall | b1d397c | 2010-08-05 17:13:11 +0000 | [diff] [blame] | 877 | while (Tok.is(tok::kw___declspec)) |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 878 | ParseMicrosoftDeclSpec(attrs); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 879 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 880 | // If C++0x attributes exist here, parse them. |
| 881 | // FIXME: Are we consistent with the ordering of parsing of different |
| 882 | // styles of attributes? |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 883 | MaybeParseCXX0XAttributes(attrs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 884 | |
John Wiegley | 20c0da7 | 2011-04-27 23:09:49 +0000 | [diff] [blame] | 885 | if (TagType == DeclSpec::TST_struct && |
Douglas Gregor | b467cda | 2011-04-29 15:31:39 +0000 | [diff] [blame] | 886 | !Tok.is(tok::identifier) && |
| 887 | Tok.getIdentifierInfo() && |
| 888 | (Tok.is(tok::kw___is_arithmetic) || |
| 889 | Tok.is(tok::kw___is_convertible) || |
John Wiegley | 20c0da7 | 2011-04-27 23:09:49 +0000 | [diff] [blame] | 890 | Tok.is(tok::kw___is_empty) || |
Douglas Gregor | b467cda | 2011-04-29 15:31:39 +0000 | [diff] [blame] | 891 | Tok.is(tok::kw___is_floating_point) || |
| 892 | Tok.is(tok::kw___is_function) || |
John Wiegley | 20c0da7 | 2011-04-27 23:09:49 +0000 | [diff] [blame] | 893 | Tok.is(tok::kw___is_fundamental) || |
Douglas Gregor | b467cda | 2011-04-29 15:31:39 +0000 | [diff] [blame] | 894 | Tok.is(tok::kw___is_integral) || |
| 895 | Tok.is(tok::kw___is_member_function_pointer) || |
| 896 | Tok.is(tok::kw___is_member_pointer) || |
| 897 | Tok.is(tok::kw___is_pod) || |
| 898 | Tok.is(tok::kw___is_pointer) || |
| 899 | Tok.is(tok::kw___is_same) || |
Douglas Gregor | 877222e | 2011-04-29 01:38:03 +0000 | [diff] [blame] | 900 | Tok.is(tok::kw___is_scalar) || |
Douglas Gregor | b467cda | 2011-04-29 15:31:39 +0000 | [diff] [blame] | 901 | Tok.is(tok::kw___is_signed) || |
| 902 | Tok.is(tok::kw___is_unsigned) || |
| 903 | Tok.is(tok::kw___is_void))) { |
Douglas Gregor | 6887614 | 2011-07-30 07:01:49 +0000 | [diff] [blame] | 904 | // GNU libstdc++ 4.2 and libc++ use certain intrinsic names as the |
Douglas Gregor | b467cda | 2011-04-29 15:31:39 +0000 | [diff] [blame] | 905 | // name of struct templates, but some are keywords in GCC >= 4.3 |
| 906 | // and Clang. Therefore, when we see the token sequence "struct |
| 907 | // X", make X into a normal identifier rather than a keyword, to |
| 908 | // allow libstdc++ 4.2 and libc++ to work properly. |
Argyrios Kyrtzidis | 646395b | 2010-08-11 22:55:12 +0000 | [diff] [blame] | 909 | Tok.getIdentifierInfo()->RevertTokenIDToIdentifier(); |
Douglas Gregor | b117a60 | 2009-09-04 05:53:02 +0000 | [diff] [blame] | 910 | Tok.setKind(tok::identifier); |
| 911 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 912 | |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 913 | // Parse the (optional) nested-name-specifier. |
John McCall | aa87d33 | 2009-12-12 11:40:51 +0000 | [diff] [blame] | 914 | CXXScopeSpec &SS = DS.getTypeSpecScope(); |
Chris Lattner | 08d92ec | 2009-12-10 00:32:41 +0000 | [diff] [blame] | 915 | if (getLang().CPlusPlus) { |
| 916 | // "FOO : BAR" is not a potential typo for "FOO::BAR". |
| 917 | ColonProtectionRAIIObject X(*this); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 918 | |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 919 | if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), true)) |
John McCall | 207014e | 2010-07-30 06:26:29 +0000 | [diff] [blame] | 920 | DS.SetTypeSpecError(); |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 921 | if (SS.isSet()) |
Chris Lattner | 08d92ec | 2009-12-10 00:32:41 +0000 | [diff] [blame] | 922 | if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id)) |
| 923 | Diag(Tok, diag::err_expected_ident); |
| 924 | } |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 925 | |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 926 | TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams; |
| 927 | |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 928 | // Parse the (optional) class name or simple-template-id. |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 929 | IdentifierInfo *Name = 0; |
| 930 | SourceLocation NameLoc; |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 931 | TemplateIdAnnotation *TemplateId = 0; |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 932 | if (Tok.is(tok::identifier)) { |
| 933 | Name = Tok.getIdentifierInfo(); |
| 934 | NameLoc = ConsumeToken(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 935 | |
Douglas Gregor | 5ee3734 | 2010-05-30 22:30:21 +0000 | [diff] [blame] | 936 | if (Tok.is(tok::less) && getLang().CPlusPlus) { |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 937 | // The name was supposed to refer to a template, but didn't. |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 938 | // Eat the template argument list and try to continue parsing this as |
| 939 | // a class (or template thereof). |
| 940 | TemplateArgList TemplateArgs; |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 941 | SourceLocation LAngleLoc, RAngleLoc; |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 942 | if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS, |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 943 | true, LAngleLoc, |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 944 | TemplateArgs, RAngleLoc)) { |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 945 | // We couldn't parse the template argument list at all, so don't |
| 946 | // try to give any location information for the list. |
| 947 | LAngleLoc = RAngleLoc = SourceLocation(); |
| 948 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 949 | |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 950 | Diag(NameLoc, diag::err_explicit_spec_non_template) |
Douglas Gregor | c78c06d | 2009-10-30 22:09:44 +0000 | [diff] [blame] | 951 | << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 952 | << (TagType == DeclSpec::TST_class? 0 |
| 953 | : TagType == DeclSpec::TST_struct? 1 |
| 954 | : 2) |
| 955 | << Name |
| 956 | << SourceRange(LAngleLoc, RAngleLoc); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 957 | |
| 958 | // Strip off the last template parameter list if it was empty, since |
Douglas Gregor | c78c06d | 2009-10-30 22:09:44 +0000 | [diff] [blame] | 959 | // we've removed its template argument list. |
| 960 | if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) { |
| 961 | if (TemplateParams && TemplateParams->size() > 1) { |
| 962 | TemplateParams->pop_back(); |
| 963 | } else { |
| 964 | TemplateParams = 0; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 965 | const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind |
Douglas Gregor | c78c06d | 2009-10-30 22:09:44 +0000 | [diff] [blame] | 966 | = ParsedTemplateInfo::NonTemplate; |
| 967 | } |
| 968 | } else if (TemplateInfo.Kind |
| 969 | == ParsedTemplateInfo::ExplicitInstantiation) { |
| 970 | // Pretend this is just a forward declaration. |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 971 | TemplateParams = 0; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 972 | const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 973 | = ParsedTemplateInfo::NonTemplate; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 974 | const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc |
Douglas Gregor | c78c06d | 2009-10-30 22:09:44 +0000 | [diff] [blame] | 975 | = SourceLocation(); |
| 976 | const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc |
| 977 | = SourceLocation(); |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 978 | } |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 979 | } |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 980 | } else if (Tok.is(tok::annot_template_id)) { |
Argyrios Kyrtzidis | 25a7676 | 2011-06-22 06:09:49 +0000 | [diff] [blame] | 981 | TemplateId = takeTemplateIdAnnotation(Tok); |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 982 | NameLoc = ConsumeToken(); |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 983 | |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 984 | if (TemplateId->Kind != TNK_Type_template && |
| 985 | TemplateId->Kind != TNK_Dependent_template_name) { |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 986 | // The template-name in the simple-template-id refers to |
| 987 | // something other than a class template. Give an appropriate |
| 988 | // error message and skip to the ';'. |
| 989 | SourceRange Range(NameLoc); |
| 990 | if (SS.isNotEmpty()) |
| 991 | Range.setBegin(SS.getBeginLoc()); |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 992 | |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 993 | Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template) |
| 994 | << Name << static_cast<int>(TemplateId->Kind) << Range; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 995 | |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 996 | DS.SetTypeSpecError(); |
| 997 | SkipUntil(tok::semi, false, true); |
Chandler Carruth | 926c4b4 | 2010-06-28 08:39:25 +0000 | [diff] [blame] | 998 | if (SuppressingAccessChecks) |
| 999 | Actions.ActOnStopSuppressingAccessChecks(); |
| 1000 | |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 1001 | return; |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 1002 | } |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1003 | } |
| 1004 | |
Chandler Carruth | 926c4b4 | 2010-06-28 08:39:25 +0000 | [diff] [blame] | 1005 | // As soon as we're finished parsing the class's template-id, turn access |
| 1006 | // checking back on. |
| 1007 | if (SuppressingAccessChecks) |
| 1008 | Actions.ActOnStopSuppressingAccessChecks(); |
| 1009 | |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 1010 | // There are four options here. If we have 'struct foo;', then this |
| 1011 | // is either a forward declaration or a friend declaration, which |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1012 | // have to be treated differently. If we have 'struct foo {...', |
Anders Carlsson | 1d20927 | 2011-03-25 14:55:14 +0000 | [diff] [blame] | 1013 | // 'struct foo :...' or 'struct foo final[opt]' then this is a |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1014 | // definition. Otherwise we have something like 'struct foo xyz', a reference. |
Sebastian Redl | d9bafa7 | 2010-02-03 21:21:43 +0000 | [diff] [blame] | 1015 | // However, in some contexts, things look like declarations but are just |
| 1016 | // references, e.g. |
| 1017 | // new struct s; |
| 1018 | // or |
| 1019 | // &T::operator struct s; |
| 1020 | // For these, SuppressDeclarations is true. |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1021 | Sema::TagUseKind TUK; |
Sebastian Redl | d9bafa7 | 2010-02-03 21:21:43 +0000 | [diff] [blame] | 1022 | if (SuppressDeclarations) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1023 | TUK = Sema::TUK_Reference; |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1024 | else if (Tok.is(tok::l_brace) || |
| 1025 | (getLang().CPlusPlus && Tok.is(tok::colon)) || |
Anders Carlsson | 8a29ba0 | 2011-03-25 14:53:29 +0000 | [diff] [blame] | 1026 | isCXX0XFinalKeyword()) { |
Douglas Gregor | d85bea2 | 2009-09-26 06:47:28 +0000 | [diff] [blame] | 1027 | if (DS.isFriendSpecified()) { |
| 1028 | // C++ [class.friend]p2: |
| 1029 | // A class shall not be defined in a friend declaration. |
| 1030 | Diag(Tok.getLocation(), diag::err_friend_decl_defines_class) |
| 1031 | << SourceRange(DS.getFriendSpecLoc()); |
| 1032 | |
| 1033 | // Skip everything up to the semicolon, so that this looks like a proper |
| 1034 | // friend class (or template thereof) declaration. |
| 1035 | SkipUntil(tok::semi, true, true); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1036 | TUK = Sema::TUK_Friend; |
Douglas Gregor | d85bea2 | 2009-09-26 06:47:28 +0000 | [diff] [blame] | 1037 | } else { |
| 1038 | // Okay, this is a class definition. |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1039 | TUK = Sema::TUK_Definition; |
Douglas Gregor | d85bea2 | 2009-09-26 06:47:28 +0000 | [diff] [blame] | 1040 | } |
| 1041 | } else if (Tok.is(tok::semi)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1042 | TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration; |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1043 | else |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1044 | TUK = Sema::TUK_Reference; |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1045 | |
John McCall | 207014e | 2010-07-30 06:26:29 +0000 | [diff] [blame] | 1046 | if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error || |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1047 | TUK != Sema::TUK_Definition)) { |
John McCall | 207014e | 2010-07-30 06:26:29 +0000 | [diff] [blame] | 1048 | if (DS.getTypeSpecType() != DeclSpec::TST_error) { |
| 1049 | // We have a declaration or reference to an anonymous class. |
| 1050 | Diag(StartLoc, diag::err_anon_type_definition) |
| 1051 | << DeclSpec::getSpecifierName(TagType); |
| 1052 | } |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1053 | |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1054 | SkipUntil(tok::comma, true); |
| 1055 | return; |
| 1056 | } |
| 1057 | |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1058 | // Create the tag portion of the class or class template. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1059 | DeclResult TagOrTempResult = true; // invalid |
| 1060 | TypeResult TypeResult = true; // invalid |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1061 | |
Douglas Gregor | 402abb5 | 2009-05-28 23:31:59 +0000 | [diff] [blame] | 1062 | bool Owned = false; |
John McCall | f1bbbb4 | 2009-09-04 01:14:41 +0000 | [diff] [blame] | 1063 | if (TemplateId) { |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1064 | // Explicit specialization, class template partial specialization, |
| 1065 | // or explicit instantiation. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1066 | ASTTemplateArgsPtr TemplateArgsPtr(Actions, |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 1067 | TemplateId->getTemplateArgs(), |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 1068 | TemplateId->NumArgs); |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1069 | if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation && |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1070 | TUK == Sema::TUK_Declaration) { |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1071 | // This is an explicit instantiation of a class template. |
| 1072 | TagOrTempResult |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1073 | = Actions.ActOnExplicitInstantiation(getCurScope(), |
Douglas Gregor | 45f9655 | 2009-09-04 06:33:52 +0000 | [diff] [blame] | 1074 | TemplateInfo.ExternLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1075 | TemplateInfo.TemplateLoc, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1076 | TagType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1077 | StartLoc, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1078 | SS, |
John McCall | 2b5289b | 2010-08-23 07:28:44 +0000 | [diff] [blame] | 1079 | TemplateId->Template, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1080 | TemplateId->TemplateNameLoc, |
| 1081 | TemplateId->LAngleLoc, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1082 | TemplateArgsPtr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1083 | TemplateId->RAngleLoc, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1084 | attrs.getList()); |
John McCall | 74256f5 | 2010-04-14 00:24:33 +0000 | [diff] [blame] | 1085 | |
| 1086 | // Friend template-ids are treated as references unless |
| 1087 | // they have template headers, in which case they're ill-formed |
| 1088 | // (FIXME: "template <class T> friend class A<T>::B<int>;"). |
| 1089 | // We diagnose this error in ActOnClassTemplateSpecialization. |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1090 | } else if (TUK == Sema::TUK_Reference || |
| 1091 | (TUK == Sema::TUK_Friend && |
John McCall | 74256f5 | 2010-04-14 00:24:33 +0000 | [diff] [blame] | 1092 | TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) { |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 1093 | TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType, |
| 1094 | StartLoc, |
| 1095 | TemplateId->SS, |
| 1096 | TemplateId->Template, |
| 1097 | TemplateId->TemplateNameLoc, |
| 1098 | TemplateId->LAngleLoc, |
| 1099 | TemplateArgsPtr, |
| 1100 | TemplateId->RAngleLoc); |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1101 | } else { |
| 1102 | // This is an explicit specialization or a class template |
| 1103 | // partial specialization. |
| 1104 | TemplateParameterLists FakedParamLists; |
| 1105 | |
| 1106 | if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) { |
| 1107 | // This looks like an explicit instantiation, because we have |
| 1108 | // something like |
| 1109 | // |
| 1110 | // template class Foo<X> |
| 1111 | // |
Douglas Gregor | 3f5b61c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 1112 | // but it actually has a definition. Most likely, this was |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1113 | // meant to be an explicit specialization, but the user forgot |
| 1114 | // the '<>' after 'template'. |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1115 | assert(TUK == Sema::TUK_Definition && "Expected a definition here"); |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1116 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1117 | SourceLocation LAngleLoc |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1118 | = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1119 | Diag(TemplateId->TemplateNameLoc, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1120 | diag::err_explicit_instantiation_with_definition) |
| 1121 | << SourceRange(TemplateInfo.TemplateLoc) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 1122 | << FixItHint::CreateInsertion(LAngleLoc, "<>"); |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1123 | |
| 1124 | // Create a fake template parameter list that contains only |
| 1125 | // "template<>", so that we treat this construct as a class |
| 1126 | // template specialization. |
| 1127 | FakedParamLists.push_back( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1128 | Actions.ActOnTemplateParameterList(0, SourceLocation(), |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1129 | TemplateInfo.TemplateLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1130 | LAngleLoc, |
| 1131 | 0, 0, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1132 | LAngleLoc)); |
| 1133 | TemplateParams = &FakedParamLists; |
| 1134 | } |
| 1135 | |
| 1136 | // Build the class template specialization. |
| 1137 | TagOrTempResult |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1138 | = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK, |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 1139 | StartLoc, SS, |
John McCall | 2b5289b | 2010-08-23 07:28:44 +0000 | [diff] [blame] | 1140 | TemplateId->Template, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1141 | TemplateId->TemplateNameLoc, |
| 1142 | TemplateId->LAngleLoc, |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 1143 | TemplateArgsPtr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1144 | TemplateId->RAngleLoc, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1145 | attrs.getList(), |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1146 | MultiTemplateParamsArg(Actions, |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 1147 | TemplateParams? &(*TemplateParams)[0] : 0, |
| 1148 | TemplateParams? TemplateParams->size() : 0)); |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1149 | } |
Douglas Gregor | 3f5b61c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 1150 | } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation && |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1151 | TUK == Sema::TUK_Declaration) { |
Douglas Gregor | 3f5b61c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 1152 | // Explicit instantiation of a member of a class template |
| 1153 | // specialization, e.g., |
| 1154 | // |
| 1155 | // template struct Outer<int>::Inner; |
| 1156 | // |
| 1157 | TagOrTempResult |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1158 | = Actions.ActOnExplicitInstantiation(getCurScope(), |
Douglas Gregor | 45f9655 | 2009-09-04 06:33:52 +0000 | [diff] [blame] | 1159 | TemplateInfo.ExternLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1160 | TemplateInfo.TemplateLoc, |
| 1161 | TagType, StartLoc, SS, Name, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1162 | NameLoc, attrs.getList()); |
John McCall | 9a34edb | 2010-10-19 01:40:49 +0000 | [diff] [blame] | 1163 | } else if (TUK == Sema::TUK_Friend && |
| 1164 | TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) { |
| 1165 | TagOrTempResult = |
| 1166 | Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(), |
| 1167 | TagType, StartLoc, SS, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1168 | Name, NameLoc, attrs.getList(), |
John McCall | 9a34edb | 2010-10-19 01:40:49 +0000 | [diff] [blame] | 1169 | MultiTemplateParamsArg(Actions, |
| 1170 | TemplateParams? &(*TemplateParams)[0] : 0, |
| 1171 | TemplateParams? TemplateParams->size() : 0)); |
Douglas Gregor | 3f5b61c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 1172 | } else { |
| 1173 | if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation && |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1174 | TUK == Sema::TUK_Definition) { |
Douglas Gregor | 3f5b61c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 1175 | // FIXME: Diagnose this particular error. |
| 1176 | } |
| 1177 | |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 1178 | bool IsDependent = false; |
| 1179 | |
John McCall | a25c408 | 2010-10-19 18:40:57 +0000 | [diff] [blame] | 1180 | // Don't pass down template parameter lists if this is just a tag |
| 1181 | // reference. For example, we don't need the template parameters here: |
| 1182 | // template <class T> class A *makeA(T t); |
| 1183 | MultiTemplateParamsArg TParams; |
| 1184 | if (TUK != Sema::TUK_Reference && TemplateParams) |
| 1185 | TParams = |
| 1186 | MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size()); |
| 1187 | |
Douglas Gregor | 3f5b61c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 1188 | // Declaration or definition of a class type |
John McCall | 9a34edb | 2010-10-19 01:40:49 +0000 | [diff] [blame] | 1189 | TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1190 | SS, Name, NameLoc, attrs.getList(), AS, |
John McCall | a25c408 | 2010-10-19 18:40:57 +0000 | [diff] [blame] | 1191 | TParams, Owned, IsDependent, false, |
Abramo Bagnara | a88cefd | 2010-12-03 18:54:17 +0000 | [diff] [blame] | 1192 | false, clang::TypeResult()); |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 1193 | |
| 1194 | // If ActOnTag said the type was dependent, try again with the |
| 1195 | // less common call. |
John McCall | 9a34edb | 2010-10-19 01:40:49 +0000 | [diff] [blame] | 1196 | if (IsDependent) { |
| 1197 | assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1198 | TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK, |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1199 | SS, Name, StartLoc, NameLoc); |
John McCall | 9a34edb | 2010-10-19 01:40:49 +0000 | [diff] [blame] | 1200 | } |
Douglas Gregor | 3f5b61c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 1201 | } |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1202 | |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1203 | // If there is a body, parse it and inform the actions module. |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1204 | if (TUK == Sema::TUK_Definition) { |
John McCall | bd0dfa5 | 2009-12-19 21:48:58 +0000 | [diff] [blame] | 1205 | assert(Tok.is(tok::l_brace) || |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1206 | (getLang().CPlusPlus && Tok.is(tok::colon)) || |
Anders Carlsson | 8a29ba0 | 2011-03-25 14:53:29 +0000 | [diff] [blame] | 1207 | isCXX0XFinalKeyword()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1208 | if (getLang().CPlusPlus) |
Douglas Gregor | 212e81c | 2009-03-25 00:13:59 +0000 | [diff] [blame] | 1209 | ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1210 | else |
Douglas Gregor | 212e81c | 2009-03-25 00:13:59 +0000 | [diff] [blame] | 1211 | ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get()); |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1212 | } |
| 1213 | |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1214 | const char *PrevSpec = 0; |
| 1215 | unsigned DiagID; |
| 1216 | bool Result; |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 1217 | if (!TypeResult.isInvalid()) { |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 1218 | Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc, |
| 1219 | NameLoc.isValid() ? NameLoc : StartLoc, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1220 | PrevSpec, DiagID, TypeResult.get()); |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 1221 | } else if (!TagOrTempResult.isInvalid()) { |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 1222 | Result = DS.SetTypeSpecType(TagType, StartLoc, |
| 1223 | NameLoc.isValid() ? NameLoc : StartLoc, |
| 1224 | PrevSpec, DiagID, TagOrTempResult.get(), Owned); |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 1225 | } else { |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1226 | DS.SetTypeSpecError(); |
Anders Carlsson | 66e9977 | 2009-05-11 22:27:47 +0000 | [diff] [blame] | 1227 | return; |
| 1228 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1229 | |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1230 | if (Result) |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 1231 | Diag(StartLoc, DiagID) << PrevSpec; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1232 | |
Chris Lattner | 4ed5d91 | 2010-02-02 01:23:29 +0000 | [diff] [blame] | 1233 | // At this point, we've successfully parsed a class-specifier in 'definition' |
| 1234 | // form (e.g. "struct foo { int x; }". While we could just return here, we're |
| 1235 | // going to look at what comes after it to improve error recovery. If an |
| 1236 | // impossible token occurs next, we assume that the programmer forgot a ; at |
| 1237 | // the end of the declaration and recover that way. |
| 1238 | // |
| 1239 | // This switch enumerates the valid "follow" set for definition. |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1240 | if (TUK == Sema::TUK_Definition) { |
Chris Lattner | b3a4e43 | 2010-02-28 18:18:36 +0000 | [diff] [blame] | 1241 | bool ExpectedSemi = true; |
Chris Lattner | 4ed5d91 | 2010-02-02 01:23:29 +0000 | [diff] [blame] | 1242 | switch (Tok.getKind()) { |
Chris Lattner | b3a4e43 | 2010-02-28 18:18:36 +0000 | [diff] [blame] | 1243 | default: break; |
Chris Lattner | 4ed5d91 | 2010-02-02 01:23:29 +0000 | [diff] [blame] | 1244 | case tok::semi: // struct foo {...} ; |
Chris Lattner | 99c9520 | 2010-02-02 17:32:27 +0000 | [diff] [blame] | 1245 | case tok::star: // struct foo {...} * P; |
| 1246 | case tok::amp: // struct foo {...} & R = ... |
| 1247 | case tok::identifier: // struct foo {...} V ; |
| 1248 | case tok::r_paren: //(struct foo {...} ) {4} |
| 1249 | case tok::annot_cxxscope: // struct foo {...} a:: b; |
| 1250 | case tok::annot_typename: // struct foo {...} a ::b; |
| 1251 | case tok::annot_template_id: // struct foo {...} a<int> ::b; |
Chris Lattner | c2e1c1a | 2010-02-03 20:41:24 +0000 | [diff] [blame] | 1252 | case tok::l_paren: // struct foo {...} ( x); |
Chris Lattner | 16acfee | 2010-02-03 01:45:03 +0000 | [diff] [blame] | 1253 | case tok::comma: // __builtin_offsetof(struct foo{...} , |
Chris Lattner | b3a4e43 | 2010-02-28 18:18:36 +0000 | [diff] [blame] | 1254 | ExpectedSemi = false; |
| 1255 | break; |
| 1256 | // Type qualifiers |
| 1257 | case tok::kw_const: // struct foo {...} const x; |
| 1258 | case tok::kw_volatile: // struct foo {...} volatile x; |
| 1259 | case tok::kw_restrict: // struct foo {...} restrict x; |
| 1260 | case tok::kw_inline: // struct foo {...} inline foo() {}; |
Chris Lattner | 99c9520 | 2010-02-02 17:32:27 +0000 | [diff] [blame] | 1261 | // Storage-class specifiers |
| 1262 | case tok::kw_static: // struct foo {...} static x; |
| 1263 | case tok::kw_extern: // struct foo {...} extern x; |
| 1264 | case tok::kw_typedef: // struct foo {...} typedef x; |
| 1265 | case tok::kw_register: // struct foo {...} register x; |
| 1266 | case tok::kw_auto: // struct foo {...} auto x; |
Douglas Gregor | 33f9924 | 2010-05-17 18:19:56 +0000 | [diff] [blame] | 1267 | case tok::kw_mutable: // struct foo {...} mutable x; |
Chris Lattner | b3a4e43 | 2010-02-28 18:18:36 +0000 | [diff] [blame] | 1268 | // As shown above, type qualifiers and storage class specifiers absolutely |
| 1269 | // can occur after class specifiers according to the grammar. However, |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 1270 | // almost no one actually writes code like this. If we see one of these, |
Chris Lattner | b3a4e43 | 2010-02-28 18:18:36 +0000 | [diff] [blame] | 1271 | // it is much more likely that someone missed a semi colon and the |
| 1272 | // type/storage class specifier we're seeing is part of the *next* |
| 1273 | // intended declaration, as in: |
| 1274 | // |
| 1275 | // struct foo { ... } |
| 1276 | // typedef int X; |
| 1277 | // |
| 1278 | // We'd really like to emit a missing semicolon error instead of emitting |
| 1279 | // an error on the 'int' saying that you can't have two type specifiers in |
| 1280 | // the same declaration of X. Because of this, we look ahead past this |
| 1281 | // token to see if it's a type specifier. If so, we know the code is |
| 1282 | // otherwise invalid, so we can produce the expected semi error. |
| 1283 | if (!isKnownToBeTypeSpecifier(NextToken())) |
| 1284 | ExpectedSemi = false; |
Chris Lattner | 4ed5d91 | 2010-02-02 01:23:29 +0000 | [diff] [blame] | 1285 | break; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1286 | |
| 1287 | case tok::r_brace: // struct bar { struct foo {...} } |
Chris Lattner | 4ed5d91 | 2010-02-02 01:23:29 +0000 | [diff] [blame] | 1288 | // Missing ';' at end of struct is accepted as an extension in C mode. |
Chris Lattner | b3a4e43 | 2010-02-28 18:18:36 +0000 | [diff] [blame] | 1289 | if (!getLang().CPlusPlus) |
| 1290 | ExpectedSemi = false; |
| 1291 | break; |
| 1292 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1293 | |
Richard Smith | cf6b0a2 | 2011-07-14 21:35:26 +0000 | [diff] [blame] | 1294 | // C++ [temp]p3 In a template-declaration which defines a class, no |
| 1295 | // declarator is permitted. |
| 1296 | if (TemplateInfo.Kind) |
| 1297 | ExpectedSemi = true; |
| 1298 | |
Chris Lattner | b3a4e43 | 2010-02-28 18:18:36 +0000 | [diff] [blame] | 1299 | if (ExpectedSemi) { |
Chris Lattner | 4ed5d91 | 2010-02-02 01:23:29 +0000 | [diff] [blame] | 1300 | ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl, |
| 1301 | TagType == DeclSpec::TST_class ? "class" |
| 1302 | : TagType == DeclSpec::TST_struct? "struct" : "union"); |
| 1303 | // Push this token back into the preprocessor and change our current token |
| 1304 | // to ';' so that the rest of the code recovers as though there were an |
| 1305 | // ';' after the definition. |
| 1306 | PP.EnterToken(Tok); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1307 | Tok.setKind(tok::semi); |
Chris Lattner | 4ed5d91 | 2010-02-02 01:23:29 +0000 | [diff] [blame] | 1308 | } |
| 1309 | } |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1310 | } |
| 1311 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1312 | /// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived]. |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1313 | /// |
| 1314 | /// base-clause : [C++ class.derived] |
| 1315 | /// ':' base-specifier-list |
| 1316 | /// base-specifier-list: |
| 1317 | /// base-specifier '...'[opt] |
| 1318 | /// base-specifier-list ',' base-specifier '...'[opt] |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1319 | void Parser::ParseBaseClause(Decl *ClassDecl) { |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1320 | assert(Tok.is(tok::colon) && "Not a base clause"); |
| 1321 | ConsumeToken(); |
| 1322 | |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 1323 | // Build up an array of parsed base specifiers. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1324 | SmallVector<CXXBaseSpecifier *, 8> BaseInfo; |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 1325 | |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1326 | while (true) { |
| 1327 | // Parse a base-specifier. |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 1328 | BaseResult Result = ParseBaseSpecifier(ClassDecl); |
Douglas Gregor | 5ac8aff | 2009-01-26 22:44:13 +0000 | [diff] [blame] | 1329 | if (Result.isInvalid()) { |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1330 | // Skip the rest of this base specifier, up until the comma or |
| 1331 | // opening brace. |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 1332 | SkipUntil(tok::comma, tok::l_brace, true, true); |
| 1333 | } else { |
| 1334 | // Add this to our array of base specifiers. |
Douglas Gregor | 5ac8aff | 2009-01-26 22:44:13 +0000 | [diff] [blame] | 1335 | BaseInfo.push_back(Result.get()); |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1336 | } |
| 1337 | |
| 1338 | // If the next token is a comma, consume it and keep reading |
| 1339 | // base-specifiers. |
| 1340 | if (Tok.isNot(tok::comma)) break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1341 | |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1342 | // Consume the comma. |
| 1343 | ConsumeToken(); |
| 1344 | } |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 1345 | |
| 1346 | // Attach the base specifiers |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 1347 | Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size()); |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1348 | } |
| 1349 | |
| 1350 | /// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is |
| 1351 | /// one entry in the base class list of a class specifier, for example: |
| 1352 | /// class foo : public bar, virtual private baz { |
| 1353 | /// 'public bar' and 'virtual private baz' are each base-specifiers. |
| 1354 | /// |
| 1355 | /// base-specifier: [C++ class.derived] |
| 1356 | /// ::[opt] nested-name-specifier[opt] class-name |
| 1357 | /// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt] |
| 1358 | /// class-name |
| 1359 | /// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt] |
| 1360 | /// class-name |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1361 | Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) { |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1362 | bool IsVirtual = false; |
| 1363 | SourceLocation StartLoc = Tok.getLocation(); |
| 1364 | |
| 1365 | // Parse the 'virtual' keyword. |
| 1366 | if (Tok.is(tok::kw_virtual)) { |
| 1367 | ConsumeToken(); |
| 1368 | IsVirtual = true; |
| 1369 | } |
| 1370 | |
| 1371 | // Parse an (optional) access specifier. |
| 1372 | AccessSpecifier Access = getAccessSpecifierIfPresent(); |
John McCall | 92f8831 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 1373 | if (Access != AS_none) |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1374 | ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1375 | |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1376 | // Parse the 'virtual' keyword (again!), in case it came after the |
| 1377 | // access specifier. |
| 1378 | if (Tok.is(tok::kw_virtual)) { |
| 1379 | SourceLocation VirtualLoc = ConsumeToken(); |
| 1380 | if (IsVirtual) { |
| 1381 | // Complain about duplicate 'virtual' |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 1382 | Diag(VirtualLoc, diag::err_dup_virtual) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 1383 | << FixItHint::CreateRemoval(VirtualLoc); |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1384 | } |
| 1385 | |
| 1386 | IsVirtual = true; |
| 1387 | } |
| 1388 | |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 1389 | // Parse optional '::' and optional nested-name-specifier. |
| 1390 | CXXScopeSpec SS; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1391 | ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false); |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1392 | |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1393 | // The location of the base class itself. |
| 1394 | SourceLocation BaseLoc = Tok.getLocation(); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 1395 | |
| 1396 | // Parse the class-name. |
Douglas Gregor | 7f43d67 | 2009-02-25 23:52:28 +0000 | [diff] [blame] | 1397 | SourceLocation EndLocation; |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 1398 | TypeResult BaseType = ParseClassName(EndLocation, SS); |
Douglas Gregor | 31a19b6 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 1399 | if (BaseType.isInvalid()) |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 1400 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1401 | |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1402 | // Parse the optional ellipsis (for a pack expansion). The ellipsis is |
| 1403 | // actually part of the base-specifier-list grammar productions, but we |
| 1404 | // parse it here for convenience. |
| 1405 | SourceLocation EllipsisLoc; |
| 1406 | if (Tok.is(tok::ellipsis)) |
| 1407 | EllipsisLoc = ConsumeToken(); |
| 1408 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1409 | // Find the complete source range for the base-specifier. |
Douglas Gregor | 7f43d67 | 2009-02-25 23:52:28 +0000 | [diff] [blame] | 1410 | SourceRange Range(StartLoc, EndLocation); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1411 | |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1412 | // Notify semantic analysis that we have parsed a complete |
| 1413 | // base-specifier. |
Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 1414 | return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access, |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1415 | BaseType.get(), BaseLoc, EllipsisLoc); |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1416 | } |
| 1417 | |
| 1418 | /// getAccessSpecifierIfPresent - Determine whether the next token is |
| 1419 | /// a C++ access-specifier. |
| 1420 | /// |
| 1421 | /// access-specifier: [C++ class.derived] |
| 1422 | /// 'private' |
| 1423 | /// 'protected' |
| 1424 | /// 'public' |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1425 | AccessSpecifier Parser::getAccessSpecifierIfPresent() const { |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 1426 | switch (Tok.getKind()) { |
| 1427 | default: return AS_none; |
| 1428 | case tok::kw_private: return AS_private; |
| 1429 | case tok::kw_protected: return AS_protected; |
| 1430 | case tok::kw_public: return AS_public; |
| 1431 | } |
| 1432 | } |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1433 | |
Eli Friedman | d33133c | 2009-07-22 21:45:50 +0000 | [diff] [blame] | 1434 | void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo, |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1435 | Decl *ThisDecl) { |
Eli Friedman | d33133c | 2009-07-22 21:45:50 +0000 | [diff] [blame] | 1436 | // We just declared a member function. If this member function |
| 1437 | // has any default arguments, we'll need to parse them later. |
| 1438 | LateParsedMethodDeclaration *LateMethod = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1439 | DeclaratorChunk::FunctionTypeInfo &FTI |
Abramo Bagnara | 075f8f1 | 2010-12-10 16:29:40 +0000 | [diff] [blame] | 1440 | = DeclaratorInfo.getFunctionTypeInfo(); |
Eli Friedman | d33133c | 2009-07-22 21:45:50 +0000 | [diff] [blame] | 1441 | for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) { |
| 1442 | if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) { |
| 1443 | if (!LateMethod) { |
| 1444 | // Push this method onto the stack of late-parsed method |
| 1445 | // declarations. |
Douglas Gregor | d54eb44 | 2010-10-12 16:25:54 +0000 | [diff] [blame] | 1446 | LateMethod = new LateParsedMethodDeclaration(this, ThisDecl); |
| 1447 | getCurrentClass().LateParsedDeclarations.push_back(LateMethod); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1448 | LateMethod->TemplateScope = getCurScope()->isTemplateParamScope(); |
Eli Friedman | d33133c | 2009-07-22 21:45:50 +0000 | [diff] [blame] | 1449 | |
| 1450 | // Add all of the parameters prior to this one (they don't |
| 1451 | // have default arguments). |
| 1452 | LateMethod->DefaultArgs.reserve(FTI.NumArgs); |
| 1453 | for (unsigned I = 0; I < ParamIdx; ++I) |
| 1454 | LateMethod->DefaultArgs.push_back( |
Douglas Gregor | 8f8210c | 2010-03-02 01:29:43 +0000 | [diff] [blame] | 1455 | LateParsedDefaultArgument(FTI.ArgInfo[I].Param)); |
Eli Friedman | d33133c | 2009-07-22 21:45:50 +0000 | [diff] [blame] | 1456 | } |
| 1457 | |
| 1458 | // Add this parameter to the list of parameters (it or may |
| 1459 | // not have a default argument). |
| 1460 | LateMethod->DefaultArgs.push_back( |
| 1461 | LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param, |
| 1462 | FTI.ArgInfo[ParamIdx].DefaultArgTokens)); |
| 1463 | } |
| 1464 | } |
| 1465 | } |
| 1466 | |
Anders Carlsson | 1f3b6fd | 2011-01-16 23:56:42 +0000 | [diff] [blame] | 1467 | /// isCXX0XVirtSpecifier - Determine whether the next token is a C++0x |
| 1468 | /// virt-specifier. |
| 1469 | /// |
| 1470 | /// virt-specifier: |
| 1471 | /// override |
| 1472 | /// final |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1473 | VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier() const { |
Anders Carlsson | ce93a7c | 2011-01-22 23:01:49 +0000 | [diff] [blame] | 1474 | if (!getLang().CPlusPlus) |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1475 | return VirtSpecifiers::VS_None; |
| 1476 | |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 1477 | if (Tok.is(tok::identifier)) { |
| 1478 | IdentifierInfo *II = Tok.getIdentifierInfo(); |
Anders Carlsson | 1f3b6fd | 2011-01-16 23:56:42 +0000 | [diff] [blame] | 1479 | |
Anders Carlsson | 7eeb4ec | 2011-01-20 03:47:08 +0000 | [diff] [blame] | 1480 | // Initialize the contextual keywords. |
| 1481 | if (!Ident_final) { |
| 1482 | Ident_final = &PP.getIdentifierTable().get("final"); |
| 1483 | Ident_override = &PP.getIdentifierTable().get("override"); |
| 1484 | } |
| 1485 | |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 1486 | if (II == Ident_override) |
| 1487 | return VirtSpecifiers::VS_Override; |
| 1488 | |
| 1489 | if (II == Ident_final) |
| 1490 | return VirtSpecifiers::VS_Final; |
| 1491 | } |
| 1492 | |
| 1493 | return VirtSpecifiers::VS_None; |
Anders Carlsson | 1f3b6fd | 2011-01-16 23:56:42 +0000 | [diff] [blame] | 1494 | } |
| 1495 | |
| 1496 | /// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq. |
| 1497 | /// |
| 1498 | /// virt-specifier-seq: |
| 1499 | /// virt-specifier |
| 1500 | /// virt-specifier-seq virt-specifier |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 1501 | void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) { |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 1502 | while (true) { |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1503 | VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier(); |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 1504 | if (Specifier == VirtSpecifiers::VS_None) |
| 1505 | return; |
| 1506 | |
| 1507 | // C++ [class.mem]p8: |
| 1508 | // A virt-specifier-seq shall contain at most one of each virt-specifier. |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1509 | const char *PrevSpec = 0; |
Anders Carlsson | 46127a9 | 2011-01-22 15:58:16 +0000 | [diff] [blame] | 1510 | if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec)) |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 1511 | Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier) |
| 1512 | << PrevSpec |
| 1513 | << FixItHint::CreateRemoval(Tok.getLocation()); |
| 1514 | |
Anders Carlsson | ce93a7c | 2011-01-22 23:01:49 +0000 | [diff] [blame] | 1515 | if (!getLang().CPlusPlus0x) |
| 1516 | Diag(Tok.getLocation(), diag::ext_override_control_keyword) |
| 1517 | << VirtSpecifiers::getSpecifierName(Specifier); |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 1518 | ConsumeToken(); |
| 1519 | } |
Anders Carlsson | 1f3b6fd | 2011-01-16 23:56:42 +0000 | [diff] [blame] | 1520 | } |
| 1521 | |
Anders Carlsson | 8a29ba0 | 2011-03-25 14:53:29 +0000 | [diff] [blame] | 1522 | /// isCXX0XFinalKeyword - Determine whether the next token is a C++0x |
| 1523 | /// contextual 'final' keyword. |
| 1524 | bool Parser::isCXX0XFinalKeyword() const { |
Anders Carlsson | ce93a7c | 2011-01-22 23:01:49 +0000 | [diff] [blame] | 1525 | if (!getLang().CPlusPlus) |
Anders Carlsson | 8a29ba0 | 2011-03-25 14:53:29 +0000 | [diff] [blame] | 1526 | return false; |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1527 | |
Anders Carlsson | 8a29ba0 | 2011-03-25 14:53:29 +0000 | [diff] [blame] | 1528 | if (!Tok.is(tok::identifier)) |
| 1529 | return false; |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1530 | |
Anders Carlsson | 8a29ba0 | 2011-03-25 14:53:29 +0000 | [diff] [blame] | 1531 | // Initialize the contextual keywords. |
| 1532 | if (!Ident_final) { |
| 1533 | Ident_final = &PP.getIdentifierTable().get("final"); |
| 1534 | Ident_override = &PP.getIdentifierTable().get("override"); |
| 1535 | } |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1536 | |
Anders Carlsson | 8a29ba0 | 2011-03-25 14:53:29 +0000 | [diff] [blame] | 1537 | return Tok.getIdentifierInfo() == Ident_final; |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1538 | } |
| 1539 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1540 | /// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration. |
| 1541 | /// |
| 1542 | /// member-declaration: |
| 1543 | /// decl-specifier-seq[opt] member-declarator-list[opt] ';' |
| 1544 | /// function-definition ';'[opt] |
| 1545 | /// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO] |
| 1546 | /// using-declaration [TODO] |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 1547 | /// [C++0x] static_assert-declaration |
Anders Carlsson | 5aeccdb | 2009-03-26 00:52:18 +0000 | [diff] [blame] | 1548 | /// template-declaration |
Chris Lattner | bc8d564 | 2008-12-18 01:12:00 +0000 | [diff] [blame] | 1549 | /// [GNU] '__extension__' member-declaration |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1550 | /// |
| 1551 | /// member-declarator-list: |
| 1552 | /// member-declarator |
| 1553 | /// member-declarator-list ',' member-declarator |
| 1554 | /// |
| 1555 | /// member-declarator: |
Anders Carlsson | 1f3b6fd | 2011-01-16 23:56:42 +0000 | [diff] [blame] | 1556 | /// declarator virt-specifier-seq[opt] pure-specifier[opt] |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1557 | /// declarator constant-initializer[opt] |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1558 | /// [C++11] declarator brace-or-equal-initializer[opt] |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1559 | /// identifier[opt] ':' constant-expression |
| 1560 | /// |
Anders Carlsson | 1f3b6fd | 2011-01-16 23:56:42 +0000 | [diff] [blame] | 1561 | /// virt-specifier-seq: |
| 1562 | /// virt-specifier |
| 1563 | /// virt-specifier-seq virt-specifier |
| 1564 | /// |
| 1565 | /// virt-specifier: |
| 1566 | /// override |
| 1567 | /// final |
| 1568 | /// new |
| 1569 | /// |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 1570 | /// pure-specifier: |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1571 | /// '= 0' |
| 1572 | /// |
| 1573 | /// constant-initializer: |
| 1574 | /// '=' constant-expression |
| 1575 | /// |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 1576 | void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS, |
John McCall | c9068d7 | 2010-07-16 08:13:16 +0000 | [diff] [blame] | 1577 | const ParsedTemplateInfo &TemplateInfo, |
| 1578 | ParsingDeclRAIIObject *TemplateDiags) { |
Douglas Gregor | 8a9013d | 2011-04-14 17:21:19 +0000 | [diff] [blame] | 1579 | if (Tok.is(tok::at)) { |
| 1580 | if (getLang().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs)) |
| 1581 | Diag(Tok, diag::err_at_defs_cxx); |
| 1582 | else |
| 1583 | Diag(Tok, diag::err_at_in_class); |
| 1584 | |
| 1585 | ConsumeToken(); |
| 1586 | SkipUntil(tok::r_brace); |
| 1587 | return; |
| 1588 | } |
| 1589 | |
John McCall | 60fa3cf | 2009-12-11 02:10:03 +0000 | [diff] [blame] | 1590 | // Access declarations. |
| 1591 | if (!TemplateInfo.Kind && |
| 1592 | (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) && |
John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 1593 | !TryAnnotateCXXScopeToken() && |
John McCall | 60fa3cf | 2009-12-11 02:10:03 +0000 | [diff] [blame] | 1594 | Tok.is(tok::annot_cxxscope)) { |
| 1595 | bool isAccessDecl = false; |
| 1596 | if (NextToken().is(tok::identifier)) |
| 1597 | isAccessDecl = GetLookAheadToken(2).is(tok::semi); |
| 1598 | else |
| 1599 | isAccessDecl = NextToken().is(tok::kw_operator); |
| 1600 | |
| 1601 | if (isAccessDecl) { |
| 1602 | // Collect the scope specifier token we annotated earlier. |
| 1603 | CXXScopeSpec SS; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1604 | ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false); |
John McCall | 60fa3cf | 2009-12-11 02:10:03 +0000 | [diff] [blame] | 1605 | |
| 1606 | // Try to parse an unqualified-id. |
| 1607 | UnqualifiedId Name; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1608 | if (ParseUnqualifiedId(SS, false, true, true, ParsedType(), Name)) { |
John McCall | 60fa3cf | 2009-12-11 02:10:03 +0000 | [diff] [blame] | 1609 | SkipUntil(tok::semi); |
| 1610 | return; |
| 1611 | } |
| 1612 | |
| 1613 | // TODO: recover from mistakenly-qualified operator declarations. |
| 1614 | if (ExpectAndConsume(tok::semi, |
| 1615 | diag::err_expected_semi_after, |
| 1616 | "access declaration", |
| 1617 | tok::semi)) |
| 1618 | return; |
| 1619 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1620 | Actions.ActOnUsingDeclaration(getCurScope(), AS, |
John McCall | 60fa3cf | 2009-12-11 02:10:03 +0000 | [diff] [blame] | 1621 | false, SourceLocation(), |
| 1622 | SS, Name, |
| 1623 | /* AttrList */ 0, |
| 1624 | /* IsTypeName */ false, |
| 1625 | SourceLocation()); |
| 1626 | return; |
| 1627 | } |
| 1628 | } |
| 1629 | |
Anders Carlsson | 511d7ab | 2009-03-11 16:27:10 +0000 | [diff] [blame] | 1630 | // static_assert-declaration |
Peter Collingbourne | c6eb44b | 2011-04-15 00:35:57 +0000 | [diff] [blame] | 1631 | if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) { |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 1632 | // FIXME: Check for templates |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 1633 | SourceLocation DeclEnd; |
| 1634 | ParseStaticAssertDeclaration(DeclEnd); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1635 | return; |
| 1636 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1637 | |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1638 | if (Tok.is(tok::kw_template)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1639 | assert(!TemplateInfo.TemplateParams && |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 1640 | "Nested template improperly parsed?"); |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 1641 | SourceLocation DeclEnd; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1642 | ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1643 | AS); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1644 | return; |
| 1645 | } |
Anders Carlsson | 5aeccdb | 2009-03-26 00:52:18 +0000 | [diff] [blame] | 1646 | |
Chris Lattner | bc8d564 | 2008-12-18 01:12:00 +0000 | [diff] [blame] | 1647 | // Handle: member-declaration ::= '__extension__' member-declaration |
| 1648 | if (Tok.is(tok::kw___extension__)) { |
| 1649 | // __extension__ silences extension warnings in the subexpression. |
| 1650 | ExtensionRAIIObject O(Diags); // Use RAII to do this. |
| 1651 | ConsumeToken(); |
John McCall | c9068d7 | 2010-07-16 08:13:16 +0000 | [diff] [blame] | 1652 | return ParseCXXClassMemberDeclaration(AS, TemplateInfo, TemplateDiags); |
Chris Lattner | bc8d564 | 2008-12-18 01:12:00 +0000 | [diff] [blame] | 1653 | } |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 1654 | |
Chris Lattner | 4ed5d91 | 2010-02-02 01:23:29 +0000 | [diff] [blame] | 1655 | // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it |
| 1656 | // is a bitfield. |
Chris Lattner | a1efc8c | 2009-12-10 01:59:24 +0000 | [diff] [blame] | 1657 | ColonProtectionRAIIObject X(*this); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1658 | |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 1659 | ParsedAttributesWithRange attrs(AttrFactory); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 1660 | // Optional C++0x attribute-specifier |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1661 | MaybeParseCXX0XAttributes(attrs); |
| 1662 | MaybeParseMicrosoftAttributes(attrs); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 1663 | |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 1664 | if (Tok.is(tok::kw_using)) { |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1665 | ProhibitAttributes(attrs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1666 | |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 1667 | // Eat 'using'. |
| 1668 | SourceLocation UsingLoc = ConsumeToken(); |
| 1669 | |
| 1670 | if (Tok.is(tok::kw_namespace)) { |
| 1671 | Diag(UsingLoc, diag::err_using_namespace_in_class); |
| 1672 | SkipUntil(tok::semi, true, true); |
Chris Lattner | ae50d50 | 2010-02-02 00:43:15 +0000 | [diff] [blame] | 1673 | } else { |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 1674 | SourceLocation DeclEnd; |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 1675 | // Otherwise, it must be a using-declaration or an alias-declaration. |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 1676 | ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo, |
| 1677 | UsingLoc, DeclEnd, AS); |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 1678 | } |
| 1679 | return; |
| 1680 | } |
| 1681 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1682 | // decl-specifier-seq: |
| 1683 | // Parse the common declaration-specifiers piece. |
John McCall | c9068d7 | 2010-07-16 08:13:16 +0000 | [diff] [blame] | 1684 | ParsingDeclSpec DS(*this, TemplateDiags); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1685 | DS.takeAttributesFrom(attrs); |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 1686 | ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1687 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1688 | MultiTemplateParamsArg TemplateParams(Actions, |
John McCall | dd4a3b0 | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 1689 | TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0, |
| 1690 | TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0); |
| 1691 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1692 | if (Tok.is(tok::semi)) { |
| 1693 | ConsumeToken(); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1694 | Decl *TheDecl = |
Chandler Carruth | 0f4be74 | 2011-05-03 18:35:10 +0000 | [diff] [blame] | 1695 | Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams); |
John McCall | c9068d7 | 2010-07-16 08:13:16 +0000 | [diff] [blame] | 1696 | DS.complete(TheDecl); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 1697 | return; |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1698 | } |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1699 | |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1700 | ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext); |
Nico Weber | 4867347 | 2011-01-28 06:07:34 +0000 | [diff] [blame] | 1701 | VirtSpecifiers VS; |
Francois Pichet | 6a24747 | 2011-05-11 02:14:46 +0000 | [diff] [blame] | 1702 | ExprResult Init; |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1703 | |
Argyrios Kyrtzidis | 3a9fdb4 | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 1704 | if (Tok.isNot(tok::colon)) { |
Chris Lattner | a1efc8c | 2009-12-10 01:59:24 +0000 | [diff] [blame] | 1705 | // Don't parse FOO:BAR as if it were a typo for FOO::BAR. |
| 1706 | ColonProtectionRAIIObject X(*this); |
| 1707 | |
Argyrios Kyrtzidis | 3a9fdb4 | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 1708 | // Parse the first declarator. |
| 1709 | ParseDeclarator(DeclaratorInfo); |
| 1710 | // Error parsing the declarator? |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 1711 | if (!DeclaratorInfo.hasName()) { |
Argyrios Kyrtzidis | 3a9fdb4 | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 1712 | // If so, skip until the semi-colon or a }. |
Sebastian Redl | d941fa4 | 2011-04-24 16:27:48 +0000 | [diff] [blame] | 1713 | SkipUntil(tok::r_brace, true, true); |
Argyrios Kyrtzidis | 3a9fdb4 | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 1714 | if (Tok.is(tok::semi)) |
| 1715 | ConsumeToken(); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1716 | return; |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1717 | } |
| 1718 | |
Nico Weber | 4867347 | 2011-01-28 06:07:34 +0000 | [diff] [blame] | 1719 | ParseOptionalCXX0XVirtSpecifierSeq(VS); |
| 1720 | |
John Thompson | 1b2fc0f | 2009-11-25 22:58:06 +0000 | [diff] [blame] | 1721 | // If attributes exist after the declarator, but before an '{', parse them. |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1722 | MaybeParseGNUAttributes(DeclaratorInfo); |
John Thompson | 1b2fc0f | 2009-11-25 22:58:06 +0000 | [diff] [blame] | 1723 | |
Francois Pichet | 6a24747 | 2011-05-11 02:14:46 +0000 | [diff] [blame] | 1724 | // MSVC permits pure specifier on inline functions declared at class scope. |
| 1725 | // Hence check for =0 before checking for function definition. |
| 1726 | if (getLang().Microsoft && Tok.is(tok::equal) && |
| 1727 | DeclaratorInfo.isFunctionDeclarator() && |
| 1728 | NextToken().is(tok::numeric_constant)) { |
| 1729 | ConsumeToken(); |
| 1730 | Init = ParseInitializer(); |
| 1731 | if (Init.isInvalid()) |
| 1732 | SkipUntil(tok::comma, true, true); |
| 1733 | } |
| 1734 | |
Sean Hunt | e4246a6 | 2011-05-12 06:15:49 +0000 | [diff] [blame] | 1735 | bool IsDefinition = false; |
Argyrios Kyrtzidis | 3a9fdb4 | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 1736 | // function-definition: |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1737 | // |
| 1738 | // In C++11, a non-function declarator followed by an open brace is a |
| 1739 | // braced-init-list for an in-class member initialization, not an |
| 1740 | // erroneous function definition. |
| 1741 | if (Tok.is(tok::l_brace) && !getLang().CPlusPlus0x) { |
Sean Hunt | e4246a6 | 2011-05-12 06:15:49 +0000 | [diff] [blame] | 1742 | IsDefinition = true; |
| 1743 | } else if (DeclaratorInfo.isFunctionDeclarator()) { |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1744 | if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) { |
Sean Hunt | e4246a6 | 2011-05-12 06:15:49 +0000 | [diff] [blame] | 1745 | IsDefinition = true; |
| 1746 | } else if (Tok.is(tok::equal)) { |
| 1747 | const Token &KW = NextToken(); |
| 1748 | if (KW.is(tok::kw_default) || KW.is(tok::kw_delete)) |
| 1749 | IsDefinition = true; |
| 1750 | } |
| 1751 | } |
| 1752 | |
| 1753 | if (IsDefinition) { |
Argyrios Kyrtzidis | 3a9fdb4 | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 1754 | if (!DeclaratorInfo.isFunctionDeclarator()) { |
| 1755 | Diag(Tok, diag::err_func_def_no_params); |
| 1756 | ConsumeBrace(); |
| 1757 | SkipUntil(tok::r_brace, true); |
Douglas Gregor | 9ea416e | 2011-01-19 16:41:58 +0000 | [diff] [blame] | 1758 | |
| 1759 | // Consume the optional ';' |
| 1760 | if (Tok.is(tok::semi)) |
| 1761 | ConsumeToken(); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1762 | return; |
Argyrios Kyrtzidis | 3a9fdb4 | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 1763 | } |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1764 | |
Argyrios Kyrtzidis | 3a9fdb4 | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 1765 | if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) { |
| 1766 | Diag(Tok, diag::err_function_declared_typedef); |
| 1767 | // This recovery skips the entire function body. It would be nice |
| 1768 | // to simply call ParseCXXInlineMethodDef() below, however Sema |
| 1769 | // assumes the declarator represents a function, not a typedef. |
| 1770 | ConsumeBrace(); |
| 1771 | SkipUntil(tok::r_brace, true); |
Douglas Gregor | 9ea416e | 2011-01-19 16:41:58 +0000 | [diff] [blame] | 1772 | |
| 1773 | // Consume the optional ';' |
| 1774 | if (Tok.is(tok::semi)) |
| 1775 | ConsumeToken(); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1776 | return; |
Argyrios Kyrtzidis | 3a9fdb4 | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 1777 | } |
| 1778 | |
Francois Pichet | 6a24747 | 2011-05-11 02:14:46 +0000 | [diff] [blame] | 1779 | ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo, VS, Init); |
Sean Hunt | e4246a6 | 2011-05-12 06:15:49 +0000 | [diff] [blame] | 1780 | |
| 1781 | // Consume the ';' - it's optional unless we have a delete or default |
| 1782 | if (Tok.is(tok::semi)) { |
Douglas Gregor | 9ea416e | 2011-01-19 16:41:58 +0000 | [diff] [blame] | 1783 | ConsumeToken(); |
Sean Hunt | e4246a6 | 2011-05-12 06:15:49 +0000 | [diff] [blame] | 1784 | } |
Douglas Gregor | 9ea416e | 2011-01-19 16:41:58 +0000 | [diff] [blame] | 1785 | |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1786 | return; |
Argyrios Kyrtzidis | 3a9fdb4 | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 1787 | } |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1788 | } |
| 1789 | |
| 1790 | // member-declarator-list: |
| 1791 | // member-declarator |
| 1792 | // member-declarator-list ',' member-declarator |
| 1793 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1794 | SmallVector<Decl *, 8> DeclsInGroup; |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1795 | ExprResult BitfieldSize; |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1796 | |
| 1797 | while (1) { |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1798 | // member-declarator: |
| 1799 | // declarator pure-specifier[opt] |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1800 | // declarator brace-or-equal-initializer[opt] |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1801 | // identifier[opt] ':' constant-expression |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1802 | if (Tok.is(tok::colon)) { |
| 1803 | ConsumeToken(); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1804 | BitfieldSize = ParseConstantExpression(); |
| 1805 | if (BitfieldSize.isInvalid()) |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1806 | SkipUntil(tok::comma, true, true); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1807 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1808 | |
Chris Lattner | e656325 | 2010-06-13 05:34:18 +0000 | [diff] [blame] | 1809 | // If a simple-asm-expr is present, parse it. |
| 1810 | if (Tok.is(tok::kw_asm)) { |
| 1811 | SourceLocation Loc; |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1812 | ExprResult AsmLabel(ParseSimpleAsm(&Loc)); |
Chris Lattner | e656325 | 2010-06-13 05:34:18 +0000 | [diff] [blame] | 1813 | if (AsmLabel.isInvalid()) |
| 1814 | SkipUntil(tok::comma, true, true); |
| 1815 | |
| 1816 | DeclaratorInfo.setAsmLabel(AsmLabel.release()); |
| 1817 | DeclaratorInfo.SetRangeEnd(Loc); |
| 1818 | } |
| 1819 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1820 | // If attributes exist after the declarator, parse them. |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1821 | MaybeParseGNUAttributes(DeclaratorInfo); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1822 | |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1823 | // FIXME: When g++ adds support for this, we'll need to check whether it |
| 1824 | // goes before or after the GNU attributes and __asm__. |
| 1825 | ParseOptionalCXX0XVirtSpecifierSeq(VS); |
| 1826 | |
| 1827 | bool HasDeferredInitializer = false; |
| 1828 | if (Tok.is(tok::equal) || Tok.is(tok::l_brace)) { |
| 1829 | if (BitfieldSize.get()) { |
| 1830 | Diag(Tok, diag::err_bitfield_member_init); |
| 1831 | SkipUntil(tok::comma, true, true); |
| 1832 | } else { |
Douglas Gregor | 555f57e | 2011-06-25 00:56:27 +0000 | [diff] [blame] | 1833 | HasDeferredInitializer = !DeclaratorInfo.isDeclarationOfFunction() && |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1834 | DeclaratorInfo.getDeclSpec().getStorageClassSpec() |
Richard Smith | c2cdd53 | 2011-06-12 11:43:46 +0000 | [diff] [blame] | 1835 | != DeclSpec::SCS_static && |
| 1836 | DeclaratorInfo.getDeclSpec().getStorageClassSpec() |
| 1837 | != DeclSpec::SCS_typedef; |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1838 | |
| 1839 | if (!HasDeferredInitializer) { |
| 1840 | SourceLocation EqualLoc; |
| 1841 | Init = ParseCXXMemberInitializer( |
Douglas Gregor | 555f57e | 2011-06-25 00:56:27 +0000 | [diff] [blame] | 1842 | DeclaratorInfo.isDeclarationOfFunction(), EqualLoc); |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1843 | if (Init.isInvalid()) |
| 1844 | SkipUntil(tok::comma, true, true); |
| 1845 | } |
| 1846 | } |
| 1847 | } |
| 1848 | |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1849 | // NOTE: If Sema is the Action module and declarator is an instance field, |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1850 | // this call will *not* return the created decl; It will return null. |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1851 | // See Sema::ActOnCXXMemberDeclarator for details. |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 1852 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1853 | Decl *ThisDecl = 0; |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 1854 | if (DS.isFriendSpecified()) { |
John McCall | bbbcdd9 | 2009-09-11 21:02:39 +0000 | [diff] [blame] | 1855 | // TODO: handle initializers, bitfields, 'delete' |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1856 | ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo, |
John McCall | bbbcdd9 | 2009-09-11 21:02:39 +0000 | [diff] [blame] | 1857 | /*IsDefinition*/ false, |
| 1858 | move(TemplateParams)); |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 1859 | } else { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1860 | ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 1861 | DeclaratorInfo, |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 1862 | move(TemplateParams), |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 1863 | BitfieldSize.release(), |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1864 | VS, Init.release(), |
| 1865 | HasDeferredInitializer, |
| 1866 | /*IsDefinition*/ false); |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 1867 | } |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1868 | if (ThisDecl) |
| 1869 | DeclsInGroup.push_back(ThisDecl); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1870 | |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 1871 | if (DeclaratorInfo.isFunctionDeclarator() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1872 | DeclaratorInfo.getDeclSpec().getStorageClassSpec() |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 1873 | != DeclSpec::SCS_typedef) { |
Eli Friedman | d33133c | 2009-07-22 21:45:50 +0000 | [diff] [blame] | 1874 | HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 1875 | } |
| 1876 | |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 1877 | DeclaratorInfo.complete(ThisDecl); |
| 1878 | |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1879 | if (HasDeferredInitializer) { |
| 1880 | if (!getLang().CPlusPlus0x) |
| 1881 | Diag(Tok, diag::warn_nonstatic_member_init_accepted_as_extension); |
| 1882 | |
| 1883 | if (DeclaratorInfo.isArrayOfUnknownBound()) { |
| 1884 | // C++0x [dcl.array]p3: An array bound may also be omitted when the |
| 1885 | // declarator is followed by an initializer. |
| 1886 | // |
| 1887 | // A brace-or-equal-initializer for a member-declarator is not an |
| 1888 | // initializer in the gramamr, so this is ill-formed. |
| 1889 | Diag(Tok, diag::err_incomplete_array_member_init); |
| 1890 | SkipUntil(tok::comma, true, true); |
| 1891 | // Avoid later warnings about a class member of incomplete type. |
| 1892 | ThisDecl->setInvalidDecl(); |
| 1893 | } else |
| 1894 | ParseCXXNonStaticMemberInitializer(ThisDecl); |
| 1895 | } |
| 1896 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1897 | // If we don't have a comma, it is either the end of the list (a ';') |
| 1898 | // or an error, bail out. |
| 1899 | if (Tok.isNot(tok::comma)) |
| 1900 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1901 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1902 | // Consume the comma. |
| 1903 | ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1904 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1905 | // Parse the next declarator. |
| 1906 | DeclaratorInfo.clear(); |
Nico Weber | 4867347 | 2011-01-28 06:07:34 +0000 | [diff] [blame] | 1907 | VS.clear(); |
Sebastian Redl | 15faa7f | 2008-12-09 20:22:58 +0000 | [diff] [blame] | 1908 | BitfieldSize = 0; |
| 1909 | Init = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1910 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1911 | // Attributes are only allowed on the second declarator. |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 1912 | MaybeParseGNUAttributes(DeclaratorInfo); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1913 | |
Argyrios Kyrtzidis | 3a9fdb4 | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 1914 | if (Tok.isNot(tok::colon)) |
| 1915 | ParseDeclarator(DeclaratorInfo); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1916 | } |
| 1917 | |
Chris Lattner | ae50d50 | 2010-02-02 00:43:15 +0000 | [diff] [blame] | 1918 | if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) { |
| 1919 | // Skip to end of block or statement. |
| 1920 | SkipUntil(tok::r_brace, true, true); |
| 1921 | // If we stopped at a ';', eat it. |
| 1922 | if (Tok.is(tok::semi)) ConsumeToken(); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1923 | return; |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1924 | } |
| 1925 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1926 | Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(), |
Chris Lattner | ae50d50 | 2010-02-02 00:43:15 +0000 | [diff] [blame] | 1927 | DeclsInGroup.size()); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1928 | } |
| 1929 | |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1930 | /// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or |
| 1931 | /// pure-specifier. Also detect and reject any attempted defaulted/deleted |
| 1932 | /// function definition. The location of the '=', if any, will be placed in |
| 1933 | /// EqualLoc. |
| 1934 | /// |
| 1935 | /// pure-specifier: |
| 1936 | /// '= 0' |
| 1937 | /// |
| 1938 | /// brace-or-equal-initializer: |
| 1939 | /// '=' initializer-expression |
| 1940 | /// braced-init-list [TODO] |
| 1941 | /// |
| 1942 | /// initializer-clause: |
| 1943 | /// assignment-expression |
| 1944 | /// braced-init-list [TODO] |
| 1945 | /// |
| 1946 | /// defaulted/deleted function-definition: |
| 1947 | /// '=' 'default' |
| 1948 | /// '=' 'delete' |
| 1949 | /// |
| 1950 | /// Prior to C++0x, the assignment-expression in an initializer-clause must |
| 1951 | /// be a constant-expression. |
| 1952 | ExprResult Parser::ParseCXXMemberInitializer(bool IsFunction, |
| 1953 | SourceLocation &EqualLoc) { |
| 1954 | assert((Tok.is(tok::equal) || Tok.is(tok::l_brace)) |
| 1955 | && "Data member initializer not starting with '=' or '{'"); |
| 1956 | |
| 1957 | if (Tok.is(tok::equal)) { |
| 1958 | EqualLoc = ConsumeToken(); |
| 1959 | if (Tok.is(tok::kw_delete)) { |
| 1960 | // In principle, an initializer of '= delete p;' is legal, but it will |
| 1961 | // never type-check. It's better to diagnose it as an ill-formed expression |
| 1962 | // than as an ill-formed deleted non-function member. |
| 1963 | // An initializer of '= delete p, foo' will never be parsed, because |
| 1964 | // a top-level comma always ends the initializer expression. |
| 1965 | const Token &Next = NextToken(); |
| 1966 | if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) || |
| 1967 | Next.is(tok::eof)) { |
| 1968 | if (IsFunction) |
| 1969 | Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration) |
| 1970 | << 1 /* delete */; |
| 1971 | else |
| 1972 | Diag(ConsumeToken(), diag::err_deleted_non_function); |
| 1973 | return ExprResult(); |
| 1974 | } |
| 1975 | } else if (Tok.is(tok::kw_default)) { |
| 1976 | Diag(ConsumeToken(), diag::err_default_special_members); |
| 1977 | if (IsFunction) |
| 1978 | Diag(Tok, diag::err_default_delete_in_multiple_declaration) |
| 1979 | << 0 /* default */; |
| 1980 | else |
| 1981 | Diag(ConsumeToken(), diag::err_default_special_members); |
| 1982 | return ExprResult(); |
| 1983 | } |
| 1984 | |
| 1985 | return ParseInitializer(); |
| 1986 | } else |
| 1987 | return ExprError(Diag(Tok, diag::err_generalized_initializer_lists)); |
| 1988 | } |
| 1989 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1990 | /// ParseCXXMemberSpecification - Parse the class definition. |
| 1991 | /// |
| 1992 | /// member-specification: |
| 1993 | /// member-declaration member-specification[opt] |
| 1994 | /// access-specifier ':' member-specification[opt] |
| 1995 | /// |
| 1996 | void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc, |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1997 | unsigned TagType, Decl *TagDecl) { |
Sanjiv Gupta | 31fc07d | 2008-10-31 09:52:39 +0000 | [diff] [blame] | 1998 | assert((TagType == DeclSpec::TST_struct || |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 1999 | TagType == DeclSpec::TST_union || |
Sanjiv Gupta | 31fc07d | 2008-10-31 09:52:39 +0000 | [diff] [blame] | 2000 | TagType == DeclSpec::TST_class) && "Invalid TagType!"); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2001 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2002 | PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc, |
| 2003 | "parsing struct/union/class body"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2004 | |
Douglas Gregor | 26997fd | 2010-01-16 20:52:59 +0000 | [diff] [blame] | 2005 | // Determine whether this is a non-nested class. Note that local |
| 2006 | // classes are *not* considered to be nested classes. |
| 2007 | bool NonNestedClass = true; |
| 2008 | if (!ClassStack.empty()) { |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2009 | for (const Scope *S = getCurScope(); S; S = S->getParent()) { |
Douglas Gregor | 26997fd | 2010-01-16 20:52:59 +0000 | [diff] [blame] | 2010 | if (S->isClassScope()) { |
| 2011 | // We're inside a class scope, so this is a nested class. |
| 2012 | NonNestedClass = false; |
| 2013 | break; |
| 2014 | } |
| 2015 | |
| 2016 | if ((S->getFlags() & Scope::FnScope)) { |
| 2017 | // If we're in a function or function template declared in the |
| 2018 | // body of a class, then this is a local class rather than a |
| 2019 | // nested class. |
| 2020 | const Scope *Parent = S->getParent(); |
| 2021 | if (Parent->isTemplateParamScope()) |
| 2022 | Parent = Parent->getParent(); |
| 2023 | if (Parent->isClassScope()) |
| 2024 | break; |
| 2025 | } |
| 2026 | } |
| 2027 | } |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2028 | |
| 2029 | // Enter a scope for the class. |
Douglas Gregor | 3218c4b | 2009-01-09 22:42:13 +0000 | [diff] [blame] | 2030 | ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2031 | |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2032 | // Note that we are parsing a new (potentially-nested) class definition. |
Douglas Gregor | 26997fd | 2010-01-16 20:52:59 +0000 | [diff] [blame] | 2033 | ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass); |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2034 | |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 2035 | if (TagDecl) |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2036 | Actions.ActOnTagStartDefinition(getCurScope(), TagDecl); |
John McCall | bd0dfa5 | 2009-12-19 21:48:58 +0000 | [diff] [blame] | 2037 | |
Anders Carlsson | b184a18 | 2011-03-25 14:46:08 +0000 | [diff] [blame] | 2038 | SourceLocation FinalLoc; |
| 2039 | |
| 2040 | // Parse the optional 'final' keyword. |
| 2041 | if (getLang().CPlusPlus && Tok.is(tok::identifier)) { |
| 2042 | IdentifierInfo *II = Tok.getIdentifierInfo(); |
| 2043 | |
| 2044 | // Initialize the contextual keywords. |
| 2045 | if (!Ident_final) { |
| 2046 | Ident_final = &PP.getIdentifierTable().get("final"); |
| 2047 | Ident_override = &PP.getIdentifierTable().get("override"); |
| 2048 | } |
| 2049 | |
| 2050 | if (II == Ident_final) |
| 2051 | FinalLoc = ConsumeToken(); |
| 2052 | |
| 2053 | if (!getLang().CPlusPlus0x) |
| 2054 | Diag(FinalLoc, diag::ext_override_control_keyword) << "final"; |
| 2055 | } |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 2056 | |
John McCall | bd0dfa5 | 2009-12-19 21:48:58 +0000 | [diff] [blame] | 2057 | if (Tok.is(tok::colon)) { |
| 2058 | ParseBaseClause(TagDecl); |
| 2059 | |
| 2060 | if (!Tok.is(tok::l_brace)) { |
| 2061 | Diag(Tok, diag::err_expected_lbrace_after_base_specifiers); |
John McCall | db7bb4a | 2010-03-17 00:38:33 +0000 | [diff] [blame] | 2062 | |
| 2063 | if (TagDecl) |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2064 | Actions.ActOnTagDefinitionError(getCurScope(), TagDecl); |
John McCall | bd0dfa5 | 2009-12-19 21:48:58 +0000 | [diff] [blame] | 2065 | return; |
| 2066 | } |
| 2067 | } |
| 2068 | |
| 2069 | assert(Tok.is(tok::l_brace)); |
| 2070 | |
| 2071 | SourceLocation LBraceLoc = ConsumeBrace(); |
| 2072 | |
John McCall | 42a4f66 | 2010-05-28 08:11:17 +0000 | [diff] [blame] | 2073 | if (TagDecl) |
Anders Carlsson | 2c3ee54 | 2011-03-25 14:31:08 +0000 | [diff] [blame] | 2074 | Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc, |
Anders Carlsson | dfc2f10 | 2011-01-22 17:51:53 +0000 | [diff] [blame] | 2075 | LBraceLoc); |
John McCall | f936815 | 2009-12-20 07:58:13 +0000 | [diff] [blame] | 2076 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2077 | // C++ 11p3: Members of a class defined with the keyword class are private |
| 2078 | // by default. Members of a class defined with the keywords struct or union |
| 2079 | // are public by default. |
| 2080 | AccessSpecifier CurAS; |
| 2081 | if (TagType == DeclSpec::TST_class) |
| 2082 | CurAS = AS_private; |
| 2083 | else |
| 2084 | CurAS = AS_public; |
| 2085 | |
Douglas Gregor | 07976d2 | 2010-06-21 22:31:09 +0000 | [diff] [blame] | 2086 | SourceLocation RBraceLoc; |
| 2087 | if (TagDecl) { |
| 2088 | // While we still have something to read, read the member-declarations. |
| 2089 | while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) { |
| 2090 | // Each iteration of this loop reads one member-declaration. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2091 | |
Francois Pichet | 563a645 | 2011-05-25 10:19:49 +0000 | [diff] [blame] | 2092 | if (getLang().Microsoft && (Tok.is(tok::kw___if_exists) || |
| 2093 | Tok.is(tok::kw___if_not_exists))) { |
| 2094 | ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS); |
| 2095 | continue; |
| 2096 | } |
| 2097 | |
Douglas Gregor | 07976d2 | 2010-06-21 22:31:09 +0000 | [diff] [blame] | 2098 | // Check for extraneous top-level semicolon. |
| 2099 | if (Tok.is(tok::semi)) { |
| 2100 | Diag(Tok, diag::ext_extra_struct_semi) |
| 2101 | << DeclSpec::getSpecifierName((DeclSpec::TST)TagType) |
| 2102 | << FixItHint::CreateRemoval(Tok.getLocation()); |
| 2103 | ConsumeToken(); |
| 2104 | continue; |
| 2105 | } |
| 2106 | |
| 2107 | AccessSpecifier AS = getAccessSpecifierIfPresent(); |
| 2108 | if (AS != AS_none) { |
| 2109 | // Current token is a C++ access specifier. |
| 2110 | CurAS = AS; |
| 2111 | SourceLocation ASLoc = Tok.getLocation(); |
| 2112 | ConsumeToken(); |
| 2113 | if (Tok.is(tok::colon)) |
| 2114 | Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation()); |
| 2115 | else |
| 2116 | Diag(Tok, diag::err_expected_colon); |
| 2117 | ConsumeToken(); |
| 2118 | continue; |
| 2119 | } |
| 2120 | |
| 2121 | // FIXME: Make sure we don't have a template here. |
| 2122 | |
| 2123 | // Parse all the comma separated declarators. |
| 2124 | ParseCXXClassMemberDeclaration(CurAS); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2125 | } |
| 2126 | |
Douglas Gregor | 07976d2 | 2010-06-21 22:31:09 +0000 | [diff] [blame] | 2127 | RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc); |
| 2128 | } else { |
| 2129 | SkipUntil(tok::r_brace, false, false); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2130 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2131 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2132 | // If attributes exist after class contents, parse them. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 2133 | ParsedAttributes attrs(AttrFactory); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2134 | MaybeParseGNUAttributes(attrs); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2135 | |
John McCall | 42a4f66 | 2010-05-28 08:11:17 +0000 | [diff] [blame] | 2136 | if (TagDecl) |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2137 | Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl, |
John McCall | 42a4f66 | 2010-05-28 08:11:17 +0000 | [diff] [blame] | 2138 | LBraceLoc, RBraceLoc, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2139 | attrs.getList()); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2140 | |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 2141 | // C++0x [class.mem]p2: Within the class member-specification, the class is |
| 2142 | // regarded as complete within function bodies, default arguments, exception- |
| 2143 | // specifications, and brace-or-equal-initializers for non-static data |
| 2144 | // members (including such things in nested classes). |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2145 | // |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 2146 | // FIXME: Only function bodies and brace-or-equal-initializers are currently |
| 2147 | // handled. Fix the others! |
Douglas Gregor | 07976d2 | 2010-06-21 22:31:09 +0000 | [diff] [blame] | 2148 | if (TagDecl && NonNestedClass) { |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2149 | // We are not inside a nested class. This class and its nested classes |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2150 | // are complete and we can parse the delayed portions of method |
| 2151 | // declarations and the lexed inline method definitions. |
Douglas Gregor | e0cc047 | 2010-06-16 23:45:56 +0000 | [diff] [blame] | 2152 | SourceLocation SavedPrevTokLocation = PrevTokLocation; |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2153 | ParseLexedMethodDeclarations(getCurrentClass()); |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 2154 | ParseLexedMemberInitializers(getCurrentClass()); |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2155 | ParseLexedMethodDefs(getCurrentClass()); |
Douglas Gregor | e0cc047 | 2010-06-16 23:45:56 +0000 | [diff] [blame] | 2156 | PrevTokLocation = SavedPrevTokLocation; |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2157 | } |
| 2158 | |
John McCall | 42a4f66 | 2010-05-28 08:11:17 +0000 | [diff] [blame] | 2159 | if (TagDecl) |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2160 | Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc); |
John McCall | db7bb4a | 2010-03-17 00:38:33 +0000 | [diff] [blame] | 2161 | |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2162 | // Leave the class scope. |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2163 | ParsingDef.Pop(); |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 2164 | ClassScope.Exit(); |
Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 2165 | } |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2166 | |
| 2167 | /// ParseConstructorInitializer - Parse a C++ constructor initializer, |
| 2168 | /// which explicitly initializes the members or base classes of a |
| 2169 | /// class (C++ [class.base.init]). For example, the three initializers |
| 2170 | /// after the ':' in the Derived constructor below: |
| 2171 | /// |
| 2172 | /// @code |
| 2173 | /// class Base { }; |
| 2174 | /// class Derived : Base { |
| 2175 | /// int x; |
| 2176 | /// float f; |
| 2177 | /// public: |
| 2178 | /// Derived(float f) : Base(), x(17), f(f) { } |
| 2179 | /// }; |
| 2180 | /// @endcode |
| 2181 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2182 | /// [C++] ctor-initializer: |
| 2183 | /// ':' mem-initializer-list |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2184 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2185 | /// [C++] mem-initializer-list: |
Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 2186 | /// mem-initializer ...[opt] |
| 2187 | /// mem-initializer ...[opt] , mem-initializer-list |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2188 | void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) { |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2189 | assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'"); |
| 2190 | |
John Wiegley | 28bbe4b | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 2191 | // Poison the SEH identifiers so they are flagged as illegal in constructor initializers |
| 2192 | PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2193 | SourceLocation ColonLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2194 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2195 | SmallVector<CXXCtorInitializer*, 4> MemInitializers; |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 2196 | bool AnyErrors = false; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2197 | |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2198 | do { |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 2199 | if (Tok.is(tok::code_completion)) { |
| 2200 | Actions.CodeCompleteConstructorInitializer(ConstructorDecl, |
| 2201 | MemInitializers.data(), |
| 2202 | MemInitializers.size()); |
| 2203 | ConsumeCodeCompletionToken(); |
| 2204 | } else { |
| 2205 | MemInitResult MemInit = ParseMemInitializer(ConstructorDecl); |
| 2206 | if (!MemInit.isInvalid()) |
| 2207 | MemInitializers.push_back(MemInit.get()); |
| 2208 | else |
| 2209 | AnyErrors = true; |
| 2210 | } |
| 2211 | |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2212 | if (Tok.is(tok::comma)) |
| 2213 | ConsumeToken(); |
| 2214 | else if (Tok.is(tok::l_brace)) |
| 2215 | break; |
Douglas Gregor | b1f6fa4 | 2010-09-07 14:35:10 +0000 | [diff] [blame] | 2216 | // If the next token looks like a base or member initializer, assume that |
| 2217 | // we're just missing a comma. |
Douglas Gregor | 751f692 | 2010-09-07 14:51:08 +0000 | [diff] [blame] | 2218 | else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) { |
| 2219 | SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation); |
| 2220 | Diag(Loc, diag::err_ctor_init_missing_comma) |
| 2221 | << FixItHint::CreateInsertion(Loc, ", "); |
| 2222 | } else { |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2223 | // Skip over garbage, until we get to '{'. Don't eat the '{'. |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 2224 | Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2225 | SkipUntil(tok::l_brace, true, true); |
| 2226 | break; |
| 2227 | } |
| 2228 | } while (true); |
| 2229 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2230 | Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc, |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 2231 | MemInitializers.data(), MemInitializers.size(), |
| 2232 | AnyErrors); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2233 | } |
| 2234 | |
| 2235 | /// ParseMemInitializer - Parse a C++ member initializer, which is |
| 2236 | /// part of a constructor initializer that explicitly initializes one |
| 2237 | /// member or base class (C++ [class.base.init]). See |
| 2238 | /// ParseConstructorInitializer for an example. |
| 2239 | /// |
| 2240 | /// [C++] mem-initializer: |
| 2241 | /// mem-initializer-id '(' expression-list[opt] ')' |
Sebastian Redl | dbef1bb | 2011-06-05 12:23:16 +0000 | [diff] [blame] | 2242 | /// [C++0x] mem-initializer-id braced-init-list |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2243 | /// |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2244 | /// [C++] mem-initializer-id: |
| 2245 | /// '::'[opt] nested-name-specifier[opt] class-name |
| 2246 | /// identifier |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2247 | Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) { |
Fariborz Jahanian | bcfad54 | 2009-06-30 23:26:25 +0000 | [diff] [blame] | 2248 | // parse '::'[opt] nested-name-specifier[opt] |
| 2249 | CXXScopeSpec SS; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2250 | ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false); |
| 2251 | ParsedType TemplateTypeTy; |
Fariborz Jahanian | 9617433 | 2009-07-01 19:21:19 +0000 | [diff] [blame] | 2252 | if (Tok.is(tok::annot_template_id)) { |
Argyrios Kyrtzidis | 25a7676 | 2011-06-22 06:09:49 +0000 | [diff] [blame] | 2253 | TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok); |
Douglas Gregor | d9b600c | 2010-01-12 17:52:59 +0000 | [diff] [blame] | 2254 | if (TemplateId->Kind == TNK_Type_template || |
| 2255 | TemplateId->Kind == TNK_Dependent_template_name) { |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 2256 | AnnotateTemplateIdTokenAsType(); |
Fariborz Jahanian | 9617433 | 2009-07-01 19:21:19 +0000 | [diff] [blame] | 2257 | assert(Tok.is(tok::annot_typename) && "template-id -> type failed"); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2258 | TemplateTypeTy = getTypeAnnotation(Tok); |
Fariborz Jahanian | 9617433 | 2009-07-01 19:21:19 +0000 | [diff] [blame] | 2259 | } |
Fariborz Jahanian | 9617433 | 2009-07-01 19:21:19 +0000 | [diff] [blame] | 2260 | } |
| 2261 | if (!TemplateTypeTy && Tok.isNot(tok::identifier)) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 2262 | Diag(Tok, diag::err_expected_member_or_base_name); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2263 | return true; |
| 2264 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2265 | |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2266 | // Get the identifier. This may be a member name or a class name, |
| 2267 | // but we'll let the semantic analysis determine which it is. |
Fariborz Jahanian | 9617433 | 2009-07-01 19:21:19 +0000 | [diff] [blame] | 2268 | IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0; |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2269 | SourceLocation IdLoc = ConsumeToken(); |
| 2270 | |
| 2271 | // Parse the '('. |
Sebastian Redl | dbef1bb | 2011-06-05 12:23:16 +0000 | [diff] [blame] | 2272 | if (getLang().CPlusPlus0x && Tok.is(tok::l_brace)) { |
| 2273 | // FIXME: Do something with the braced-init-list. |
| 2274 | ParseBraceInitializer(); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2275 | return true; |
Sebastian Redl | dbef1bb | 2011-06-05 12:23:16 +0000 | [diff] [blame] | 2276 | } else if(Tok.is(tok::l_paren)) { |
| 2277 | SourceLocation LParenLoc = ConsumeParen(); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2278 | |
Sebastian Redl | dbef1bb | 2011-06-05 12:23:16 +0000 | [diff] [blame] | 2279 | // Parse the optional expression-list. |
| 2280 | ExprVector ArgExprs(Actions); |
| 2281 | CommaLocsTy CommaLocs; |
| 2282 | if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) { |
| 2283 | SkipUntil(tok::r_paren); |
| 2284 | return true; |
| 2285 | } |
| 2286 | |
| 2287 | SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc); |
| 2288 | |
| 2289 | SourceLocation EllipsisLoc; |
| 2290 | if (Tok.is(tok::ellipsis)) |
| 2291 | EllipsisLoc = ConsumeToken(); |
| 2292 | |
| 2293 | return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II, |
| 2294 | TemplateTypeTy, IdLoc, |
| 2295 | LParenLoc, ArgExprs.take(), |
| 2296 | ArgExprs.size(), RParenLoc, |
| 2297 | EllipsisLoc); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2298 | } |
| 2299 | |
Sebastian Redl | dbef1bb | 2011-06-05 12:23:16 +0000 | [diff] [blame] | 2300 | Diag(Tok, getLang().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace |
| 2301 | : diag::err_expected_lparen); |
| 2302 | return true; |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 2303 | } |
Douglas Gregor | 0fe7bea | 2008-11-25 03:22:00 +0000 | [diff] [blame] | 2304 | |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2305 | /// \brief Parse a C++ exception-specification if present (C++0x [except.spec]). |
Douglas Gregor | 0fe7bea | 2008-11-25 03:22:00 +0000 | [diff] [blame] | 2306 | /// |
Douglas Gregor | a474561 | 2008-12-01 18:00:20 +0000 | [diff] [blame] | 2307 | /// exception-specification: |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2308 | /// dynamic-exception-specification |
| 2309 | /// noexcept-specification |
| 2310 | /// |
| 2311 | /// noexcept-specification: |
| 2312 | /// 'noexcept' |
| 2313 | /// 'noexcept' '(' constant-expression ')' |
| 2314 | ExceptionSpecificationType |
| 2315 | Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2316 | SmallVectorImpl<ParsedType> &DynamicExceptions, |
| 2317 | SmallVectorImpl<SourceRange> &DynamicExceptionRanges, |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2318 | ExprResult &NoexceptExpr) { |
| 2319 | ExceptionSpecificationType Result = EST_None; |
| 2320 | |
| 2321 | // See if there's a dynamic specification. |
| 2322 | if (Tok.is(tok::kw_throw)) { |
| 2323 | Result = ParseDynamicExceptionSpecification(SpecificationRange, |
| 2324 | DynamicExceptions, |
| 2325 | DynamicExceptionRanges); |
| 2326 | assert(DynamicExceptions.size() == DynamicExceptionRanges.size() && |
| 2327 | "Produced different number of exception types and ranges."); |
| 2328 | } |
| 2329 | |
| 2330 | // If there's no noexcept specification, we're done. |
| 2331 | if (Tok.isNot(tok::kw_noexcept)) |
| 2332 | return Result; |
| 2333 | |
| 2334 | // If we already had a dynamic specification, parse the noexcept for, |
| 2335 | // recovery, but emit a diagnostic and don't store the results. |
| 2336 | SourceRange NoexceptRange; |
| 2337 | ExceptionSpecificationType NoexceptType = EST_None; |
| 2338 | |
| 2339 | SourceLocation KeywordLoc = ConsumeToken(); |
| 2340 | if (Tok.is(tok::l_paren)) { |
| 2341 | // There is an argument. |
| 2342 | SourceLocation LParenLoc = ConsumeParen(); |
| 2343 | NoexceptType = EST_ComputedNoexcept; |
| 2344 | NoexceptExpr = ParseConstantExpression(); |
Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2345 | // The argument must be contextually convertible to bool. We use |
| 2346 | // ActOnBooleanCondition for this purpose. |
| 2347 | if (!NoexceptExpr.isInvalid()) |
| 2348 | NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc, |
| 2349 | NoexceptExpr.get()); |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2350 | SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc); |
| 2351 | NoexceptRange = SourceRange(KeywordLoc, RParenLoc); |
| 2352 | } else { |
| 2353 | // There is no argument. |
| 2354 | NoexceptType = EST_BasicNoexcept; |
| 2355 | NoexceptRange = SourceRange(KeywordLoc, KeywordLoc); |
| 2356 | } |
| 2357 | |
| 2358 | if (Result == EST_None) { |
| 2359 | SpecificationRange = NoexceptRange; |
| 2360 | Result = NoexceptType; |
| 2361 | |
| 2362 | // If there's a dynamic specification after a noexcept specification, |
| 2363 | // parse that and ignore the results. |
| 2364 | if (Tok.is(tok::kw_throw)) { |
| 2365 | Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification); |
| 2366 | ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions, |
| 2367 | DynamicExceptionRanges); |
| 2368 | } |
| 2369 | } else { |
| 2370 | Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification); |
| 2371 | } |
| 2372 | |
| 2373 | return Result; |
| 2374 | } |
| 2375 | |
| 2376 | /// ParseDynamicExceptionSpecification - Parse a C++ |
| 2377 | /// dynamic-exception-specification (C++ [except.spec]). |
| 2378 | /// |
| 2379 | /// dynamic-exception-specification: |
Douglas Gregor | a474561 | 2008-12-01 18:00:20 +0000 | [diff] [blame] | 2380 | /// 'throw' '(' type-id-list [opt] ')' |
| 2381 | /// [MS] 'throw' '(' '...' ')' |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2382 | /// |
Douglas Gregor | a474561 | 2008-12-01 18:00:20 +0000 | [diff] [blame] | 2383 | /// type-id-list: |
Douglas Gregor | a04426c | 2010-12-20 23:57:46 +0000 | [diff] [blame] | 2384 | /// type-id ... [opt] |
| 2385 | /// type-id-list ',' type-id ... [opt] |
Douglas Gregor | 0fe7bea | 2008-11-25 03:22:00 +0000 | [diff] [blame] | 2386 | /// |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2387 | ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification( |
| 2388 | SourceRange &SpecificationRange, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2389 | SmallVectorImpl<ParsedType> &Exceptions, |
| 2390 | SmallVectorImpl<SourceRange> &Ranges) { |
Douglas Gregor | 0fe7bea | 2008-11-25 03:22:00 +0000 | [diff] [blame] | 2391 | assert(Tok.is(tok::kw_throw) && "expected throw"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2392 | |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2393 | SpecificationRange.setBegin(ConsumeToken()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2394 | |
Douglas Gregor | 0fe7bea | 2008-11-25 03:22:00 +0000 | [diff] [blame] | 2395 | if (!Tok.is(tok::l_paren)) { |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2396 | Diag(Tok, diag::err_expected_lparen_after) << "throw"; |
| 2397 | SpecificationRange.setEnd(SpecificationRange.getBegin()); |
Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2398 | return EST_DynamicNone; |
Douglas Gregor | 0fe7bea | 2008-11-25 03:22:00 +0000 | [diff] [blame] | 2399 | } |
| 2400 | SourceLocation LParenLoc = ConsumeParen(); |
| 2401 | |
Douglas Gregor | a474561 | 2008-12-01 18:00:20 +0000 | [diff] [blame] | 2402 | // Parse throw(...), a Microsoft extension that means "this function |
| 2403 | // can throw anything". |
| 2404 | if (Tok.is(tok::ellipsis)) { |
| 2405 | SourceLocation EllipsisLoc = ConsumeToken(); |
| 2406 | if (!getLang().Microsoft) |
| 2407 | Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec); |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2408 | SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc); |
| 2409 | SpecificationRange.setEnd(RParenLoc); |
Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2410 | return EST_MSAny; |
Douglas Gregor | a474561 | 2008-12-01 18:00:20 +0000 | [diff] [blame] | 2411 | } |
| 2412 | |
Douglas Gregor | 0fe7bea | 2008-11-25 03:22:00 +0000 | [diff] [blame] | 2413 | // Parse the sequence of type-ids. |
Sebastian Redl | ef65f06 | 2009-05-29 18:02:33 +0000 | [diff] [blame] | 2414 | SourceRange Range; |
Douglas Gregor | 0fe7bea | 2008-11-25 03:22:00 +0000 | [diff] [blame] | 2415 | while (Tok.isNot(tok::r_paren)) { |
Sebastian Redl | ef65f06 | 2009-05-29 18:02:33 +0000 | [diff] [blame] | 2416 | TypeResult Res(ParseTypeName(&Range)); |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2417 | |
Douglas Gregor | a04426c | 2010-12-20 23:57:46 +0000 | [diff] [blame] | 2418 | if (Tok.is(tok::ellipsis)) { |
| 2419 | // C++0x [temp.variadic]p5: |
| 2420 | // - In a dynamic-exception-specification (15.4); the pattern is a |
| 2421 | // type-id. |
| 2422 | SourceLocation Ellipsis = ConsumeToken(); |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2423 | Range.setEnd(Ellipsis); |
Douglas Gregor | a04426c | 2010-12-20 23:57:46 +0000 | [diff] [blame] | 2424 | if (!Res.isInvalid()) |
| 2425 | Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis); |
| 2426 | } |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2427 | |
Sebastian Redl | ef65f06 | 2009-05-29 18:02:33 +0000 | [diff] [blame] | 2428 | if (!Res.isInvalid()) { |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 2429 | Exceptions.push_back(Res.get()); |
Sebastian Redl | ef65f06 | 2009-05-29 18:02:33 +0000 | [diff] [blame] | 2430 | Ranges.push_back(Range); |
| 2431 | } |
Douglas Gregor | a04426c | 2010-12-20 23:57:46 +0000 | [diff] [blame] | 2432 | |
Douglas Gregor | 0fe7bea | 2008-11-25 03:22:00 +0000 | [diff] [blame] | 2433 | if (Tok.is(tok::comma)) |
| 2434 | ConsumeToken(); |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 2435 | else |
Douglas Gregor | 0fe7bea | 2008-11-25 03:22:00 +0000 | [diff] [blame] | 2436 | break; |
| 2437 | } |
| 2438 | |
Sebastian Redl | 7acafd0 | 2011-03-05 14:45:16 +0000 | [diff] [blame] | 2439 | SpecificationRange.setEnd(MatchRHSPunctuation(tok::r_paren, LParenLoc)); |
Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 2440 | return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic; |
Douglas Gregor | 0fe7bea | 2008-11-25 03:22:00 +0000 | [diff] [blame] | 2441 | } |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2442 | |
Douglas Gregor | dab60ad | 2010-10-01 18:44:50 +0000 | [diff] [blame] | 2443 | /// ParseTrailingReturnType - Parse a trailing return type on a new-style |
| 2444 | /// function declaration. |
Douglas Gregor | ae7902c | 2011-08-04 15:30:47 +0000 | [diff] [blame] | 2445 | TypeResult Parser::ParseTrailingReturnType(SourceRange &Range) { |
Douglas Gregor | dab60ad | 2010-10-01 18:44:50 +0000 | [diff] [blame] | 2446 | assert(Tok.is(tok::arrow) && "expected arrow"); |
| 2447 | |
| 2448 | ConsumeToken(); |
| 2449 | |
| 2450 | // FIXME: Need to suppress declarations when parsing this typename. |
| 2451 | // Otherwise in this function definition: |
| 2452 | // |
| 2453 | // auto f() -> struct X {} |
| 2454 | // |
| 2455 | // struct X is parsed as class definition because of the trailing |
| 2456 | // brace. |
Douglas Gregor | dab60ad | 2010-10-01 18:44:50 +0000 | [diff] [blame] | 2457 | return ParseTypeName(&Range); |
| 2458 | } |
| 2459 | |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2460 | /// \brief We have just started parsing the definition of a new class, |
| 2461 | /// so push that class onto our stack of classes that is currently |
| 2462 | /// being parsed. |
John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 2463 | Sema::ParsingClassState |
| 2464 | Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) { |
Douglas Gregor | 26997fd | 2010-01-16 20:52:59 +0000 | [diff] [blame] | 2465 | assert((NonNestedClass || !ClassStack.empty()) && |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2466 | "Nested class without outer class"); |
Douglas Gregor | 26997fd | 2010-01-16 20:52:59 +0000 | [diff] [blame] | 2467 | ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass)); |
John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 2468 | return Actions.PushParsingClass(); |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2469 | } |
| 2470 | |
| 2471 | /// \brief Deallocate the given parsed class and all of its nested |
| 2472 | /// classes. |
| 2473 | void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) { |
Douglas Gregor | d54eb44 | 2010-10-12 16:25:54 +0000 | [diff] [blame] | 2474 | for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I) |
| 2475 | delete Class->LateParsedDeclarations[I]; |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2476 | delete Class; |
| 2477 | } |
| 2478 | |
| 2479 | /// \brief Pop the top class of the stack of classes that are |
| 2480 | /// currently being parsed. |
| 2481 | /// |
| 2482 | /// This routine should be called when we have finished parsing the |
| 2483 | /// definition of a class, but have not yet popped the Scope |
| 2484 | /// associated with the class's definition. |
| 2485 | /// |
| 2486 | /// \returns true if the class we've popped is a top-level class, |
| 2487 | /// false otherwise. |
John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 2488 | void Parser::PopParsingClass(Sema::ParsingClassState state) { |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2489 | assert(!ClassStack.empty() && "Mismatched push/pop for class parsing"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2490 | |
John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 2491 | Actions.PopParsingClass(state); |
| 2492 | |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2493 | ParsingClass *Victim = ClassStack.top(); |
| 2494 | ClassStack.pop(); |
| 2495 | if (Victim->TopLevelClass) { |
| 2496 | // Deallocate all of the nested classes of this class, |
| 2497 | // recursively: we don't need to keep any of this information. |
| 2498 | DeallocateParsedClasses(Victim); |
| 2499 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2500 | } |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2501 | assert(!ClassStack.empty() && "Missing top-level class?"); |
| 2502 | |
Douglas Gregor | d54eb44 | 2010-10-12 16:25:54 +0000 | [diff] [blame] | 2503 | if (Victim->LateParsedDeclarations.empty()) { |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2504 | // The victim is a nested class, but we will not need to perform |
| 2505 | // any processing after the definition of this class since it has |
| 2506 | // no members whose handling was delayed. Therefore, we can just |
| 2507 | // remove this nested class. |
Douglas Gregor | d54eb44 | 2010-10-12 16:25:54 +0000 | [diff] [blame] | 2508 | DeallocateParsedClasses(Victim); |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2509 | return; |
| 2510 | } |
| 2511 | |
| 2512 | // This nested class has some members that will need to be processed |
| 2513 | // after the top-level class is completely defined. Therefore, add |
| 2514 | // it to the list of nested classes within its parent. |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2515 | assert(getCurScope()->isClassScope() && "Nested class outside of class scope?"); |
Douglas Gregor | d54eb44 | 2010-10-12 16:25:54 +0000 | [diff] [blame] | 2516 | ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim)); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 2517 | Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope(); |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2518 | } |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2519 | |
| 2520 | /// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only |
| 2521 | /// parses standard attributes. |
| 2522 | /// |
| 2523 | /// [C++0x] attribute-specifier: |
| 2524 | /// '[' '[' attribute-list ']' ']' |
| 2525 | /// |
| 2526 | /// [C++0x] attribute-list: |
| 2527 | /// attribute[opt] |
| 2528 | /// attribute-list ',' attribute[opt] |
| 2529 | /// |
| 2530 | /// [C++0x] attribute: |
| 2531 | /// attribute-token attribute-argument-clause[opt] |
| 2532 | /// |
| 2533 | /// [C++0x] attribute-token: |
| 2534 | /// identifier |
| 2535 | /// attribute-scoped-token |
| 2536 | /// |
| 2537 | /// [C++0x] attribute-scoped-token: |
| 2538 | /// attribute-namespace '::' identifier |
| 2539 | /// |
| 2540 | /// [C++0x] attribute-namespace: |
| 2541 | /// identifier |
| 2542 | /// |
| 2543 | /// [C++0x] attribute-argument-clause: |
| 2544 | /// '(' balanced-token-seq ')' |
| 2545 | /// |
| 2546 | /// [C++0x] balanced-token-seq: |
| 2547 | /// balanced-token |
| 2548 | /// balanced-token-seq balanced-token |
| 2549 | /// |
| 2550 | /// [C++0x] balanced-token: |
| 2551 | /// '(' balanced-token-seq ')' |
| 2552 | /// '[' balanced-token-seq ']' |
| 2553 | /// '{' balanced-token-seq '}' |
| 2554 | /// any token but '(', ')', '[', ']', '{', or '}' |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2555 | void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs, |
| 2556 | SourceLocation *endLoc) { |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2557 | assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square) |
| 2558 | && "Not a C++0x attribute list"); |
| 2559 | |
| 2560 | SourceLocation StartLoc = Tok.getLocation(), Loc; |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2561 | |
| 2562 | ConsumeBracket(); |
| 2563 | ConsumeBracket(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2564 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2565 | if (Tok.is(tok::comma)) { |
| 2566 | Diag(Tok.getLocation(), diag::err_expected_ident); |
| 2567 | ConsumeToken(); |
| 2568 | } |
| 2569 | |
| 2570 | while (Tok.is(tok::identifier) || Tok.is(tok::comma)) { |
| 2571 | // attribute not present |
| 2572 | if (Tok.is(tok::comma)) { |
| 2573 | ConsumeToken(); |
| 2574 | continue; |
| 2575 | } |
| 2576 | |
| 2577 | IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo(); |
| 2578 | SourceLocation ScopeLoc, AttrLoc = ConsumeToken(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2579 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2580 | // scoped attribute |
| 2581 | if (Tok.is(tok::coloncolon)) { |
| 2582 | ConsumeToken(); |
| 2583 | |
| 2584 | if (!Tok.is(tok::identifier)) { |
| 2585 | Diag(Tok.getLocation(), diag::err_expected_ident); |
| 2586 | SkipUntil(tok::r_square, tok::comma, true, true); |
| 2587 | continue; |
| 2588 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2589 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2590 | ScopeName = AttrName; |
| 2591 | ScopeLoc = AttrLoc; |
| 2592 | |
| 2593 | AttrName = Tok.getIdentifierInfo(); |
| 2594 | AttrLoc = ConsumeToken(); |
| 2595 | } |
| 2596 | |
| 2597 | bool AttrParsed = false; |
| 2598 | // No scoped names are supported; ideally we could put all non-standard |
| 2599 | // attributes into namespaces. |
| 2600 | if (!ScopeName) { |
| 2601 | switch(AttributeList::getKind(AttrName)) |
| 2602 | { |
| 2603 | // No arguments |
Sean Hunt | 7725e67 | 2009-11-25 04:20:27 +0000 | [diff] [blame] | 2604 | case AttributeList::AT_carries_dependency: |
Anders Carlsson | 15e14a2 | 2011-01-23 21:33:18 +0000 | [diff] [blame] | 2605 | case AttributeList::AT_noreturn: { |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2606 | if (Tok.is(tok::l_paren)) { |
| 2607 | Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments) |
| 2608 | << AttrName->getName(); |
| 2609 | break; |
| 2610 | } |
| 2611 | |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 2612 | attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0, |
| 2613 | SourceLocation(), 0, 0, false, true); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2614 | AttrParsed = true; |
| 2615 | break; |
| 2616 | } |
| 2617 | |
| 2618 | // One argument; must be a type-id or assignment-expression |
| 2619 | case AttributeList::AT_aligned: { |
| 2620 | if (Tok.isNot(tok::l_paren)) { |
| 2621 | Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments) |
| 2622 | << AttrName->getName(); |
| 2623 | break; |
| 2624 | } |
| 2625 | SourceLocation ParamLoc = ConsumeParen(); |
| 2626 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2627 | ExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2628 | |
| 2629 | MatchRHSPunctuation(tok::r_paren, ParamLoc); |
| 2630 | |
| 2631 | ExprVector ArgExprs(Actions); |
| 2632 | ArgExprs.push_back(ArgExpr.release()); |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 2633 | attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, |
| 2634 | 0, ParamLoc, ArgExprs.take(), 1, |
| 2635 | false, true); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2636 | |
| 2637 | AttrParsed = true; |
| 2638 | break; |
| 2639 | } |
| 2640 | |
| 2641 | // Silence warnings |
| 2642 | default: break; |
| 2643 | } |
| 2644 | } |
| 2645 | |
| 2646 | // Skip the entire parameter clause, if any |
| 2647 | if (!AttrParsed && Tok.is(tok::l_paren)) { |
| 2648 | ConsumeParen(); |
| 2649 | // SkipUntil maintains the balancedness of tokens. |
| 2650 | SkipUntil(tok::r_paren, false); |
| 2651 | } |
| 2652 | } |
| 2653 | |
| 2654 | if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare)) |
| 2655 | SkipUntil(tok::r_square, false); |
| 2656 | Loc = Tok.getLocation(); |
| 2657 | if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare)) |
| 2658 | SkipUntil(tok::r_square, false); |
| 2659 | |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2660 | attrs.Range = SourceRange(StartLoc, Loc); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2661 | } |
| 2662 | |
| 2663 | /// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]] |
| 2664 | /// attribute. |
| 2665 | /// |
| 2666 | /// FIXME: Simply returns an alignof() expression if the argument is a |
| 2667 | /// type. Ideally, the type should be propagated directly into Sema. |
| 2668 | /// |
| 2669 | /// [C++0x] 'align' '(' type-id ')' |
| 2670 | /// [C++0x] 'align' '(' assignment-expression ')' |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2671 | ExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) { |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2672 | if (isTypeIdInParens()) { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2673 | EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2674 | SourceLocation TypeLoc = Tok.getLocation(); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2675 | ParsedType Ty = ParseTypeName().get(); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2676 | SourceRange TypeRange(Start, Tok.getLocation()); |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2677 | return Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true, |
| 2678 | Ty.getAsOpaquePtr(), TypeRange); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2679 | } else |
| 2680 | return ParseConstantExpression(); |
| 2681 | } |
Francois Pichet | 334d47e | 2010-10-11 12:59:39 +0000 | [diff] [blame] | 2682 | |
| 2683 | /// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr] |
| 2684 | /// |
| 2685 | /// [MS] ms-attribute: |
| 2686 | /// '[' token-seq ']' |
| 2687 | /// |
| 2688 | /// [MS] ms-attribute-seq: |
| 2689 | /// ms-attribute[opt] |
| 2690 | /// ms-attribute ms-attribute-seq |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2691 | void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs, |
| 2692 | SourceLocation *endLoc) { |
Francois Pichet | 334d47e | 2010-10-11 12:59:39 +0000 | [diff] [blame] | 2693 | assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list"); |
| 2694 | |
| 2695 | while (Tok.is(tok::l_square)) { |
| 2696 | ConsumeBracket(); |
| 2697 | SkipUntil(tok::r_square, true, true); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 2698 | if (endLoc) *endLoc = Tok.getLocation(); |
Francois Pichet | 334d47e | 2010-10-11 12:59:39 +0000 | [diff] [blame] | 2699 | ExpectAndConsume(tok::r_square, diag::err_expected_rsquare); |
| 2700 | } |
| 2701 | } |
Francois Pichet | 563a645 | 2011-05-25 10:19:49 +0000 | [diff] [blame] | 2702 | |
| 2703 | void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType, |
| 2704 | AccessSpecifier& CurAS) { |
| 2705 | bool Result; |
| 2706 | if (ParseMicrosoftIfExistsCondition(Result)) |
| 2707 | return; |
| 2708 | |
| 2709 | if (Tok.isNot(tok::l_brace)) { |
| 2710 | Diag(Tok, diag::err_expected_lbrace); |
| 2711 | return; |
| 2712 | } |
| 2713 | ConsumeBrace(); |
| 2714 | |
| 2715 | // Condition is false skip all inside the {}. |
| 2716 | if (!Result) { |
| 2717 | SkipUntil(tok::r_brace, false); |
| 2718 | return; |
| 2719 | } |
| 2720 | |
| 2721 | // Condition is true, parse the declaration. |
| 2722 | while (Tok.isNot(tok::r_brace)) { |
| 2723 | |
| 2724 | // __if_exists, __if_not_exists can nest. |
| 2725 | if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) { |
| 2726 | ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS); |
| 2727 | continue; |
| 2728 | } |
| 2729 | |
| 2730 | // Check for extraneous top-level semicolon. |
| 2731 | if (Tok.is(tok::semi)) { |
| 2732 | Diag(Tok, diag::ext_extra_struct_semi) |
| 2733 | << DeclSpec::getSpecifierName((DeclSpec::TST)TagType) |
| 2734 | << FixItHint::CreateRemoval(Tok.getLocation()); |
| 2735 | ConsumeToken(); |
| 2736 | continue; |
| 2737 | } |
| 2738 | |
| 2739 | AccessSpecifier AS = getAccessSpecifierIfPresent(); |
| 2740 | if (AS != AS_none) { |
| 2741 | // Current token is a C++ access specifier. |
| 2742 | CurAS = AS; |
| 2743 | SourceLocation ASLoc = Tok.getLocation(); |
| 2744 | ConsumeToken(); |
| 2745 | if (Tok.is(tok::colon)) |
| 2746 | Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation()); |
| 2747 | else |
| 2748 | Diag(Tok, diag::err_expected_colon); |
| 2749 | ConsumeToken(); |
| 2750 | continue; |
| 2751 | } |
| 2752 | |
| 2753 | // Parse all the comma separated declarators. |
| 2754 | ParseCXXClassMemberDeclaration(CurAS); |
| 2755 | } |
| 2756 | |
| 2757 | if (Tok.isNot(tok::r_brace)) { |
| 2758 | Diag(Tok, diag::err_expected_rbrace); |
| 2759 | return; |
| 2760 | } |
| 2761 | ConsumeBrace(); |
| 2762 | } |