Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 1 | //===--- ParseTemplate.cpp - Template Parsing -----------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements parsing of C++ templates. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/Parse/Parser.h" |
Chris Lattner | 500d329 | 2009-01-29 05:15:15 +0000 | [diff] [blame] | 15 | #include "clang/Parse/ParseDiagnostic.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 16 | #include "clang/Sema/DeclSpec.h" |
| 17 | #include "clang/Sema/ParsedTemplate.h" |
| 18 | #include "clang/Sema/Scope.h" |
Chris Lattner | de138eb | 2009-12-10 00:45:15 +0000 | [diff] [blame] | 19 | #include "RAIIObjectsForParser.h" |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclTemplate.h" |
| 21 | #include "clang/AST/ASTConsumer.h" |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 22 | using namespace clang; |
| 23 | |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 24 | /// \brief Parse a template declaration, explicit instantiation, or |
| 25 | /// explicit specialization. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 26 | Decl * |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 27 | Parser::ParseDeclarationStartingWithTemplate(unsigned Context, |
| 28 | SourceLocation &DeclEnd, |
| 29 | AccessSpecifier AS) { |
Fariborz Jahanian | 9735c5e | 2011-08-22 17:59:19 +0000 | [diff] [blame] | 30 | ObjCDeclContextSwitch ObjCDC(*this); |
| 31 | |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 32 | if (Tok.is(tok::kw_template) && NextToken().isNot(tok::less)) { |
Fariborz Jahanian | 9735c5e | 2011-08-22 17:59:19 +0000 | [diff] [blame] | 33 | return ParseExplicitInstantiation(SourceLocation(), ConsumeToken(), |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 34 | DeclEnd); |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 35 | } |
Fariborz Jahanian | 9735c5e | 2011-08-22 17:59:19 +0000 | [diff] [blame] | 36 | return ParseTemplateDeclarationOrSpecialization(Context, DeclEnd, AS); |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 37 | } |
| 38 | |
Douglas Gregor | c305833 | 2009-08-24 23:03:25 +0000 | [diff] [blame] | 39 | /// \brief RAII class that manages the template parameter depth. |
| 40 | namespace { |
Benjamin Kramer | 85b4521 | 2009-11-28 19:45:26 +0000 | [diff] [blame] | 41 | class TemplateParameterDepthCounter { |
Douglas Gregor | c305833 | 2009-08-24 23:03:25 +0000 | [diff] [blame] | 42 | unsigned &Depth; |
| 43 | unsigned AddedLevels; |
| 44 | |
| 45 | public: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 46 | explicit TemplateParameterDepthCounter(unsigned &Depth) |
Douglas Gregor | c305833 | 2009-08-24 23:03:25 +0000 | [diff] [blame] | 47 | : Depth(Depth), AddedLevels(0) { } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 48 | |
Douglas Gregor | c305833 | 2009-08-24 23:03:25 +0000 | [diff] [blame] | 49 | ~TemplateParameterDepthCounter() { |
| 50 | Depth -= AddedLevels; |
| 51 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 52 | |
| 53 | void operator++() { |
Douglas Gregor | c305833 | 2009-08-24 23:03:25 +0000 | [diff] [blame] | 54 | ++Depth; |
| 55 | ++AddedLevels; |
| 56 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 57 | |
Douglas Gregor | c305833 | 2009-08-24 23:03:25 +0000 | [diff] [blame] | 58 | operator unsigned() const { return Depth; } |
| 59 | }; |
| 60 | } |
| 61 | |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 62 | /// \brief Parse a template declaration or an explicit specialization. |
| 63 | /// |
| 64 | /// Template declarations include one or more template parameter lists |
| 65 | /// and either the function or class template declaration. Explicit |
| 66 | /// specializations contain one or more 'template < >' prefixes |
| 67 | /// followed by a (possibly templated) declaration. Since the |
| 68 | /// syntactic form of both features is nearly identical, we parse all |
| 69 | /// of the template headers together and let semantic analysis sort |
| 70 | /// the declarations from the explicit specializations. |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 71 | /// |
| 72 | /// template-declaration: [C++ temp] |
| 73 | /// 'export'[opt] 'template' '<' template-parameter-list '>' declaration |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 74 | /// |
| 75 | /// explicit-specialization: [ C++ temp.expl.spec] |
| 76 | /// 'template' '<' '>' declaration |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 77 | Decl * |
Anders Carlsson | 5aeccdb | 2009-03-26 00:52:18 +0000 | [diff] [blame] | 78 | Parser::ParseTemplateDeclarationOrSpecialization(unsigned Context, |
Chris Lattner | 97144fc | 2009-04-02 04:16:50 +0000 | [diff] [blame] | 79 | SourceLocation &DeclEnd, |
Anders Carlsson | 5aeccdb | 2009-03-26 00:52:18 +0000 | [diff] [blame] | 80 | AccessSpecifier AS) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 81 | assert((Tok.is(tok::kw_export) || Tok.is(tok::kw_template)) && |
| 82 | "Token does not start a template declaration."); |
| 83 | |
Douglas Gregor | 26236e8 | 2008-12-02 00:41:28 +0000 | [diff] [blame] | 84 | // Enter template-parameter scope. |
Douglas Gregor | 8935b8b | 2008-12-10 06:34:36 +0000 | [diff] [blame] | 85 | ParseScope TemplateParmScope(this, Scope::TemplateParamScope); |
Douglas Gregor | 26236e8 | 2008-12-02 00:41:28 +0000 | [diff] [blame] | 86 | |
John McCall | c9068d7 | 2010-07-16 08:13:16 +0000 | [diff] [blame] | 87 | // Tell the action that names should be checked in the context of |
| 88 | // the declaration to come. |
| 89 | ParsingDeclRAIIObject ParsingTemplateParams(*this); |
| 90 | |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 91 | // Parse multiple levels of template headers within this template |
| 92 | // parameter scope, e.g., |
| 93 | // |
| 94 | // template<typename T> |
| 95 | // template<typename U> |
| 96 | // class A<T>::B { ... }; |
| 97 | // |
| 98 | // We parse multiple levels non-recursively so that we can build a |
| 99 | // single data structure containing all of the template parameter |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 100 | // lists to easily differentiate between the case above and: |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 101 | // |
| 102 | // template<typename T> |
| 103 | // class A { |
| 104 | // template<typename U> class B; |
| 105 | // }; |
| 106 | // |
| 107 | // In the first case, the action for declaring A<T>::B receives |
| 108 | // both template parameter lists. In the second case, the action for |
| 109 | // defining A<T>::B receives just the inner template parameter list |
| 110 | // (and retrieves the outer template parameter list from its |
| 111 | // context). |
Douglas Gregor | 0f499d9 | 2009-08-20 18:46:05 +0000 | [diff] [blame] | 112 | bool isSpecialization = true; |
Douglas Gregor | c78c06d | 2009-10-30 22:09:44 +0000 | [diff] [blame] | 113 | bool LastParamListWasEmpty = false; |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 114 | TemplateParameterLists ParamLists; |
Douglas Gregor | c305833 | 2009-08-24 23:03:25 +0000 | [diff] [blame] | 115 | TemplateParameterDepthCounter Depth(TemplateParameterDepth); |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 116 | do { |
| 117 | // Consume the 'export', if any. |
| 118 | SourceLocation ExportLoc; |
| 119 | if (Tok.is(tok::kw_export)) { |
| 120 | ExportLoc = ConsumeToken(); |
| 121 | } |
| 122 | |
| 123 | // Consume the 'template', which should be here. |
| 124 | SourceLocation TemplateLoc; |
| 125 | if (Tok.is(tok::kw_template)) { |
| 126 | TemplateLoc = ConsumeToken(); |
| 127 | } else { |
| 128 | Diag(Tok.getLocation(), diag::err_expected_template); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 129 | return 0; |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 130 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 131 | |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 132 | // Parse the '<' template-parameter-list '>' |
| 133 | SourceLocation LAngleLoc, RAngleLoc; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 134 | SmallVector<Decl*, 4> TemplateParams; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 135 | if (ParseTemplateParameters(Depth, TemplateParams, LAngleLoc, |
Douglas Gregor | 7cdbc58 | 2009-07-22 23:48:44 +0000 | [diff] [blame] | 136 | RAngleLoc)) { |
| 137 | // Skip until the semi-colon or a }. |
| 138 | SkipUntil(tok::r_brace, true, true); |
| 139 | if (Tok.is(tok::semi)) |
| 140 | ConsumeToken(); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 141 | return 0; |
Douglas Gregor | 7cdbc58 | 2009-07-22 23:48:44 +0000 | [diff] [blame] | 142 | } |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 143 | |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 144 | ParamLists.push_back( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 145 | Actions.ActOnTemplateParameterList(Depth, ExportLoc, |
| 146 | TemplateLoc, LAngleLoc, |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 147 | TemplateParams.data(), |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 148 | TemplateParams.size(), RAngleLoc)); |
Douglas Gregor | c305833 | 2009-08-24 23:03:25 +0000 | [diff] [blame] | 149 | |
| 150 | if (!TemplateParams.empty()) { |
| 151 | isSpecialization = false; |
| 152 | ++Depth; |
Douglas Gregor | c78c06d | 2009-10-30 22:09:44 +0000 | [diff] [blame] | 153 | } else { |
| 154 | LastParamListWasEmpty = true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 155 | } |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 156 | } while (Tok.is(tok::kw_export) || Tok.is(tok::kw_template)); |
| 157 | |
| 158 | // Parse the actual template declaration. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 159 | return ParseSingleDeclarationAfterTemplate(Context, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 160 | ParsedTemplateInfo(&ParamLists, |
Douglas Gregor | c78c06d | 2009-10-30 22:09:44 +0000 | [diff] [blame] | 161 | isSpecialization, |
| 162 | LastParamListWasEmpty), |
John McCall | c9068d7 | 2010-07-16 08:13:16 +0000 | [diff] [blame] | 163 | ParsingTemplateParams, |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 164 | DeclEnd, AS); |
| 165 | } |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 166 | |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 167 | /// \brief Parse a single declaration that declares a template, |
| 168 | /// template specialization, or explicit instantiation of a template. |
| 169 | /// |
| 170 | /// \param TemplateParams if non-NULL, the template parameter lists |
| 171 | /// that preceded this declaration. In this case, the declaration is a |
| 172 | /// template declaration, out-of-line definition of a template, or an |
| 173 | /// explicit template specialization. When NULL, the declaration is an |
| 174 | /// explicit template instantiation. |
| 175 | /// |
| 176 | /// \param TemplateLoc when TemplateParams is NULL, the location of |
| 177 | /// the 'template' keyword that indicates that we have an explicit |
| 178 | /// template instantiation. |
| 179 | /// |
| 180 | /// \param DeclEnd will receive the source location of the last token |
| 181 | /// within this declaration. |
| 182 | /// |
| 183 | /// \param AS the access specifier associated with this |
| 184 | /// declaration. Will be AS_none for namespace-scope declarations. |
| 185 | /// |
| 186 | /// \returns the new declaration. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 187 | Decl * |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 188 | Parser::ParseSingleDeclarationAfterTemplate( |
| 189 | unsigned Context, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 190 | const ParsedTemplateInfo &TemplateInfo, |
John McCall | c9068d7 | 2010-07-16 08:13:16 +0000 | [diff] [blame] | 191 | ParsingDeclRAIIObject &DiagsFromTParams, |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 192 | SourceLocation &DeclEnd, |
| 193 | AccessSpecifier AS) { |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 194 | assert(TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate && |
| 195 | "Template information required"); |
| 196 | |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 197 | if (Context == Declarator::MemberContext) { |
| 198 | // We are parsing a member template. |
John McCall | c9068d7 | 2010-07-16 08:13:16 +0000 | [diff] [blame] | 199 | ParseCXXClassMemberDeclaration(AS, TemplateInfo, &DiagsFromTParams); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 200 | return 0; |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 201 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 202 | |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 203 | ParsedAttributesWithRange prefixAttrs(AttrFactory); |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 204 | MaybeParseCXX0XAttributes(prefixAttrs); |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 205 | |
| 206 | if (Tok.is(tok::kw_using)) |
| 207 | return ParseUsingDirectiveOrDeclaration(Context, TemplateInfo, DeclEnd, |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 208 | prefixAttrs); |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 209 | |
John McCall | c9068d7 | 2010-07-16 08:13:16 +0000 | [diff] [blame] | 210 | // Parse the declaration specifiers, stealing the accumulated |
| 211 | // diagnostics from the template parameters. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 212 | ParsingDeclSpec DS(*this, &DiagsFromTParams); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 213 | |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 214 | DS.takeAttributesFrom(prefixAttrs); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 215 | |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 216 | ParseDeclarationSpecifiers(DS, TemplateInfo, AS, |
| 217 | getDeclSpecContextFromDeclaratorContext(Context)); |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 218 | |
| 219 | if (Tok.is(tok::semi)) { |
| 220 | DeclEnd = ConsumeToken(); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 221 | Decl *Decl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS); |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 222 | DS.complete(Decl); |
| 223 | return Decl; |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | // Parse the declarator. |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 227 | ParsingDeclarator DeclaratorInfo(*this, DS, (Declarator::TheContext)Context); |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 228 | ParseDeclarator(DeclaratorInfo); |
| 229 | // Error parsing the declarator? |
| 230 | if (!DeclaratorInfo.hasName()) { |
| 231 | // If so, skip until the semi-colon or a }. |
| 232 | SkipUntil(tok::r_brace, true, true); |
| 233 | if (Tok.is(tok::semi)) |
| 234 | ConsumeToken(); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 235 | return 0; |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 236 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 237 | |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 238 | // If we have a declaration or declarator list, handle it. |
| 239 | if (isDeclarationAfterDeclarator()) { |
| 240 | // Parse this declaration. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 241 | Decl *ThisDecl = ParseDeclarationAfterDeclarator(DeclaratorInfo, |
| 242 | TemplateInfo); |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 243 | |
| 244 | if (Tok.is(tok::comma)) { |
| 245 | Diag(Tok, diag::err_multiple_template_declarators) |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 246 | << (int)TemplateInfo.Kind; |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 247 | SkipUntil(tok::semi, true, false); |
| 248 | return ThisDecl; |
| 249 | } |
| 250 | |
| 251 | // Eat the semi colon after the declaration. |
John McCall | 5c15fe1 | 2009-07-31 02:20:35 +0000 | [diff] [blame] | 252 | ExpectAndConsume(tok::semi, diag::err_expected_semi_declaration); |
John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 253 | DeclaratorInfo.complete(ThisDecl); |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 254 | return ThisDecl; |
| 255 | } |
| 256 | |
| 257 | if (DeclaratorInfo.isFunctionDeclarator() && |
Chris Lattner | 004659a | 2010-07-11 22:42:07 +0000 | [diff] [blame] | 258 | isStartOfFunctionDefinition(DeclaratorInfo)) { |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 259 | if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) { |
| 260 | Diag(Tok, diag::err_function_declared_typedef); |
| 261 | |
| 262 | if (Tok.is(tok::l_brace)) { |
| 263 | // This recovery skips the entire function body. It would be nice |
| 264 | // to simply call ParseFunctionDefinition() below, however Sema |
| 265 | // assumes the declarator represents a function, not a typedef. |
| 266 | ConsumeBrace(); |
| 267 | SkipUntil(tok::r_brace, true); |
| 268 | } else { |
| 269 | SkipUntil(tok::semi); |
| 270 | } |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 271 | return 0; |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 272 | } |
Douglas Gregor | 52591bf | 2009-06-24 00:54:41 +0000 | [diff] [blame] | 273 | return ParseFunctionDefinition(DeclaratorInfo, TemplateInfo); |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | if (DeclaratorInfo.isFunctionDeclarator()) |
| 277 | Diag(Tok, diag::err_expected_fn_body); |
| 278 | else |
| 279 | Diag(Tok, diag::err_invalid_token_after_toplevel_declarator); |
| 280 | SkipUntil(tok::semi); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 281 | return 0; |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | /// ParseTemplateParameters - Parses a template-parameter-list enclosed in |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 285 | /// angle brackets. Depth is the depth of this template-parameter-list, which |
| 286 | /// is the number of template headers directly enclosing this template header. |
| 287 | /// TemplateParams is the current list of template parameters we're building. |
| 288 | /// The template parameter we parse will be added to this list. LAngleLoc and |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 289 | /// RAngleLoc will receive the positions of the '<' and '>', respectively, |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 290 | /// that enclose this template parameter list. |
Douglas Gregor | 7cdbc58 | 2009-07-22 23:48:44 +0000 | [diff] [blame] | 291 | /// |
| 292 | /// \returns true if an error occurred, false otherwise. |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 293 | bool Parser::ParseTemplateParameters(unsigned Depth, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 294 | SmallVectorImpl<Decl*> &TemplateParams, |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 295 | SourceLocation &LAngleLoc, |
| 296 | SourceLocation &RAngleLoc) { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 297 | // Get the template parameter list. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 298 | if (!Tok.is(tok::less)) { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 299 | Diag(Tok.getLocation(), diag::err_expected_less_after) << "template"; |
Douglas Gregor | 7cdbc58 | 2009-07-22 23:48:44 +0000 | [diff] [blame] | 300 | return true; |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 301 | } |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 302 | LAngleLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 303 | |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 304 | // Try to parse the template parameter list. |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 305 | if (Tok.is(tok::greater)) |
| 306 | RAngleLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 307 | else if (ParseTemplateParameterList(Depth, TemplateParams)) { |
| 308 | if (!Tok.is(tok::greater)) { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 309 | Diag(Tok.getLocation(), diag::err_expected_greater); |
Douglas Gregor | 7cdbc58 | 2009-07-22 23:48:44 +0000 | [diff] [blame] | 310 | return true; |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 311 | } |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 312 | RAngleLoc = ConsumeToken(); |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 313 | } |
Douglas Gregor | 7cdbc58 | 2009-07-22 23:48:44 +0000 | [diff] [blame] | 314 | return false; |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | /// ParseTemplateParameterList - Parse a template parameter list. If |
| 318 | /// the parsing fails badly (i.e., closing bracket was left out), this |
| 319 | /// will try to put the token stream in a reasonable position (closing |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 320 | /// a statement, etc.) and return false. |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 321 | /// |
| 322 | /// template-parameter-list: [C++ temp] |
| 323 | /// template-parameter |
| 324 | /// template-parameter-list ',' template-parameter |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 325 | bool |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 326 | Parser::ParseTemplateParameterList(unsigned Depth, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 327 | SmallVectorImpl<Decl*> &TemplateParams) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 328 | while (1) { |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 329 | if (Decl *TmpParam |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 330 | = ParseTemplateParameter(Depth, TemplateParams.size())) { |
| 331 | TemplateParams.push_back(TmpParam); |
| 332 | } else { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 333 | // If we failed to parse a template parameter, skip until we find |
| 334 | // a comma or closing brace. |
| 335 | SkipUntil(tok::comma, tok::greater, true, true); |
| 336 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 337 | |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 338 | // Did we find a comma or the end of the template parmeter list? |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 339 | if (Tok.is(tok::comma)) { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 340 | ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 341 | } else if (Tok.is(tok::greater)) { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 342 | // Don't consume this... that's done by template parser. |
| 343 | break; |
| 344 | } else { |
| 345 | // Somebody probably forgot to close the template. Skip ahead and |
| 346 | // try to get out of the expression. This error is currently |
| 347 | // subsumed by whatever goes on in ParseTemplateParameter. |
| 348 | // TODO: This could match >>, and it would be nice to avoid those |
| 349 | // silly errors with template <vec<T>>. |
Douglas Gregor | 99ea734 | 2010-10-15 01:15:58 +0000 | [diff] [blame] | 350 | Diag(Tok.getLocation(), diag::err_expected_comma_greater); |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 351 | SkipUntil(tok::greater, true, true); |
| 352 | return false; |
| 353 | } |
| 354 | } |
| 355 | return true; |
| 356 | } |
| 357 | |
Douglas Gregor | 98440b4 | 2009-11-21 02:07:55 +0000 | [diff] [blame] | 358 | /// \brief Determine whether the parser is at the start of a template |
| 359 | /// type parameter. |
| 360 | bool Parser::isStartOfTemplateTypeParameter() { |
Douglas Gregor | 7b6d25b | 2010-06-04 07:30:15 +0000 | [diff] [blame] | 361 | if (Tok.is(tok::kw_class)) { |
| 362 | // "class" may be the start of an elaborated-type-specifier or a |
| 363 | // type-parameter. Per C++ [temp.param]p3, we prefer the type-parameter. |
| 364 | switch (NextToken().getKind()) { |
| 365 | case tok::equal: |
| 366 | case tok::comma: |
| 367 | case tok::greater: |
| 368 | case tok::greatergreater: |
| 369 | case tok::ellipsis: |
| 370 | return true; |
| 371 | |
| 372 | case tok::identifier: |
| 373 | // This may be either a type-parameter or an elaborated-type-specifier. |
| 374 | // We have to look further. |
| 375 | break; |
| 376 | |
| 377 | default: |
| 378 | return false; |
| 379 | } |
| 380 | |
| 381 | switch (GetLookAheadToken(2).getKind()) { |
| 382 | case tok::equal: |
| 383 | case tok::comma: |
| 384 | case tok::greater: |
| 385 | case tok::greatergreater: |
| 386 | return true; |
| 387 | |
| 388 | default: |
| 389 | return false; |
| 390 | } |
| 391 | } |
Douglas Gregor | 98440b4 | 2009-11-21 02:07:55 +0000 | [diff] [blame] | 392 | |
| 393 | if (Tok.isNot(tok::kw_typename)) |
| 394 | return false; |
| 395 | |
| 396 | // C++ [temp.param]p2: |
| 397 | // There is no semantic difference between class and typename in a |
| 398 | // template-parameter. typename followed by an unqualified-id |
| 399 | // names a template type parameter. typename followed by a |
| 400 | // qualified-id denotes the type in a non-type |
| 401 | // parameter-declaration. |
| 402 | Token Next = NextToken(); |
| 403 | |
| 404 | // If we have an identifier, skip over it. |
| 405 | if (Next.getKind() == tok::identifier) |
| 406 | Next = GetLookAheadToken(2); |
| 407 | |
| 408 | switch (Next.getKind()) { |
| 409 | case tok::equal: |
| 410 | case tok::comma: |
| 411 | case tok::greater: |
| 412 | case tok::greatergreater: |
| 413 | case tok::ellipsis: |
| 414 | return true; |
| 415 | |
| 416 | default: |
| 417 | return false; |
| 418 | } |
| 419 | } |
| 420 | |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 421 | /// ParseTemplateParameter - Parse a template-parameter (C++ [temp.param]). |
| 422 | /// |
| 423 | /// template-parameter: [C++ temp.param] |
| 424 | /// type-parameter |
| 425 | /// parameter-declaration |
| 426 | /// |
| 427 | /// type-parameter: (see below) |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 428 | /// 'class' ...[opt] identifier[opt] |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 429 | /// 'class' identifier[opt] '=' type-id |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 430 | /// 'typename' ...[opt] identifier[opt] |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 431 | /// 'typename' identifier[opt] '=' type-id |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 432 | /// 'template' '<' template-parameter-list '>' |
| 433 | /// 'class' ...[opt] identifier[opt] |
| 434 | /// 'template' '<' template-parameter-list '>' 'class' identifier[opt] |
| 435 | /// = id-expression |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 436 | Decl *Parser::ParseTemplateParameter(unsigned Depth, unsigned Position) { |
Douglas Gregor | 98440b4 | 2009-11-21 02:07:55 +0000 | [diff] [blame] | 437 | if (isStartOfTemplateTypeParameter()) |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 438 | return ParseTypeParameter(Depth, Position); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 439 | |
| 440 | if (Tok.is(tok::kw_template)) |
Chris Lattner | 532e19b | 2009-01-04 23:51:17 +0000 | [diff] [blame] | 441 | return ParseTemplateTemplateParameter(Depth, Position); |
| 442 | |
| 443 | // If it's none of the above, then it must be a parameter declaration. |
| 444 | // NOTE: This will pick up errors in the closure of the template parameter |
| 445 | // list (e.g., template < ; Check here to implement >> style closures. |
| 446 | return ParseNonTypeTemplateParameter(Depth, Position); |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | /// ParseTypeParameter - Parse a template type parameter (C++ [temp.param]). |
| 450 | /// Other kinds of template parameters are parsed in |
| 451 | /// ParseTemplateTemplateParameter and ParseNonTypeTemplateParameter. |
| 452 | /// |
| 453 | /// type-parameter: [C++ temp.param] |
Anders Carlsson | ce5635a | 2009-06-12 23:09:56 +0000 | [diff] [blame] | 454 | /// 'class' ...[opt][C++0x] identifier[opt] |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 455 | /// 'class' identifier[opt] '=' type-id |
Anders Carlsson | ce5635a | 2009-06-12 23:09:56 +0000 | [diff] [blame] | 456 | /// 'typename' ...[opt][C++0x] identifier[opt] |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 457 | /// 'typename' identifier[opt] '=' type-id |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 458 | Decl *Parser::ParseTypeParameter(unsigned Depth, unsigned Position) { |
Douglas Gregor | 26236e8 | 2008-12-02 00:41:28 +0000 | [diff] [blame] | 459 | assert((Tok.is(tok::kw_class) || Tok.is(tok::kw_typename)) && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 460 | "A type-parameter starts with 'class' or 'typename'"); |
Douglas Gregor | 26236e8 | 2008-12-02 00:41:28 +0000 | [diff] [blame] | 461 | |
| 462 | // Consume the 'class' or 'typename' keyword. |
| 463 | bool TypenameKeyword = Tok.is(tok::kw_typename); |
| 464 | SourceLocation KeyLoc = ConsumeToken(); |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 465 | |
Anders Carlsson | 941df7d | 2009-06-12 19:58:00 +0000 | [diff] [blame] | 466 | // Grab the ellipsis (if given). |
| 467 | bool Ellipsis = false; |
| 468 | SourceLocation EllipsisLoc; |
Anders Carlsson | ce5635a | 2009-06-12 23:09:56 +0000 | [diff] [blame] | 469 | if (Tok.is(tok::ellipsis)) { |
Anders Carlsson | 941df7d | 2009-06-12 19:58:00 +0000 | [diff] [blame] | 470 | Ellipsis = true; |
| 471 | EllipsisLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 472 | |
| 473 | if (!getLang().CPlusPlus0x) |
Douglas Gregor | 5ce5f52 | 2011-01-19 21:59:15 +0000 | [diff] [blame] | 474 | Diag(EllipsisLoc, diag::ext_variadic_templates); |
Anders Carlsson | 941df7d | 2009-06-12 19:58:00 +0000 | [diff] [blame] | 475 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 476 | |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 477 | // Grab the template parameter name (if given) |
Douglas Gregor | 26236e8 | 2008-12-02 00:41:28 +0000 | [diff] [blame] | 478 | SourceLocation NameLoc; |
| 479 | IdentifierInfo* ParamName = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 480 | if (Tok.is(tok::identifier)) { |
Douglas Gregor | 26236e8 | 2008-12-02 00:41:28 +0000 | [diff] [blame] | 481 | ParamName = Tok.getIdentifierInfo(); |
| 482 | NameLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 483 | } else if (Tok.is(tok::equal) || Tok.is(tok::comma) || |
| 484 | Tok.is(tok::greater)) { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 485 | // Unnamed template parameter. Don't have to do anything here, just |
| 486 | // don't consume this token. |
| 487 | } else { |
| 488 | Diag(Tok.getLocation(), diag::err_expected_ident); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 489 | return 0; |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 490 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 491 | |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 492 | // Grab a default argument (if available). |
| 493 | // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before |
| 494 | // we introduce the type parameter into the local scope. |
| 495 | SourceLocation EqualLoc; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 496 | ParsedType DefaultArg; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 497 | if (Tok.is(tok::equal)) { |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 498 | EqualLoc = ConsumeToken(); |
| 499 | DefaultArg = ParseTypeName().get(); |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 500 | } |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 501 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 502 | return Actions.ActOnTypeParameter(getCurScope(), TypenameKeyword, Ellipsis, |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 503 | EllipsisLoc, KeyLoc, ParamName, NameLoc, |
| 504 | Depth, Position, EqualLoc, DefaultArg); |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | /// ParseTemplateTemplateParameter - Handle the parsing of template |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 508 | /// template parameters. |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 509 | /// |
| 510 | /// type-parameter: [C++ temp.param] |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 511 | /// 'template' '<' template-parameter-list '>' 'class' |
| 512 | /// ...[opt] identifier[opt] |
| 513 | /// 'template' '<' template-parameter-list '>' 'class' identifier[opt] |
| 514 | /// = id-expression |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 515 | Decl * |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 516 | Parser::ParseTemplateTemplateParameter(unsigned Depth, unsigned Position) { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 517 | assert(Tok.is(tok::kw_template) && "Expected 'template' keyword"); |
| 518 | |
| 519 | // Handle the template <...> part. |
| 520 | SourceLocation TemplateLoc = ConsumeToken(); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 521 | SmallVector<Decl*,8> TemplateParams; |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 522 | SourceLocation LAngleLoc, RAngleLoc; |
Douglas Gregor | 68c6993 | 2009-02-10 19:52:54 +0000 | [diff] [blame] | 523 | { |
| 524 | ParseScope TemplateParmScope(this, Scope::TemplateParamScope); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 525 | if (ParseTemplateParameters(Depth + 1, TemplateParams, LAngleLoc, |
Douglas Gregor | 7cdbc58 | 2009-07-22 23:48:44 +0000 | [diff] [blame] | 526 | RAngleLoc)) { |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 527 | return 0; |
Douglas Gregor | 68c6993 | 2009-02-10 19:52:54 +0000 | [diff] [blame] | 528 | } |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | // Generate a meaningful error if the user forgot to put class before the |
| 532 | // identifier, comma, or greater. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 533 | if (!Tok.is(tok::kw_class)) { |
| 534 | Diag(Tok.getLocation(), diag::err_expected_class_before) |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 535 | << PP.getSpelling(Tok); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 536 | return 0; |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 537 | } |
Jeffrey Yasskin | dec0984 | 2011-01-18 02:00:16 +0000 | [diff] [blame] | 538 | ConsumeToken(); |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 539 | |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 540 | // Parse the ellipsis, if given. |
| 541 | SourceLocation EllipsisLoc; |
| 542 | if (Tok.is(tok::ellipsis)) { |
| 543 | EllipsisLoc = ConsumeToken(); |
| 544 | |
| 545 | if (!getLang().CPlusPlus0x) |
Douglas Gregor | 5ce5f52 | 2011-01-19 21:59:15 +0000 | [diff] [blame] | 546 | Diag(EllipsisLoc, diag::ext_variadic_templates); |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 549 | // Get the identifier, if given. |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 550 | SourceLocation NameLoc; |
| 551 | IdentifierInfo* ParamName = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 552 | if (Tok.is(tok::identifier)) { |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 553 | ParamName = Tok.getIdentifierInfo(); |
| 554 | NameLoc = ConsumeToken(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 555 | } else if (Tok.is(tok::equal) || Tok.is(tok::comma) || Tok.is(tok::greater)) { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 556 | // Unnamed template parameter. Don't have to do anything here, just |
| 557 | // don't consume this token. |
| 558 | } else { |
| 559 | Diag(Tok.getLocation(), diag::err_expected_ident); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 560 | return 0; |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 561 | } |
| 562 | |
Richard Trieu | 90ab75b | 2011-09-09 03:18:59 +0000 | [diff] [blame] | 563 | TemplateParameterList *ParamList = |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 564 | Actions.ActOnTemplateParameterList(Depth, SourceLocation(), |
| 565 | TemplateLoc, LAngleLoc, |
Douglas Gregor | 369ea27 | 2010-10-21 17:26:49 +0000 | [diff] [blame] | 566 | TemplateParams.data(), |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 567 | TemplateParams.size(), |
| 568 | RAngleLoc); |
| 569 | |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 570 | // Grab a default argument (if available). |
| 571 | // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before |
| 572 | // we introduce the template parameter into the local scope. |
| 573 | SourceLocation EqualLoc; |
| 574 | ParsedTemplateArgument DefaultArg; |
Douglas Gregor | d684b00 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 575 | if (Tok.is(tok::equal)) { |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 576 | EqualLoc = ConsumeToken(); |
| 577 | DefaultArg = ParseTemplateTemplateArgument(); |
| 578 | if (DefaultArg.isInvalid()) { |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 579 | Diag(Tok.getLocation(), |
| 580 | diag::err_default_template_template_parameter_not_template); |
Nuno Lopes | 68f7a24 | 2009-12-10 00:07:02 +0000 | [diff] [blame] | 581 | static const tok::TokenKind EndToks[] = { |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 582 | tok::comma, tok::greater, tok::greatergreater |
| 583 | }; |
| 584 | SkipUntil(EndToks, 3, true, true); |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 585 | } |
Douglas Gregor | d684b00 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 586 | } |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 587 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 588 | return Actions.ActOnTemplateTemplateParameter(getCurScope(), TemplateLoc, |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 589 | ParamList, EllipsisLoc, |
| 590 | ParamName, NameLoc, Depth, |
| 591 | Position, EqualLoc, DefaultArg); |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | /// ParseNonTypeTemplateParameter - Handle the parsing of non-type |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 595 | /// template parameters (e.g., in "template<int Size> class array;"). |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 596 | /// |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 597 | /// template-parameter: |
| 598 | /// ... |
| 599 | /// parameter-declaration |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 600 | Decl * |
Douglas Gregor | c4b4e7b | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 601 | Parser::ParseNonTypeTemplateParameter(unsigned Depth, unsigned Position) { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 602 | // Parse the declaration-specifiers (i.e., the type). |
Douglas Gregor | 26236e8 | 2008-12-02 00:41:28 +0000 | [diff] [blame] | 603 | // FIXME: The type should probably be restricted in some way... Not all |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 604 | // declarators (parts of declarators?) are accepted for parameters. |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 605 | DeclSpec DS(AttrFactory); |
Douglas Gregor | 26236e8 | 2008-12-02 00:41:28 +0000 | [diff] [blame] | 606 | ParseDeclarationSpecifiers(DS); |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 607 | |
| 608 | // Parse this as a typename. |
Douglas Gregor | 26236e8 | 2008-12-02 00:41:28 +0000 | [diff] [blame] | 609 | Declarator ParamDecl(DS, Declarator::TemplateParamContext); |
| 610 | ParseDeclarator(ParamDecl); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 611 | if (DS.getTypeSpecType() == DeclSpec::TST_unspecified) { |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 612 | // This probably shouldn't happen - and it's more of a Sema thing, but |
| 613 | // basically we didn't parse the type name because we couldn't associate |
| 614 | // it with an AST node. we should just skip to the comma or greater. |
| 615 | // TODO: This is currently a placeholder for some kind of Sema Error. |
| 616 | Diag(Tok.getLocation(), diag::err_parse_error); |
| 617 | SkipUntil(tok::comma, tok::greater, true, true); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 618 | return 0; |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 619 | } |
| 620 | |
Douglas Gregor | d684b00 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 621 | // If there is a default value, parse it. |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 622 | // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before |
| 623 | // we introduce the template parameter into the local scope. |
| 624 | SourceLocation EqualLoc; |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 625 | ExprResult DefaultArg; |
Chris Lattner | 7452c6f | 2009-01-05 01:24:05 +0000 | [diff] [blame] | 626 | if (Tok.is(tok::equal)) { |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 627 | EqualLoc = ConsumeToken(); |
Douglas Gregor | d684b00 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 628 | |
| 629 | // C++ [temp.param]p15: |
| 630 | // When parsing a default template-argument for a non-type |
| 631 | // template-parameter, the first non-nested > is taken as the |
| 632 | // end of the template-parameter-list rather than a greater-than |
| 633 | // operator. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 634 | GreaterThanIsOperatorScope G(GreaterThanIsOperator, false); |
Douglas Gregor | d684b00 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 635 | |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 636 | DefaultArg = ParseAssignmentExpression(); |
Douglas Gregor | d684b00 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 637 | if (DefaultArg.isInvalid()) |
| 638 | SkipUntil(tok::comma, tok::greater, true, true); |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 639 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 640 | |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 641 | // Create the parameter. |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 642 | return Actions.ActOnNonTypeTemplateParameter(getCurScope(), ParamDecl, |
Douglas Gregor | bb3310a | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 643 | Depth, Position, EqualLoc, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 644 | DefaultArg.take()); |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 645 | } |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 646 | |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 647 | /// \brief Parses a template-id that after the template name has |
| 648 | /// already been parsed. |
| 649 | /// |
| 650 | /// This routine takes care of parsing the enclosed template argument |
| 651 | /// list ('<' template-parameter-list [opt] '>') and placing the |
| 652 | /// results into a form that can be transferred to semantic analysis. |
| 653 | /// |
| 654 | /// \param Template the template declaration produced by isTemplateName |
| 655 | /// |
| 656 | /// \param TemplateNameLoc the source location of the template name |
| 657 | /// |
| 658 | /// \param SS if non-NULL, the nested-name-specifier preceding the |
| 659 | /// template name. |
| 660 | /// |
| 661 | /// \param ConsumeLastToken if true, then we will consume the last |
| 662 | /// token that forms the template-id. Otherwise, we will leave the |
| 663 | /// last token in the stream (e.g., so that it can be replaced with an |
| 664 | /// annotation token). |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 665 | bool |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 666 | Parser::ParseTemplateIdAfterTemplateName(TemplateTy Template, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 667 | SourceLocation TemplateNameLoc, |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 668 | const CXXScopeSpec &SS, |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 669 | bool ConsumeLastToken, |
| 670 | SourceLocation &LAngleLoc, |
| 671 | TemplateArgList &TemplateArgs, |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 672 | SourceLocation &RAngleLoc) { |
| 673 | assert(Tok.is(tok::less) && "Must have already parsed the template-name"); |
| 674 | |
| 675 | // Consume the '<'. |
| 676 | LAngleLoc = ConsumeToken(); |
| 677 | |
| 678 | // Parse the optional template-argument-list. |
| 679 | bool Invalid = false; |
| 680 | { |
| 681 | GreaterThanIsOperatorScope G(GreaterThanIsOperator, false); |
Douglas Gregor | 4f3018e | 2011-01-11 00:45:18 +0000 | [diff] [blame] | 682 | if (Tok.isNot(tok::greater) && Tok.isNot(tok::greatergreater)) |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 683 | Invalid = ParseTemplateArgumentList(TemplateArgs); |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 684 | |
| 685 | if (Invalid) { |
| 686 | // Try to find the closing '>'. |
| 687 | SkipUntil(tok::greater, true, !ConsumeLastToken); |
| 688 | |
| 689 | return true; |
| 690 | } |
| 691 | } |
| 692 | |
Eli Friedman | 64a4eb2 | 2009-12-27 22:31:18 +0000 | [diff] [blame] | 693 | if (Tok.isNot(tok::greater) && Tok.isNot(tok::greatergreater)) { |
| 694 | Diag(Tok.getLocation(), diag::err_expected_greater); |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 695 | return true; |
Eli Friedman | 64a4eb2 | 2009-12-27 22:31:18 +0000 | [diff] [blame] | 696 | } |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 697 | |
Douglas Gregor | 3965b7b | 2009-02-25 23:02:36 +0000 | [diff] [blame] | 698 | // Determine the location of the '>' or '>>'. Only consume this |
| 699 | // token if the caller asked us to. |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 700 | RAngleLoc = Tok.getLocation(); |
| 701 | |
Douglas Gregor | 3965b7b | 2009-02-25 23:02:36 +0000 | [diff] [blame] | 702 | if (Tok.is(tok::greatergreater)) { |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 703 | if (!getLang().CPlusPlus0x) { |
| 704 | const char *ReplaceStr = "> >"; |
| 705 | if (NextToken().is(tok::greater) || NextToken().is(tok::greatergreater)) |
| 706 | ReplaceStr = "> > "; |
| 707 | |
| 708 | Diag(Tok.getLocation(), diag::err_two_right_angle_brackets_need_space) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 709 | << FixItHint::CreateReplacement( |
Douglas Gregor | b2fb6de | 2009-02-27 17:53:17 +0000 | [diff] [blame] | 710 | SourceRange(Tok.getLocation()), ReplaceStr); |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 711 | } |
Douglas Gregor | 3965b7b | 2009-02-25 23:02:36 +0000 | [diff] [blame] | 712 | |
| 713 | Tok.setKind(tok::greater); |
| 714 | if (!ConsumeLastToken) { |
| 715 | // Since we're not supposed to consume the '>>' token, we need |
| 716 | // to insert a second '>' token after the first. |
| 717 | PP.EnterToken(Tok); |
| 718 | } |
| 719 | } else if (ConsumeLastToken) |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 720 | ConsumeToken(); |
| 721 | |
| 722 | return false; |
| 723 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 724 | |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 725 | /// \brief Replace the tokens that form a simple-template-id with an |
| 726 | /// annotation token containing the complete template-id. |
| 727 | /// |
| 728 | /// The first token in the stream must be the name of a template that |
| 729 | /// is followed by a '<'. This routine will parse the complete |
| 730 | /// simple-template-id and replace the tokens with a single annotation |
| 731 | /// token with one of two different kinds: if the template-id names a |
| 732 | /// type (and \p AllowTypeAnnotation is true), the annotation token is |
| 733 | /// a type annotation that includes the optional nested-name-specifier |
| 734 | /// (\p SS). Otherwise, the annotation token is a template-id |
| 735 | /// annotation that does not include the optional |
| 736 | /// nested-name-specifier. |
| 737 | /// |
| 738 | /// \param Template the declaration of the template named by the first |
| 739 | /// token (an identifier), as returned from \c Action::isTemplateName(). |
| 740 | /// |
| 741 | /// \param TemplateNameKind the kind of template that \p Template |
| 742 | /// refers to, as returned from \c Action::isTemplateName(). |
| 743 | /// |
| 744 | /// \param SS if non-NULL, the nested-name-specifier that precedes |
| 745 | /// this template name. |
| 746 | /// |
| 747 | /// \param TemplateKWLoc if valid, specifies that this template-id |
| 748 | /// annotation was preceded by the 'template' keyword and gives the |
| 749 | /// location of that keyword. If invalid (the default), then this |
| 750 | /// template-id was not preceded by a 'template' keyword. |
| 751 | /// |
| 752 | /// \param AllowTypeAnnotation if true (the default), then a |
| 753 | /// simple-template-id that refers to a class template, template |
| 754 | /// template parameter, or other template that produces a type will be |
| 755 | /// replaced with a type annotation token. Otherwise, the |
| 756 | /// simple-template-id is always replaced with a template-id |
| 757 | /// annotation token. |
Chris Lattner | c8e27cc | 2009-06-26 04:27:47 +0000 | [diff] [blame] | 758 | /// |
| 759 | /// If an unrecoverable parse error occurs and no annotation token can be |
| 760 | /// formed, this function returns true. |
| 761 | /// |
| 762 | bool Parser::AnnotateTemplateIdToken(TemplateTy Template, TemplateNameKind TNK, |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 763 | CXXScopeSpec &SS, |
Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 764 | UnqualifiedId &TemplateName, |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 765 | SourceLocation TemplateKWLoc, |
| 766 | bool AllowTypeAnnotation) { |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 767 | assert(getLang().CPlusPlus && "Can only annotate template-ids in C++"); |
Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 768 | assert(Template && Tok.is(tok::less) && |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 769 | "Parser isn't at the beginning of a template-id"); |
| 770 | |
| 771 | // Consume the template-name. |
Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 772 | SourceLocation TemplateNameLoc = TemplateName.getSourceRange().getBegin(); |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 773 | |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 774 | // Parse the enclosed template argument list. |
| 775 | SourceLocation LAngleLoc, RAngleLoc; |
Douglas Gregor | 5908e9f | 2009-02-09 19:34:22 +0000 | [diff] [blame] | 776 | TemplateArgList TemplateArgs; |
Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 777 | bool Invalid = ParseTemplateIdAfterTemplateName(Template, |
| 778 | TemplateNameLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 779 | SS, false, LAngleLoc, |
| 780 | TemplateArgs, |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 781 | RAngleLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 782 | |
Chris Lattner | c8e27cc | 2009-06-26 04:27:47 +0000 | [diff] [blame] | 783 | if (Invalid) { |
| 784 | // If we failed to parse the template ID but skipped ahead to a >, we're not |
| 785 | // going to be able to form a token annotation. Eat the '>' if present. |
| 786 | if (Tok.is(tok::greater)) |
| 787 | ConsumeToken(); |
| 788 | return true; |
| 789 | } |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 790 | |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 791 | ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(), |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 792 | TemplateArgs.size()); |
Douglas Gregor | f02da89 | 2009-02-09 21:04:56 +0000 | [diff] [blame] | 793 | |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 794 | // Build the annotation token. |
Douglas Gregor | c45c232 | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 795 | if (TNK == TNK_Type_template && AllowTypeAnnotation) { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 796 | TypeResult Type |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 797 | = Actions.ActOnTemplateIdType(SS, |
| 798 | Template, TemplateNameLoc, |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 799 | LAngleLoc, TemplateArgsPtr, |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 800 | RAngleLoc); |
Chris Lattner | c8e27cc | 2009-06-26 04:27:47 +0000 | [diff] [blame] | 801 | if (Type.isInvalid()) { |
| 802 | // If we failed to parse the template ID but skipped ahead to a >, we're not |
| 803 | // going to be able to form a token annotation. Eat the '>' if present. |
| 804 | if (Tok.is(tok::greater)) |
| 805 | ConsumeToken(); |
| 806 | return true; |
| 807 | } |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 808 | |
| 809 | Tok.setKind(tok::annot_typename); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 810 | setTypeAnnotation(Tok, Type.get()); |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 811 | if (SS.isNotEmpty()) |
| 812 | Tok.setLocation(SS.getBeginLoc()); |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 813 | else if (TemplateKWLoc.isValid()) |
| 814 | Tok.setLocation(TemplateKWLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 815 | else |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 816 | Tok.setLocation(TemplateNameLoc); |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 817 | } else { |
Douglas Gregor | c45c232 | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 818 | // Build a template-id annotation token that can be processed |
| 819 | // later. |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 820 | Tok.setKind(tok::annot_template_id); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 821 | TemplateIdAnnotation *TemplateId |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 822 | = TemplateIdAnnotation::Allocate(TemplateArgs.size()); |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 823 | TemplateId->TemplateNameLoc = TemplateNameLoc; |
Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 824 | if (TemplateName.getKind() == UnqualifiedId::IK_Identifier) { |
| 825 | TemplateId->Name = TemplateName.Identifier; |
| 826 | TemplateId->Operator = OO_None; |
| 827 | } else { |
| 828 | TemplateId->Name = 0; |
| 829 | TemplateId->Operator = TemplateName.OperatorFunctionId.Operator; |
| 830 | } |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 831 | TemplateId->SS = SS; |
John McCall | 2b5289b | 2010-08-23 07:28:44 +0000 | [diff] [blame] | 832 | TemplateId->Template = Template; |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 833 | TemplateId->Kind = TNK; |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 834 | TemplateId->LAngleLoc = LAngleLoc; |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 835 | TemplateId->RAngleLoc = RAngleLoc; |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 836 | ParsedTemplateArgument *Args = TemplateId->getTemplateArgs(); |
| 837 | for (unsigned Arg = 0, ArgEnd = TemplateArgs.size(); Arg != ArgEnd; ++Arg) |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 838 | Args[Arg] = ParsedTemplateArgument(TemplateArgs[Arg]); |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 839 | Tok.setAnnotationValue(TemplateId); |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 840 | if (TemplateKWLoc.isValid()) |
| 841 | Tok.setLocation(TemplateKWLoc); |
| 842 | else |
| 843 | Tok.setLocation(TemplateNameLoc); |
| 844 | |
| 845 | TemplateArgsPtr.release(); |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 846 | } |
| 847 | |
| 848 | // Common fields for the annotation token |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 849 | Tok.setAnnotationEndLoc(RAngleLoc); |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 850 | |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 851 | // In case the tokens were cached, have Preprocessor replace them with the |
| 852 | // annotation token. |
| 853 | PP.AnnotateCachedTokens(Tok); |
Chris Lattner | c8e27cc | 2009-06-26 04:27:47 +0000 | [diff] [blame] | 854 | return false; |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 855 | } |
| 856 | |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 857 | /// \brief Replaces a template-id annotation token with a type |
| 858 | /// annotation token. |
| 859 | /// |
Douglas Gregor | 31a19b6 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 860 | /// If there was a failure when forming the type from the template-id, |
| 861 | /// a type annotation token will still be created, but will have a |
| 862 | /// NULL type pointer to signify an error. |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 863 | void Parser::AnnotateTemplateIdTokenAsType() { |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 864 | assert(Tok.is(tok::annot_template_id) && "Requires template-id tokens"); |
| 865 | |
Argyrios Kyrtzidis | 25a7676 | 2011-06-22 06:09:49 +0000 | [diff] [blame] | 866 | TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok); |
Douglas Gregor | c45c232 | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 867 | assert((TemplateId->Kind == TNK_Type_template || |
| 868 | TemplateId->Kind == TNK_Dependent_template_name) && |
| 869 | "Only works for type and dependent templates"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 870 | |
| 871 | ASTTemplateArgsPtr TemplateArgsPtr(Actions, |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 872 | TemplateId->getTemplateArgs(), |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 873 | TemplateId->NumArgs); |
| 874 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 875 | TypeResult Type |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 876 | = Actions.ActOnTemplateIdType(TemplateId->SS, |
| 877 | TemplateId->Template, |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 878 | TemplateId->TemplateNameLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 879 | TemplateId->LAngleLoc, |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 880 | TemplateArgsPtr, |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 881 | TemplateId->RAngleLoc); |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 882 | // Create the new "type" annotation token. |
| 883 | Tok.setKind(tok::annot_typename); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 884 | setTypeAnnotation(Tok, Type.isInvalid() ? ParsedType() : Type.get()); |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 885 | if (TemplateId->SS.isNotEmpty()) // it was a C++ qualified type name. |
| 886 | Tok.setLocation(TemplateId->SS.getBeginLoc()); |
Sebastian Redl | 39d6711 | 2010-02-08 19:35:18 +0000 | [diff] [blame] | 887 | // End location stays the same |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 888 | |
Douglas Gregor | 8623541 | 2009-11-04 18:18:19 +0000 | [diff] [blame] | 889 | // Replace the template-id annotation token, and possible the scope-specifier |
| 890 | // that precedes it, with the typename annotation token. |
| 891 | PP.AnnotateCachedTokens(Tok); |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 892 | } |
| 893 | |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 894 | /// \brief Determine whether the given token can end a template argument. |
Benjamin Kramer | 3a4a2b3 | 2009-11-10 21:29:56 +0000 | [diff] [blame] | 895 | static bool isEndOfTemplateArgument(Token Tok) { |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 896 | return Tok.is(tok::comma) || Tok.is(tok::greater) || |
| 897 | Tok.is(tok::greatergreater); |
| 898 | } |
| 899 | |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 900 | /// \brief Parse a C++ template template argument. |
| 901 | ParsedTemplateArgument Parser::ParseTemplateTemplateArgument() { |
| 902 | if (!Tok.is(tok::identifier) && !Tok.is(tok::coloncolon) && |
| 903 | !Tok.is(tok::annot_cxxscope)) |
| 904 | return ParsedTemplateArgument(); |
| 905 | |
| 906 | // C++0x [temp.arg.template]p1: |
| 907 | // A template-argument for a template template-parameter shall be the name |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 908 | // of a class template or an alias template, expressed as id-expression. |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 909 | // |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 910 | // We parse an id-expression that refers to a class template or alias |
| 911 | // template. The grammar we parse is: |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 912 | // |
Douglas Gregor | ec5e696 | 2011-01-05 17:33:50 +0000 | [diff] [blame] | 913 | // nested-name-specifier[opt] template[opt] identifier ...[opt] |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 914 | // |
| 915 | // followed by a token that terminates a template argument, such as ',', |
| 916 | // '>', or (in some cases) '>>'. |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 917 | CXXScopeSpec SS; // nested-name-specifier, if present |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 918 | ParseOptionalCXXScopeSpecifier(SS, ParsedType(), |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 919 | /*EnteringContext=*/false); |
| 920 | |
Douglas Gregor | ec5e696 | 2011-01-05 17:33:50 +0000 | [diff] [blame] | 921 | ParsedTemplateArgument Result; |
| 922 | SourceLocation EllipsisLoc; |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 923 | if (SS.isSet() && Tok.is(tok::kw_template)) { |
| 924 | // Parse the optional 'template' keyword following the |
| 925 | // nested-name-specifier. |
| 926 | SourceLocation TemplateLoc = ConsumeToken(); |
| 927 | |
| 928 | if (Tok.is(tok::identifier)) { |
| 929 | // We appear to have a dependent template name. |
| 930 | UnqualifiedId Name; |
| 931 | Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation()); |
| 932 | ConsumeToken(); // the identifier |
| 933 | |
Douglas Gregor | ec5e696 | 2011-01-05 17:33:50 +0000 | [diff] [blame] | 934 | // Parse the ellipsis. |
| 935 | if (Tok.is(tok::ellipsis)) |
| 936 | EllipsisLoc = ConsumeToken(); |
| 937 | |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 938 | // If the next token signals the end of a template argument, |
| 939 | // then we have a dependent template name that could be a template |
| 940 | // template argument. |
Douglas Gregor | d6ab232 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 941 | TemplateTy Template; |
| 942 | if (isEndOfTemplateArgument(Tok) && |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 943 | Actions.ActOnDependentTemplateName(getCurScope(), TemplateLoc, |
| 944 | SS, Name, |
| 945 | /*ObjectType=*/ ParsedType(), |
Douglas Gregor | d6ab232 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 946 | /*EnteringContext=*/false, |
| 947 | Template)) |
Douglas Gregor | ec5e696 | 2011-01-05 17:33:50 +0000 | [diff] [blame] | 948 | Result = ParsedTemplateArgument(SS, Template, Name.StartLocation); |
Douglas Gregor | d6ab232 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 949 | } |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 950 | } else if (Tok.is(tok::identifier)) { |
| 951 | // We may have a (non-dependent) template name. |
| 952 | TemplateTy Template; |
| 953 | UnqualifiedId Name; |
| 954 | Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation()); |
| 955 | ConsumeToken(); // the identifier |
| 956 | |
Douglas Gregor | ec5e696 | 2011-01-05 17:33:50 +0000 | [diff] [blame] | 957 | // Parse the ellipsis. |
| 958 | if (Tok.is(tok::ellipsis)) |
| 959 | EllipsisLoc = ConsumeToken(); |
| 960 | |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 961 | if (isEndOfTemplateArgument(Tok)) { |
Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 962 | bool MemberOfUnknownSpecialization; |
Abramo Bagnara | 7c15353 | 2010-08-06 12:11:11 +0000 | [diff] [blame] | 963 | TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS, |
| 964 | /*hasTemplateKeyword=*/false, |
| 965 | Name, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 966 | /*ObjectType=*/ ParsedType(), |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 967 | /*EnteringContext=*/false, |
Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 968 | Template, |
| 969 | MemberOfUnknownSpecialization); |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 970 | if (TNK == TNK_Dependent_template_name || TNK == TNK_Type_template) { |
| 971 | // We have an id-expression that refers to a class template or |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 972 | // (C++0x) alias template. |
Douglas Gregor | ec5e696 | 2011-01-05 17:33:50 +0000 | [diff] [blame] | 973 | Result = ParsedTemplateArgument(SS, Template, Name.StartLocation); |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 974 | } |
| 975 | } |
| 976 | } |
| 977 | |
Douglas Gregor | ec5e696 | 2011-01-05 17:33:50 +0000 | [diff] [blame] | 978 | // If this is a pack expansion, build it as such. |
| 979 | if (EllipsisLoc.isValid() && !Result.isInvalid()) |
| 980 | Result = Actions.ActOnPackExpansion(Result, EllipsisLoc); |
| 981 | |
| 982 | return Result; |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 983 | } |
| 984 | |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 985 | /// ParseTemplateArgument - Parse a C++ template argument (C++ [temp.names]). |
| 986 | /// |
| 987 | /// template-argument: [C++ 14.2] |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 988 | /// constant-expression |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 989 | /// type-id |
| 990 | /// id-expression |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 991 | ParsedTemplateArgument Parser::ParseTemplateArgument() { |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 992 | // C++ [temp.arg]p2: |
| 993 | // In a template-argument, an ambiguity between a type-id and an |
| 994 | // expression is resolved to a type-id, regardless of the form of |
| 995 | // the corresponding template-parameter. |
| 996 | // |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 997 | // Therefore, we initially try to parse a type-id. |
Douglas Gregor | 8b64259 | 2009-02-10 00:53:15 +0000 | [diff] [blame] | 998 | if (isCXXTypeId(TypeIdAsTemplateArgument)) { |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 999 | SourceLocation Loc = Tok.getLocation(); |
Douglas Gregor | 683a81f | 2011-01-31 16:09:46 +0000 | [diff] [blame] | 1000 | TypeResult TypeArg = ParseTypeName(/*Range=*/0, |
| 1001 | Declarator::TemplateTypeArgContext); |
Douglas Gregor | 809070a | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 1002 | if (TypeArg.isInvalid()) |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 1003 | return ParsedTemplateArgument(); |
| 1004 | |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1005 | return ParsedTemplateArgument(ParsedTemplateArgument::Type, |
| 1006 | TypeArg.get().getAsOpaquePtr(), |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 1007 | Loc); |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 1008 | } |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 1009 | |
| 1010 | // Try to parse a template template argument. |
Douglas Gregor | eaf75f4 | 2009-11-12 00:03:40 +0000 | [diff] [blame] | 1011 | { |
| 1012 | TentativeParsingAction TPA(*this); |
| 1013 | |
| 1014 | ParsedTemplateArgument TemplateTemplateArgument |
| 1015 | = ParseTemplateTemplateArgument(); |
| 1016 | if (!TemplateTemplateArgument.isInvalid()) { |
| 1017 | TPA.Commit(); |
| 1018 | return TemplateTemplateArgument; |
| 1019 | } |
| 1020 | |
| 1021 | // Revert this tentative parse to parse a non-type template argument. |
| 1022 | TPA.Revert(); |
| 1023 | } |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 1024 | |
| 1025 | // Parse a non-type template argument. |
| 1026 | SourceLocation Loc = Tok.getLocation(); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1027 | ExprResult ExprArg = ParseConstantExpression(); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 1028 | if (ExprArg.isInvalid() || !ExprArg.get()) |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 1029 | return ParsedTemplateArgument(); |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 1030 | |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 1031 | return ParsedTemplateArgument(ParsedTemplateArgument::NonType, |
| 1032 | ExprArg.release(), Loc); |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1035 | /// \brief Determine whether the current tokens can only be parsed as a |
| 1036 | /// template argument list (starting with the '<') and never as a '<' |
| 1037 | /// expression. |
Douglas Gregor | d5ab9b0 | 2010-05-21 23:43:39 +0000 | [diff] [blame] | 1038 | bool Parser::IsTemplateArgumentList(unsigned Skip) { |
Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1039 | struct AlwaysRevertAction : TentativeParsingAction { |
| 1040 | AlwaysRevertAction(Parser &P) : TentativeParsingAction(P) { } |
| 1041 | ~AlwaysRevertAction() { Revert(); } |
| 1042 | } Tentative(*this); |
| 1043 | |
Douglas Gregor | d5ab9b0 | 2010-05-21 23:43:39 +0000 | [diff] [blame] | 1044 | while (Skip) { |
| 1045 | ConsumeToken(); |
| 1046 | --Skip; |
| 1047 | } |
| 1048 | |
Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1049 | // '<' |
| 1050 | if (!Tok.is(tok::less)) |
| 1051 | return false; |
| 1052 | ConsumeToken(); |
| 1053 | |
| 1054 | // An empty template argument list. |
| 1055 | if (Tok.is(tok::greater)) |
| 1056 | return true; |
| 1057 | |
| 1058 | // See whether we have declaration specifiers, which indicate a type. |
| 1059 | while (isCXXDeclarationSpecifier() == TPResult::True()) |
| 1060 | ConsumeToken(); |
| 1061 | |
| 1062 | // If we have a '>' or a ',' then this is a template argument list. |
| 1063 | return Tok.is(tok::greater) || Tok.is(tok::comma); |
| 1064 | } |
| 1065 | |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 1066 | /// ParseTemplateArgumentList - Parse a C++ template-argument-list |
| 1067 | /// (C++ [temp.names]). Returns true if there was an error. |
| 1068 | /// |
| 1069 | /// template-argument-list: [C++ 14.2] |
| 1070 | /// template-argument |
| 1071 | /// template-argument-list ',' template-argument |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1072 | bool |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 1073 | Parser::ParseTemplateArgumentList(TemplateArgList &TemplateArgs) { |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 1074 | while (true) { |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 1075 | ParsedTemplateArgument Arg = ParseTemplateArgument(); |
Douglas Gregor | 7536dd5 | 2010-12-20 02:24:11 +0000 | [diff] [blame] | 1076 | if (Tok.is(tok::ellipsis)) { |
| 1077 | SourceLocation EllipsisLoc = ConsumeToken(); |
| 1078 | Arg = Actions.ActOnPackExpansion(Arg, EllipsisLoc); |
| 1079 | } |
| 1080 | |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 1081 | if (Arg.isInvalid()) { |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 1082 | SkipUntil(tok::comma, tok::greater, true, true); |
| 1083 | return true; |
| 1084 | } |
Douglas Gregor | 5908e9f | 2009-02-09 19:34:22 +0000 | [diff] [blame] | 1085 | |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 1086 | // Save this template argument. |
| 1087 | TemplateArgs.push_back(Arg); |
| 1088 | |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 1089 | // If the next token is a comma, consume it and keep reading |
| 1090 | // arguments. |
| 1091 | if (Tok.isNot(tok::comma)) break; |
| 1092 | |
| 1093 | // Consume the comma. |
| 1094 | ConsumeToken(); |
| 1095 | } |
| 1096 | |
Eli Friedman | 64a4eb2 | 2009-12-27 22:31:18 +0000 | [diff] [blame] | 1097 | return false; |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 1098 | } |
| 1099 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1100 | /// \brief Parse a C++ explicit template instantiation |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1101 | /// (C++ [temp.explicit]). |
| 1102 | /// |
| 1103 | /// explicit-instantiation: |
Douglas Gregor | 45f9655 | 2009-09-04 06:33:52 +0000 | [diff] [blame] | 1104 | /// 'extern' [opt] 'template' declaration |
| 1105 | /// |
| 1106 | /// Note that the 'extern' is a GNU extension and C++0x feature. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1107 | Decl *Parser::ParseExplicitInstantiation(SourceLocation ExternLoc, |
| 1108 | SourceLocation TemplateLoc, |
| 1109 | SourceLocation &DeclEnd) { |
John McCall | c9068d7 | 2010-07-16 08:13:16 +0000 | [diff] [blame] | 1110 | // This isn't really required here. |
| 1111 | ParsingDeclRAIIObject ParsingTemplateParams(*this); |
| 1112 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1113 | return ParseSingleDeclarationAfterTemplate(Declarator::FileContext, |
Douglas Gregor | 45f9655 | 2009-09-04 06:33:52 +0000 | [diff] [blame] | 1114 | ParsedTemplateInfo(ExternLoc, |
| 1115 | TemplateLoc), |
John McCall | c9068d7 | 2010-07-16 08:13:16 +0000 | [diff] [blame] | 1116 | ParsingTemplateParams, |
Douglas Gregor | 4d9a16f | 2009-05-12 23:25:50 +0000 | [diff] [blame] | 1117 | DeclEnd, AS_none); |
Douglas Gregor | 1426e53 | 2009-05-12 21:31:51 +0000 | [diff] [blame] | 1118 | } |
John McCall | 78b8105 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 1119 | |
| 1120 | SourceRange Parser::ParsedTemplateInfo::getSourceRange() const { |
| 1121 | if (TemplateParams) |
| 1122 | return getTemplateParamsRange(TemplateParams->data(), |
| 1123 | TemplateParams->size()); |
| 1124 | |
| 1125 | SourceRange R(TemplateLoc); |
| 1126 | if (ExternLoc.isValid()) |
| 1127 | R.setBegin(ExternLoc); |
| 1128 | return R; |
| 1129 | } |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1130 | |
Francois Pichet | 4a47e8d | 2011-04-23 11:52:20 +0000 | [diff] [blame] | 1131 | void Parser::LateTemplateParserCallback(void *P, const FunctionDecl *FD) { |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1132 | ((Parser*)P)->LateTemplateParser(FD); |
| 1133 | } |
| 1134 | |
| 1135 | |
Francois Pichet | 4a47e8d | 2011-04-23 11:52:20 +0000 | [diff] [blame] | 1136 | void Parser::LateTemplateParser(const FunctionDecl *FD) { |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1137 | LateParsedTemplatedFunction *LPT = LateParsedTemplateMap[FD]; |
| 1138 | if (LPT) { |
| 1139 | ParseLateTemplatedFuncDef(*LPT); |
| 1140 | return; |
| 1141 | } |
| 1142 | |
| 1143 | llvm_unreachable("Late templated function without associated lexed tokens"); |
| 1144 | } |
| 1145 | |
| 1146 | /// \brief Late parse a C++ function template in Microsoft mode. |
| 1147 | void Parser::ParseLateTemplatedFuncDef(LateParsedTemplatedFunction &LMT) { |
| 1148 | if(!LMT.D) |
| 1149 | return; |
| 1150 | |
| 1151 | // If this is a member template, introduce the template parameter scope. |
| 1152 | ParseScope TemplateScope(this, Scope::TemplateParamScope); |
| 1153 | |
| 1154 | // Get the FunctionDecl. |
| 1155 | FunctionDecl *FD = 0; |
| 1156 | if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(LMT.D)) |
| 1157 | FD = FunTmpl->getTemplatedDecl(); |
| 1158 | else |
| 1159 | FD = cast<FunctionDecl>(LMT.D); |
| 1160 | |
| 1161 | // Reinject the template parameters. |
Francois Pichet | fdde470 | 2011-09-22 22:14:56 +0000 | [diff] [blame] | 1162 | SmallVector<ParseScope*, 4> TemplateParamScopeStack; |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1163 | DeclaratorDecl* Declarator = dyn_cast<DeclaratorDecl>(FD); |
| 1164 | if (Declarator && Declarator->getNumTemplateParameterLists() != 0) { |
| 1165 | Actions.ActOnReenterDeclaratorTemplateScope(getCurScope(), Declarator); |
| 1166 | Actions.ActOnReenterTemplateScope(getCurScope(), LMT.D); |
| 1167 | } else { |
| 1168 | Actions.ActOnReenterTemplateScope(getCurScope(), LMT.D); |
| 1169 | |
Francois Pichet | fdde470 | 2011-09-22 22:14:56 +0000 | [diff] [blame] | 1170 | // Get the list of DeclContext to reenter. |
| 1171 | SmallVector<DeclContext*, 4> DeclContextToReenter; |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1172 | DeclContext *DD = FD->getLexicalParent(); |
| 1173 | while (DD && DD->isRecord()) { |
Francois Pichet | fdde470 | 2011-09-22 22:14:56 +0000 | [diff] [blame] | 1174 | DeclContextToReenter.push_back(DD); |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1175 | DD = DD->getLexicalParent(); |
| 1176 | } |
Francois Pichet | fdde470 | 2011-09-22 22:14:56 +0000 | [diff] [blame] | 1177 | |
Francois Pichet | 901a9a4 | 2011-09-23 16:02:49 +0000 | [diff] [blame] | 1178 | // Reenter template scopes from outmost to innermost. |
Francois Pichet | fdde470 | 2011-09-22 22:14:56 +0000 | [diff] [blame] | 1179 | SmallVector<DeclContext*, 4>::reverse_iterator II = |
| 1180 | DeclContextToReenter.rbegin(); |
| 1181 | for (; II != DeclContextToReenter.rend(); ++II) { |
| 1182 | if (ClassTemplatePartialSpecializationDecl* MD = |
| 1183 | dyn_cast_or_null<ClassTemplatePartialSpecializationDecl>(*II)) { |
Sebastian Redl | a891a32 | 2011-09-30 08:32:17 +0000 | [diff] [blame] | 1184 | TemplateParamScopeStack.push_back(new ParseScope(this, |
| 1185 | Scope::TemplateParamScope)); |
Francois Pichet | fdde470 | 2011-09-22 22:14:56 +0000 | [diff] [blame] | 1186 | Actions.ActOnReenterTemplateScope(getCurScope(), MD); |
| 1187 | } else if (CXXRecordDecl* MD = dyn_cast_or_null<CXXRecordDecl>(*II)) { |
Sebastian Redl | a891a32 | 2011-09-30 08:32:17 +0000 | [diff] [blame] | 1188 | TemplateParamScopeStack.push_back(new ParseScope(this, |
| 1189 | Scope::TemplateParamScope, |
| 1190 | MD->getDescribedClassTemplate() != 0 )); |
Francois Pichet | fdde470 | 2011-09-22 22:14:56 +0000 | [diff] [blame] | 1191 | Actions.ActOnReenterTemplateScope(getCurScope(), |
| 1192 | MD->getDescribedClassTemplate()); |
| 1193 | } |
| 1194 | } |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1195 | } |
| 1196 | assert(!LMT.Toks.empty() && "Empty body!"); |
| 1197 | |
| 1198 | // Append the current token at the end of the new token stream so that it |
| 1199 | // doesn't get lost. |
| 1200 | LMT.Toks.push_back(Tok); |
| 1201 | PP.EnterTokenStream(LMT.Toks.data(), LMT.Toks.size(), true, false); |
| 1202 | |
| 1203 | // Consume the previously pushed token. |
| 1204 | ConsumeAnyToken(); |
| 1205 | assert((Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) |
| 1206 | && "Inline method not starting with '{', ':' or 'try'"); |
| 1207 | |
| 1208 | // Parse the method body. Function body parsing code is similar enough |
| 1209 | // to be re-used for method bodies as well. |
| 1210 | ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope); |
| 1211 | |
| 1212 | // Recreate the DeclContext. |
| 1213 | Sema::ContextRAII SavedContext(Actions, Actions.getContainingDC(FD)); |
| 1214 | |
| 1215 | if (FunctionTemplateDecl *FunctionTemplate |
| 1216 | = dyn_cast_or_null<FunctionTemplateDecl>(LMT.D)) |
| 1217 | Actions.ActOnStartOfFunctionDef(getCurScope(), |
| 1218 | FunctionTemplate->getTemplatedDecl()); |
| 1219 | if (FunctionDecl *Function = dyn_cast_or_null<FunctionDecl>(LMT.D)) |
| 1220 | Actions.ActOnStartOfFunctionDef(getCurScope(), Function); |
| 1221 | |
| 1222 | |
| 1223 | if (Tok.is(tok::kw_try)) { |
| 1224 | ParseFunctionTryBlock(LMT.D, FnScope); |
Francois Pichet | fdde470 | 2011-09-22 22:14:56 +0000 | [diff] [blame] | 1225 | } else { |
| 1226 | if (Tok.is(tok::colon)) |
| 1227 | ParseConstructorInitializer(LMT.D); |
| 1228 | else |
| 1229 | Actions.ActOnDefaultCtorInitializers(LMT.D); |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1230 | |
Francois Pichet | fdde470 | 2011-09-22 22:14:56 +0000 | [diff] [blame] | 1231 | if (Tok.is(tok::l_brace)) { |
| 1232 | ParseFunctionStatementBody(LMT.D, FnScope); |
| 1233 | Actions.MarkAsLateParsedTemplate(FD, false); |
| 1234 | } else |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1235 | Actions.ActOnFinishFunctionBody(LMT.D, 0); |
Francois Pichet | fdde470 | 2011-09-22 22:14:56 +0000 | [diff] [blame] | 1236 | } |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1237 | |
Francois Pichet | fdde470 | 2011-09-22 22:14:56 +0000 | [diff] [blame] | 1238 | // Exit scopes. |
| 1239 | FnScope.Exit(); |
| 1240 | SmallVector<ParseScope*, 4>::reverse_iterator I = |
| 1241 | TemplateParamScopeStack.rbegin(); |
| 1242 | for (; I != TemplateParamScopeStack.rend(); ++I) |
| 1243 | delete *I; |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1244 | |
| 1245 | DeclGroupPtrTy grp = Actions.ConvertDeclToDeclGroup(LMT.D); |
| 1246 | if (grp) |
| 1247 | Actions.getASTConsumer().HandleTopLevelDecl(grp.get()); |
| 1248 | } |
| 1249 | |
| 1250 | /// \brief Lex a delayed template function for late parsing. |
| 1251 | void Parser::LexTemplateFunctionForLateParsing(CachedTokens &Toks) { |
| 1252 | tok::TokenKind kind = Tok.getKind(); |
Sebastian Redl | a891a32 | 2011-09-30 08:32:17 +0000 | [diff] [blame] | 1253 | if (!ConsumeAndStoreFunctionPrologue(Toks)) { |
| 1254 | // Consume everything up to (and including) the matching right brace. |
| 1255 | ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false); |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1256 | } |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 1257 | |
| 1258 | // If we're in a function-try-block, we need to store all the catch blocks. |
| 1259 | if (kind == tok::kw_try) { |
| 1260 | while (Tok.is(tok::kw_catch)) { |
| 1261 | ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false); |
| 1262 | ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false); |
| 1263 | } |
| 1264 | } |
| 1265 | } |