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